diff --git a/CHANGELOG b/CHANGELOG
index 32be21398f41ae99eecbc82b5c97d3490bbc03d2..0545128475f82a6927937d5a35c3f3f19c9daf25 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -92,10 +92,35 @@ V0.5:
     - Fixed of minor errors
 
     - Added Relativistic Aberration
+################################################################################
+V1.0:
+1.November, 2023 Gerald Mösenlechner   <gerald.moesenlechner@univie.ac.at>
+
+   Fixed Issues:
+
+    - Fixed smearing kernel border check
+
+    - Fixed shot noise model
+
+    - Fixed Simulink Bus data types of output
+
+    - Added Timing tolerance parameter to centroid generation 
+
+    - Fixed uninitialized Parameters if default mode is standby
+
+    - Fixed error in Relativistic Abberation
+
+    - Added aggressive thresholding method to help with tracking close to the 
+      image border
+    
+    - Reworked Matlab function block, added Error and failed state outputs
+
+    - Added Simulink examples
 
-   Open Issues:
+    - Fixed typos and Macro definitions
 
-    - failed status is still TBD
+  Open Issues:
 
-    - Performance error output of centroid is still TBD
+    - No change to close neighbour confusion, a correction will be provided in 
+      a future update
 ################################################################################
diff --git a/JUSTIFICATION b/JUSTIFICATION
index 69dbe60a96a292550ca55391f6cb1a6f14f54441..78af4f589d1c52a22fa2f26c61d6bd4e3107698b 100644
--- a/JUSTIFICATION
+++ b/JUSTIFICATION
@@ -1,5 +1,5 @@
 ************************************************************
-* ARIEL FGS HFS, , ARIEL-UVIE-PL-ML-001 0.5, JUSTIFICATION *
+* ARIEL FGS HFS, , ARIEL-UVIE-PL-ML-001 1.0, JUSTIFICATION *
 ************************************************************
 
 This note describes the justification of the parameters and values
diff --git a/MANUAL b/MANUAL
index bebdb7989cdd600e93d85e65c466c14870c9d1fe..ba4a8482badd3b4cae7773e6c8b972c9d021fd67 100644
--- a/MANUAL
+++ b/MANUAL
@@ -1,5 +1,5 @@
 *****************************************************
-* ARIEL FGS HFS, , ARIEL-UVIE-PL-ML-001 0.4, MANUAL *
+* ARIEL FGS HFS, , ARIEL-UVIE-PL-ML-001 1.0, MANUAL *
 *****************************************************
 
 The FGS HFS is based on the c++ object "FGS" defined in HFS_API.hpp. The
@@ -43,6 +43,8 @@ from of a hfs_parameters struct update. The struct is defined as follows:
   - unsigned int set_invalid: Flag to set the validity of all measuremets to false
 
   - unsigned int set_error: Flag to set validity index of all measurements
+                            Setting the error to 111 sets the HFS into the failed state
+                            exiting this state automatically starts a reset.
 
   - int add_shift_x: additive shift to the x component of the centroid in centi-pixels
   
@@ -56,7 +58,7 @@ from of a hfs_parameters struct update. The struct is defined as follows:
 
   - int target_pos_y: Position of the FBT inside of the FBA in px in y-direction
 
-  - unsigned int validation_signal: Singal used for target identification [ADU/s]
+  - unsigned int validation_signal: Signal used for target identification [ADU/s]
 
   - unsigned int mode: Operational mode, defined as an interger due to Simulink
                        not supporting chars. The equiviliant modes and numbers
@@ -100,3 +102,7 @@ cnetroid packet struct with following attributes:
     - unsigned int channel: configured channel
 
     - unsigned int mode: configured mode
+
+The function block additionaly provides the failed state and the error of the
+centroid measurement. The error is calculated in relation to the closest star to the
+measurement and not corrected for measurement biases.
diff --git a/README b/README
index f93dc614e97992e602c44ef726ee17232332baaa..780a17afdfe8b7151c8e1da0a937e035c3e36ead 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
 ******************************************************
-* ARIEL FGS HFS Repository, ARIEL-UVIE-PL-ML-001 0.5 *
+* ARIEL FGS HFS Repository, ARIEL-UVIE-PL-ML-001 1.0 *
 ******************************************************
 
 This repository contains the HFS, the simulator SW used to simulate the
@@ -20,6 +20,8 @@ Files:
     test/HFSTest .................... Unit tests for the HFS library (.cpp/.hpp)
     test/example.cpp ................ Example script showing the function of the library
     Quaternion_Calulator.pxy ........ Python command-line tool for quaternion determination
+    Star_Validation_Signals.xlsx .... Table containing target signals and validation values for stars
+    matlab_model/Test_Cases/ ........ Simulink Test Benches including output data
     CHANGELOG
     README
     MANUAL
diff --git a/Star_Validation_Signals.xlsx b/Star_Validation_Signals.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..064914c569d9004d13c47d2ba2d6c2b64fe3386f
Binary files /dev/null and b/Star_Validation_Signals.xlsx differ
diff --git a/matlab_model/Example_model.slx b/matlab_model/Example_model.slx
index ca28d2bcf29bf16b88c9a8f1eab8976003490316..e209eceb3cbca49b820b54c4004566db77adefd3 100644
Binary files a/matlab_model/Example_model.slx and b/matlab_model/Example_model.slx differ
diff --git a/matlab_model/HFS_Wrapper.m b/matlab_model/HFS_Wrapper.m
index 87816199d902312c1ffccb4a174282b708481047..7beab77829d547ce69b67ebac61dc36a506ac520 100644
--- a/matlab_model/HFS_Wrapper.m
+++ b/matlab_model/HFS_Wrapper.m
@@ -15,7 +15,7 @@ evalin('base','load HFS_bus.mat');
 def = legacy_code('initialize');
 def.SFunctionName = 'FGS_HFS';
 def.StartFcnSpec  = 'createFGS()';
-def.OutputFcnSpec = 'void updateFGS(hfs_parameters u1[1], centroid_packet y1[1])';
+def.OutputFcnSpec = 'void updateFGS(hfs_parameters u1[1], outputHfs y1[1])';
 def.TerminateFcnSpec = 'deleteFGS()';
 def.HeaderFiles   = {'HFS_Wrapper.hpp'};
 def.SourceFiles   = {'HFS_Wrapper.cpp'};
@@ -42,37 +42,37 @@ offset = 40;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/mode'],'Position',pos);
-set_param([sys '/mode'], 'OutDataTypeStr','uint32')
+set_param([sys '/mode'], 'OutDataTypeStr','uint32');
 set_param([sys '/mode'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/set_invalid'],'Position',pos);
-set_param([sys '/set_invalid'], 'OutDataTypeStr','uint32')
+set_param([sys '/set_invalid'], 'OutDataTypeStr','uint32');
 set_param([sys '/set_invalid'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/set_error'],'Position',pos);
-set_param([sys '/set_error'], 'OutDataTypeStr','uint32')
+set_param([sys '/set_error'], 'OutDataTypeStr','uint32');
 set_param([sys '/set_error'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/reset'],'Position',pos);
-set_param([sys '/reset'], 'OutDataTypeStr','uint32')
+set_param([sys '/reset'], 'OutDataTypeStr','uint32');
 set_param([sys '/reset'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/save'],'Position',pos);
-set_param([sys '/save'], 'OutDataTypeStr','uint32')
+set_param([sys '/save'], 'OutDataTypeStr','uint32');
 set_param([sys '/save'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/channel'],'Position',pos);
-set_param([sys '/channel'], 'OutDataTypeStr','uint32')
+set_param([sys '/channel'], 'OutDataTypeStr','uint32');
 set_param([sys '/channel'], 'PortDimensions', num2str(1));
 y = y + offset;
 
@@ -84,33 +84,35 @@ y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/scVelocity'],'Position',pos);
-set_param([sys '/scVelocity'], 'OutDataTypeStr','double')
+set_param([sys '/scVelocity'], 'OutDataTypeStr','double');
 set_param([sys '/scVelocity'], 'PortDimensions', num2str(3))
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
-posHFS = [x+100 y+h/4 x+250 y+h*.75]
-posOut = [x+300 y+h/4 x+330 y+h*.75]
+posHFS = [x+100 y+h/4 x+250 y+h*.75];
+posOut = [x+300 y+h/4 x+330 y+h*.75];
+xOut = x + 300;
+yOut = y;
 set_param([sys '/FGS_HFS'],'Position',posHFS);
 add_block('built-in/Inport',[sys '/ang_rate'],'Position',pos);
-set_param([sys '/ang_rate'], 'OutDataTypeStr','double')
+set_param([sys '/ang_rate'], 'OutDataTypeStr','double');
 set_param([sys '/ang_rate'], 'PortDimensions', num2str(3));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/position_quat'],'Position',pos);
-set_param([sys '/position_quat'], 'OutDataTypeStr','double')
+set_param([sys '/position_quat'], 'OutDataTypeStr','double');
 set_param([sys '/position_quat'], 'PortDimensions', num2str(4));y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/validation_signal'],'Position',pos);
-set_param([sys '/validation_signal'], 'OutDataTypeStr','uint32')
+set_param([sys '/validation_signal'], 'OutDataTypeStr','uint32');
 set_param([sys '/validation_signal'], 'PortDimensions', num2str(1));
 y = y + offset;
 
 pos = [x y+h/4 x+w y+h*.75];
 add_block('built-in/Inport',[sys '/add_shift_x'],'Position',pos);
-set_param([sys '/add_shift_x'], 'OutDataTypeStr','int32')
+set_param([sys '/add_shift_x'], 'OutDataTypeStr','int32');
 set_param([sys '/add_shift_x'], 'PortDimensions', num2str(1));
 y = y + offset;
 
@@ -149,9 +151,36 @@ add_block('simulink/Commonly Used Blocks/Bus Creator', [sys '/BC1'],'Position',p
 set_param([sys '/BC1'],'Inputs','17')
 set_param([sys '/BC1'],'OutDataTypeStr','Bus: hfs_parameters');
 
+posOut = [xOut yOut-155+h/4 xOut+5 yOut+155+h*.75];
+add_block('simulink/Commonly Used Blocks/Bus Selector', [sys '/BS1'],'Position',posOut)
+set_param([sys '/BS1'],'OutputSignals','x,y,time,validity_flag,validity_index,magnitude,channel,mode,failedState,xErr,yErr')
+
+xOut = xOut + 100;
+
+posOut = [xOut yOut-155+h/4 xOut+5 yOut+60+h*.75];
+add_block('simulink/Commonly Used Blocks/Bus Creator', [sys '/BC2'],'Position',posOut)
+set_param([sys '/BC2'],'Inputs','8')
+set_param([sys '/BC2'],'OutDataTypeStr','Bus: centroid_packet');
+
+posOut = [xOut yOut+115+h/4 xOut+5 yOut+160+h*.75];
+add_block('simulink/Commonly Used Blocks/Bus Creator', [sys '/BC3'],'Position',posOut)
+set_param([sys '/BC3'],'Inputs','2')
+set_param([sys '/BC3'],'OutDataTypeStr','Bus: centroidError');
+
+xOut = xOut + 100;
+
+posOut = [xOut yOut-45+h/4 xOut+30 yOut-45+h*.75];
 add_block('built-in/Outport',[sys '/centroid_packet'], 'Position', posOut);
 set_param([sys '/centroid_packet'], 'OutDataTypeStr','Bus: centroid_packet')
 
+posOut = [xOut yOut+90+h/4 xOut+30 yOut+90+h*.75];
+add_block('built-in/Outport',[sys '/failedState'], 'Position', posOut);
+set_param([sys '/failedState'], 'OutDataTypeStr','uint32')
+
+posOut = [xOut yOut+135+h/4 xOut+30 yOut+135+h*.75];
+add_block('built-in/Outport',[sys '/error'], 'Position', posOut);
+set_param([sys '/error'], 'OutDataTypeStr','Bus: centroidError')
+
 modeHandle = add_line(sys, 'mode/1', 'BC1/1');
 set_param(modeHandle, 'Name', 'mode');
 invalidHandle = add_line(sys, 'set_invalid/1', 'BC1/2');
@@ -187,6 +216,23 @@ set_param(targetXHandle, 'Name', 'target_pos_x');
 targetYHandle = add_line(sys, 'target_pos_y/1', 'BC1/17');
 set_param(targetYHandle, 'Name', 'target_pos_y');
 add_line(sys, 'BC1/1', 'FGS_HFS/1');
-add_line(sys, 'FGS_HFS/1', 'centroid_packet/1');
+add_line(sys, 'FGS_HFS/1', 'BS1/1');
+
+centroidXHandle = add_line(sys, 'BS1/1', 'BC2/1');
+centroidYHandle = add_line(sys, 'BS1/2', 'BC2/2');
+centroidTimeHandle = add_line(sys, 'BS1/3', 'BC2/3');
+centroidFlagHandle = add_line(sys, 'BS1/4', 'BC2/4');
+centroidIndexHandle = add_line(sys, 'BS1/5', 'BC2/5');
+centroidMagHandle = add_line(sys, 'BS1/6', 'BC2/6');
+centroidChannelHandle = add_line(sys, 'BS1/7', 'BC2/7');
+centroidModeHandle = add_line(sys, 'BS1/8', 'BC2/8');
+
+add_line(sys, 'BC2/1', 'centroid_packet/1');
+
+targetFailedStateHandle = add_line(sys, 'BS1/9', 'failedState/1');
+
+errorXHandle = add_line(sys, 'BS1/10', 'BC3/1')
+errorYHandle = add_line(sys, 'BS1/11', 'BC3/2')
 
+targetErrorHandle = add_line(sys, 'BC3/1', 'error/1');
 
diff --git a/matlab_model/HFS_bus.mat b/matlab_model/HFS_bus.mat
index 1fa1f460b1d88e9cde084c98550fc49dc5b3f25c..444489477f57825c3ff7561c2b911d35e328c3bf 100644
Binary files a/matlab_model/HFS_bus.mat and b/matlab_model/HFS_bus.mat differ
diff --git a/matlab_model/HFS_config.xml b/matlab_model/HFS_config.xml
index 1f2ea96f4f2f8e949613195269bef0c4e48bf5d5..e8429b8f69518c899e44ffc4d9f1375ca6040a78 100644
--- a/matlab_model/HFS_config.xml
+++ b/matlab_model/HFS_config.xml
@@ -130,6 +130,9 @@
         Index can range from -1 to 1. A value of 0.5 to 0.6 serves as a
         decent cutoff for invalid measurements-->
   <validation_pearson_limit>0.6</validation_pearson_limit>
+  
+  <!-- default failed status of the HFS -->
+  <failed_status>0</failed_status>
 
   <!--  Configuration of the Tracking procedure -->
   <Tracking>
@@ -137,8 +140,8 @@
     <iterations>5</iterations>
     <!--  Toogle optional median filter -->
     <median_filter>1</median_filter>
-    <!--  Toogle thresholding -->
-    <thresholding>1</thresholding>
+    <!--  Toogle thresholding, 1: minimum thresholding, 2: aggressive threshold using sigma -->
+    <thresholding>2</thresholding>
     <!--  Delay of the centroid packet in seconds.
           Note: must be lower than the integration time (0.125 s) -->
     <delay>0.02</delay>
@@ -154,8 +157,8 @@
     <iterations>3</iterations>
     <!--  Toogle optional median filter -->
     <median_filter>0</median_filter>
-    <!--  Toogle thresholding -->
-    <thresholding>1</thresholding>
+    <!--  Toogle thresholding, 1: minimum thresholding, 2: aggressive threshold using sigma -->
+    <thresholding>2</thresholding>
     <!--  Delay of the centroid packet in seconds.
           Note: must be lower than the integration time (0.5 s) -->
     <delay>0.1</delay>
diff --git a/matlab_model/Test_cases/Acquisition_Target_switch.slx b/matlab_model/Test_cases/Acquisition_Target_switch.slx
new file mode 100644
index 0000000000000000000000000000000000000000..fdc1bb096e602ee0b8de2d6a590e2ab852e84abb
Binary files /dev/null and b/matlab_model/Test_cases/Acquisition_Target_switch.slx differ
diff --git a/matlab_model/Test_cases/Acquisition_Target_switch_Output.mldatx b/matlab_model/Test_cases/Acquisition_Target_switch_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..df8be952555bb08bf238f08d0a1b1fc4d002acc9
Binary files /dev/null and b/matlab_model/Test_cases/Acquisition_Target_switch_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Angular_Rate_Test.slx b/matlab_model/Test_cases/Angular_Rate_Test.slx
new file mode 100644
index 0000000000000000000000000000000000000000..be95cf9c571723201e8503fb01d2030661b0f90d
Binary files /dev/null and b/matlab_model/Test_cases/Angular_Rate_Test.slx differ
diff --git a/matlab_model/Test_cases/Angular_Rate_Test_Output.mldatx b/matlab_model/Test_cases/Angular_Rate_Test_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..d5931418a79e25b850a21a2b901818504248cd49
Binary files /dev/null and b/matlab_model/Test_cases/Angular_Rate_Test_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Circular_star_movement_Output.mldatx b/matlab_model/Test_cases/Circular_star_movement_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..1340cfe6e1f2834e8cb861478aa164aa3b83b49e
Binary files /dev/null and b/matlab_model/Test_cases/Circular_star_movement_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Error_Modes_Output.mldatx b/matlab_model/Test_cases/Error_Modes_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..7508a5f9669b9fdf569f9d5d59194543b75b8743
Binary files /dev/null and b/matlab_model/Test_cases/Error_Modes_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Error_modes.slx b/matlab_model/Test_cases/Error_modes.slx
new file mode 100644
index 0000000000000000000000000000000000000000..822902b1135b468fe7d5807f7a3cdddd81589ff1
Binary files /dev/null and b/matlab_model/Test_cases/Error_modes.slx differ
diff --git a/matlab_model/Test_cases/Failed_State_and_Reset.slx b/matlab_model/Test_cases/Failed_State_and_Reset.slx
new file mode 100644
index 0000000000000000000000000000000000000000..2fd7e0cfc3ea8d31de86270f35b7a29d9ed6209e
Binary files /dev/null and b/matlab_model/Test_cases/Failed_State_and_Reset.slx differ
diff --git a/matlab_model/Test_cases/Failed_State_and_Reset_Output.mldatx b/matlab_model/Test_cases/Failed_State_and_Reset_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..f289ea601b4f3fd0f04b576f1a1ea7813a1864af
Binary files /dev/null and b/matlab_model/Test_cases/Failed_State_and_Reset_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Mode_and_channel_change.slx b/matlab_model/Test_cases/Mode_and_channel_change.slx
new file mode 100644
index 0000000000000000000000000000000000000000..ba46bf0aa846a8b6dc6e61b7026ab3e5f02a480f
Binary files /dev/null and b/matlab_model/Test_cases/Mode_and_channel_change.slx differ
diff --git a/matlab_model/Test_cases/Mode_and_channel_change_Output.mldatx b/matlab_model/Test_cases/Mode_and_channel_change_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..8e2fd106d92eec2c69318d306586aa9f80fee1e6
Binary files /dev/null and b/matlab_model/Test_cases/Mode_and_channel_change_Output.mldatx differ
diff --git a/matlab_model/Test_cases/Velocity_Test.slx b/matlab_model/Test_cases/Velocity_Test.slx
new file mode 100644
index 0000000000000000000000000000000000000000..ff440695ffe20b010c7f77a828bc66db93370b57
Binary files /dev/null and b/matlab_model/Test_cases/Velocity_Test.slx differ
diff --git a/matlab_model/Test_cases/Velocity_Test_Output.mldatx b/matlab_model/Test_cases/Velocity_Test_Output.mldatx
new file mode 100644
index 0000000000000000000000000000000000000000..6694bdde9afd0a5aee2854f8a597ff9aef75a3ef
Binary files /dev/null and b/matlab_model/Test_cases/Velocity_Test_Output.mldatx differ
diff --git a/matlab_model/Test_cases/circular_star_movement.slx b/matlab_model/Test_cases/circular_star_movement.slx
new file mode 100644
index 0000000000000000000000000000000000000000..9a5b3d210d664d19b8ed6d670f7cfbf2af8113d3
Binary files /dev/null and b/matlab_model/Test_cases/circular_star_movement.slx differ
diff --git a/src/HFS_API.cpp b/src/HFS_API.cpp
index 4bdc3a03b653e72df9deed6c50a182f002ac5fba..ca6a31cd86bb8fe1b1e584870a41e10ba16aca0e 100644
--- a/src/HFS_API.cpp
+++ b/src/HFS_API.cpp
@@ -1,8 +1,8 @@
 /**
 * @file     HFS_API.cpp
 * @author   Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date     September, 2023
-* @version  0.5
+* @date     November, 2023
+* @version  1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
@@ -26,6 +26,8 @@
 #include "utilities.h"
 #include "detector_features.h"
 #include "fcu_algorithms.h"
+#include <iomanip>
+#include <tinyxml2.h>
 
 const char* MODE_ACQU = "Acquisition";
 const char* MODE_TRAC = "Tracking";
@@ -176,6 +178,7 @@ int FGS :: reset_fgs(const char* config_file, int hard_reset)
         cRootElement -> FirstChildElement("lower_signal_limit") -> QueryDoubleText(&lower_sig_lim);
         cRootElement -> FirstChildElement("validation_sigma") -> QueryUnsignedText(&val_sigma);
         cRootElement -> FirstChildElement("validation_pearson_limit") -> QueryDoubleText(&pearson_limit);
+        cRootElement -> FirstChildElement("failed_status") -> QueryUnsignedText(&failed);
 
         tinyxml2::XMLElement *cTracking = cRootElement -> FirstChildElement("Tracking");
         cTracking -> FirstChildElement("iterations") -> QueryUnsignedText(&iter_track);
@@ -215,8 +218,8 @@ int FGS :: reset_fgs(const char* config_file, int hard_reset)
         else{
             transition_end = 0.0;
         }
-        hp_upper = 0.;
-        hp_lower = 0.; //TODO Replace with config
+        hp_upper = 100000.;
+        hp_lower = 0.; 
 
         centroid.x = 0.;
         centroid.y = 0.;
@@ -225,6 +228,9 @@ int FGS :: reset_fgs(const char* config_file, int hard_reset)
         centroid.validity.index = 100;
         centroid.validity.magnitude = 0;
 
+        error.xErr = 0.;
+        error.yErr = 0.;
+
        
         /*Set starting conditions for dim, qe, delay and exposure*/
         if(channel == 1){
@@ -265,6 +271,14 @@ int FGS :: reset_fgs(const char* config_file, int hard_reset)
             dim_x = track_dim;
             dim_y = track_dim;
         }
+        else{
+            /*Initialize values for Tracking if Standby is configured as default*/
+            exposure_time = exp_track;
+            delay = delay_track;
+            /*Tracking uses 64x64 for both channels*/
+            dim_x = track_dim;
+            dim_y = track_dim;
+        }
 
         /*Create static attributes of the image*/
         if(hard_reset == 0){
@@ -371,7 +385,7 @@ int FGS :: generate_smear(double (&angular_rate)[3], double dt)
 
     cross3(transf.data, unit_vec, angular_rate_drf);
 
-    x_smear = angular_rate_drf[0]*dt*3600000/plate_scale;
+    x_smear = -angular_rate_drf[0]*dt*3600000/plate_scale;
     y_smear = -angular_rate_drf[1]*dt*3600000/plate_scale;
 
     generate_linear_smearing_kernel(smear_kernel_os, x_smear_0 * 5, y_smear_0 * 5, x_smear * 5, y_smear * 5, 125);
@@ -405,6 +419,8 @@ int FGS :: generate_image()
 
     downsample_image(smear_kernel_os, smear_kernel, 125, 125, 5);
 
+    shift_smear(smear_kernel, x_smear_0, y_smear_0, 25);
+
     generate_bias(bias, bias_sample, bias_value, 128, dim_x, dim_y);
 
     generate_dark(dark, dark_mean, exposure_time, hot_pixels, dim_x, dim_y);
@@ -414,7 +430,7 @@ int FGS :: generate_image()
     generate_starmask(starmask, *targets, exposure_time, dim_x, dim_y, channel);
 
     smear_star_image(smeared_mask, starmask, smear_kernel, dim_x, dim_y, XDIM_KERNEL, YDIM_KERNEL);
-
+    
     if(channel == 1){
         generate_star_image(starimage, FGS1_Psf, smeared_mask, dim_x, dim_y, XDIM_PSF, XDIM_PSF);
     }
@@ -424,8 +440,13 @@ int FGS :: generate_image()
     else{
         std::cerr << "Unknown channel configured!" << std::endl;
     }
+    
+    for(i = 0; i < dim_x*dim_y; i++)
+    {
+        starimage[i] = starimage[i] + bkgr[i]; 
+    }
 
-    generate_shotnoise(shot, starimage, bkgr, dim_x*dim_y);
+    generate_shot(starimage, shot, dim_x, dim_y);
 
     for(i = 0; i < dim_x*dim_y; i++){
         image[i] = (unsigned int) (shot[i] * flat[i] + bias[i] + dark[i]);
@@ -436,7 +457,7 @@ int FGS :: generate_image()
 #if 0
   	std::ofstream test_file;
   	test_file.open("image.txt");
-	for (i = 0; i < dim_x*dim_y; i++) {
+	for (i = 0; i < dim_y*dim_y; i++) {
         test_file << image[i] << " ";
 		if (i && !((i + 1) % (int)dim_x))
 		    test_file << "\n";
@@ -471,6 +492,9 @@ int FGS :: perform_algorithm()
                 image[i] = image[i] - min;
             }
         }
+        else if(threshold_acq == 2){
+            std_threshold(image, dim_x, dim_y);
+        }
         if (med_acq == 1){
             MedFilter3x3(image, dim_x, dim_y, med_threshold, filtered_image);
             output = SourceDetection(filtered_image, dim_x, dim_y, 0, channel, max_targets, target_signal*exposure_time, tolerance_acq, extension_sigma, iter_acq, fwhm_x, fwhm_y, target_signal*(lower_sig_lim/100)*exposure_time, val_sigma, pearson_limit);
@@ -486,6 +510,9 @@ int FGS :: perform_algorithm()
                 image[i] = image[i] - min;
             }
         }
+        else if(threshold_track == 2){
+            std_threshold(image, dim_x, dim_y);
+        }
         if(med_track == 1){
             MedFilter3x3(image, dim_x, dim_y, med_threshold, filtered_image);
             output = ArielCoG(filtered_image, dim_x, dim_y, iter_track, 0, fwhm_x, fwhm_y, channel, target_signal*(lower_sig_lim/100)*exposure_time, val_sigma, pearson_limit);
@@ -800,6 +827,10 @@ int FGS :: generate_config(const char* output_file)
     cPearson->SetText(pearson_limit);
     cRoot->InsertEndChild(cPearson);
 
+    tinyxml2::XMLElement* cFailed = config.NewElement("failed_status");
+    cFailed->SetText(failed);
+    cRoot->InsertEndChild(cFailed);
+
     tinyxml2::XMLElement* cTracking = config.NewElement("Tracking");
     cRoot->InsertEndChild(cTracking);
 
@@ -905,7 +936,8 @@ int FGS :: generate_config(const char* output_file)
     cRoot->InsertEndChild(cSmearY);
 
     config.SaveFile(output_file);
-    /*Write output files*/ 
+    /*Write output files*/
+
     hp_of.open(hp_save, std::ofstream::out | std::ofstream::app);
     for (i = 0; i < XDIM*YDIM; i++){
         hp_of << hot_pixels[i] << "\n";
@@ -914,13 +946,14 @@ int FGS :: generate_config(const char* output_file)
     
     flat_of.open(flat_save, std::ofstream::out | std::ofstream::app);
     for (i = 0; i < XDIM*YDIM; i++){
-        flat_of << flat[i] << "\n";
+        flat_of << std::setprecision(std::numeric_limits<double>::max_digits10) << flat[i] << "\n";
+
     }
     flat_of.close();
  
     smear_of.open(smear_save, std::ofstream::out | std::ofstream::app);
     for (i = 0; i < 125*125; i++){
-        smear_of << smear_kernel_os[i] << "\n";
+        smear_of << std::setprecision(std::numeric_limits<double>::max_digits10) << smear_kernel_os[i] << "\n";
     }
     smear_of.close();
 
@@ -1090,15 +1123,15 @@ int FGS :: transform_to_detector(double (&vec)[3], double (&velVec)[3], int trf_
         }
 
         
-        transf.data[0] = acos((cos(transf.data[0]) - x_vel/CVEL)/(1 - cos(transf.data[0])*(x_vel/CVEL)));
-        transf.data[1] = acos((cos(transf.data[1]) - y_vel/CVEL)/(1 - cos(transf.data[1])*(y_vel/CVEL)));
+        transf.data[0] = transf.data[0] - x_vel/CVEL;
+        transf.data[1] = transf.data[1] - y_vel/CVEL;
 
         x_pos = (transf.data[0]*(360/TWO_PI)*3600000 + offset[0])/plate_scale - trf_x;
         y_pos = (transf.data[1]*(360/TWO_PI)*3600000 + offset[1])/plate_scale - trf_y;
     }
     else{
-        transf.data[0] = acos((cos(transf.data[0]) - x_vel/CVEL)/(1 - cos(transf.data[0])*(x_vel/CVEL)));
-        transf.data[1] = acos((cos(transf.data[1]) - y_vel/CVEL)/(1 - cos(transf.data[1])*(y_vel/CVEL)));
+        transf.data[0] = transf.data[0] - x_vel/CVEL;
+        transf.data[1] = transf.data[1] - y_vel/CVEL;
 
 
         x_pos = (transf.data[0]*(360/TWO_PI)*3600000 + offset[0])/plate_scale;
@@ -1200,6 +1233,7 @@ int FGS :: generate_centroid(hfs_parameters update)
     x_smear_0 = 0.;
     y_smear_0 = 0.;
     centroid.time = sim_time + delay;
+    calc_error(centroid.x, centroid.y);
     /* Convert centroid to mas in FBT frame*/
     centroid.x = (centroid.x - dim_x/2) * plate_scale;
     centroid.y = (centroid.y - dim_y/2) * plate_scale;
@@ -1226,33 +1260,68 @@ int FGS :: generate_centroid(hfs_parameters update)
  */
 
 
-int FGS :: send_centroid(hfs_parameters update, centroid_packet *cent_packet)
+int FGS :: send_centroid(hfs_parameters update, outputHfs *outPacket)
 {
-    cent_packet -> x = centroid.x;
-    cent_packet -> y = centroid.y;
-    cent_packet -> validity_flag = centroid.validity.flag;
-    cent_packet -> validity_index = centroid.validity.index;
-    cent_packet -> magnitude = centroid.validity.magnitude;
-    cent_packet -> time = centroid.time;
-    send_cent = 0;
-    cent_packet -> channel = channel;
-
-    if(strcmp(mode, MODE_TRAC) == 0){
-        cent_packet -> mode = 2;
-    }
-    else
-    if(strcmp(mode, MODE_ACQU) == 0){
-        cent_packet -> mode = 1;
+    if(failed == 1){
+        outPacket -> failedState = failed;
     }
+    else{
+        outPacket -> x = centroid.x;
+        outPacket -> y = centroid.y;
+        outPacket -> validity_flag = centroid.validity.flag;
+        outPacket -> validity_index = centroid.validity.index;
+        outPacket -> magnitude = centroid.validity.magnitude;
+        outPacket -> time = centroid.time;
+        outPacket -> channel = channel;
+        outPacket -> xErr = error.xErr;
+        outPacket -> yErr = error.yErr;
+        send_cent = 0;
+
+        if(strcmp(mode, MODE_TRAC) == 0){
+            outPacket -> mode = 2;
+        }
+        else
+        if(strcmp(mode, MODE_ACQU) == 0){
+            outPacket -> mode = 1;
+        }
 
-    if(update.set_invalid != 0){
-        cent_packet -> validity_index = 100.;
-        cent_packet -> validity_flag = 0;
+        if(update.set_invalid != 0){
+            outPacket -> validity_index = 100.;
+            outPacket -> validity_flag = 0;
+        }
+        if(update.set_error != 0){
+            outPacket -> validity_index = update.set_error;
+            outPacket -> validity_flag = 0;
+        }
+        outPacket -> failedState = failed;
     }
-    if(update.set_error != 0){
-        cent_packet -> validity_index = update.set_error;
-        cent_packet -> validity_flag = 0;
+    return 0;
+}
+
+int FGS::calc_error(double x, double y)
+{
+    double absErr = 0.;
+    unsigned int i;
+    double tmpX, tmpY, tmpAbs;
+
+    for(i = 0; i < targets -> number; i++){
+        tmpX = x - targets -> x[i];
+        tmpY = y - targets -> y[i];
+        tmpAbs = sqrt(pow(tmpX, 2) + pow(tmpY, 2));
+        if(absErr == 0){
+            absErr = tmpAbs;
+            error.xErr = tmpX * plate_scale;
+            error.yErr = tmpY * plate_scale;
+            }
+        else{
+            if(tmpAbs < absErr){
+                absErr = tmpAbs;
+                error.xErr = tmpX * plate_scale;
+                error.yErr = tmpY * plate_scale;
+            }
+        }
     }
+
     return 0;
 }
 
@@ -1270,11 +1339,11 @@ char string_buffer[64];
  *
  * @param update: hfs_parameters struct containing the kinematic data of
  *                the spacecraft and the modes/flags
- * @param[out] cent_packet: pointer to the centoid packet
+ * @param[out] outPacket: pointer to the output packet
  *
  */
 
-int FGS :: set_params(hfs_parameters update, centroid_packet *cent_packet)
+int FGS :: set_params(hfs_parameters update, outputHfs *outPacket)
 {
     const char* update_mode_char;
  
@@ -1288,7 +1357,11 @@ int FGS :: set_params(hfs_parameters update, centroid_packet *cent_packet)
     sim_time = update.time;
     target_signal = update.validation_signal;
 
-
+    if(update.set_error == 111 && failed == 0){
+        failed = 1;
+        send_centroid(update, outPacket);
+        return 0;
+    }
 
     /*Check if state shall be saved*/
     if(update.save == 1){
@@ -1298,7 +1371,7 @@ int FGS :: set_params(hfs_parameters update, centroid_packet *cent_packet)
 
     /*Check if centroid shall be generated*/
     if((strcmp(mode, MODE_ACQU) == 0 || strcmp(mode, MODE_TRAC) == 0) && reset_end == 0){
-        if((start_exposure + exposure_time) < sim_time && transition_end == 0){
+        if((start_exposure + exposure_time - timing_tolerance) < sim_time && transition_end == 0){
             generate_smear(update.ang_rate, timestep);
             generate_centroid(update);
             start_exposure = sim_time;
@@ -1321,7 +1394,7 @@ int FGS :: set_params(hfs_parameters update, centroid_packet *cent_packet)
 
     /* Check if centroid shall be sent*/
     if((centroid.time - timing_tolerance) < sim_time && send_cent == 1 && reset_end == 0){
-        send_centroid(update, cent_packet);
+        send_centroid(update, outPacket);
     }
   
     if(transition_end != 0 && (transition_end - timing_tolerance) < sim_time && reset_end == 0){
@@ -1343,6 +1416,11 @@ int FGS :: set_params(hfs_parameters update, centroid_packet *cent_packet)
         reset_end = 0.;  
     }
 
+    if(failed == 1 && update.set_error != 111){
+        reset_fgs(input_file, 0);
+        failed = 0;
+    }
+
     return 0;
 }
 
@@ -1441,14 +1519,4 @@ int multiply_quaternion(double (&quaternion1)[4], double (&quaternion2)[4], doub
     return 0;
 }
 
-int generate_shotnoise(double *shot_noise, double* star_signal, double* bkgr_signal, unsigned int size)
-{
-    unsigned int i;
-    
-    for(i=0; i < size; i++){
-        shot_noise[i] = random_poisson(star_signal[i] + bkgr_signal[i]);
-    }
 
-    
-    return 0;
-}
diff --git a/src/HFS_API.hpp b/src/HFS_API.hpp
index cbb7639ef5fd15c2f3121b6d3ea7c8d84c201dc1..27afae073b6a81814cfff4023626f8f5ed18a96b 100644
--- a/src/HFS_API.hpp
+++ b/src/HFS_API.hpp
@@ -1,8 +1,8 @@
 /**
 * @file     HFS_API.hpp
 * @author   Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date     September, 2023
-* @version  0.5
+* @date     November, 2023
+* @version  1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
@@ -27,6 +27,8 @@
 #include <stdlib.h>
 #include <string.h>
 #include <math.h>
+#include <stddef.h>
+#include <limits>
 #include "./utilities.h"
 #include "./detector_features.h"
 #include "./fcu_algorithms.h"
@@ -188,16 +190,35 @@ typedef struct{
  * @param	mode: configured operational mode
  */
 typedef struct{
-	float x;
-	float y;
-	float time;
+	double x;
+	double y;
+	double time;
 	int validity_flag;
-	float validity_index;
+	double validity_index;
 	unsigned int magnitude;
 	unsigned int channel;
 	unsigned int mode;
 }centroid_packet;
 
+typedef struct{
+    double xErr;
+    double yErr;
+} centroidError;
+
+typedef struct{
+    double x;
+    double y;
+    double time;
+    int validity_flag;
+    double validity_index;
+    unsigned int magnitude;
+    unsigned int channel;
+    unsigned int mode;
+    unsigned int failedState;
+    double xErr;
+    double yErr;
+}outputHfs;
+
 int search_star_id(struct stars*, const char*);
 
 int multiply_quaternion(double (&)[4], double (&)[4], double (&)[4]);
@@ -293,6 +314,7 @@ class FGS{
     unsigned int fwhm_y;
     unsigned int max_targets;
     unsigned int extension_sigma;
+    unsigned int failed;
 	double offset_FGS1[2];
     double offset_FGS2[2];
 	double offset[2];
@@ -303,6 +325,7 @@ class FGS{
 	std::string catalouge;
 	struct stars* targets = new stars();
 	struct coord centroid;
+    centroidError error;
 
 public:
 
@@ -321,7 +344,7 @@ public:
 
 	int perform_algorithm();
 
-	int set_params(hfs_parameters, centroid_packet*);
+	int set_params(hfs_parameters, outputHfs*);
 
 	int set_channel(unsigned int);
 
@@ -339,7 +362,9 @@ public:
 
 	int generate_centroid(hfs_parameters);
 
-	int send_centroid(hfs_parameters, centroid_packet *);
+	int send_centroid(hfs_parameters, outputHfs *);
+
+    int calc_error(double, double);
 };
 
 extern FGS *fgsSim;
@@ -348,5 +373,5 @@ extern void createFGS(const char*);
 
 extern void deleteFGS();
 
-extern void updateFGS(hfs_parameters*, centroid_packet*);
+extern void updateFGS(hfs_parameters*, outputHfs*);
 #endif
diff --git a/src/HFS_Wrapper.cpp b/src/HFS_Wrapper.cpp
index ce95015ee1485e025c4134f9e39a2249d5d46449..7af6b6a3d1c8dfec05aef13a2fa5e5ffbdea15f6 100644
--- a/src/HFS_Wrapper.cpp
+++ b/src/HFS_Wrapper.cpp
@@ -1,8 +1,8 @@
 /**
 * @file    HFS_Wrapper.cpp
 * @author  Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date    September, 2023
-* @version 0.5
+* @date    November, 2023
+* @version 1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
@@ -54,10 +54,10 @@ void deleteFGS()
  * @param fgs: FGS object to store state of simulation
  * @param update: hfs parameters for update of state
  *
- * @return centroid packet containing the measurement
+ * @return output packet containing the measurement, failed status and error
  */
 
-void updateFGS(hfs_parameters *update, centroid_packet *output)
+void updateFGS(hfs_parameters *update, outputHfs *outPacket)
 {
-  fgsSim -> set_params(*update, output);
+  fgsSim -> set_params(*update, outPacket);
 }
diff --git a/src/HFS_Wrapper.hpp b/src/HFS_Wrapper.hpp
index 00ce174bc8924862e4b28d66aac887e723c61538..e10e3c0c283fba863c9c17b7fcf7c0bc4fee8313 100644
--- a/src/HFS_Wrapper.hpp
+++ b/src/HFS_Wrapper.hpp
@@ -6,4 +6,4 @@ extern void createFGS();
 
 extern void deleteFGS();
 
-extern void updateFGS(hfs_parameters*, centroid_packet*);
+extern void updateFGS(hfs_parameters*, outputHfs*);
diff --git a/src/HFS_config.xml b/src/HFS_config.xml
index d72c9adf97291670590d03c2feda01046eeb29fa..8484f08cb1420d36af43ec3a30244669f13f7fae 100644
--- a/src/HFS_config.xml
+++ b/src/HFS_config.xml
@@ -131,6 +131,9 @@
         decent cutoff for invalid measurements-->
   <validation_pearson_limit>0.6</validation_pearson_limit>
 
+  <!-- default failed status of the HFS -->
+  <failed_status>0</failed_status>
+
   <!--  Configuration of the Tracking procedure -->
   <Tracking>
     <!--  Iterations of the algorithm. Standard is 5 -->
@@ -138,7 +141,7 @@
     <!--  Toogle optional median filter -->
     <median_filter>1</median_filter>
     <!--  Toogle thresholding -->
-    <thresholding>1</thresholding>
+    <thresholding>2</thresholding>
     <!--  Delay of the centroid packet in seconds.
           Note: must be lower than the integration time (0.125 s) -->
     <delay>0.02</delay>
@@ -155,7 +158,7 @@
     <!--  Toogle optional median filter -->
     <median_filter>0</median_filter>
     <!--  Toogle thresholding -->
-    <thresholding>1</thresholding>
+    <thresholding>2</thresholding>
     <!--  Delay of the centroid packet in seconds.
           Note: must be lower than the integration time (0.5 s) -->
     <delay>0.1</delay>
diff --git a/src/Star_catalouge.csv b/src/Star_catalouge.csv
index 1397a680f9701831292a3063704b137967570c84..1600da1991d6bd919d48d97850f99325aaf13750 100644
--- a/src/Star_catalouge.csv
+++ b/src/Star_catalouge.csv
@@ -1,2212 +1,2213 @@
 Name,source_id,FGS1,FGS2,ra,dec
-100550790,4188002922200593920,266724.4419415532,334173.43372655084,292.84732636406,-10.89048807784
-100788584,4208198476904838912,210942.5714354476,347605.7407120059,293.22134558444,-6.38156852855
-100799124,1891333074074070784,65032.36766394037,96438.86271513968,341.95254350547,34.4377584748
-101569425,886157241858870144,25188.27291149658,39905.30968480391,107.94391923654,29.14080261282
-103444222,550127895495507584,101415.40366622408,128481.61384025944,66.64432432755,74.9489373182
-10506521,518234434731524736,1519739.1906253083,1951440.317515052,28.62277705619,64.79315595999
-108191368,5613686220543508096,941320.3367901332,1206601.3621707251,111.9795806756,-25.313420776
-111058824,6331997892820131456,136513.39217534126,205667.49154624096,219.07652860971,-5.47104935277
-112331395,6742998186846526976,106498.56887102596,141562.77045724227,290.89830939579,-34.68555805733
-113910888,6751177419488813952,155098.52276226674,241556.61450055407,294.60708690759,-32.05862120552
-115183347,1407152271104741248,54392.203192092464,78293.51254723065,249.18116804654,46.60476967936
-11523423,5656953484861270016,17378.235961162703,31625.10630864976,146.40139657202,-28.36804620696
-115508162,1359099421082795136,118253.57501872435,199237.73543882504,253.34587487683,44.85223117692
-11569594,5030174167028337408,293955.2466313909,450094.8880102496,19.96612138019,-28.80852582981
-115853715,367986445665672448,410556.2323353376,539830.1535641792,11.61853762943,38.83720022257
-116266435,1590077024185390080,117188.21487256636,168874.2451338768,221.0192255789,46.26177753598
-11652749,5035470445819705344,133764.05290994965,189837.64484843824,22.24400172083,-28.24532709319
-11801125,993920754454848768,415410.5545613925,538835.2276354186,102.25599992724,54.1972376191
-118189044,297957656739241600,330547.4498046614,476335.87833313085,30.46260055323,27.04400442943
-119738480,1186929845930937600,89979.8272547395,133323.9813830462,225.27662812845,15.69988638279
-120579932,2308785684582374144,424572.6678796928,557330.8460482261,3.93308063189,-36.09332188105
-120933166,5086797813270643584,16315.118258768987,25387.28795695236,53.65318264482,-22.2232248052
-120977978,5101009653894636160,74548.10925092088,112312.2233517478,54.86464456654,-19.79214532875
-122068964,2101384703162626560,136675.15176584915,183932.3739943189,289.66681511511,40.85507251644
-124711673,3049082293725797760,54470.82361109492,69114.26696955888,104.69162894811,-11.29443026742
-125884499,157915472050611456,54933.00899656917,264904.2150501852,69.55439166864,28.21639786419
-12696393,2028792987045677440,205205.6537597933,291227.4070051735,298.47871060548,29.38294978188
-129115451,5905902193215324032,298001.51350257127,411677.7951457486,220.44303209459,-46.78051193709
-129577681,2851335333622434944,192317.30727581176,246515.78687199985,357.27636239905,24.42692115411
-130706946,3468038829976683136,157308.67743654337,217452.61037016663,186.2762269476,-33.84127281888
-13092656,4877079057033879424,45848.22472219144,64199.286545246185,76.19012866997,-28.43781498609
-133437950,5406193399856094208,26325.894532677907,42514.40318432939,149.82317510709,-49.86877286835
-134290926,5559317539511920640,77404.73025938364,99218.7773487078,107.19136811145,-43.45071242655
-135830430,4343940128016700416,90144.99400064231,127829.5019229953,245.102546678,-10.9036407647
-138183666,1478617228377948544,324011.4996956724,441969.9498105093,211.78723312933,32.60339950115
-13883077,4817584139257635072,15792.72415345617,24574.411891368425,73.76223889003,-38.0181575438
-140213863,2901181830707674624,230628.9850808288,380858.01784530585,84.90384303372,-33.22240196025
-14197599,1002353768120398208,187932.8786883578,270515.33673687547,104.0401279731,58.5643225536
-142678745,4544154018547117952,43243.00601214425,62213.327728182834,255.67190190359,12.25959473091
-142945757,1681388578653758848,94243.44366289052,133641.2809827607,180.35435074807,67.01430841447
-143169402,2891279113592115968,87197.49185768965,118822.13637630352,90.0499218773,-30.54073007737
-144309685,757170474785810688,240586.0504152131,336882.24328891817,170.29500477026,31.54745388278
-144644879,6003907162157058688,39079.56426841186,56223.421191408735,229.81010710943,-42.66631043939
-144915835,6155411961713200384,404707.9986305932,544693.4469429478,192.95122563921,-36.06698685541
-144992248,5318644374166624512,71575.7523839818,92841.97600100216,131.51745722979,-52.11341123297
-146346698,2976303076458474112,857933.7284230146,1101640.6525694733,74.44853358592,-18.47231846018
-146613712,3822278279328024448,14108.81483680881,21954.1493986438,149.47941015338,-4.43624548182
-147027804,5390875965910463616,113850.81129576644,157379.4705622373,161.70554152376,-44.00966763735
-147349902,6566016362833509632,278279.68915534264,394612.641856024,326.30237879338,-43.41694898814
-147625771,1584873310528431872,169090.45666619574,243393.07660386807,184.32614938023,64.72306363202
-147663573,5387643710962260480,270071.51774294616,338841.1705178932,164.01198008993,-45.2739422496
-147976204,5580549177763229312,77968.99827144375,103639.9597521654,99.68773853976,-36.63476683534
-149120404,4757866643395090048,213310.7074398748,302926.7131430314,80.82107771507,-61.88009852896
-149697410,3072422692193756416,285674.04205471283,389486.54972228105,129.93326806785,-2.20210591211
-151789862,5400424640280533632,326203.1334890972,433445.20188695047,167.87362746877,-36.48222124578
-152539368,4837131467430919168,162669.4757455267,281130.0022347197,64.00012899688,-46.24961557062
-152690541,6700959910242639488,327482.1182676608,410295.445320476,304.29408851296,-31.62516049446
-152820605,6547879579229833344,271852.6593745112,431205.0329932377,344.08859758186,-36.93632091796
-153077195,4850980228700302976,23141.88217455623,36010.135757329466,49.57640246625,-42.80682896808
-15324246,1847291547410776704,57394.688726913824,86377.2238365683,322.64353256762,27.50423742343
-153540510,3329006164465138048,58513.28285268608,72472.84346466203,93.46559185126,9.0934079536
-153990952,1672408897253798912,1336105.007108895,1951782.5456958464,204.50262224478,66.88651166685
-154858209,4059196651274551040,501258.24678874505,701890.2487055945,259.96023092292,-30.03054078279
-155940660,4924287348983593984,102849.24806850376,136711.92609216756,5.46984326164,-53.19636044595
-156692936,1283586371235762176,44241.12934465319,67678.72033902442,216.69507997705,27.99740736499
-157343567,5566199520229915392,118845.52449595052,154156.30250065998,106.12225197449,-37.32051201728
-158070580,5571313177009532032,31547.210317421803,47477.57178482562,90.27989171903,-43.4637327665
-158703520,4583816873297024128,158297.61456492715,231241.197016792,269.20464106906,27.78692768515
-159953133,4186599949666377984,13649346.099280152,17920547.76747993,292.40819914459,-12.64683114445
-159976104,1345073157406879104,1514870.3066420108,2066368.490275807,269.88220386947,41.73253023415
-160189951,1723520799078552832,485479.26803513005,615046.2087120832,256.20374384619,84.1190756544
-161722484,1601791221067669376,190830.24941944296,256836.9957176235,236.46136392439,57.39109790281
-161727542,1625817852237049472,99779.17317813418,143624.66413842296,237.22106992774,57.69753398582
-162329616,1898275184333512064,357428.6594839945,452820.8670876279,331.85675931103,30.27617908732
-163450148,5372076687900979072,38997.94019719768,54608.33293476064,173.85398399253,-47.74754806173
-164464070,2105135854577044480,95127.97512863288,136859.77057314152,283.37488947362,43.78837490692
-164677569,2106733414911973504,122528.00438684884,211242.95435743828,284.34915393031,44.90263774243
-164725982,2107140646530862464,214358.222324343,304216.7104655892,284.56518727023,45.27537752235
-165191661,4852609086456829696,5174897.395926268,7148924.639568364,47.96955417817,-39.02334615391
-165557886,3458946556009961216,15408.107391431897,98343.80212314417,180.96173728763,-40.39444479501
-166235533,6112473386955659136,85214.14408650529,107956.4876104282,206.4037685061,-40.76196999188
-166346096,6670342325339961856,97802.49499465583,140779.38345750817,297.91728622084,-49.05132790856
-166802825,4741661456907148160,386220.17370209534,564801.2953826098,39.13093140576,-53.68683136538
-167020210,1867722775558075264,1574940.1145786208,2042837.5572182245,318.61089171383,36.32192637668
-167339916,5280237878945593728,58532.58600627096,106518.24872234538,98.36904041202,-67.96622924309
-1683060,5642689589240589568,125962.43478305316,163387.75326413225,132.43587265119,-28.50773038886
-168314172,5473190899624197504,169599.52106046627,231231.1342267605,154.53408299422,-24.59283147206
-168784942,4882082251554064384,887019.0247628458,1241585.3382681855,63.01537490147,-34.34009365624
-169675780,4476736535390270592,74141.78981574638,98552.65925603696,276.19220464047,5.5677624909
-169903854,3036194054642835840,75850.75236401764,96094.15066175148,120.69193200221,-11.89413494319
-171629560,721235136255345152,6785.934139573721,26090.78736138125,158.38489362283,21.48280779319
-171655448,3745740248421661312,148390.1988337246,231564.13890956368,204.23496856098,17.28981294302
-172298489,3435802897103330816,937189.0717084632,1262691.5155101437,98.57979318737,31.01080889895
-172621936,2920346180943701504,487500.16315402783,789928.5185994031,100.86441927769,-26.01664235655
-172623939,2918852460037581952,428697.7979000764,635731.5547882533,100.92095413241,-27.85945353665
-173152591,5917226230960203008,54384.69239172518,70543.19584429232,257.07912514179,-56.56286925262
-17416749,1330060219481975424,804137.8288360366,1082179.009129889,242.20099841974,35.69113165384
-175319102,3828116415488516096,1580408.9660627458,2002195.795118652,152.13593948635,-4.14669793833
-175480096,3659782559665686272,337047.90556663706,478337.6351127328,212.89342509652,-0.65368614798
-175493503,3649237315442434048,285971.46331504727,384886.83948204754,218.93913458475,-2.45712172921
-1755665,181454744691729024,32780.161465999845,56514.24919564361,78.59306781158,32.65530096657
-176783673,5677095610169599104,962449.4322842568,1312198.7082048503,142.73031226684,-21.0122743797
-179081800,4886059734867308416,4811211.576210269,6828060.732969775,64.89305686742,-28.78602406029
-179637675,4658743539871283328,491001.5652094538,739730.0627100238,80.58040104879,-67.85853638626
-180570797,1523130578669512960,776280.7835373197,1133991.177212749,197.89642514006,38.96039981675
-180937237,5529999920958496640,395370.4316756446,500888.7132890518,130.10065910413,-37.78711763566
-181079658,5528369242129382400,320438.1942262788,396885.3895975184,130.30328278855,-40.14994477348
-181412841,4293128087926743168,81072.55724177216,103920.26395619368,287.86758717466,3.94945416361
-182007233,6709992398269793536,84849.40970266442,111380.68148109752,281.53770390812,-43.33965968939
-185615679,5639569347042166016,84647.17516532996,113925.99575432572,130.41240576346,-32.19992364047
-187064502,6899120286710262656,22080.8209117009,36386.30185498845,321.25631985543,-6.19856683158
-187413972,6898265656937739648,4216976.010788671,5825592.51849951,321.84692271892,-7.01620199837
-18846631,4032743466517396096,400838.307834878,539433.3985913622,177.02450509622,37.26122855966
-18941118,654467017782614784,183186.89472055185,323966.1637889528,119.25566003744,14.28368158311
-189589853,5633599991031336064,114668.75858949758,158260.40424102527,143.89688560361,-29.0387610996
-190057184,965448862196042112,55032.173035783104,84263.50684085024,96.35105263619,46.25861770056
-190257497,5525399873539339392,1373878.273694081,1785105.3649233873,132.73259458327,-41.03757389374
-190626077,5986145307760208640,168229.690477536,215639.84676461385,235.65277909402,-48.41321263159
-191251222,388425744054751616,95915.24700376944,121513.55040872315,9.32693265131,46.27459679812
-192988913,5468913868111911552,753604.388993295,1040089.1814616092,155.30710381639,-26.81622077039
-193061690,4041379099707026688,179823.33714180932,225296.8697320763,265.38385700114,-34.76726705305
-193220820,5474175688382728576,917733.416060979,1322501.058552831,157.92571983733,-23.92146916497
-193380428,4406382703328118272,176134.25867774274,296757.1235523332,242.50826201461,-1.29847987568
-193728601,1362943760410295808,47624.26143149996,86455.03757422998,267.89359396566,47.19333667356
-194423763,1872750670435863936,27940.22180564268,43476.63580597905,312.55141656171,38.76897793065
-195929018,2070206058093537664,625495.5598393325,783670.2085363352,310.80709774014,45.1157069572
-196397320,377742721578863872,382385.9469023718,502043.5115724315,14.94518760801,45.14824607346
-197759519,6573334750883897216,71244.70605609831,101028.07591663748,331.58814052516,-40.23991659927
-198033349,4681854896303038720,75233.53381273501,117171.70049857152,60.99108658965,-58.95816424485
-199496312,3943501055493364480,647720.6904572627,962372.9331392108,198.5472758161,21.14332070303
-199957319,3222994796663604736,42249.93178094613,69676.68453317175,85.8338350716,1.86232467967
-200700661,4749451668588577920,14399.04122894328,79040.54248088521,47.25194226674,-49.41376749807
-201307068,4923086712348869504,69816.05629381629,106900.11678033366,3.87473159571,-55.20332389038
-201563847,6637997751269460992,71869.45087849855,104895.59381254455,284.93631891791,-55.53662831305
-201977462,395764988473730048,110767.50263730396,145403.01457198654,3.46934770258,51.60236716946
-20233557,2883286076374629120,40263.59085346266,61650.325047308885,90.58033174935,-38.08140426106
-20440708,650919954614453888,32804.78733493015,43605.624380149246,127.41440076747,12.81336075774
-205236947,6031982847978891264,73440.88474552605,97620.98454785702,249.07127284748,-29.07678880959
-206923242,5932406294658397696,49594.94133226357,67650.29551902557,242.70948118846,-55.35004056589
-207147439,4727470953680557184,90795.42349179307,127088.89441472432,45.48046704148,-57.25643018102
-207341633,1528404935948065664,2354701.34585339,3090984.8649496315,191.70192784441,43.1516987373
-213006022,2529126646558386688,306916.63808347605,469511.6433470879,10.23335418859,-3.73549235043
-213041411,3211458132253361280,254864.7753632608,343020.5813542283,75.18018079962,-5.87513359866
-21402602,912723710527921536,462853.6555243965,697323.1601255942,134.52149557723,41.62306817967
-217288087,5953307529661502080,78278.31589869193,96953.23615366704,260.16246145996,-43.95237436921
-21858919,1338463821214737408,56155.52496213051,77625.50476158397,257.05926917214,35.72443459667
-218966826,6556750881424232320,79167.4068001038,117303.11309737746,348.49989096163,-32.30653981316
-219121412,6503514697366717568,7905.891148130345,38124.68905833817,340.50298087975,-59.25349560259
-219252797,4780883957247519872,47314.92980246615,66254.51062860784,65.79197422335,-53.00425946968
-219488640,1385331049805915520,157156.51162729372,233053.1062761801,243.22405058622,44.28808555481
-219503785,1406602137333613184,4385965.570333092,5979803.38376015,246.20029185506,44.68995926831
-21960306,1334257089725390976,605883.5006334333,1022014.5117560636,257.7621677752,32.30539196498
-219890172,6294001549806930816,66447.1419760568,109496.1901750066,208.59749183151,-18.30218845452
-219975483,6467671030618733312,18572.427385690826,31291.47138552012,306.42543874488,-58.27795529271
-219986559,4936043980142439424,162949.7779618616,228171.52883981576,29.89129672663,-53.41263894835
-22011482,5464325266789224448,2672865.939962014,3552895.689896058,147.51739507302,-29.90577973428
-221589704,5830985181767516160,422503.79144867056,576039.540944019,248.53558580189,-59.73600701524
-223509700,4306814843030462720,308101.6309326527,409542.7843802981,286.12211543729,7.25598954842
-224774596,5992616517802445440,1594321.5092056978,2635613.343909983,246.71412632905,-42.97361682118
-22598327,5565208310497615232,9059188.258747378,12680399.177660888,108.06219736367,-38.17464210559
-22875394,126132542260518272,40502.38798608629,57434.13887503346,39.32662841432,25.1272217864
-228969128,6187143592412599552,717783.4831772922,1004701.6201729616,195.07616820735,-27.40311470596
-22939756,5589383822414426624,67094.53321782607,96528.3075009425,109.11507946712,-36.57123949154
-229436921,2240170111696922240,2015918.1511991047,2747048.0759119224,293.34444050253,62.05294743099
-230081514,1642390550485275776,775661.6947823217,1031045.0136328444,245.98870896697,66.72593589808
-230168893,1788140574912904960,44708.17926189934,77078.60698793682,318.16678934965,17.93988659764
-230222180,1301684160831676544,46180.03886927088,144232.13868364735,245.50466262807,22.83967569174
-230270908,4528108914085773568,336462.38057445566,441749.379634126,271.96917254736,20.39776778838
-231268312,6511132869838340608,54937.38054576866,77967.00783296056,334.71175073767,-52.11581359996
-231293910,4747296969393854848,1607643.0908363704,2348445.454427432,44.71383876037,-52.09599392597
-231400175,5715099885995278976,60066.65972331839,74484.36230800698,115.17442905759,-21.5572506047
-231842240,4716056889112155904,395612.8712191903,539093.1053857367,25.49042833486,-60.4384567449
-231930323,5568510556230241024,544043.3744733824,742105.8317129569,93.21410137774,-43.39375471092
-23272614,5403224924596956160,58515.21023176773,79818.04504359498,167.24273338577,-33.71837964708
-233729994,2157907984601883904,145508.63729710068,226420.0372655383,277.30176215967,60.115189847
-234278946,6398460587580731904,584690.111399593,947411.770755546,333.94266256022,-65.49309820899
-23572402,4591427108668740480,58802.94968214497,85824.64829818266,275.68870971186,30.25133483571
-236388729,1317385874070812032,38895.455892236656,59555.48037489655,244.549654336,27.98926189383
-236397733,1302455773179781632,70959.59714133185,105228.56734514098,245.10860990333,24.36305240509
-237407919,5574081090157059328,48002.1133821438,63806.60549257865,96.21891966627,-38.8688084651
-23748129,1495680858564571264,8642.167054342452,29943.06026976804,208.44433446307,38.07215105889
-237604391,3126236532172772096,46661.09772067252,71445.98298051282,103.34424786152,2.33083215972
-237851354,3112946498910549632,115750.1330140226,143364.73475607106,104.92870196372,0.19651696008
-238189792,4641598030398967936,18172.76192474802,28790.76696832048,55.65040801669,-73.30665585253
-240787309,414565159834955776,131936.7978420657,189816.2968947268,11.79105896895,49.70423763411
-241010599,2680003865503903360,14525.860989131066,23013.05007838373,328.10685001165,-1.27579698569
-241991786,3020531099187010560,119488.88923835322,162910.5498688807,93.2265653771,-5.09738241862
-242486094,6096613859434402048,109254.41198785797,150930.8291726794,214.53788470892,-44.7835591015
-242856918,4194775368371309440,57917.800361557565,82129.94696579406,295.40727957224,-8.31730443112
-246970602,87616581219696896,538527.9173536461,855370.858785971,35.51629260663,20.66849325877
-249895874,451283247565203328,49248.66864745846,75339.10036475859,38.54188286145,51.22222652545
-250297835,2653130530010654592,1328902.9522068575,1811819.5930359063,339.81838033409,-0.7158287503
-25155664,4654325152368529024,12513159.86323876,15504030.020973817,63.31322058743,-70.42017297602
-251845156,2315841869173294208,33636.077907547646,214685.66575466623,6.96039943159,-32.5569007727
-251850982,2317506254899892864,271268.1705708118,396268.6148825002,7.94433196262,-30.91823508121
-252085764,1997563248992236160,685038.480212136,868023.863243838,354.2380401532,55.67597532075
-25228605,6818163692233362048,299687.79958795925,444050.31430202577,327.02125290874,-20.23515519499
-252475665,851843030143428480,9090165.89428409,12728566.208572568,155.06091334106,53.77958926681
-253045974,773756504612064000,68484.0004793146,97192.34072355067,176.83672008389,45.50996939104
-25398947,2456730574737577344,2555538.910202732,3980098.045023666,22.62740492972,-14.07320202182
-254291947,2332394428318089728,184096.58726289243,261269.46557289344,353.76828229635,-26.64044979985
-255539185,5994498499410974592,110226.7903200459,144693.2293491035,240.51787890166,-43.22415225405
-255638124,5502327785963127680,35417.12189005306,55111.1341533942,98.15287243922,-52.03981662129
-256373151,2241172935024266624,456948.77833475504,578901.3750287426,298.50160462659,62.99560071191
-256561056,2237819802510960256,514052.3180549082,814403.4785813774,300.03455132652,61.17489046756
-257657213,4818153342684253184,398874.2849483154,544087.0100778792,71.66691702928,-38.47531876408
-258195434,1307333107977973888,37214.239723553685,57958.938719625774,252.20947587078,26.92580931419
-258276385,2093512955821072000,204088.5480316904,312208.3907755553,283.03870331812,36.36035217984
-258814849,5797166884140755200,72424.4519610735,110894.00922971146,222.60524999031,-71.67261818096
-259702141,4783849752424935040,14610.987455030909,37255.30535636036,74.41855339373,-50.65634732197
-260384178,207010865256290432,103469.96909522898,151148.9586874879,75.35491943611,46.95720164005
-260820752,6381436745968552576,42527.95954579769,66234.73752588706,348.0015491568,-70.51682352378
-265619313,3121824471186311552,470923.33622440783,642365.9724622595,94.83954934628,0.30097107959
-265885865,1838657151317794432,53896.72110429684,118092.46346033728,313.97836180065,21.4799326098
-265998891,3123757064735945856,152329.805552518,213300.83979733216,95.14144229401,1.67970475381
-267606903,5494222980814750848,172098.09643032815,244399.87745143627,114.37788753416,-49.40079497824
-270415161,578572707982017536,658604.0436738414,886410.2217661536,135.01580666571,3.6534798135
-270737039,5524091729580776448,54290.11961770536,80442.1958765731,132.05141292458,-43.26442041352
-270794015,4435664347241042816,155768.8659475048,212374.4876145745,251.25457253326,5.83685332816
-271006000,4386348703818269184,464789.9498960548,679700.2920127197,252.3019591093,3.82113121619
-271810393,5264163229401395072,239724.14642693463,340215.97556586994,112.45418425694,-72.12703245016
-272651401,1644806929148758656,141967.92476027992,201480.56243286817,233.47108909648,66.71869935639
-273591879,6059683291130785152,188826.43565113028,247869.9290459424,188.96534237579,-59.71966687234
-273849585,4701286324782937984,3352664.896963944,4348704.861128981,34.41278278361,-62.73921807036
-274233229,3086890993908048000,56104.21867002111,88990.93139643985,115.45155117308,1.23909028926
-274318544,3328745790668500352,230360.33579112423,291839.96362806513,94.02946778413,8.68736604197
-27576558,4588901083783943296,1012133.5507387192,1362091.9720216652,277.80523048928,31.0555760707
-276229915,493544213929952128,140520.1594442308,196768.63994492168,56.22827111677,68.37293714397
-276540182,1949786509523618688,60932.04388094677,85322.3868460034,328.5794225673,36.66783970566
-277168455,2187262333725493504,181847.7141032112,233095.6738548421,310.13018909596,57.50258186133
-278805095,6569498898411299456,17627054.032966953,23138797.419978503,336.16429836769,-41.440484777
-27897593,4588652972114688256,86841.4525192026,137581.28931228345,279.0402756424,30.71005390037
-279225873,3248236559980000512,3479.7541551845943,19101.38681010716,52.1092919063,-5.62684485284
-279433765,5107683586394460288,160079.845341486,234097.82788086205,58.08888507561,-17.73637605959
-281746741,3807826646384406784,342621.2088464757,670266.8209899311,163.16424127606,0.48359855185
-281814965,4903887422557813504,43543.71382566982,70319.92789864165,14.29705471267,-59.83393110438
-283174405,4384896970512708480,195857.8717774653,260247.8214515356,254.38941022563,1.69052568369
-283981447,4495471045286747008,102155.70830913754,137490.59810696432,270.66300209473,11.93975766682
-283986106,304888290846071424,41732.284295883495,62805.791783081455,29.34906770599,32.83652311049
-284043560,732422319175113856,554165.2273995524,808820.5795298228,167.18985439068,29.02126224758
-284708676,1282065471777989504,38847.34662665558,56698.854055757416,224.08853479838,30.11812209963
-285652055,5882631373237020032,48188.59839427093,73717.43729770427,233.94050614343,-57.37561295341
-286580535,4502690266835998208,3894.490109755039,24856.976599211543,268.89064380304,16.81435850733
-286853222,5421341955648248448,5370536.978796331,6728632.627148006,150.46349634659,-38.92070891656
-287224438,1086717749131140096,192023.00190316848,299653.4901280729,111.01979106041,60.36708971659
-288426012,1740088235990557184,429278.1241042857,617913.7834308438,320.76862090689,7.38912559037
-289218489,1765173593779706752,826915.287632491,1191627.4631025528,314.84160895487,18.07178378133
-289374329,2096414562705216000,668342.2136017772,846867.7407507102,278.16295639717,38.37875396237
-290190959,2180127735912151424,55758.864650520416,73315.94069550424,307.10537295396,49.97887406936
-290244882,6001918454867017600,1056810.6370621717,1520424.0500502957,234.16956828643,-42.13073839877
-29068958,933430602558871680,39621.675998438,56185.25079477984,117.81723602031,47.40659337601
-290952048,5930297122116237696,179595.42199866788,251479.7034272913,250.71010594246,-54.47903354898
-290987402,3113866996302914048,52421.37130916808,66411.82869717348,105.20727587686,1.21353089696
-291057788,3963888990369268352,477685.755369029,687592.9531058561,170.68691120293,11.58397052044
-291509053,4393107165572915072,79124.43039179241,236302.0449373752,255.16104263008,6.31165679975
-292207462,6213176832305663232,1383719.7988121307,2444864.285516775,231.02706059183,-28.1018840444
-292398116,353310473697570304,730054.4679016761,936133.134738056,31.99715578978,46.58261809472
-292644903,3152532628361105664,267191.11984120385,343090.1350510266,107.16605209024,5.12279261895
-29323830,1373340020807695488,94033.36021040588,141517.28720403402,238.04853565742,36.83606623922
-293895431,5810161737185314176,151576.45313442702,215116.9645137273,263.40186334543,-70.07251426201
-294873381,4662985249555928704,104050.90025802104,161909.34847168587,71.92010069713,-66.00652790296
-296883172,3753938791234149760,233006.2846438082,317679.5941234946,158.76681909849,-13.22607457644
-297028903,2166710124954162304,869531.1607624043,1185514.4066792089,312.08543351311,47.37321150608
-299003882,3201984469487194112,36315.50970344908,61183.98888676173,70.75983512177,-2.77786532976
-29928623,5140809775794229120,608712.7090753699,852372.8758576539,24.80934651575,-17.60001075712
-299438209,357463191676376064,391091.788779459,526367.4940664718,26.63971766953,49.42532728487
-301057374,4790923975877852160,420929.8476910542,559314.1343762119,67.88243753988,-45.00135698954
-303553151,5816489392252841856,104360.1666746514,162534.6787609546,256.91027315774,-65.74067384953
-305568030,3556510758228902656,589255.0062890557,861715.7061381057,163.57925483652,-17.06974904694
-307032089,3328158445299389696,47853.48352090585,59954.62136325194,98.42942458682,11.93836792324
-307320587,5909559581202230912,17155.956176274987,27179.86072239545,267.98538136041,-62.99686854816
-307770775,5731307988753851008,32387.70698538869,46595.90578698929,138.05946625064,-15.13868341943
-307776228,975360100526982272,18415.73224260658,29175.70034771148,112.99709836301,46.5932846056
-307945215,3355334730606870016,76581.61622037987,107233.92583106006,99.39270614322,12.94278331922
-309305474,213432215024977024,4143854.2737310287,5971507.167003255,80.50400366214,48.75901753144
-30955603,6162499924766398336,94556.06025344394,128917.25587996196,201.05982497921,-38.2379361201
-309895669,5781153871662959488,73918.91280884176,97032.36528755297,249.34950872062,-75.42734181454
-310510023,5778098466287640576,1207806.00589918,1605471.004774069,252.79274210407,-75.63474965825
-310599284,5357009942642236672,1372083.4293260956,1823836.071941075,152.63860564336,-51.69442186876
-311521283,4594134862209246208,102097.360586905,142962.51987374955,264.55744258788,26.44958555847
-31305113,2957313479853931520,236445.95143284893,331085.0421899254,82.91308041434,-24.75895271682
-31476020,2907176780419897728,1236697.8658507986,1998812.5574005847,83.94303168152,-29.08800942021
-314989959,1777789493273698048,19711.17322899361,30153.547184633702,336.20607802421,20.53332669037
-316957007,449830066851941760,260739.9765848269,370041.5933215228,53.3137412301,57.98750108337
-316965103,449929164637372928,130706.30453958346,359094.4534120456,53.50464173661,58.5978492485
-317475082,2231736788793936384,4955.948620298605,23899.140071641068,351.11465056749,73.96229415443
-31779227,4642545294025714688,219654.2765878508,411192.8820334754,49.746242246,-71.86531217135
-318339281,831846315248225024,287072.93004422885,731982.6743372739,164.59925675889,48.28766011128
-319044134,4439330119007748480,132405.76085588167,185402.06211668687,249.499981194,7.79137802359
-319244836,6498903757916891008,16659.637912768336,25072.23766647287,351.48082839817,-55.61083878939
-320388843,1301313110017638528,78815.413848371,118741.23245729886,249.74171605482,25.86428715674
-32052093,4667033376482211328,1621779.1950594776,2533097.996132939,57.44506948344,-69.65629700593
-320708958,5863887483166101504,77634.20614696135,96155.46064910654,205.62203315021,-64.85878939605
-321106481,481302079669238656,175280.33436251376,230088.1425954664,83.6430409387,67.60898480441
-321847708,2109065543494429440,321607.06004965026,456720.4856598607,274.90790592901,39.03285966696
-322077873,2726432187096347264,594496.8778412743,843022.2967336837,329.52911429138,10.38346532108
-328814963,1151214791978952832,782364.6481050525,1014816.8597187198,137.21604947253,86.83469708923
-329302300,6091116782337021184,1264459.184710114,1640148.8717324997,212.08668060254,-48.26138015502
-329919244,5857234814971341696,71690.09528779851,109669.3053667226,192.32418253426,-68.3694370403
-331552389,2224461281695739904,136026.67016716144,174361.43574788203,329.90179475931,71.2269680099
-331943891,1049580433936748032,142103.1313923876,188820.7506263166,148.61550796815,59.16875775284
-332331771,6726052891597994624,125960.54023474269,157813.3070060112,273.02398080969,-39.22326652941
-332752519,4152534326354963200,163726.0652550547,254993.4929359876,276.05943745083,-13.32945101794
-333538750,1920653819372621824,3054478.4780577742,3916692.026280546,354.54273577643,40.5126746504
-333743292,5907754732866750592,180911.9205615273,240476.40303535867,224.45883981865,-45.25223840778
-333794492,3566338949070993536,11530.202184397152,49404.73307843097,169.27513919867,-11.37435916898
-334782190,1331471958052088448,219481.9498138938,325477.7636576466,248.43923834476,38.01687210099
-334854821,1360173192970270976,18487.11638156863,47138.714552944286,259.11248460062,42.65644958478
-334898066,1365109965820392960,60493.94527530492,96085.56190351315,259.36178708646,47.40434220381
-334968591,3527848414237828224,262264.0512832949,324832.5947448427,186.45139523831,-14.07851446782
-336728841,2793290912200613248,36337.21284691834,56542.85008994032,6.71442441023,17.43003293525
-336833921,4532784690367400704,177156.79309156167,224437.21518106168,281.81303750516,24.09598345678
-33754579,4202202741278049408,543317.4350252167,696434.071248561,283.68779567592,-10.73825497892
-338150022,5251686138951379584,460435.6928305837,1375073.3520313671,156.02745435113,-63.9997332891
-339393298,283166785806905216,207128.6522579273,279068.12027881574,85.98128539581,60.62725278468
-339861887,5293339384622819456,212765.433203308,315256.60225561087,111.47657111253,-59.6407405204
-340558735,5292570104441001856,197150.48964172343,246915.4422320638,116.07493549248,-59.88727803918
-343567745,2195059245556616576,91182.57297825297,118475.19817695345,310.80376734486,61.56053005953
-344028344,5491555737403462272,1159578.856778636,1560518.4254751932,107.88223523489,-53.1681917573
-345471366,4248690810094132736,32623.18476451412,47614.50530109366,300.93343037276,5.49496130034
-345537938,3286110268793718272,56809.546542498094,78529.57923849672,69.69487752019,7.070365549
-34651613,2945224040273088000,102115.88832441128,159039.35069530166,95.82643488108,-15.44577479538
-347334021,3948239125974974336,1212029.490027363,2042069.43776618,190.40458971046,19.85129213316
-347707523,4386904614322302464,587393.2217082172,989633.9254799258,258.34567759365,1.46602607607
-347758739,506825970801459200,371180.709162625,465044.4897458913,33.41790721293,58.75818950451
-348933214,4531511417236391424,74413.8774176511,98914.33057793068,282.50240445356,21.96744503028
-349133132,6292864448625380352,2427810.3253801777,3350749.1286269384,205.00868814163,-19.22752258609
-350094259,5287697966557809280,390788.1280170576,563145.7923019922,115.11456720781,-64.19865123551
-351242989,1188763595103065600,63726.44037994736,107365.63657663645,223.78763702246,18.25093323109
-352081415,6414967486931877120,37144.94773065976,61210.01081806048,284.54257859145,-74.21265326311
-353102269,2698297849204684160,76734.12254713399,100727.8532176272,324.49417601678,4.12724660741
-353135214,1900786365814516864,26942.48157367464,46449.866304232666,338.09058565194,31.73265566853
-353632068,942884173472124800,30727.6389909347,39857.278952859,96.79768050166,36.38162612555
-353758058,957225859546553472,42093.28489636077,85685.1208431624,99.47881296308,40.58379204902
-354153863,400565417577433728,28905.632896125742,44218.94897151768,21.06764660996,49.34611103096
-358168697,5298809356198635520,49758.6199554902,213206.2646338961,139.10174477781,-62.06820144788
-359190770,5869874942445528832,315159.6383712942,460883.6700536895,201.1571847603,-59.15814929622
-359675849,2154120407562060928,2647539.568884875,3757382.2469281256,280.70710312661,57.86527395931
-362889717,1828565769191537280,423921.091140438,537059.1064314677,303.43996680611,20.35835231919
-363823958,4556424602676932992,46786.18258272359,69323.53946715893,266.23158570256,22.60516987861
-36470588,3039102438994497152,2309598.5467287973,3322798.856328495,118.99270811258,-9.79731385957
-364775266,4206465857038724864,728042.5451931467,922345.8948134602,292.16767717593,-8.78162391007
-364872760,6706259586354826752,108670.94554407708,134596.6597611195,271.55988020171,-49.28258400511
-366036237,2871338405072089088,18064702.932663105,26417490.061689448,353.87319381965,31.01830538917
-366637767,2280928389262803072,815193.8517519113,1010039.8431126456,332.80778054781,77.32036544603
-368233230,2209795067891457024,119800.1903138526,151773.01703644893,357.54119375931,66.28005755483
-36892850,3775409985581218560,41337.42065404181,56386.57189221844,156.66360745834,-6.86513371302
-36982271,6321231062644401280,224507.65793948865,328315.8789097856,230.65461540215,-8.19534179928
-369906986,412577277180678272,1187076.3424588398,1662248.3019229088,20.53632126696,56.45760706804
-370140658,4649207990898012672,271246.834971595,360421.5516037284,73.66777110117,-75.32234202396
-371703596,1127751415704739840,87097.72918079281,121959.18408704591,156.66075716491,76.51746436952
-372222012,6376850545531082240,77507.16761228452,109908.51739237794,313.47281343894,-67.98924088907
-372420452,6401165008228878336,363083.0436306077,482626.594700928,317.87284509936,-66.3093536007
-372442556,6375832535202261760,462566.4808929613,696148.1899772229,318.21089278901,-69.26836423059
-372602472,5245003826982520064,84433.39730299775,110834.5881363954,151.88065214602,-66.54607000066
-37441978,2898003383111196032,260706.84690908788,360156.6276957998,92.5305123284,-28.02529405386
-376161786,2224787153751494016,1825585.2888777668,2372016.618636106,338.10240714676,66.66598563854
-376539431,503055706765733632,56685.51005894889,85309.93217959837,84.07750029749,75.3987175944
-37661754,2897659407770122368,172776.54143434265,256849.55456527727,93.60818303706,-28.92161002557
-376871173,2266080824759954304,170289.53289906567,235248.5350125418,283.65722554019,72.53880528278
-377560051,4548742143132310528,377205.5459030809,514009.8399247364,264.41892221289,15.18505938108
-37774136,2425174213062689024,810967.8031662303,1053705.4189853678,5.49005754678,-9.90446700414
-378163077,2080744877048011008,263395.9624446901,326618.4684090544,303.477555757,42.58265602772
-379099941,3725393098554513664,91872.82707990357,123781.89506527023,205.60620811337,9.3672311413
-379234262,6633237656195032576,156128.07296203054,257828.0794505149,282.80543081041,-59.04735991006
-380332478,5814773604352883456,60772.83794185781,81880.32659535884,257.46167232973,-67.05100748101
-38138973,3785688185918317824,47460.97833908549,71427.29836396006,170.62239039249,-5.59024856483
-382327103,5164989170360710272,146090.41102795798,235925.3789652179,52.46145615743,-8.87377694428
-382463166,6534858166102087040,2449912.4938682667,3430582.1387767782,353.0191476123,-43.58995863893
-383627847,5766217345496398336,63670.943370891866,94419.95695725974,211.95941192065,-86.30822892227
-383730187,5766818743997694848,130632.80724889284,163667.0924117307,222.34131959693,-84.710557408
-383818404,5906141916804737920,58848.22863859808,73729.70557076027,222.02705909013,-46.57355334409
-384388709,5775795642261636608,141591.98829873055,183661.0805163743,249.89502005264,-78.71713822527
-384949259,5303658065047017856,19800.800736650515,34137.336043928735,137.1616927027,-58.04030281881
-38579332,3567089709355071744,39031.45534012111,76356.88877730773,180.32310876964,-18.13093361552
-38630296,5114948987432414848,1598737.4645048892,2238692.279148515,57.51867333293,-11.14029131805
-386403905,5309814226334787328,297499.7510211571,448651.09344394767,139.46345706443,-56.28087532068
-38688434,3245195551337497088,776432.3686100282,1059097.5203337166,58.03411408515,-6.24411646371
-387241527,6453716333979782016,1570597.1840506224,2264259.8814729587,310.29735783462,-62.69638262063
-387580659,2165685517552035328,2381263.3879122296,2949363.299877386,318.45299833416,48.64325787631
-387609425,7284749865978368,159971.2319398366,244719.0755653381,44.94155022961,6.67477424956
-38836078,4703771835241607680,859350.6412897566,1447863.846538094,8.12082010431,-68.00713406546
-388940910,3720194195261631488,1369397.1953737603,1971144.9484299764,208.7010104217,5.92680622952
-3898497,2377879300214104448,55532.23179699512,129564.33885108592,11.41219968358,-9.90599151901
-389853296,1521654484308159744,519519.23452109314,690568.7385826354,191.30719880867,38.77274931184
-392996381,5878360079798529280,509796.6078033407,638713.4292847723,218.48445717298,-61.45442432099
-393012524,3720205701478602624,21724.991801134893,64880.84611907754,208.33822083732,5.98430391437
-393910201,1552712114380928768,1720809.884696489,2844714.482393911,200.59984549294,47.47777691153
-394045029,6404520374118857984,3028711.579768583,4077929.174352676,334.5862809725,-64.55754656368
-394680248,4619020963575512960,60266.906252586814,97326.6660251987,54.26910024916,-82.23645721045
-394724489,5198341167666937472,70349.73057069808,95960.9980480879,160.07356519882,-81.8333828727
-395282599,1810256972130300032,124090.94913158996,173759.19059125974,302.58379816616,18.19315819411
-3958932,2523032873943091584,19778.69801551728,32592.704844402928,12.5272598487,-6.74704288252
-396293813,1731065231256681088,512891.4216392721,643491.5103206369,313.76456161917,3.43495493892
-396349389,420739806681598976,541811.9323403941,695720.4626211693,2.64625339936,55.67988978654
-396352231,422326028306036608,9956.192032038283,29733.781651509496,2.56080680641,56.92818357024
-396718866,547361528536404224,86202.94512876718,117585.67651175812,47.08039655908,73.75342815835
-398734243,2461885733787408000,1205582.9174410782,1689448.24725705,32.35641791697,-10.18169211353
-399407154,4249366670444339456,115750.19451912248,164138.78437480205,304.27893490357,5.89227189277
-400097481,310227622389577344,8024379.29178419,12522110.60695719,20.03498392935,30.56806851425
-40081742,2423926817121327616,24550.600923439142,40456.17612332802,6.98989077009,-11.87874398427
-401381481,4319471222616076544,201268.4002127092,252164.9387551424,289.35141896964,13.89517614772
-403151606,6508631171647553280,7422812.812490631,9196998.52340278,334.3119690905,-54.32141936658
-404584079,2737188361457816448,1640482.6962650488,2396417.564058017,335.97035102124,16.61250207769
-407497253,539325885245918848,232162.26041818573,375232.1860541584,7.23084683294,74.16584231202
-407589087,747381557123567744,430416.8930120109,611243.4638528462,151.59919546556,34.43199900539
-408133954,3387231421190214272,110100.98681755726,177950.68760814605,78.28268155136,11.54784111677
-408250276,5059842186202596608,32436.366686372035,50517.68895381864,51.2772659908,-29.27451050137
-408421882,2746462162218726656,739361.3371601815,970549.7076567424,357.8364090333,7.33506215545
-409639778,5945417472889770624,176599.0966299274,237683.39370811585,268.31909202512,-51.79189037151
-409799386,6445112140096445824,48590.86486328742,65398.07924471246,292.41305285002,-61.36741391917
-41045392,4335044567849011840,587285.5451355098,845353.6605492822,255.66330061422,-10.871537966
-410980645,5233440847312503040,87506.26671391139,136285.7440687099,178.2430620728,-70.52302639244
-411371194,1875350538692446464,60824.298542438446,81862.96554891874,337.89953044919,23.00779750468
-411413083,1875454545620591616,51255.78197502232,69915.77593935074,338.11139805019,23.71636141313
-412598738,5886929604726506368,89397.4592117884,123576.85058620884,231.4373989664,-54.71789550575
-413100548,5706644912150163840,213064.9109313218,263895.9759422657,127.79949611082,-20.42744247501
-415732481,1131741783919799040,54531.77975452354,80800.26596370502,141.79520048545,78.00496535596
-415972876,2358990583801959680,19176.755723816965,45232.78627247668,15.58316384219,-17.01850409783
-416678208,3276316059729214720,219834.6739623415,307824.9881939974,52.90493263336,6.45868941491
-416967221,2084096841326229120,132026.86526928603,180004.76368041665,304.21912735583,47.33279066188
-417428418,2171821101673394816,297609.6470920829,405759.4951859669,323.53576256805,52.27305302754
-417707325,2281262743878808064,294357.8333093252,365012.06570863264,348.97647326853,76.77628333051
-417748248,2228390283417893888,106260.84806126468,146795.33420528736,348.96676047588,72.38365557517
-417843105,342404280421113984,32141.672189985144,50014.34082022307,27.99080292182,36.89811759048
-418224503,2273788122097110272,66995.36063991423,97781.71518911194,322.69870661456,72.96841524502
-421435367,6689286086055138816,42213.919559675545,65687.35280655949,293.11236362851,-41.96679545815
-421883854,5836397115511763712,268707.0602945545,371208.6185297924,239.94972933145,-56.31456925495
-423002918,996132555235269120,158755.44632109068,222298.38654922764,95.97654973379,54.82178374322
-424732094,3942093027774734464,79389.77405428843,119479.14438599577,192.37691539265,19.24391267793
-424733375,1445941117187066112,42128.68262445907,69476.72566672332,199.05960703942,22.86333615884
-428468914,443671981404888192,360974.4323164597,468225.3211765117,55.87891477199,52.22042881226
-428905003,250294033837671296,857852.3435796847,1201240.015324924,57.88284757555,49.78759084683
-429010339,252050366224397824,2476193.611981414,3617224.282481932,58.43148769377,53.27274700022
-430194989,4137082515814751872,604034.7729283392,783502.5155184071,261.27806775959,-14.88084004946
-430882670,1999690426038064768,130704.90039584455,211078.8984989219,334.13578815766,48.98455459599
-431258564,5932605688644984704,127029.14085560013,168852.9463689558,242.20852372722,-54.21529447075
-432139615,5681071508639459840,118274.2714066428,167854.58217125578,137.4515867415,-18.15578609177
-435242045,2814357280110461568,136650.1908263327,202643.5372916556,352.32330421875,15.53312300524
-435822372,566213170790619392,755193.0262749733,935360.0346015492,20.12769656727,81.72567378343
-435868942,4613637415345498112,57584.26604667547,91229.67643939304,53.81960431064,-85.1480791521
-43602902,3180380234232982144,13788.820122296136,88008.53761084977,75.37178721048,-11.53677042301
-436247815,3333196059680703232,841488.2503150596,1211259.4587198386,84.31826343542,6.69644899556
-436750358,1885948761335856640,49331.18794186591,69953.75899187828,344.80698945863,29.45975254945
-43732320,4549521490718042496,435486.3973739119,564875.9024596707,265.34537548958,16.83905863286
-438512504,3357851474062952448,1326705.2584806788,1661593.7217017445,100.48541829485,16.1312957797
-438736856,6082243238162301696,660785.0223821487,867403.6359068099,201.45574062305,-50.07402800496
-441492869,5140125909625527296,136001.65107665522,215721.9884605161,23.0593001266,-19.30919823587
-441637779,1123476999828421120,735763.6742818307,990163.5948043112,124.40430932134,74.01189332958
-441742021,1655319776434680064,560296.2976452552,774514.7617400634,260.01425399517,73.93964510712
-444910849,1001359809610028288,237546.8120028977,311880.80147100805,100.11712146187,57.80470927098
-445082412,1188053070073515648,2810909.490107013,3989236.4867074313,224.12454206315,17.10301365445
-44515169,5431852840132861184,98480.92507193849,134268.39732338648,145.67849747863,-39.53201792098
-445392997,5493689064840732928,276189.5948744117,391967.65881520446,112.48609199379,-51.18042698679
-447319104,5817863777479273344,37572.63743232824,54838.37806294822,251.44418565129,-63.50496036814
-44739474,5083022399577228288,415213.2174291532,551920.4071606355,61.07334128082,-25.04848609321
-447863035,4490387590711644800,161147.92574551373,228700.7764626197,261.05949653006,8.20791882287
-448186640,5364737138549929472,1048404.9469451838,1394441.0993885514,158.30056381877,-48.12681752993
-450329942,774812585530028544,107279.1197763652,170396.79782176693,164.34974738496,37.33517484473
-45271240,5937974015380377856,73845.40306277959,91462.75991112331,251.21890723079,-48.46413503348
-452789122,3282325474891194240,114371.94614134704,156009.781409613,68.74326038335,4.73194992787
-453971320,5245142395500152320,235533.33244168165,349280.9436275928,154.6232334796,-66.62306179698
-455270228,3852953592885814784,589670.2466231285,861390.4543802222,146.11858907072,5.61167155282
-455431081,5873457288726187392,158730.1294335424,201092.75777996943,229.03544910832,-63.39099397698
-455767525,2879748943170797952,256203.8094652845,336876.00121109025,357.99193493238,37.52187220272
-456300564,1110316150585064960,53632.84748582468,73122.75396631904,117.39362156809,70.71970917853
-456902979,288541164280819072,124527.70676882386,190970.8216033056,21.9631941089,20.59044526732
-457227216,3239798461074336640,103907.32909599936,227670.11036915216,75.85875531463,5.09629116101
-457652326,5899238633046544768,104324.82570635749,133725.4405471601,217.9928500905,-50.43252680514
-457889084,3674103045782686464,13609.174827521763,26841.31139827112,211.7527817776,6.80059942696
-457926257,1173190799602256512,131796.85583307553,285365.3325270173,222.28558481195,7.33825310553
-459170245,477355485760338688,296215.8938076602,460929.4333644461,67.36451050577,65.92919791522
-459930260,3272087264996521984,242431.56970463123,322251.13462082774,59.6948368767,3.52728714125
-462589093,1316486198681936768,410690.55905153765,553330.6985677416,239.74258912226,27.03379179848
-466584294,5240258815854345600,69929.40933985202,88592.49242277871,166.50682304568,-65.10394666804
-467120792,969796094950870400,538439.3790669157,744356.6014958293,90.7410172698,48.41689259731
-46743289,2996552743449067776,409655.1880675555,526022.9232476098,85.72074475241,-13.70290865213
-467749217,170610845625707648,15429.698675018446,27287.43390444246,62.25380603495,33.28204732153
-469304547,5260018826493212544,151939.94152119727,188188.37430417925,148.82182978221,-55.786808007
-46954687,5742077640723658240,461411.7035433452,598492.058633659,143.14205233495,-7.4738695236
-470241788,2286501641906253440,160444.81952171118,224668.894678669,347.27981644447,81.1059103063
-470416214,271977330850895488,536550.697582726,697150.2105579369,65.6106219912,51.80886955701
-47678198,5466575932731126784,57596.23904239363,78564.51645081218,150.18193619289,-27.22522156432
-47881059,2144053313458298368,554860.595899003,786816.333629508,280.91121323349,49.69881705708
-48788704,6748796362632835968,41143.65782593199,176292.78302105036,301.95172015068,-31.76141198629
-48902446,5449366376733812864,43132.88519758112,61164.297544656896,163.27402180403,-35.35018847392
-50477502,3028535681277930624,63474.965146881455,85430.47735337871,112.39535460833,-15.56041563409
-50896067,5752072815599683456,167657.55289100565,248419.81952150457,127.07046481598,-9.19384744056
-52044764,2894106782622105856,204809.31466890973,262622.5782527974,98.64486603883,-30.26430588658
-53694359,5448022636085763840,758824.7036447086,1076046.26739097,157.9557868054,-32.91440622479
-54905289,4346502956482919296,39943.40217765573,61104.18934257977,239.03380468689,-10.10946995628
-55Cnc,704967037090946688,15745969.327934489,24946044.79586413,133.14676062083,28.32978300036
-56936642,817930174532227328,30010.41378516609,41484.31570816127,140.54995351992,44.49327035471
-56938364,784310407489575680,22410.355175455803,36929.331407598256,172.44152562086,44.64359649306
-57269920,5939152077710978304,6127011.63100914,8042845.982876421,252.97037118621,-49.11517125504
-57642173,6726532214272195968,247282.4134269365,328699.09854126896,274.71642605794,-39.91752587838
-58716586,6188821649018619520,192004.646900378,265247.1428062893,203.16700948084,-27.48158304173
-6077288,3507967457301065216,1151981.055812728,1552084.5850813757,200.09115058158,-18.17176274643
-61639855,5378437564522892160,83629.05035746307,115603.00191201978,176.64438054933,-46.18596514884
-62732682,3824122194686917760,701845.8452237451,890523.734419574,144.97115696712,-5.82218206611
-63281302,6600125416844257280,280203.53925076907,472096.6661749666,337.19983820474,-34.781829203
-63958788,5129714947555667840,12777.754280800938,81555.30755458663,36.77545837986,-21.16425423707
-66470401,5030724369517994368,94841.47309979968,127646.42482661858,15.10459269285,-31.30359119512
-66471305,5002127893147217280,244439.2791126691,380699.4663980288,15.13216017907,-35.96109940759
-71299087,5447063587068512384,131816.94293954712,189740.6402719973,154.38556513315,-33.29755633941
-71597658,6894862354916759936,35803.20580830748,44344.80524883462,322.76562112856,-8.00692943175
-71976077,505952099574466048,107526.23015464854,142928.78563492987,26.56962775164,57.48271826586
-72588367,5117620177915997440,91919.09037376996,154864.31642431614,31.45472550309,-27.04321981042
-72656464,5420624180713241600,39650.18340172591,49676.87939379001,152.00958564053,-39.03589816448
-72752817,6275149426516309504,103659.18704887448,137788.53453631658,209.34327364335,-23.89369704723
-72811500,1353022072422563584,108525.05053240732,160935.74396842337,253.83990484968,40.48821098463
-72988213,6133367299036588928,121648.9175930173,170339.71918242084,189.30046981299,-44.52384179798
-7586796,4868774587444927744,420141.8083506088,580409.9831404852,63.59058059539,-36.98338132514
-7617322,2113890170454489472,50118.5440724152,81004.08200399636,272.70066246891,42.2859998281
-7718417,2114891855610017536,367062.8301786248,528956.4186572281,273.9531722664,44.03392168869
-77423462,130522578657117440,71434.82769288828,105845.6759469868,42.27916723519,32.12443918835
-81107226,1033950777364407552,53979.26939974311,69191.59947828713,125.37495955584,55.86916699744
-8287857,6015744985369570560,101917.58250852644,151012.26866863473,235.21214535566,-33.46574811493
-87651997,1808713811868245248,193373.5935368207,247869.75383369453,303.24446248312,16.45067793367
-8823379,4521092032740332416,85934.38509298218,123696.1265856468,287.0708526904,22.49107367774
-88567891,1101520680334634240,14118.1623612994,21597.5308789453,107.107480838,65.1455832548
-89255850,5082605306712327808,266921.7824253634,390341.5164706699,58.6662725622,-26.28311179262
-89834070,5870041277928447872,38229.01758026784,69569.58987020583,204.18115698524,-59.2751952117
-90812697,6721691683031758464,120308.44827168496,159919.49484772107,277.31882024111,-43.87065778215
-91248261,6708330486444782208,157395.54620201615,220310.94874175903,278.00517905418,-46.69973876753
-9134886,277265363303268736,655533.8681243431,812880.5960796251,67.57092272636,55.50311911678
-93515836,3041324689436796288,334580.01131891226,496160.8632249079,114.41080780558,-9.29101330739
-9477356,3495374716268568960,172479.03225831827,297360.4317452466,192.51346399167,-28.3724891004
-95431305,625453654702751872,918400.5444715944,4428815.746760133,154.89881370111,19.86980990545
-95752782,5756462478335247872,32387.37676934528,44178.20740722999,135.54361966579,-7.60265653643
-95784600,5743499236243184896,32930.09346326153,42210.3866333723,135.80825456586,-10.0957801256
-96784659,160791480935588736,208013.7179534729,257639.7170810631,74.13367292462,33.02745283996
-9905178,948666470761991936,616145.3157299627,830143.5516232856,110.54408280458,41.10936999486
-CoRoT-11,4285511294172309504,35150.37079198191,46752.08920202963,280.68730005767,5.93765777571
-CoRoT-19,3120002649138831360,22011.784273214085,30408.4457221398,97.03359894654,-0.17073013075
-CoRoT-2,4287820848378092672,41764.84280343884,61883.37183228143,291.77704522072,1.38366174327
-EPIC246851721,3393939030531019520,107374.70233806674,146394.12876850422,78.91982004524,16.27869737323
-GJ1132,5413438219396893568,53110.22160038827,256114.1618883393,153.70885427338,-47.15487814715
-GJ1214,4393265392168829056,20594.269266065727,165591.9639040927,258.83147998873,4.96057533834
-GJ3470,654687847820642560,115960.5203468312,419014.8094259225,119.77347532186,15.39120115361
-GJ436,4017860992519744384,908827.6056747268,2838502.356554392,175.55067547084,26.70295395359
-GJ9827,2643842302456085888,395685.36013923,866981.477445433,351.77182847413,-1.28531353557
-HAT-P-1,1928431764627661440,334733.09415146033,468722.607635345,344.44536893936,38.67491310096
-HAT-P-11,2086512227851023872,668364.9039060816,1152286.5966278438,297.71020256826,48.08189581073
-HAT-P-12,1499514786891168640,36721.639714146695,66826.44647214182,209.38861950303,43.49330385068
-HAT-P-13,1014520826353577088,192312.7527092365,285187.574025885,129.88237231341,47.35190397489
-HAT-P-14,1340497608486742400,392286.2568513373,509704.7642200317,260.11617230186,38.2421672552
-HAT-P-15,179498266829041664,116166.49324487455,172125.01839667346,66.2481445206,39.46060068444
-HAT-P-16,381592313648387200,140788.87855580196,192043.9672112324,9.57303026785,42.46309539733
-HAT-P-17,1849786481032616960,241588.25937069507,382743.76377374894,324.53596511793,30.48817049886
-HAT-P-18,1334573817793362560,36675.718222271855,63230.33772467798,256.34637374628,33.01231999523
-HAT-P-19,365426679516816512,32954.07368996275,54303.99910839611,9.5165786069,34.71139790315
-HAT-P-20,869913435026514688,148720.84198503115,270643.8367013381,111.91642873573,24.33610522094
-HAT-P-21,770622651659107712,75360.83714636591,111662.88242186954,171.2749346008,41.02802258437
-HAT-P-22,846946629987527168,489320.6719125535,761411.876429913,155.68145370147,50.12872314718
-HAT-P-23,1808938730710633984,36375.99662733468,51582.73728802914,306.12390951515,16.76214539689
-HAT-P-24,3167323052618369408,79066.17481881415,105162.7271157474,108.8251182638,14.26260625049
-HAT-P-25,111322601672419712,33822.282352462826,50901.48455765295,48.4354751119,25.19735288979
-HAT-P-26,3668036348641580288,91485.054098868,147741.70185925424,213.15655609101,4.05939764185
-HAT-P-27,1159336403336463872,55303.32071651945,86055.23458582576,222.76731815666,5.9473622596
-HAT-P-28,363702817083391232,30230.69969421075,44122.6027012342,13.00092024349,34.72840239417
-HAT-P-29,359058441314838528,75129.86426750901,103854.31658492672,33.13108980256,51.7787756632
-HAT-P-3,1510191594552968832,104183.0043791393,165055.1864296034,206.09401017795,48.02856171443
-HAT-P-30,3096441729861716224,261744.78978869345,352653.41573834536,123.94984068652,5.83687022894
-HAT-P-31,4583004815239650176,75295.07418374476,104082.69089035022,271.53767106072,26.42660420232
-HAT-P-32,356348286886230272,91151.09531736172,126000.95531950222,31.04275939879,46.68785164786
-HAT-P-33,893550942158776832,118365.00441501832,157336.1795687553,113.18423829688,33.83502109508
-HAT-P-34,1810218734058821632,238478.1305941812,313568.94713579543,303.19543795825,18.10477574534
-HAT-P-36,1541532207133249920,40882.35057171,60575.77468950673,188.26620254385,44.91536839935
-HAT-P-37,2133946843094378752,15425.086789320469,23214.27654023059,284.29603837453,51.26912106289
-HAT-P-39,3169391577586325120,37715.22247281063,50132.79935244065,113.7582528046,17.83002713124
-HAT-P-4,1291120362349158016,114828.6205773041,162964.5227323671,229.99121630812,36.22954166641
-HAT-P-40,1962153854973972096,85300.15381268173,117838.92955304244,335.51292167393,45.45734141047
-HAT-P-41,4290415081653653632,131206.03515989112,174511.85039226743,297.32265186773,4.67241137575
-HAT-P-42,583455604761166848,45368.932182272,66274.94811661265,135.34435788705,6.09707821156
-HAT-P-43,601321985813952000,14973.896874397104,22186.967891142656,128.92568723949,10.20658468585
-HAT-P-44,1506159170017461888,19934.801739070703,31019.729267340485,213.14385444822,47.01478411525
-HAT-P-45,4270547520706275328,104728.26094652448,141102.2503168083,274.37327068203,-3.38106009694
-HAT-P-46,4177560894633502720,111326.50988204392,153890.04950478836,270.44418245711,-2.97098065106
-HAT-P-49,1835842749465226368,264774.5479174788,335438.7999238915,305.44132799221,26.69267609751
-HAT-P-5,4606030169272920320,51870.247841314565,72633.26616665362,274.40553558489,36.62146246082
-HAT-P-50,3151961363348862720,53886.76102953655,72525.78609658283,118.06343883065,12.13934575313
-HAT-P-51,316706322857704960,15393.58209723618,23548.62896730635,21.06512357488,32.81069773471
-HAT-P-52,128623485853170432,13264.705275123591,21421.533332868858,42.72174358638,29.02224537064
-HAT-P-53,323386882492982144,13323.766209811876,18657.10483424701,21.87110121085,38.96811328575
-HAT-P-54,3383298227579280640,23404.29750079519,45785.61885793041,99.89799235245,25.48239594407
-HAT-P-55,4593808272896243328,18409.06689102392,26484.96066881424,264.27351074481,25.73114569169
-HAT-P-56,3385777286999240576,141414.28551141662,183430.57869166275,100.84801246998,27.252179209
-HAT-P-57,4483640815570090368,231726.8526652497,290732.6121048549,274.743417428,10.59719480088
-HAT-P-6,1925321658551399040,309310.5627272103,401211.34522698674,354.77408786461,42.46598700991
-HAT-P-65,1757302881526250496,20284.26141938097,29197.6786928457,315.905490128,11.98936655352
-HAT-P-66,852608874351434752,19296.419142861625,27019.94139259525,150.57262400109,53.95082167719
-HAT-P-67,1358614983131339392,241619.0986028117,321171.16160472075,256.6107298129,44.77688234995
-HAT-P-7,2129256395211984000,218187.57359378965,293657.0137918822,292.24718620019,47.9695440641
-HAT-P-8,1891507552826485632,247587.76039971507,337559.9059882585,343.04150590197,35.44717987044
-HAT-P-9,898130030131443584,44741.03674374656,59508.24681227309,110.16851397513,37.14059288078
-HATS-1,3540018633568783488,52196.43009315789,74016.79655512839,175.52523684897,-23.35484519881
-HATS-11,6771149120491232768,14134.137192572904,19023.028825338668,289.40076063418,-22.39001198848
-HATS-13,6803000980210856704,11776.687877083492,17723.549545498074,316.96148038891,-26.09672191331
-HATS-2,3492502001623237888,16752.058657324917,26539.97330048012,176.73881941972,-22.56300991793
-HATS-22,3483606402800185728,20661.13175451123,35620.579589181354,174.00987327701,-29.54336557616
-HATS-24,5911182735242698496,29499.74314787147,39745.5290358757,268.89070713243,-61.7474024348
-HATS-25,6287125101007614080,21977.64179400928,32077.019681477534,207.90767167789,-23.78124217227
-HATS-26,5656896924435896832,25204.170484409555,34818.606352980045,144.92685896472,-28.58560093425
-HATS-27,6134228079203074176,25311.112908620984,33644.6893387791,193.55245751903,-46.58771581452
-HATS-29,6638230431120193280,36227.93108419974,52875.73944578943,285.09651807592,-54.89334604347
-HATS-3,6805886373600546176,56502.92558393481,75106.27366644602,312.45748948972,-24.42869171594
-HATS-30,4906145613282734208,43456.36592029023,61623.00740570131,5.61851897601,-59.94258995386
-HATS-31,3498553232585634816,21564.518170745352,30195.86243853721,191.70282129203,-24.42739004652
-HATS-33,6640975950310072960,43563.74336227006,63582.57466576217,294.63369567727,-55.33027462115
-HATS-35,6441034841743467776,36918.636056522526,49688.51415242866,296.68844799946,-63.56565064761
-HATS-39,5605481703444311040,28815.42571822608,37376.91860696899,112.41922538707,-29.93791712015
-HATS-4,2937583121652951936,15317.238494194957,23431.84103938684,94.11209141777,-22.54688202798
-HATS-41,2919151080524391552,26951.537493769298,35825.21688514437,103.51735584041,-27.05041616518
-HATS-43,2905983466705521792,13988.76075227653,22590.8302554678,80.53824319207,-30.97081725465
-HATS-46,4919771654727611008,12224.901695069062,18398.09737970321,6.70264549646,-56.31610112385
-HATS-5,4899428146994060800,33397.965769769915,51969.20808664656,67.22284654555,-21.48205982004
-HATS-51,5608644895310998272,37635.22281666532,54173.091228033896,102.84742225894,-29.05865600286
-HATS-52,5631530950664938240,12987.838798963368,18186.709892056697,140.0875861511,-31.2692086597
-HATS-6,2966680597368750720,5824.8103854072215,19044.41608286958,88.14680750022,-19.03162579997
-HATS-60,2596986648798061952,33886.46116176911,49501.35166127324,341.36403416624,-14.99177515713
-HATS-64,5632704511826797824,24124.5492798732,31292.312681542186,144.28760872427,-29.80044412177
-HATS-65,6766134630213144704,38698.92331512142,52139.74828338317,292.93978193913,-26.7402021548
-HATS-67,6144060260072337024,14018.169177670923,18214.065637579595,180.20878706282,-46.13641997522
-HATS-68,4904279261014267648,40544.36964870365,56010.51003741372,15.0060832427,-58.90472315716
-HATS-9,4083159643769233408,19373.312255657725,29187.32340677561,290.81017169588,-20.16637807533
-HD149026,1331356474971716992,1872914.2630531257,2553521.8778964784,247.62296892318,38.34754219061
-HD17156,545560867790611072,1938525.524028789,2677999.541992241,42.43665247105,71.7530836226
-HD189733,1827242816201846144,3586823.3833906143,5910615.344404496,300.18212180624,22.70974110517
-HD209458,1779546757669063552,3083840.023925982,4262886.672214871,330.79502626424,18.8842393829
-HD89345,3877070590167177344,624296.3201109595,925791.714059742,154.67109851528,10.12884055705
-HD97658,3997075206232885888,3227201.455210876,5112794.939816485,168.63764182701,25.71060296527
-K2-107,4081684580199958528,33603.196003634475,46421.5415742919,284.98535399579,-22.29342129583
-K2-121,662078902422542336,24243.05250993627,44117.775480875214,126.93666036517,17.57932470513
-K2-136,145916050683920128,167745.37148889995,315347.3917961517,67.41287398556,22.88256246495
-K2-140,3579426053724051584,31791.710009252187,47106.08435053765,188.13731626879,-9.60761057154
-K2-141,2643952940813536768,186472.8853441568,339345.4220457811,350.91706256738,-1.18917924034
-K2-232,3406687485600728192,413923.2769750097,564614.6849341202,73.76680173698,18.65431629612
-K2-237,6032746832450438400,67479.80949572187,92046.26351899344,253.76884656878,-28.71058441059
-K2-238,2631270761382148224,44584.54044459795,66116.03612258832,347.70431505098,-7.85756086388
-K2-24,6049750234317822208,178323.99129953125,260269.1513407659,242.57344664711,-24.9906110933
-K2-25,3311804515502788352,5791.895099752063,31793.403667180093,63.27395214949,15.24770011886
-K2-260,3394923127797114496,36850.70239946904,48983.63967106898,76.86733179408,16.86769402247
-K2-266,3855246074629979264,86400.28984671559,177698.0001648585,157.93569349072,0.93726866682
-K2-28,2622296783699476864,3398.6261140215192,18656.051278800576,335.62327885222,-7.95637953591
-K2-29,150054788545735424,72185.7857485093,110427.59710083812,62.67042446994,24.40165279873
-K2-30,61607255708760960,24668.152283823645,37124.802983368754,52.34205731811,22.29934714177
-K2-31,6050191241556876672,144026.8747317686,224114.32696928483,245.44054694052,-23.54828644033
-K2-32,4130539180358512768,84132.96969596915,130915.87239913612,252.42600550294,-19.543057889
-K2-34,665757593450097920,82135.12227385312,113466.55861520076,127.57872099903,22.23591964275
-KELT-1,2881784280929695360,193972.70241637912,254625.36484085448,0.36209766317,39.38379417761
-KELT-10,6710517793025165696,193858.4927615128,274899.7300145453,284.54838263642,-47.00330940895
-KELT-11,3761497761876022400,2371481.7648829543,3636811.708710321,161.70689415478,-9.39937543394
-KELT-12,4608935250790855296,242081.5444054585,325815.7276477012,267.64049063092,36.57017449424
-KELT-14,5560886336446650240,126669.46196507722,185038.7837982649,108.30140689028,-42.40976246789
-KELT-15,5489780919480009472,171984.40256377478,240822.3220183424,117.41497544645,-52.12044734779
-KELT-16,1864885215233116032,63283.13355299317,86321.7612918133,314.26852356886,31.66101886227
-KELT-18,1612165353793791488,248829.440720723,318954.0586059651,216.52381956465,59.44427436619
-KELT-2A,3438059369839738624,1082193.124878127,1475456.657835791,92.6640252882,30.95713303789
-KELT-3,806492023789218688,426093.1616309749,573475.5782607605,148.64311423912,40.38794129639
-KELT-4A,727624020367528576,306951.38642274955,418495.9746345237,157.06262215204,25.57313495887
-KELT-6,1464700950221781504,272887.4498668582,372053.3751927994,195.98183545376,30.64014724332
-KELT-7,181908842994567936,1365641.929330529,1730110.7469591368,78.29559292627,33.31794633424
-KELT-8,4534144923690481408,182360.1718003362,262493.84106152545,283.30544671894,24.12724385068
-KPS-1,1055895483267019392,31646.711205647644,50137.29293587888,165.16719072097,64.96384073874
-Kepler-12,2133599775377340672,26956.6481693812,38256.81495021158,286.2434465067,50.04036753869
-Kepler-444,2101486923385239808,1094506.2731944155,1767547.9481713944,289.75284986301,41.63179615254
-Kepler-447,2131587531660567296,45647.4005989822,68697.92035773932,285.26852718016,48.55988018678
-Kepler-5,2079018300195390464,22230.58684656243,29919.979414605103,299.40703409179,44.03503824705
-Kepler-6,2086636884980514304,19144.416147651427,28389.950767554063,296.83724772237,48.23997065301
-Kepler-7,2102117871259036672,22421.58686529206,31395.97856357529,288.58149231052,41.08973056538
-Kepler-854,2077841169916858240,15556.388474042424,21219.790835146578,293.35126718944,43.13463924173
-LHS1140,2371032916186181760,34576.77062967073,189801.9918301956,11.24867790844,-15.27419133989
-NGTS-2,6220602384081327104,138546.93463962327,181868.70251031863,215.12275817115,-31.20206990717
-Qatar-1,2244830490514284928,41653.00942952791,68638.70623020477,303.38187389084,65.16233923856
-Qatar-2,3620030644476623616,24754.58214977773,45048.66278540268,207.6554804868,-6.80407348858
-Qatar-3,2878641361300809856,13486.393150761012,18884.82942666742,359.15197027485,36.21295500386
-Qatar-4,385697172809355392,17569.514215360927,27835.052891191743,4.85927519276,44.02759527096
-Qatar-5,382111248777193216,32752.95785491136,47803.91277446193,7.0539375981,42.06134414126
-TRAPPIST-1,2635476908753563008,875.3053174965286,22278.38629508388,346.62652162764,-5.04352831943
-TrES-1,2098964849867337856,86259.93214224717,136659.99766175516,286.04087001232,36.632533133
-TrES-2,2131314401800665344,114808.79836253155,165174.39604293794,286.8085269792,49.31642128807
-TrES-3,4609131509318715136,48090.31682720018,71255.88789303669,268.02910631978,37.54633159012
-TrES-4,4609062308806929152,60104.878307578336,81946.68829827906,268.30433503423,37.21173673368
-TrES-5,2188601779406152448,15688.712760013308,24855.33431559996,305.22194786719,59.4489075301
-WASP-1,2862548428079638912,70592.46141775271,96245.40637177954,5.16695281581,31.98997269093
-WASP-10,1909762228985058944,115193.35260521242,203719.5329008679,348.99304976351,31.4627472774
-WASP-100,4675352109659600000,193338.7030941244,242229.9877087981,68.95981944297,-64.02703904669
-WASP-101,2924661867160818304,244089.5956132638,324653.7183296072,98.3511012403,-23.48608247185
-WASP-103,4439085988769170432,46638.944495642376,64429.93418063004,249.31485872223,7.18337615001
-WASP-104,3868603216762016256,149489.67368052993,224977.3166383404,160.60236437132,7.4350767322
-WASP-106,3788394461991295488,146160.7662860309,204662.6022407635,166.42962412075,-5.07948714461
-WASP-107,3578638842054261248,124211.37496794244,242993.60792420869,188.38641401351,-10.14621542333
-WASP-11,123376685084303360,100684.7857266794,169637.22757065142,47.36894788933,30.67337557169
-WASP-113,1587399232335653760,88322.66847435737,125347.33408254333,224.87286005601,46.96009848839
-WASP-114,2726339892544401792,42728.87855106561,60640.7289758818,327.66438278522,10.46342214887
-WASP-117,4746157737910069888,266999.06413612195,373875.4848963767,36.775824306,-50.28442125467
-WASP-118,2562569564026683520,171117.78526679982,227457.5903029748,19.55058642313,2.70278269014
-WASP-119,4672607178880426624,47124.32838069543,69824.57373703532,55.93364637887,-65.19377770049
-WASP-12,3435282862461427072,105512.19287952528,142008.06611341969,97.63664477033,29.67226537027
-WASP-120,4837286842168217088,111510.46873812447,148224.81715860133,62.61608182746,-45.89824431179
-WASP-121,5565050255701441664,181640.2904244241,238436.77254821503,107.60023051115,-39.09726684656
-WASP-123,6756148659453907072,141408.02107756824,206389.19941399328,289.47853844957,-32.86133200505
-WASP-124,6614751532833886464,26127.484305486418,36585.99282887836,332.71433724353,-30.74972095142
-WASP-126,4666498154837086208,122313.41629371718,175971.2230318981,63.37473092461,-69.22658520404
-WASP-127,3778075717162985600,672071.8230113452,996639.7483417494,160.55876726926,-3.83499645125
-WASP-129,5380888758195682944,59416.86560996429,84255.68643923386,176.29905398461,-42.06395766718
-WASP-13,702295464353437952,393019.89175983664,557772.9549041094,140.10296506822,33.88232635913
-WASP-131,6173451477191225984,175627.42365970454,245923.48690335444,210.19357298871,-30.5836096821
-WASP-132,6099012478412247296,71432.4415961868,123152.2546405319,217.60920221165,-46.15952613026
-WASP-133,6778662809294560896,31920.197755938705,46629.03335923681,314.57543964361,-35.79662367146
-WASP-135,4596481632339898240,39808.27529881158,58101.35792118375,267.28488174366,29.87904110213
-WASP-136,2441013811932929280,669131.0827345606,900578.4880251205,0.32576133519,-8.92624989686
-WASP-138,2498515516990171392,109099.09855617078,146991.15756799316,41.63916136793,-0.46413006087
-WASP-139,4851398799032507776,35205.19322783448,54781.36069318406,49.56217014617,-41.30202008157
-WASP-14,1242084170974175232,435271.2092917116,572327.2576859302,218.27662916582,21.8946865465
-WASP-140,5094154336332482304,67979.18085588512,105779.62194136989,60.38553599887,-20.45099622986
-WASP-141,2980392087185289216,25644.036153248904,36364.35285177026,71.82443580521,-17.11517382019
-WASP-142,5674618444832114304,17873.870519307064,25028.008036081326,140.50631399232,-23.94609982165
-WASP-144,6582435924022652672,12599.3516954404,20347.035763157968,320.76287528609,-40.04844499403
-WASP-145A,6458529931463278848,113894.61350827166,191893.60511742107,322.25379321308,-58.83614508765
-WASP-147,2340919358581488768,43681.45993785161,63809.888334747855,359.19151098006,-22.15323259021
-WASP-15,6171009049549197824,139192.5017893391,187338.1399007569,208.92801253851,-32.15971485103
-WASP-151,2657135741633337088,26176.8101958248,37119.84968313662,349.06346506134,0.30668797901
-WASP-153,2110106372987465216,71568.24973670211,101569.50053458272,279.26247456878,40.01869049982
-WASP-157,3630269399833507200,44456.47991604133,63959.141922744864,201.6551481058,-8.31763651818
-WASP-158,2424621502311961344,40248.176543991634,53532.47491968964,4.14634710915,-10.97642285963
-WASP-159,4864759888238232320,41567.23396743264,57423.55820341273,68.13647917292,-38.96829648082
-WASP-16,6283723285046532864,103604.8659433331,153512.33345279362,214.68301084033,-20.27543500547
-WASP-160B,2910755484609597312,27370.45591473357,42590.04658161714,87.67956527299,-27.62332661387
-WASP-164,6491038642006989056,34712.5075656578,49940.57563856018,344.87359360141,-60.44781976542
-WASP-165,2415410962124813056,32608.09635959861,48355.73200158717,357.58065133747,-17.07759524149
-WASP-167,6154982877300947840,172717.08356186264,213922.33579820133,196.0437900172,-35.54952902278
-WASP-168,5555500000779464448,62817.38012096234,87962.39972325966,96.74464282055,-46.82136062376
-WASP-17,6042793005779654656,84421.57604663586,109690.5101667449,239.9622465105,-28.06179545933
-WASP-172,6086712585429729536,93080.09844573648,116618.09392526934,199.43373864508,-47.23757471071
-WASP-173A,2323985539482908416,93005.89167819226,133806.7482916178,354.16871078451,-34.61130544227
-WASP-174,6139403450370668800,59038.61203327126,78524.87453296372,195.79401449703,-41.38486243569
-WASP-18,4955371367334610048,792916.873420966,1054626.722778456,24.35446693304,-45.6777908468
-WASP-19,5411736896952029568,53864.58206601157,81064.5230596152,148.41676021593,-45.65910531582
-WASP-2,1748596020745038208,78332.3803968863,124100.5259012764,307.72555949993,6.42932372869
-WASP-20,2359978293137038720,193990.6340002783,275311.0743815628,5.16056925249,-23.93578851011
-WASP-21,2831084391023184128,90211.04857646467,129785.83245280324,347.49280496402,18.39616223511
-WASP-22,5086537022856406272,71207.2317075435,99710.60486253798,52.81803774092,-23.81979607388
-WASP-23,5557345496687437696,36237.278493728976,57410.04289108303,101.12750170009,-42.7622417133
-WASP-24,1153682508388170112,76060.9740783673,105141.41756766185,227.21549518765,2.34328479527
-WASP-25,6186950525042445824,87283.09050631423,125573.40533781656,195.35975351046,-27.52222820094
-WASP-26,2416782701664155008,122921.94143758265,172122.2798514888,4.60304633187,-15.26740782303
-WASP-28,2641087471777046016,37567.76235626517,51244.54555715746,353.61627256956,-1.57998350122
-WASP-29,6534414719318886144,223449.1212669389,385234.8106015794,357.87918738879,-39.90713389151
-WASP-3,2095108312831835648,209831.0731160216,282709.14086950594,278.63174017603,35.66142806337
-WASP-31,3545873945303316224,54756.97213203788,74691.59644486957,169.4388560447,-19.05477789942
-WASP-32,2546413408888429696,68426.0633057545,94587.4465006323,3.9617075334,1.20051445963
-WASP-34,3537110837630877568,228500.18358099269,333502.79086861806,165.39936119816,-23.86095477284
-WASP-35,3211188618762023424,133990.29115341415,187624.9462820392,76.08189413501,-6.22977855036
-WASP-36,5750936092375254016,20266.02209911027,28738.0962657253,131.58038913361,-8.02698660212
-WASP-37,3652176997218325888,34895.6238338503,50204.02326180443,221.943882714,1.0650252097
-WASP-38,4453211899986180352,910718.254286502,1242271.0307975474,243.9597150085,10.03240488623
-WASP-39,3643098875168270592,47826.04469652972,73162.81390651331,217.32664509187,-3.44449930121
-WASP-4,6535499658122055552,39457.30886209052,59382.02456528458,353.56291675195,-42.06179163682
-WASP-41,6160877943251930368,85128.16856057825,128115.24993326938,190.61880583955,-30.63981589857
-WASP-42,6139698733664726784,90037.3046361285,140103.3648192376,192.98119362102,-42.07361580579
-WASP-43,3767805209112436736,85154.00468878343,160082.46962149825,154.90818098459,-9.80644829653
-WASP-44,2424406513428936832,19961.263135331144,30536.127218806152,3.90327548043,-11.93826871686
-WASP-45,2308834780352875904,49657.31280079465,80192.94520056488,5.23776577184,-35.99847157995
-WASP-46,6462994429708755072,19453.00947301526,28823.71248089805,318.7370153035,-55.87186569126
-WASP-47,2613413008919918976,110912.06902207003,166919.22006131517,331.20309414396,-12.01907283535
-WASP-48,2141754578242371584,61395.70634531853,85969.75283985505,291.1623880477,55.47302333003
-WASP-49,2991284369063612928,118877.31112170988,176141.66340560684,91.08972726582,-16.96539267398
-WASP-5,6533307957785865856,48745.51993784967,71145.53155936924,359.34902908017,-41.27722246039
-WASP-50,5160557726183065984,44083.30619600077,67437.2874758566,43.68807437461,-10.89802294908
-WASP-52,2666015878575546496,72136.72675780243,118871.88172181904,348.49479215734,8.76107306222
-WASP-53,5136559128264765184,35836.97949350776,56775.85687516236,31.90916263471,-20.66184185244
-WASP-54,3661983850663908608,310943.02384632843,429556.0016147421,205.45424410659,-0.12817462705
-WASP-55,3603529272750802560,44984.11403403361,63789.420248120856,203.75819687335,-17.50349655049
-WASP-56,4001613814138156416,51431.979311922565,76207.26166059558,183.36603462238,23.05568747466
-WASP-57,6340377202215639936,22184.691615637246,32871.27248720111,223.81997503357,-2.05768724912
-WASP-58,2115245554756763392,65885.77742959923,94789.2806668212,274.70125986777,45.17222589006
-WASP-6,2385171398768647552,29046.05154964723,44433.75714693364,348.1571247285,-22.67413002814
-WASP-61,2959177048983750016,48661.02782749259,66376.38469491765,75.29966378018,-26.05414330774
-WASP-62,4756649415309914240,330167.0158585102,450366.4204527277,87.139815721,-63.98832498849
-WASP-63,5574766468155514752,116209.534889274,172331.34550018195,94.33635311315,-38.32338631709
-WASP-64,5583523425437258240,28808.91265820604,44070.98924366117,101.11491919531,-32.85838790104
-WASP-65,596931979481073152,38520.37561178455,57076.013260233085,133.32429852119,8.52301766219
-WASP-66,5444147952811517696,139853.39391767714,181405.92322684385,158.22503202357,-34.98990921507
-WASP-67,6868476691490044672,40626.07414705853,64363.12982133361,295.74384876234,-19.94973604902
-WASP-68,6860535606196306304,272832.96685804334,387203.9383964864,305.09572226728,-19.31472800102
-WASP-69,6910753016653587840,474987.3224711522,840015.4465853841,315.02597080789,-5.09487006422
-WASP-7,6681720724498802176,616590.4474022444,819600.2363701867,311.04276123778,-39.22549368743
-WASP-70A,6888469489370835840,95870.37935575712,139925.66092625834,315.47719752806,-13.4333864025
-WASP-71,2507901914613201024,270580.9323160378,378882.7809471709,29.26345387291,0.75882376565
-WASP-72,5065640460769428224,155193.55490399423,211590.1113930098,41.04007915374,-30.16907956587
-WASP-73,6453566701615683456,245008.6682745033,343075.04448624083,319.9496996367,-58.1489343912
-WASP-74,4224062406762625152,762271.8276428009,1067376.2832002835,304.53884318871,-1.07601229288
-WASP-75,2605161444735454464,117209.29923805922,162022.01012887145,342.38590598498,-10.67546648648
-WASP-76,2512326349403275520,1097370.9098265104,1496149.9637304265,26.63294255818,2.70038349421
-WASP-77A,5178405479961698048,379674.98395813885,580815.1246912185,37.1555353583,-7.06066775421
-WASP-78,5089851638095503616,93686.72128644584,129424.65467625084,63.75626615164,-22.11638917444
-WASP-79,4884779765893739904,298740.10442807106,387500.2467820797,66.37090159986,-30.60043580107
-WASP-8,2312679845530628096,448757.3554972148,664928.1198573497,359.90089232021,-35.03133382683
-WASP-80,4223507222112425344,80543.59188132432,189980.57478122643,303.1667810972,-2.14444399129
-WASP-81,4244243354278985472,44121.85934061621,62566.705773165806,304.20799614419,3.29394699661
-WASP-82,3231856379348299008,721423.2419552121,947002.6093006644,72.66058935413,1.89383389914
-WASP-83,3515865416826633984,41405.52637213054,62314.03143193948,190.15195236869,-19.28435443818
-WASP-84,3078836109158636928,109143.7275473634,169834.08802740215,131.10699265673,1.85988898874
-WASP-85A,3909745223886018432,239863.4799770264,331570.64762367186,175.90802194771,6.56378575531
-WASP-88,6482103014085857024,82382.51308299678,109506.60565423894,309.51123490689,-48.46208404818
-WASP-89,6857756246957592320,20382.744288861795,33588.09391402235,313.90002834767,-18.97141759942
-WASP-90,1737061349198867456,200052.44797063377,265918.8665347365,315.53194768088,7.0562799872
-WASP-92,1424011082893734272,35804.258494926165,48239.714731431246,246.69203834502,51.0411344231
-WASP-93,415703635408772480,183375.04121426068,235465.0405072951,9.45874270048,51.2887783063
-WASP-94A,6780546169634170496,320367.7640166065,436999.6869973306,313.78324376267,-34.13575750621
-WASP-95,6518399301667782016,283865.7176038668,414310.4302361257,337.45784341161,-48.00309977059
-WASP-96,4990044668377961984,29400.319027762183,44246.56707429356,1.04657491105,-47.36063493404
-WASP-97,4911563216311083392,179343.51528382374,265735.0236504345,24.60516274398,-55.77199769303
-WASP-98,4859136199796131200,21316.587639900696,32080.80242336176,58.42901702035,-34.3282733287
-WASP-99,4745660479479743488,600619.5396575518,818881.6591326299,39.89766856621,-50.00819890986
-XO-1,1316708918505350528,98086.5177620446,141116.1995629286,240.54927183235,28.1696268544
-XO-2N,934346809278715776,140216.5146718938,218185.18114203104,117.02676263913,50.22512582327
-XO-3,470650560779277952,319588.9645086426,414543.6128161016,65.46958069345,57.81721007633
-XO-4,990291507088739072,122895.72734377012,172085.57301636392,110.38802395728,58.26811026231
-XO-5,920308932010648448,60215.39111583061,90622.29344986132,116.71638297929,39.094466195
-XO-6,1114308481603347584,983995.4506336476,1261303.0861368447,94.79294684687,73.82756411441
-BKGR0,4188002922200593920,6049.874716025214,48645.11636616277,292.847333,-10.89045
-BKGR1,4188003678115496960,4.402976638301105,35.40293328063701,292.843919,-10.888036
-BKGR2,4188002926502918912,61.76555969074934,496.6371998777027,292.851605,-10.895941
-BKGR3,4208198476904838912,26591.717058781767,213815.5303074417,293.221079,-6.381548
-BKGR4,4208198687361705984,2.829739005069901,22.75303037645933,293.220215,-6.374677
-BKGR5,1891333074074070784,171.29566846542832,1377.3339311388263,341.952515,34.43787
-BKGR6,1891333074074071168,33.17006947453722,266.7099675946152,341.946152,34.429939
-BKGR7,886157241858870144,130.84176114575502,1052.0569425395686,107.944059,29.14089
-BKGR8,550127895495507584,530.5745093770222,4266.180699775237,66.644279,74.948929
-BKGR9,518234434731524736,491752.278815491,3954023.5044770767,28.623381,64.793159
-BKGR10,518234434731517696,3.7217430080908898,29.925350558743613,28.641284,64.799355
-BKGR11,5613686220543508096,20358.528352147427,163696.44450830773,111.979674,-25.313553
-BKGR12,5613686224851041920,3.3709039745928586,27.104365594361308,111.978122,-25.316557
-BKGR13,6331997888524193408,4589.299291312786,36901.09441005628,219.076644,-5.471204
-BKGR14,6742998186846526976,1272.7595990862185,10233.854701106464,290.898411,-34.685387
-BKGR15,6751177419488813952,1266.9117999165774,10186.834409869747,294.607001,-32.058495
-BKGR16,1407152271104741248,131.1433825557275,1054.482184263628,249.181293,46.604717
-BKGR17,5656953484862777088,109.33177052408465,879.1019565371997,146.401478,-28.368259
-BKGR18,1359099421082795136,6134.036856858428,49321.83734413814,253.345833,44.852177
-BKGR19,5030174167027187072,4515.921470313468,36311.08671423535,19.965928,-28.808451
-BKGR20,367986445665672448,24702.81131437089,198627.44062714008,11.618307,38.83728
-BKGR21,1590077024185390080,2268.539685477016,18240.60532840095,221.019225,46.261719
-BKGR22,5035470445819705344,352.16515393089185,2831.6478765581865,22.244026,-28.245342
-BKGR23,993920754454848768,19895.11166960264,159970.2585116458,102.25613,54.197235
-BKGR24,297957656739241600,223.7414154126258,1799.03348408972,30.462575,27.044027
-BKGR25,1186929845930937600,1382.7586411518498,11118.321975656016,225.276706,15.699975
-BKGR27,2308785684582374144,33554.1607768152,269798.3234650354,3.932775,-36.093304
-BKGR28,5086797813270643584,48.500518460811776,389.9772268169365,53.653171,-22.223097
-BKGR29,5101009653894636160,167.78239180577555,1349.0847921140737,54.864678,-19.792084
-BKGR30,2101384703162626560,90.1044792707533,724.5014293648106,289.666834,40.855213
-BKGR31,2101384531358505216,4.484834085576964,36.06112295151127,289.679593,40.857204
-BKGR32,3049082293725797760,110.08962215233906,885.195600186889,104.691643,-11.294426
-BKGR33,157915472050611456,588499.8834211988,4731940.189549228,69.552331,28.216698
-BKGR34,2028792987034299648,8030.570168011138,64571.2578600626,298.478799,29.382929
-BKGR35,2028792918315025920,140522.66616262257,1129898.017467595,298.482928,29.383444
-BKGR36,2028792879610121984,45367.66016734144,364786.91075288935,298.478437,29.372646
-BKGR37,2028792982698890240,16.134160805701274,129.72965006775686,298.467622,29.387613
-BKGR39,5905902193215324032,16245.997465608158,130628.89304228702,220.442836,-46.780434
-BKGR40,2851335333622434944,1046.5172254982222,8414.711808611055,357.276464,24.426895
-BKGR41,3468038829976683136,3370.903974592859,27104.36559436131,186.276289,-33.841286
-BKGR42,4877079057033879424,172.0863333466625,1383.6914157082829,76.190074,-28.437756
-BKGR43,5406193399852145408,140.52266616262256,1129.8980174675949,149.822962,-49.868668
-BKGR44,5406193399852145152,2.493138361323657,20.04653177069662,149.820437,-49.868542
-BKGR45,5406193193693717376,2.3320957696170788,18.751639565288794,149.834209,-49.865295
-BKGR46,5559317539511920640,359.53931043404066,2890.9411211352653,107.191377,-43.450787
-BKGR47,5559317539512300800,1.685568401387588,13.553118845822468,107.188714,-43.446781
-BKGR48,4343940128016700416,784.7772073677846,6310.143658478865,245.102641,-10.903593
-BKGR49,4343940132314155648,14.546093711913542,116.96050819281028,245.102918,-10.901465
-BKGR50,1478617228377948544,18144.557492873893,145894.60973718824,211.787309,32.60331
-BKGR51,4817584139257635072,27.78090447510798,223.3774076956022,73.762138,-38.018112
-BKGR52,2901181830707674624,1547.9124065969393,12446.270820134674,84.903921,-33.222439
-BKGR53,1002353768120398208,146.8068705989064,1180.4273045058933,104.040089,58.564426
-BKGR54,4544154018547117952,222.20119034269345,1786.6490246961268,255.671961,12.259587
-BKGR55,4544154018547118080,8.370403254083937,67.30374750539274,255.667686,12.263463
-BKGR56,1681388578653758848,1158.100852078653,9311.920222726729,180.354276,67.014503
-BKGR57,1681388578653758976,32.79037482903937,263.65696384150823,180.354691,67.01635
-BKGR58,2891279113592115968,696.2198176266924,5598.081883442745,90.049924,-30.540836
-BKGR59,2891279109295361280,12.727595990862184,102.33854701106463,90.058401,-30.534191
-BKGR60,757170474785810688,10733.624081875329,86305.65375352414,170.295196,31.547348
-BKGR61,6003907162157058688,120.71087031168182,970.597674926806,229.810253,-42.666199
-BKGR62,6003907162157059712,1.2071087031168182,9.705976749268062,229.80683,-42.666615
-BKGR63,6003907196516805120,1.4816525784783243,11.913496638762927,229.813227,-42.659721
-BKGR64,6003907196516804736,141.17128931899038,1135.1133897522016,229.815305,-42.659206
-BKGR65,6155411961713200384,27273.845823671887,219300.31052229344,192.951044,-36.066631
-BKGR66,6155411961713199232,127.56936129780428,1025.7446172647135,192.957472,-36.071564
-BKGR67,6155412163575560448,735.7772935294302,5916.15095243408,192.944768,-36.061626
-BKGR68,5318644374166624512,379.0935376592012,3048.1704363636763,131.517565,-52.113438
-BKGR69,2976303076458474112,131143.3825557275,1054482.1842636282,74.448406,-18.47226
-BKGR71,3822278279328024448,35.13551965529291,282.5135267165092,149.479418,-4.43623
-BKGR72,3822278283623073920,1.311433825557275,10.54482184263628,149.485146,-4.438538
-BKGR73,5390875965910463616,1418.2290638381712,11403.52835101493,161.705694,-44.009628
-BKGR74,6566016362833509632,16701.150173966587,134288.6310536911,326.302179,-43.416904
-BKGR75,1584873310528431872,5429.331773283058,43655.52813883402,184.326594,64.722939
-BKGR76,5387643710962260480,5391.956516249091,43355.00559696772,164.012121,-45.273792
-BKGR77,5580549177763229312,413.75797828830815,3326.896166617926,99.687706,-36.634686
-BKGR78,5580548971604800512,321.1784376284152,2582.4935566602057,99.689035,-36.639412
-BKGR79,4757866643395090048,1108.5272695711935,8913.314829564588,80.821015,-61.880402
-BKGR80,3072422692193756416,3879.2376050558055,31191.71446808317,129.933342,-2.202079
-BKGR81,5400424640280533632,1899.9684142539093,15277.04108625544,167.873622,-36.48217
-BKGR82,4837131467430919168,19758.154684208974,158869.0309979609,64.000106,-46.249645
-BKGR83,6700959910242639488,9610.508809565776,77275.04143862856,304.294086,-31.625071
-BKGR84,6547879579229833344,27526.207611951348,221329.4713121375,344.088412,-36.93623
-BKGR85,4850980224403572864,79.20386614631397,636.8530698878303,49.576308,-42.806786
-BKGR86,1847291547410776704,720.6864905031928,5794.810610075312,322.643487,27.504253
-BKGR87,3329006164465138048,288.8992278863551,2322.946708532757,93.465578,9.093426
-BKGR88,3329006164465138560,154435.23068534906,1241764.5191601166,93.470207,9.092409
-BKGR89,1672408897253798912,138914.1165045045,1116964.181814331,204.502934,66.886406
-BKGR90,4059196646837924096,56460.71598013514,453982.6406149157,259.960878,-30.030302
-BKGR91,4059196646843930752,18.524495158879,148.94956754081852,259.961038,-30.02858
-BKGR92,4059196651175526144,2.6653017297502366,21.430842600955245,259.962615,-30.029995
-BKGR93,4059196651237137152,41.56677983420988,334.2252421601023,259.956662,-30.02807
-BKGR94,4059196646839942144,15.443523068534908,124.17645191601166,259.955666,-30.031605
-BKGR95,4059196646839960192,44.74519253413704,359.7818467023578,259.965342,-30.030708
-BKGR96,4059196646839942272,5.7114500258308105,45.9239511836703,259.954838,-30.030544
-BKGR97,4059196646843928448,64.67648083852546,520.0429900160027,259.956193,-30.0271
-BKGR98,4059196651237112448,1.899968414253909,15.27704108625544,259.962188,-30.035166
-BKGR99,4059196651169156224,1.3987702315895496,11.247066076419973,259.954766,-30.028482
-BKGR100,4059196749919179136,42145.03134231522,338874.7784267268,259.964699,-30.026979
-BKGR101,4059196646839925120,1.899968414253909,15.27704108625544,259.954974,-30.033587
-BKGR102,4059196651237110272,1345.0746293340694,10815.316834877802,259.965941,-30.033421
-BKGR103,4059196646839960320,2.097714504666992,16.867054438700215,259.966914,-30.030846
-BKGR104,4059196646843932160,7.042816631597368,56.62904616555246,259.963001,-30.035955
-BKGR105,4059196646843931648,2.598641567896713,20.894849463483737,259.961862,-30.036377
-BKGR106,4059196754316348800,4.118569330605968,33.11610467217507,259.962967,-30.024693
-BKGR107,4059196578120453120,101.79967257381708,818.5387550709673,259.966741,-30.035271
-BKGR108,4059196646839988992,28.16737535337495,226.4848969789144,259.956534,-30.023838
-BKGR109,4059196749923150208,1.1317392582718993,9.099955040219683,259.969019,-30.030718
-BKGR110,4059199601777473664,6.914270741137637,55.59544958821476,259.952592,-30.025553
-BKGR111,4059199606174644480,2.9494862856184296,23.715880132898896,259.951701,-30.026688
-BKGR112,4059196646859320320,2.206715681075634,17.743498193213323,259.963323,-30.038492
-BKGR113,4059196578120453248,7.357772935294301,59.1615095243408,259.968605,-30.035257
-BKGR114,4059199601779585280,81.04876118906591,651.6872835287018,259.954933,-30.022888
-BKGR115,4059196582449504768,2.17143273743567,17.459799277174536,259.965765,-30.03808
-BKGR116,4059196749919183616,1.705086363593382,13.710056565576606,259.969314,-30.02598
-BKGR117,4059199606106688256,4663.869405989026,37500.6889597178,259.948966,-30.029411
-BKGR118,4059196651237109120,22.842644513539188,183.67043164193888,259.957757,-30.040262
-BKGR119,4059199606174644992,357.0642592302417,2871.040022439437,259.94868,-30.028229
-BKGR120,4059196582517623296,8.526020669150071,68.55501759276194,259.964627,-30.04052
-BKGR121,4059199606106726016,2.7780904475107984,22.33774076956022,259.956429,-30.020376
-BKGR122,4924287348983593984,939.17469210314,7551.604674473051,5.469609,-53.196304
-BKGR123,1283586371235762176,464.2440872541517,3732.838894491764,216.695211,27.997269
-BKGR124,5566199520229915392,930.5642867706174,7482.371146669426,106.122253,-37.320499
-BKGR125,5571313177009532032,126.39979836343169,1016.3405340876844,90.279714,-43.463825
-BKGR126,4583816868998946688,677.2458947348692,5445.518610595048,269.204714,27.786957
-BKGR127,4186599949666377984,22581166.92400752,181567973.59661448,292.407692,-12.646664
-BKGR128,1345073157406879104,905203.8265021106,7278455.760191557,269.8823,41.732567
-BKGR130,1723520799078552832,2646.9539216990343,21283.313718191675,256.204219,84.118996
-BKGR131,1601791221067669376,4413.126547703814,35484.54547050483,236.461317,57.391174
-BKGR132,1625817852237049472,1468.068705989064,11804.273045058935,237.221338,57.697475
-BKGR133,1898275184333512064,1839.6973431178628,14792.420593014464,331.856717,30.276146
-BKGR134,1898275768449061248,4.750577211949482,38.197878820464574,331.853393,30.285744
-BKGR135,5372076687900979072,141.49672275063455,1137.7300963609907,173.853999,-47.747555
-BKGR136,2105135854577044480,624.8077116402526,5023.879876174495,283.374818,43.788227
-BKGR137,2106733414911973504,25278.21370762944,203254.0680684139,284.349302,44.902134
-BKGR138,2106733380552231680,1.732791788233428,13.93282706395057,284.334379,44.899223
-BKGR139,2107140646530862464,1048.9296968556214,8434.10972268684,284.565096,45.275345
-BKGR140,4852609086456829696,21465765.5243142,172599386.07539874,47.969021,-39.023266
-BKGR141,3458946556009961216,4974.465018352366,39998.0893878974,180.963642,-40.395042
-BKGR142,6112473386955659136,246.4599642494426,1981.706101906076,206.403853,-40.76189
-BKGR143,6670342325339961856,359.53931043404066,2890.9411211352653,297.917125,-49.051144
-BKGR144,4741661456907148160,6648.847640746881,53461.26694628743,39.130654,-53.686798
-BKGR145,1867722775558075264,82555.57015963712,663803.0547067159,318.61095,36.321953
-BKGR146,5280237878945593728,1428.0597580647018,11482.573833286327,98.369992,-67.966393
-BKGR147,5280237883244424320,3.095610999484677,24.890822432310006,98.361016,-67.971123
-BKGR148,5280237780165206912,1.569446013171702,12.619415694496752,98.352015,-67.974884
-BKGR149,5642689589240589568,115.81008520786526,931.1920222726728,132.436015,-28.507792
-BKGR150,5642689584941105280,26.53055780669777,213.3237682339871,132.437258,-28.507895
-BKGR151,5473190899624197504,285.592225771056,2296.356157443203,154.534159,-24.592833
-BKGR152,4882082251554064384,31242.543354006364,251211.34376631127,63.015084,-34.340122
-BKGR153,4476736535390270592,178.9560483107758,1438.9286064796013,276.192249,5.5678
-BKGR154,3036194054642835840,275.2620761195135,2213.294713121375,120.691926,-11.894098
-BKGR155,721235136255345152,3124.254335400637,25121.13437663113,158.38407,21.483133
-BKGR156,3745740248421661312,46.53142804015292,374.1443976850006,204.235117,17.289787
-BKGR157,3435802897103330816,215152.49224372127,1729972.68752402,98.579888,31.011438
-BKGR158,2920346180943701504,133274.29110089957,1071616.141413347,100.864402,-26.016691
-BKGR159,2918852460037581952,8030.570168011138,64571.2578600626,100.921005,-27.859444
-BKGR160,2918852387023656448,589.8565157613014,4742.848438256525,100.926279,-27.866131
-BKGR161,2918852391318109056,9.654868902699375,77.63172682366336,100.926331,-27.868202
-BKGR162,5917226230960203008,171.6905457629539,1380.509013762869,257.079237,-56.56279
-BKGR163,5917227712752895104,1.899968414253909,15.27704108625544,257.090548,-56.560925
-BKGR164,5917226235284150400,291.57237952962936,2344.440669789017,257.068927,-56.567383
-BKGR165,1330060219481975424,160230.94023945954,1288365.9743832117,242.201067,35.691277
-BKGR167,3828116415488516096,564607.1598013502,4539826.406149147,152.135897,-4.146677
-BKGR168,3659782559665686272,3628.660867135761,29176.906699835294,212.89357,-0.653477
-BKGR169,3649237315442434048,6772.458947348692,54455.18610595048,218.939263,-2.457168
-BKGR170,181454744691729024,236.9989277522633,1905.6329197407144,78.593244,32.655586
-BKGR171,181454744691728512,2.969931147833276,23.88027076050924,78.600811,32.657898
-BKGR172,181454706035154560,1.240927420414396,9.977902287484143,78.582688,32.652081
-BKGR173,5677095610169599104,266530.1729750237,2143084.2600955246,142.730226,-21.012403
-BKGR174,5677095507090385024,38.70315606147031,311.1997551554148,142.729656,-21.02331
-BKGR175,4886059734867308416,2305400.490091319,18536991.322157737,64.892717,-28.786245
-BKGR176,4658743539871283328,12610.908689435382,101400.3015724732,80.580239,-67.858719
-BKGR177,4658743574231021952,1.4512638624745002,11.669150648868523,80.58267,-67.856888
-BKGR178,4658743741708030208,5.831044840593928,46.88557501127309,80.561819,-67.859047
-BKGR179,4658743574231014272,7.54651398400506,60.67911620358103,80.573529,-67.851814
-BKGR180,4658743539871544448,1.0109888855705411,8.129039739154694,80.598296,-67.864128
-BKGR181,1523130578667569152,41090.9688400319,330399.3974498346,197.896765,38.960583
-BKGR182,5529999920958496640,15876.193414946069,127655.41641317846,130.100825,-37.787189
-BKGR183,5528369242129382400,9413.397133651746,75690.12921117882,130.303342,-40.150005
-BKGR184,4293128087926743168,426.3304780502562,3427.9876342335288,287.867571,3.949431
-BKGR185,4293128087927703808,5.342522761772323,42.95752451648039,287.861921,3.952814
-BKGR186,4293128092260542336,38084.335392493,306224.0151830728,287.862944,3.943311
-BKGR187,4293128092260554496,1.4313517757965128,11.509043899719146,287.85912,3.94886
-BKGR188,4293128092260559104,1.9986943332634808,16.070864767571646,287.856951,3.949627
-BKGR189,6709992398269793536,80.86235421106971,650.1884443689304,281.537746,-43.339581
-BKGR190,6709989439033629696,11343.4818670432,91209.32603085562,281.549354,-43.344158
-BKGR191,5639569347042166016,106.1075730302208,853.1772110443637,130.412336,-32.199863
-BKGR192,6899120286710262656,116.88166273282462,939.808235970278,321.256237,-6.198632
-BKGR193,6898265656937739648,10465172.254982242,84147118.08611071,321.846861,-7.015783
-BKGR194,4032743466517396096,3764.838761020183,30271.86978675007,177.024467,37.261185
-BKGR195,654467017782614784,29427.02655405245,236613.35122201184,119.25569,14.284005
-BKGR196,5633599991031336064,177.31536939809024,1425.7364297200245,143.896933,-29.038769
-BKGR197,965448862196042112,70.10457828505442,563.6885933264055,96.351159,46.258827
-BKGR198,5525399873539339392,440297.6638301105,3540293.328063701,132.733228,-41.037926
-BKGR199,5525399873535527040,1.8186385017713085,14.623093154691452,132.730692,-41.03437
-BKGR200,5525399873539342336,4.342565534069848,34.917186825862714,132.726063,-41.042187
-BKGR201,5525401351008087936,11.034340494130609,88.72361867908279,132.729611,-41.031033
-BKGR202,5525401144849655808,27.526207611951342,221.3294713121375,132.743186,-41.036819
-BKGR203,5986145307751858688,1196.0418640062196,9616.991819561226,235.652782,-48.41312
-BKGR204,5986145307751858304,2353.6743860932606,18925.14634993744,235.650971,-48.415512
-BKGR205,5986145307751857024,2.969931147833276,23.88027076050924,235.651104,-48.420097
-BKGR206,388425744054751616,83.51151860820063,671.4895318162744,9.327041,46.27462
-BKGR207,388425778414490368,309.5610999484677,2489.0822432310006,9.318284,46.269466
-BKGR208,5468913868111911552,7616.341018175157,61240.57315304659,155.307111,-26.816204
-BKGR209,4041379099707026688,290.2327261338692,2333.668943367236,265.383873,-34.767265
-BKGR210,4041378996628128896,4750.577211949482,38197.87882046457,265.38134,-34.767521
-BKGR211,4041379099649851520,1.7609473898092949,14.159217291733208,265.382013,-34.765091
-BKGR212,4041379099649851648,3.6286608671357614,29.176906699835293,265.380924,-34.764389
-BKGR213,4041379099707014784,10.684307558913495,85.90911529432294,265.388208,-34.765457
-BKGR214,4041378996627831808,96.99433752719648,779.9005859363116,265.382277,-34.772621
-BKGR215,4041378893548604672,1.3891411650450476,11.169641818143337,265.387342,-34.772259
-BKGR216,4041379095273330176,2.151524922437213,17.2997268752402,265.390003,-34.763897
-BKGR217,4041378889110621824,53671.82726398225,431558.07440527546,265.389682,-34.771919
-BKGR218,4041378889114884352,11.448441812471875,92.0532755337502,265.391332,-34.770573
-BKGR219,4041378992189823744,2.935934627108613,23.606915561546973,265.382067,-34.774368
-BKGR220,4041378889110633088,6.39361352844447,51.40901071349682,265.392746,-34.769821
-BKGR221,4041379099642778624,1.485068140420455,11.940960084855568,265.376647,-34.761845
-BKGR222,4041378996627841664,20.405459606914853,164.07380378540554,265.379044,-34.774525
-BKGR223,4041378790469400064,37475.40898174495,301327.83179090987,265.386825,-34.775242
-BKGR224,4041378786033492096,457.8744195843553,3681.622424803511,265.38346,-34.776161
-BKGR225,4041379095271148032,20171.880242312804,162195.66648419772,265.390564,-34.760036
-BKGR226,4041378992199146112,14.748450032501866,118.58759093823858,265.373475,-34.771015
-BKGR227,4041378893548588288,21.416395633608225,172.20241850315873,265.394261,-34.771236
-BKGR228,4041378893484429056,1.5126776185058146,12.162959107531814,265.389426,-34.775684
-BKGR229,4041378889114887808,1.2495291183618324,10.047065801976649,265.395545,-34.766747
-BKGR230,4041379095269117184,11.39584100036827,91.63032915124796,265.388217,-34.757896
-BKGR231,4041378992194115200,96.77125674131037,778.106864363906,265.371825,-34.764053
-BKGR232,4041379099706994688,9.834366317081106,79.07500838235345,265.384001,-34.756405
-BKGR233,4041379099642617472,1.385946229023976,11.143952354836632,265.381834,-34.756496
-BKGR234,4041378786031379840,8.545675176649546,68.71305322974777,265.390079,-34.777039
-BKGR235,5474175688382728576,8447.853641809876,67926.50141359401,157.925696,-23.921494
-BKGR236,4406382703328118272,6618.298960744354,53215.63473681055,242.508718,-1.298437
-BKGR237,1362943760410295808,198.037019347361,1592.3526193761684,267.893694,47.1936
-BKGR238,1362943760410296064,191.3138366130405,1538.2936476100774,267.897876,47.193489
-BKGR239,1872750670435863936,105.86353238430766,851.2149579109109,312.551404,38.769146
-BKGR240,1872750674745742208,14.816525784783249,119.13496638762928,312.55367,38.777653
-BKGR241,1872750674745469056,1.0345378418780633,8.318389399048764,312.543864,38.777607
-BKGR242,2070206058093537664,47287.5029232124,380223.7550922769,310.806994,45.115757
-BKGR243,2070206053790764416,21.51524922437213,172.99726875240202,310.798057,45.116199
-BKGR244,2070206019431059200,32.86596444968384,264.26475591405875,310.82188,45.115818
-BKGR245,377742721578863872,2562.986868925051,20608.161381186303,14.945234,45.148239
-BKGR246,377742717282521984,664.8847640746881,5346.126694628742,14.945533,45.147114
-BKGR247,377742717282522112,1345.0746293340694,10815.316834877802,14.944092,45.149658
-BKGR248,6573334750883897216,829.3662935780746,6668.670303934011,331.5881,-40.23988
-BKGR249,4681854896303038720,198.037019347361,1592.3526193761684,60.99075,-58.958202
-BKGR250,4681854896303038848,399.7112586144677,3213.950966069084,60.997796,-58.958145
-BKGR251,3943501055493364480,26469.539216990343,212833.1371819168,198.547245,21.143419
-BKGR253,3222994796663604736,102.50531419332049,824.212594663484,85.833834,1.862602
-BKGR255,4923086712348869504,175.68973232008872,1412.6651995639584,3.874719,-55.20327
-BKGR256,6637997751269460992,488.3670799392296,3926.804198129766,284.936199,-55.536579
-BKGR257,6637997716909722752,5.454392430100369,43.857032901215526,284.928505,-55.544132
-BKGR258,395764988473730048,722.3478444433277,5808.169028147867,3.469226,51.602371
-BKGR259,2883286076374629120,238.09286509897268,1914.428921645846,90.580287,-38.081417
-BKGR260,650919954614453888,82.55557015963711,663.8030547067159,127.41442,12.813326
-BKGR261,6031982847978891264,353.7906744247947,2844.7181692986346,249.071285,-29.076487
-BKGR262,6031982847978890880,20977.14504666992,168670.54438700216,249.076757,-29.074312
-BKGR263,5932406294658397696,186.10000343545485,1496.370875066442,242.709561,-55.349976
-BKGR264,5932406505222125440,1.5803248932157932,12.706889305194268,242.704738,-55.345776
-BKGR265,5932406299063677184,3.2266092993845104,25.9441380531306,242.716971,-55.352848
-BKGR266,5932406294658934272,3.197027567518248,25.70628076574988,242.714643,-55.355503
-BKGR267,5932406500817377280,84.28424117597314,677.7027479558559,242.70367,-55.344494
-BKGR268,5932406402142902016,6.248077116402526,50.23879876174495,242.718021,-55.345543
-BKGR269,5932406299063671680,2.1416395633608225,17.220241850315873,242.71567,-55.3577
-BKGR270,5932406397738161280,435.2576181494755,3499.7679254506784,242.723149,-55.346382
-BKGR271,5932406402142910464,3.211784376284152,25.82493556660205,242.716201,-55.341515
-BKGR272,5932406402142900864,1.221086363131282,9.818366663083829,242.722792,-55.344246
-BKGR273,5932406500817372672,134.19810435326997,1079.044229641873,242.691771,-55.348888
-BKGR274,5932406397738157440,6.148177272192091,49.43553592165576,242.72806,-55.348129
-BKGR275,4727470953680557184,123.23849361391274,990.9214891276448,45.480378,-57.256413
-BKGR276,1528404935948065664,1917548.6055403007,15418397.807015404,191.701872,43.151932
-BKGR277,2529126646558386688,22016.403758473924,177026.89279804318,10.233327,-3.734955
-BKGR278,3211458132253361280,8724.61720278213,70151.86908835708,75.180019,-5.8751
-BKGR279,912723710527921536,12126.804637336278,97507.77502389636,134.521889,41.623337
-BKGR280,5953307529661502080,157.30639598824777,1264.8506452076588,260.162461,-43.952354
-BKGR281,5953307533997415552,24702.81131437089,198627.44062714008,260.165895,-43.954834
-BKGR282,5953307568356864640,4.099646223423027,32.963949992263224,260.156577,-43.952522
-BKGR283,5953307568356864000,81.42286527303817,654.6953353565657,260.155192,-43.955509
-BKGR284,5953307499637385472,2.1073971148844763,16.944909224603485,260.165792,-43.95842
-BKGR285,5953307529663623808,49.516094276936016,398.1431486042363,260.165589,-43.945946
-BKGR286,5953307495301838592,1.0857913590974322,8.73050261235335,260.162458,-43.961365
-BKGR287,5953307598383100800,1.2071087031168182,9.705976749268062,260.152754,-43.94659
-BKGR288,1338463821214737408,277.80904475107985,2233.774076956022,257.059218,35.724518
-BKGR289,6556750881424232320,1235.2258768205486,9932.057990765936,348.499657,-32.306583
-BKGR290,6503514697366717568,12323.849361391272,99092.14891276447,340.500216,-59.253471
-BKGR291,4780883957247519872,189.5598608161963,1524.190486677684,65.791794,-53.004322
-BKGR292,4780883952952082944,48.83670799392296,392.6804198129766,65.7927,-53.00518
-BKGR293,1385331049805915520,333.231755587514,2679.410448701888,243.224108,44.288044
-BKGR294,1406602137333613184,14346513.824129466,115355749.85956983,246.200303,44.689983
-BKGR295,1406602068614136192,52.089043319973,418.8314126555905,246.203415,44.683216
-BKGR296,1334257089725390976,400632.68822799047,3221359.888216565,257.762098,32.305466
-BKGR297,6294001549806930816,1801.965123766936,14489.027830811065,208.59776,-18.301659
-BKGR298,6467671030618733312,70.26618602835214,564.9880297358186,306.42515,-58.277779
-BKGR299,4936043980142439424,537.9555360390157,4325.52918511219,29.891097,-53.412666
-BKGR300,5464325266789224448,2031170.5036270767,16331995.313346388,147.517495,-29.905424
-BKGR301,5830985181767516160,34573.74154749686,277996.44781679,248.535525,-59.735874
-BKGR302,5830985078688296704,1.385946229023976,11.143952354836632,248.530634,-59.744125
-BKGR303,5830985250487554176,3.032119972716252,24.380311301033824,248.522115,-59.729206
-BKGR304,4306814843030462720,13764.054422921854,110672.37926426515,286.122129,7.256043
-BKGR305,4306814847331642496,1.6171353887545514,13.00287077969255,286.122964,7.252938
-BKGR306,4306814847331646976,20.12548620517641,161.82262680302583,286.118783,7.259341
-BKGR308,4306814847331642880,44.9517269588411,361.4425242527101,286.119002,7.249721
-BKGR309,4306814636873898368,8.012100369156217,64.42274808808709,286.129158,7.253582
-BKGR310,4306814847334812288,48.94928823278975,393.58564166917455,286.114653,7.253107
-BKGR314,4306814843036025600,11.527798619985084,92.69135835647408,286.116601,7.26426
-BKGR315,4306814843032115200,36.79140568166083,295.82797903539824,286.116395,7.247582
-BKGR316,5992616517802445440,475057.7211949492,3819787.882046465,246.714036,-42.973782
-BKGR317,5992616513468621696,19.35291464333873,155.61062485408735,246.71171,-42.972691
-BKGR318,5992616517802448512,15.301935997992778,123.03799536182518,246.711689,-42.970406
-BKGR319,5992616483442706944,38.70315606147031,311.1997551554148,246.710061,-42.975773
-BKGR320,5992617273716695040,917.796466102902,7379.709165838957,246.70696,-42.969685
-BKGR321,5992617995271291648,5.804253623146858,46.67015536186253,246.72275,-42.965466
-BKGR322,5565208310497615232,3197027.567518241,25706280.765749823,108.062395,-38.174545
-BKGR323,126132542259723392,174.48029270985882,1402.9404807327337,39.326617,25.127228
-BKGR324,126132439181092736,12.295505294399623,98.8642432945792,39.3172,25.124981
-BKGR325,6187143592412599552,21025.502360197097,169059.37014854292,195.076363,-27.403164
-BKGR326,5589383822414426624,616.2350284549642,4954.949660146387,109.114928,-36.571136
-BKGR327,5589383822414426368,1.8270329556877023,14.690590285914968,109.114702,-36.567383
-BKGR328,2240170111695047680,1635860.9340207006,13153436.927133393,293.343877,62.053188
-BKGR329,2240170863315050496,10.226955851282684,82.23169582991113,293.330405,62.056862
-BKGR330,1642390550484693632,133274.29110089957,1071616.141413347,245.98865,66.726028
-BKGR331,1788140570615534080,620.5065656070938,4989.295730367862,318.166862,17.940132
-BKGR332,1301684160831676544,100402.9287035299,807307.9823206046,245.504948,22.839373
-BKGR333,4528108914085773568,1921.9690116020176,15453.940884740354,271.969147,20.39784
-BKGR334,6511132869838340608,295.6285553714277,2377.0550882832126,334.711623,-52.115772
-BKGR335,4747296969393854848,2227134.1698762625,17907676.760597,44.713064,-52.095997
-BKGR336,5715099885995278976,137.32397976206246,1104.178398553513,115.174438,-21.557257
-BKGR337,5715100092153712640,5.367182726398226,43.155807440527546,115.167397,-21.55283
-BKGR338,4716056889112155904,35297.697845344235,283817.5499066429,25.490174,-60.438442
-BKGR339,5568510556230241024,62624.80421684928,503546.111536386,93.213753,-43.394062
-BKGR341,5403224924596956160,1654.8033108817444,13305.746548391564,167.242852,-33.718395
-BKGR342,5403224924596957056,52.3294754197401,420.7646506184116,167.25187,-33.712044
-BKGR343,2157907984601883904,7920.386614631398,63685.30698878303,277.301587,60.115185
-BKGR344,6398460587580731904,40902.17298759048,328881.3501112452,333.942319,-65.493057
-BKGR345,4591427108668740480,546.6966103222037,4395.813380344305,275.68863,30.251291
-BKGR346,4591427211747958272,4.557706777209545,36.64706906292289,275.689463,30.262402
-BKGR347,1317385874070812032,34.653442253007704,278.6372958138189,244.549695,27.989285
-BKGR348,1302455773179781632,203.58528352147425,1636.9644450830772,245.108589,24.362988
-BKGR349,5574081090157059328,117.69184771373686,946.3226754462228,96.21888,-38.868816
-BKGR350,1495680858564571264,4006.326882279904,32213.598882165643,208.44391,38.073204
-BKGR351,3126236532172772096,45.78744195843554,368.1622424803512,103.344388,2.330875
-BKGR352,3126236536473599232,1.35752045164394,10.915389729434208,103.350776,2.337839
-BKGR353,3112946498910549632,671.0368670507937,5395.593795885658,104.928761,0.196545
-BKGR354,4641598030398967936,55.30270587154722,444.67145003170594,55.65043,-73.306587
-BKGR355,414565159834955776,4043.3969685075945,32511.6676427423,11.79077,49.704288
-BKGR356,2680003865503903360,46.74620735334057,375.8713697585516,328.106894,-1.275721
-BKGR357,3020531099187010560,149.8809306739878,1205.1448428166962,93.226515,-5.09737
-BKGR358,6096613859434402048,244.76334578937104,1968.0641330566127,214.537988,-44.783485
-BKGR359,4194775368371309440,197.127121894512,1585.0364236609296,295.407277,-8.317173
-BKGR360,4194775364073921792,25.453433914215875,204.66295796104623,295.404346,-8.31744
-BKGR361,4194775368371313024,1.0345378418780633,8.318389399048764,295.40004,-8.317003
-BKGR362,4194775368371312512,48.27767882024971,388.1854442173032,295.399377,-8.318331
-BKGR363,87616581219696896,267144.5884786751,2148024.579536046,35.516238,20.668531
-BKGR365,451283247565203328,504.3666720056267,4055.451823810248,38.541978,51.222328
-BKGR366,2653130530010654592,645277.2906041507,5188469.24329438,339.818409,-0.715827
-BKGR367,4654325152368529024,8293662.935780747,66686703.03934012,63.312508,-70.42041
-BKGR368,4654325148073798272,108.57913590974324,873.0502612353351,63.316364,-70.42231
-BKGR369,2315841869173294208,95443.50532270531,767430.8379509469,6.959792,-32.556629
-BKGR370,2315841869173294080,121268.04637336278,975077.7502389638,6.9593,-32.551693
-BKGR372,2317506254899892864,21664.385807259525,174196.42853166026,7.943713,-30.918083
-BKGR373,1997563248992236160,8236.569761717734,66227.63500464971,354.238026,55.675995
-BKGR374,1997563180272763776,23.16041735261289,186.2255418649324,354.250315,55.674065
-BKGR375,1997563180272766080,261.0636352382837,2099.129570650576,354.244271,55.668465
-BKGR376,6818163692233362048,28297.390050699007,227530.3037645933,327.021183,-20.235403
-BKGR377,851843030143428480,119054655.08110122,957280575.5816586,155.061633,53.779415
-BKGR378,773756504612064000,190.4348293789252,1531.2258303085096,176.837005,45.51001
-BKGR379,2456730574737577344,1155437.2940318242,9290503.400524974,22.62729,-14.07332
-BKGR380,2456730574737576960,2.765326281344772,22.23510817341427,22.625374,-14.06855
-BKGR381,2332394428318089728,6176.555969074933,49663.719987770266,353.768123,-26.640352
-BKGR382,5994498499410974592,376.4838761020183,3027.186978675007,240.517909,-43.224098
-BKGR383,5994498572457450752,3.537906744247947,28.447181692986344,240.515732,-43.213608
-BKGR384,5502327785963127680,308.8491291755664,2483.3575129311566,98.152875,-52.03997
-BKGR385,5502329194716455296,2186.484390105541,17580.824823982883,98.167758,-52.040916
-BKGR386,5502329199007842048,981.17479022062,7889.314090984307,98.169918,-52.042759
-BKGR387,2241172935020998400,3175.0193845465114,25529.319973680565,298.501574,62.995598
-BKGR388,2241172728865022848,2.797347250533305,22.492578591472263,298.516834,62.996712
-BKGR389,2237819802514967680,176500.67927854593,1419185.765858735,300.033513,61.17432
-BKGR391,4818153342684253184,23645.38453443101,190125.0085647672,71.666888,-38.475349
-BKGR392,1307333107977973888,37.046431522438496,297.87856062317013,252.209631,26.926062
-BKGR393,1307333107977973760,1.2466552811377405,10.023958191861508,252.205116,26.921335
-BKGR394,2093512955821072000,13266.19513555196,106669.25124841844,283.038621,36.360397
-BKGR395,5797166884140755200,149.19229035057586,1199.607705232992,222.605685,-71.672569
-BKGR396,4783849752424935040,264.6953921699034,2128.3313718191675,74.418562,-50.656677
-BKGR397,207010865256290432,413.75797828830815,3326.896166617926,75.354924,46.95726
-BKGR398,6381436745968552576,38.436725409186096,309.0574711095076,348.001677,-70.516762
-BKGR399,3121824471186311552,45263.31744443652,363947.9241397903,94.839376,0.301171
-BKGR400,3121824093229195264,2.310714987085888,18.579723500403286,94.832861,0.29333
-BKGR401,1838657151317794432,4175.864337247287,33576.79557836596,313.978374,21.48024
-BKGR402,1838657155615485696,3.951358016725513,31.77161173583245,313.973532,21.480549
-BKGR403,3123757064735945856,462.1110794261988,3715.688057677596,95.141394,1.679765
-BKGR404,3123745313705073664,1.1422111126971994,9.184155887509778,95.143989,1.677801
-BKGR405,5494222980814750848,4894.928823278975,39358.56416691746,114.377992,-49.400768
-BKGR406,578572707982017536,97891.815082419,787116.917209119,135.016064,3.653432
-BKGR408,5524091729580776448,513.7435485264479,4130.848302401489,132.051335,-43.264263
-BKGR409,5524088770342787200,1.8524495158879004,14.894956754081852,132.059983,-43.267838
-BKGR410,5524091725280291328,11.136439989654177,89.5445682150318,132.058021,-43.258633
-BKGR411,5524088735983046528,6.37890862538577,51.29077326990996,132.049954,-43.273094
-BKGR412,4435664347241042816,2739.973617607928,22031.25547636516,251.254559,5.836842
-BKGR413,4386348703818269184,71902.89575710855,578148.2915511731,252.30181,3.821173
-BKGR414,5264163229401395072,1131.7392582718994,9099.955040219686,112.4542,-72.127121
-BKGR415,1644806929148758656,426.3304780502562,3427.9876342335288,233.471426,66.718605
-BKGR416,6059683291130785152,2869.1045959035573,23069.55655870465,188.965705,-59.719662
-BKGR417,6059683256771049472,218.14556155553177,1754.0390048940874,188.962151,-59.715004
-BKGR418,4701286320487831808,808623.5421106988,6501884.4436893165,34.413397,-62.739155
-BKGR419,4701284843018685312,19.30840417481141,155.25273034838992,34.412412,-62.741608
-BKGR420,3086890993908048000,87.85093360090573,706.3813861421271,115.451479,1.239271
-BKGR421,3328745790668500352,4372.666760319279,35159.22120217618,94.029464,8.687361
-BKGR422,3328745859387975424,290.9017816656053,2339.048605876695,94.022976,8.695772
-BKGR423,4588901083783943296,34653.4422530077,278637.2958138189,277.805246,31.055437
-BKGR424,493544213929952128,2803.795801932338,22544.429340111445,56.227513,68.373207
-BKGR425,1949786509523618688,346.53442253007705,2786.372958138189,328.579261,36.667786
-BKGR426,2187262333725493504,2771.7010167863414,22286.365391441817,310.130503,57.502724
-BKGR427,2187261577811250304,11688.166273282462,93980.82359702782,310.135652,57.492641
-BKGR428,6569498898411299456,36286608.67135761,291769066.99835294,336.163364,-41.440315
-BKGR429,6569498898411299072,599440.9131236849,4819913.52586201,336.169365,-41.438259
-BKGR430,4588652972114688256,2247.741588627621,18073.37445356091,279.040253,30.710291
-BKGR431,4588653178273277312,1.3543982412455766,10.89028502970452,279.033119,30.715538
-BKGR432,3248236559980000512,4526.331744443652,36394.79241397903,52.108728,-5.626717
-BKGR433,5107683586394460288,2201.6403758473925,17702.689279804315,58.08888,-17.736441
-BKGR434,3807826646385182976,579090.4210255914,4656281.69831388,163.165013,0.483886
-BKGR435,4903887422557813504,461.0482534366262,3707.1422122896265,14.296426,-59.834099
-BKGR436,4384896970512708480,529.3542218680757,4256.368756444305,254.389425,1.690558
-BKGR437,4495471045286747008,122.95505294399622,988.642432945792,270.662999,11.939787
-BKGR438,304888290846071424,21.36713929050001,171.8063639309997,29.349097,32.836487
-BKGR439,732422319175113856,155505.72456351193,1250372.0195988545,167.189979,29.021309
-BKGR440,1282065471777989504,284.935381879008,2291.0746848404,224.08868,30.11808
-BKGR441,5882631373237020032,330.17666848880816,2654.845466053297,233.940829,-57.375439
-BKGR442,5882631368912525568,1.2098913760634056,9.728351336453672,233.938078,-57.376072
-BKGR443,5882631403272265088,1.411712893189904,11.351133897522017,233.941412,-57.371372
-BKGR444,5882631368912523648,1.0345378418780633,8.318389399048764,233.933121,-57.377182
-BKGR445,5882631368904629376,5.898565157613013,47.42848438256525,233.932798,-57.373543
-BKGR446,5882631368912521728,2.386417258376748,19.18842136093454,233.929432,-57.377045
-BKGR447,5882631368904618880,1.1501285418892675,9.247817414805349,233.928984,-57.375866
-BKGR448,5882631304517540480,68.19403390084153,548.3265142330031,233.936865,-57.382919
-BKGR449,5882631368912521984,8.825643508616851,70.96418944771193,233.929708,-57.37038
-BKGR450,5882631300193054464,3.3942699646759675,27.29224408109966,233.95184,-57.38176
-BKGR451,5882631403272261888,9.500498224924003,76.3904813538993,233.932928,-57.367947
-BKGR452,5882631368912522496,1.40846604363469,11.325027014016076,233.930873,-57.368645
-BKGR453,5882631300187999360,2.397432459958161,19.276991089710123,233.940446,-57.384342
-BKGR454,5882631300185114240,51.96924184479266,417.8681271373717,233.951809,-57.382748
-BKGR455,5882631300185114368,50.43666720056267,405.5451823810248,233.937921,-57.385422
-BKGR456,5882631407596764160,8.785093360090572,70.6381386142127,233.930863,-57.367111
-BKGR457,5882631300193053440,1.705086363593382,13.710056565576606,233.949429,-57.384762
-BKGR458,4502690266835998208,292.2445232813845,2349.8451636923887,268.886566,16.816324
-BKGR459,4502690198116518528,2.1171244180000817,17.023123371870724,268.900562,16.817698
-BKGR460,5421341955648248448,1068430.7558913494,8590911.529432293,150.463523,-38.920666
-BKGR461,1086717749131140096,1899.9684142539093,15277.04108625544,111.019579,60.367065
-BKGR462,1086717817850617088,18.695900202212183,150.32778092044498,111.014451,60.373814
-BKGR463,1740088235990557184,7157.253195988815,57549.19414425692,320.768576,7.389057
-BKGR464,1765173593779706752,35871.23929667582,288429.214106389,314.841582,18.071898
-BKGR466,2096414562705216000,8604.910967089167,69189.3493605328,278.162909,38.378761
-BKGR467,2180127735912151424,159.49474594168657,1282.4464704324257,307.105338,49.978867
-BKGR468,2180127740219390208,9.3917469210314,75.51604674473052,307.115252,49.977024
-BKGR469,6001918454867017600,324897.5086561997,2612397.42267604,234.169864,-42.130341
-BKGR470,6001918454867011584,119604.18640062195,961699.1819561226,234.169583,-42.134079
-BKGR471,6001918557946236544,21.96576743497257,176.6197422429162,234.171509,-42.126003
-BKGR472,933430602558871680,200.33017995466,1610.791193697861,117.817267,47.406616
-BKGR474,5930297122116237696,572.4616277910393,4602.981682462663,250.71013,-54.47897
-BKGR475,5930308877502719616,10.203434505535183,82.04256817773924,250.697403,-54.475063
-BKGR476,5930296748514100352,199.8694333263481,1607.0864767571647,250.712126,-54.488621
-BKGR477,5930308877502720512,9.522399135191105,76.5665796003053,250.695145,-54.473679
-BKGR478,3113866996302914048,52.69220601453839,423.68125184104366,105.20729,1.213539
-BKGR479,3963888990369268352,73408.50527134958,590254.4182827324,170.687139,11.583944
-BKGR480,3963888986073630208,1.226722641695306,9.863686184477023,170.693715,11.582494
-BKGR481,4393107165572915072,233209.57696170785,1875163.9565288792,255.161144,6.313074
-BKGR482,6213176832305663232,440297.6638301105,3540293.328063701,231.02663,-28.101604
-BKGR483,353310473697570304,11034.340494130607,88723.61867908279,31.997118,46.582672
-BKGR485,3152532628361105664,5479.568761653786,44059.46776732028,107.166049,5.122636
-BKGR486,1373340020807695488,2049.9646928994584,16483.11340538571,238.048205,36.836575
-BKGR487,5810161737185314176,3773.517610689234,30341.65365367167,263.401918,-70.072433
-BKGR488,5810161702825577216,1.0109888855705411,8.129039739154694,263.423947,-70.070969
-BKGR489,5810160259716303744,42.53499451602391,342.01034814577054,263.401089,-70.08168
-BKGR490,4662985245251271808,2895.6520938715416,23283.016537381955,71.919932,-66.006401
-BKGR491,3753938786939149312,1843.938283485027,14826.52064422977,158.766822,-13.225983
-BKGR492,2166710124954162304,27717.01016786341,222863.6539144182,312.085523,47.373344
-BKGR493,2166710193673633024,1.0857913590974322,8.73050261235335,312.075312,47.372345
-BKGR494,3201984469487194112,55.68604591525752,447.7537652711775,70.759717,-2.777766
-BKGR495,5140809775794229120,105377.13363530848,847303.9804351714,24.808859,-17.599747
-BKGR496,357463191676376064,3843.6725409186097,30905.74711095076,26.639841,49.425327
-BKGR497,357463191676374912,62.05065656070937,498.9295730367863,26.633367,49.42844
-BKGR498,4790923975877852160,3339.9993411926057,26855.87127694565,67.882367,-45.001457
-BKGR499,5816489392252841856,478.3506640037645,3846.265386728938,256.909909,-65.74054
-BKGR500,3556510753932701824,3204.397477202981,25765.53986301223,163.579145,-17.06963
-BKGR501,3328158445299389696,112.91363302083646,907.9025724409556,98.429458,11.93836
-BKGR502,5909559581202230912,33.78674710792029,271.6684761000671,267.985467,-62.996788
-BKGR503,5731307988753851008,109.08031442971212,877.0800781436968,138.059457,-15.138665
-BKGR504,975360100526982272,284.28004868599027,2285.8053592875062,112.997118,46.593376
-BKGR505,975360207902976000,144.12734323167766,1158.882078083288,113.009989,46.594326
-BKGR506,3355334730606870016,398.791948230248,3206.559083969686,99.392718,12.942798
-BKGR507,3355334726307074944,2.045249904939773,16.445203296547728,99.397096,12.944733
-BKGR508,213432215024977024,1075836.7640822714,8650460.883289468,80.50351,48.759544
-BKGR509,213432219320633344,31.67717042599889,254.70604167087413,80.509794,48.762852
-BKGR510,213432180665238400,2.1864843901055413,17.580824823982883,80.49526,48.762451
-BKGR511,6162499924766398336,144.12734323167766,1158.882078083288,201.059782,-38.237949
-BKGR512,6162499929062071680,4.224218567335973,33.96559654695954,201.068735,-38.230457
-BKGR513,5781153871662959488,330.17666848880816,2654.845466053297,249.349455,-75.427322
-BKGR514,5778098466287640576,409964.62234230345,3296394.9992263294,252.793989,-75.634262
-BKGR515,5357009942642236672,64231.25107612863,516463.03925369954,152.639008,-51.69445
-BKGR516,5357009908282495232,4.423299855064183,35.566345795900496,152.640437,-51.704117
-BKGR517,4594134862209246208,133.8894572781233,1076.562496781056,264.557477,26.449583
-BKGR518,2957313479853931520,10345.378418780632,83183.89399048763,82.913165,-24.759014
-BKGR519,2907176776121719552,246459.96424944312,1981706.10190608,83.943302,-29.088282
-BKGR520,1777789493273698048,43.92850073042229,353.21508793597184,336.205966,20.533335
-BKGR521,449830066851941760,2332.0957696170785,18751.63956528879,53.313842,57.987469
-BKGR522,449830002431393792,1.3764054422921854,11.067237926426516,53.333178,57.988628
-BKGR523,449929198992325632,408081.00600200106,3281249.4399603656,53.502039,58.598648
-BKGR524,2231736788793936384,8447.853641809876,67926.50141359401,351.11051,73.962158
-BKGR525,4642545294025714688,8198.726161207594,65923.34666200784,49.745157,-71.865768
-BKGR526,831846315248225024,1048929.696855619,8434109.722686822,164.598911,48.288105
-BKGR527,4439330119007748480,2498.8856388076497,20092.743799064232,249.500032,7.79142
-BKGR528,6498903757916891008,34.33573758477672,276.0827337308668,351.480853,-55.610825
-BKGR529,1301313110017638528,178.9560483107758,1438.9286064796013,249.741739,25.864382
-BKGR530,4667033376481785600,810.4876118906591,6516.872835287018,57.445039,-69.656342
-BKGR531,5863887483166101504,236.4538453443101,1901.2500856476715,205.622144,-64.858765
-BKGR532,5863887689324526464,184.8189000229411,1486.0699304181594,205.611177,-64.860458
-BKGR533,5863887684949222272,4.352576181494755,34.997679254506785,205.616021,-64.854378
-BKGR534,5863887586245330176,3.6791405681660825,29.58279790353982,205.642198,-64.855606
-BKGR535,5863887483166084352,7.54651398400506,60.67911620358103,205.607652,-64.866974
-BKGR536,5863887788028448640,2.397432459958161,19.276991089710123,205.639466,-64.851578
-BKGR537,481302079669238656,332.4653438173646,2673.247975676694,83.643088,67.609055
-BKGR538,2109065543494429440,3204.397477202981,25765.53986301223,274.907929,39.032856
-BKGR539,2726432187096041472,106843.07558913493,859091.1529432293,329.529125,10.383571
-BKGR540,1151214791978952832,108829.43666830812,875062.8499414575,137.21886,86.834778
-BKGR541,6091116782337021184,366223.6452750288,2944687.729359889,212.087005,-48.2612
-BKGR542,6091117435172049408,1.7169054576295386,13.805090137628689,212.074801,-48.264076
-BKGR543,5857234814971341696,954.4350532270532,7674.308379509467,192.32421,-68.369476
-BKGR544,5857234819301481088,3.3786747107920294,27.16684761000671,192.321291,-68.36972
-BKGR545,5857234888020958464,3.004321329714652,24.15679126349449,192.315117,-68.369034
-BKGR546,5857234922380698496,2.068932782664089,16.635629775914865,192.351184,-68.370079
-BKGR547,2224461281695739904,191.3138366130405,1538.2936476100774,329.901646,71.227005
-BKGR548,1049580433936748032,323.4047402003953,2600.394546806893,148.615472,59.168694
-BKGR549,1049580433937056128,7.793748390719098,62.66704935076943,148.601507,59.167736
-BKGR550,1049580438232609792,2.758966207387867,22.18396884371683,148.602231,59.164246
-BKGR551,6726052891597994624,141.49672275063455,1137.7300963609907,273.023937,-39.223236
-BKGR552,6726052861581211904,1.4445959107136166,11.615535771774796,273.025993,-39.227776
-BKGR553,4152534326354963200,1345.0746293340694,10815.316834877802,276.059317,-13.329378
-BKGR555,4152534330662689792,58.042536231468574,466.7015536186254,276.061704,-13.330165
-BKGR556,4152537281301203712,457.8744195843553,3681.622424803511,276.060777,-13.327534
-BKGR558,4152534326359819904,2.7717010167863414,22.28636539144182,276.05949,-13.333706
-BKGR563,4152537285604199168,454.72243425064346,3656.2783142987582,276.054682,-13.328199
-BKGR565,4152534326359822592,4557.706777209546,36647.06906292289,276.064849,-13.330485
-BKGR568,4152537285604200320,3.8614141272663054,31.048401558011943,276.052759,-13.32888
-BKGR571,4152534326363710080,14.379585954081945,115.62167232665062,276.066556,-13.331269
-BKGR578,4152537285598862208,457874.41958435625,3681622.424803518,276.056663,-13.322084
-BKGR580,4152543161119457152,14988.09306739878,120514.4842816696,276.065142,-13.323516
-BKGR583,4152534326359823232,29.631004957418394,238.2534766185985,276.06805,-13.329391
-BKGR588,4152534326363713024,1.0133194556458902,8.147779111098142,276.068637,-13.334005
-BKGR590,4152537281301187584,53.67182726398224,431.5580744052754,276.048891,-13.32907
-BKGR593,4152534326363714432,37.13183236703428,298.56524162370823,276.069273,-13.333439
-BKGR594,4152534292003957504,2.721111771896396,21.87959338043982,276.055206,-13.339027
-BKGR595,4152543161119458816,263479.2273139089,2118552.5774280075,276.064442,-13.320233
-BKGR598,4152537281293755904,5.871463712488947,47.21057029117767,276.056157,-13.319377
-BKGR601,1920653819372621824,395135.8016725521,3177161.1735832514,354.542905,40.512726
-BKGR602,5907754732866750592,3189.6746081554093,25647.15796062905,224.4589,-45.252174
-BKGR603,5907754698507013120,3.888180171296196,31.263618795989927,224.445094,-45.253475
-BKGR604,3566338949070993536,23482.610852227583,188816.1972118377,169.276869,-11.373664
-BKGR605,1331471958052088448,1777.2412353942334,14290.230916268622,248.439402,38.01643
-BKGR606,1360173192970270976,7425.853570042683,59708.92423209413,259.112519,42.656181
-BKGR607,1365109965820392960,1144.8441812471876,9205.327553375022,259.361841,47.404335
-BKGR608,3527848414237828224,175.28565714872005,1409.4161597648629,186.451341,-14.078506
-BKGR609,2793290912200613248,255.121101392882,2051.347548048734,6.714488,17.43017
-BKGR610,4532784690367400704,265.3055780669777,2133.237682339871,281.812993,24.096008
-BKGR611,4202202741278049408,34099.372029811595,274182.1935600472,283.687844,-10.738187
-BKGR612,4202202741278055168,2.784494607394246,22.38923458015644,283.68413,-10.736989
-BKGR613,4202202741278037888,13.700814337297691,110.1638858708326,283.691024,-10.740762
-BKGR614,4202202805640751104,1650997.368880491,13275144.180536998,283.68354,-10.734333
-BKGR615,4202202809997536384,9.677125674131034,77.8106864363906,283.687004,-10.73233
-BKGR616,4202202809951373824,6.557622031156118,52.72775086497717,283.677251,-10.73578
-BKGR617,4202202775637770624,1.744802927098588,14.029404807327332,283.698795,-10.736987
-BKGR618,5251686138951379584,2708609.3989646803,21779065.780338373,156.029186,-63.998596
-BKGR619,5251686074555155328,23591.00165911057,189687.7331793312,156.038709,-64.001823
-BKGR620,5251687620743384704,9.92536258824943,79.80668042642814,156.025041,-63.992142
-BKGR621,283166785806905216,5281.367409425177,42465.7937995681,85.981267,60.627495
-BKGR622,5293339384622819456,5257.101730365615,42270.68120022291,111.476962,-59.640484
-BKGR623,5292570104441001856,327.1495905969807,2630.5056965193376,116.074991,-59.887337
-BKGR624,2195059245556616576,524.5010731907436,4217.346133128525,310.803731,61.56057
-BKGR625,2195059279916426112,1.2815819471550396,10.304792392972017,310.821043,61.566837
-BKGR626,5491555737403462272,14816.525784783247,119134.96638762928,107.882276,-53.16814
-BKGR627,4248690810094132736,182.28308964955235,1465.6802865848304,300.933443,5.495015
-BKGR628,3286110264495601408,288.8992278863551,2322.946708532757,69.694805,7.070355
-BKGR629,2945224040273088000,614.817727219209,4943.553592165576,95.826303,-15.445785
-BKGR630,2945224108992563072,1.7609473898092949,14.159217291733208,95.826076,-15.437874
-BKGR631,2945224001611807488,120.98913760634056,972.835133645367,95.820976,-15.453529
-BKGR632,2945223249999107200,4.883670799392296,39.26804198129766,95.832398,-15.454966
-BKGR633,3948239125974974336,2284264.451353919,18367043.164193887,190.404474,19.851309
-BKGR634,4386904614322302464,46531.42804015292,374144.3976850006,258.345768,1.465925
-BKGR635,4386904610024427008,3.088491291755664,24.83357512931157,258.350922,1.464246
-BKGR636,506825970801459200,1740.7899917240345,13997.138071662876,33.41776,58.758247
-BKGR637,506825970801458176,3.5871239296675816,28.842921410638898,33.429902,58.760216
-BKGR638,506826039520932864,9.92536258824943,79.80668042642814,33.415003,58.767097
-BKGR639,4531511417236391424,172.88064777116824,1390.0782450932045,282.50241,21.967476
-BKGR640,4531511421545838080,12786.343904704114,102810.92028146311,282.49694,21.971237
-BKGR641,4531511318466142208,7.442971930453243,59.84656751782431,282.494454,21.961664
-BKGR642,6292864448625380352,41951.39251259039,337317.7902497616,205.008691,-19.227638
-BKGR643,6292864452921423872,1.411712893189904,11.351133897522017,205.007797,-19.222597
-BKGR644,5287697966557809280,6119.928963577555,49208.40026609228,115.114973,-64.198837
-BKGR645,1188763595103065600,209.77145046669912,1686.705443870021,223.787943,18.251163
-BKGR646,6414967486930883456,357.0642592302417,2871.040022439437,284.542391,-74.212547
-BKGR647,2698297849204684160,280.37958019323383,2254.4429340111446,324.494251,4.127291
-BKGR648,1900786365814516864,175.68973232008872,1412.6651995639584,338.090243,31.732763
-BKGR649,942884173472124800,97.66667015543516,785.3065985353504,96.797636,36.38166
-BKGR650,957225859546553472,301.81886469015285,2426.8293945765786,99.478684,40.583923
-BKGR651,400565417577433728,215.6484699613963,1733.9606864370246,21.0676,49.346146
-BKGR652,5298809356198635520,355423.6979803921,2857848.791769261,139.10827,-62.071117
-BKGR653,5298808600284392064,606.3821117587111,4875.725494071385,139.11142,-62.071701
-BKGR654,5869874942445528832,3263.971674181289,26244.55701302925,201.157885,-59.158142
-BKGR655,5869874938079022080,2.5807526451719625,20.75101033152523,201.151273,-59.156631
-BKGR656,5869874942445532160,2.284264451353919,18.367043164193888,201.169617,-59.159691
-BKGR657,2154120407562060928,5208904.3319973005,41883141.265559055,280.706067,57.865196
-BKGR658,1828565769191537280,17731.536939809022,142573.64297200245,303.440181,20.358271
-BKGR659,1828565769191537024,7477.327127932209,60122.80672236849,303.441917,20.357698
-BKGR660,1828565769191536000,1.1554372940318265,9.290503400524992,303.44307,20.34923
-BKGR661,4556424602676932992,313.1456485459654,2517.9044572156245,266.231627,22.605272
-BKGR662,3039102438994497152,1677823.9180577556,13490847.921140738,118.992622,-9.797198
-BKGR663,3039102473354229632,10.203434505535183,82.04256817773924,119.002914,-9.798083
-BKGR664,4206465857038724864,62480.77116402526,502387.9876174495,292.16772,-8.781412
-BKGR665,4206466234995856768,1.302405978602989,10.47223179966169,292.167938,-8.771085
-BKGR666,6706259586354826752,494.022104203427,3972.274447729594,271.559846,-49.282635
-BKGR667,2871338405070839552,17568.973232008873,141266.51995639582,353.872755,31.016243
-BKGR668,2871338405070839040,61907944.01085116,497782066.8617616,353.870375,31.017153
-BKGR669,2871338405070838528,30.251462902966463,243.242381410552,353.881136,31.022495
-BKGR670,2280928389262803072,12639.979836343167,101634.05340876844,332.807543,77.320381
-BKGR671,2209795067891457024,844.7853641809876,6792.650141359401,357.540469,66.280037
-BKGR672,2209795072190596480,10417.089156126223,83760.4971974333,357.528754,66.282295
-BKGR673,2209795140910068992,1.7772412353942333,14.29023091626862,357.522694,66.287903
-BKGR674,3775409985581218560,976.6667015543516,7853.065985353504,156.663645,-6.86512
-BKGR675,6321231062644401280,10635.217624792343,85514.39876384585,230.654773,-8.195262
-BKGR676,412577277180678272,562013.0255417236,4518967.798516377,20.536336,56.457729
-BKGR677,412577277180680320,44131.26547703814,354845.4547050483,20.533169,56.455811
-BKGR678,412577380259891328,19.577010833246945,157.41251096693912,20.545852,56.460209
-BKGR679,4649207990898012672,1150.1285418892674,9247.817414805346,73.667748,-75.322357
-BKGR680,1127751415704739840,146.8068705989064,1180.4273045058933,156.660825,76.517525
-BKGR681,6376850545531082240,661.8298960744354,5321.563473681055,313.472995,-67.989281
-BKGR682,6401165008228878336,2616.654490709896,21039.685640672826,317.872678,-66.309341
-BKGR683,6375832535202261760,92628.87322453348,744799.2774029522,318.210435,-69.268219
-BKGR685,6375832500842524416,6219.3698096971975,50007.97244867424,318.183442,-69.269058
-BKGR686,5245003826982520064,506.6947227870176,4074.1709389130974,151.880761,-66.546089
-BKGR687,5245003655183662208,18.10282616867229,145.5590614461594,151.881923,-66.556412
-BKGR688,2898003383111196032,12239.012579119795,98410.00335778376,92.53072,-28.025276
-BKGR689,2898003314391916032,3.286596444968384,26.426475591405875,92.539388,-28.028528
-BKGR690,2898009258626653440,1.9352914643338728,15.561062485408732,92.540166,-28.023615
-BKGR691,2224787153751494016,766913.4971975562,6166507.252643822,338.101027,66.665703
-BKGR692,2224787153751495936,17.44802927098588,140.29404807327336,338.120757,66.666451
-BKGR693,503055706765733632,512.5619711532627,4121.347614947257,84.077426,75.398773
-BKGR694,503055779782116224,1.98037019347361,15.923526193761685,84.074491,75.399765
-BKGR695,2897659407770122368,974.4204304741406,7835.004434789925,93.608196,-28.921535
-BKGR696,2266080824759954304,3834.8323393874816,30834.665865079176,283.65741,72.538742
-BKGR697,4548742143132310528,3417.797920064728,27481.424879292463,264.418897,15.185134
-BKGR698,2425174213062689024,123807.33665466007,995495.3749038144,5.489827,-9.904613
-BKGR699,2080744872742900992,4433.49661432004,35648.33469052091,303.477478,42.5826
-BKGR700,2080744877046222976,9.8117479022062,78.89314090984307,303.477918,42.588844
-BKGR701,2080744877046219136,19.89511166960264,159.9702585116458,303.469236,42.588894
-BKGR702,3725393098554513664,1182.3508860026045,9506.907024517735,205.606091,9.367255
-BKGR703,3725393094259918720,16.283448357579317,130.93002374060185,205.604559,9.367163
-BKGR704,6633237656195032576,11932.910440534524,95948.7335215722,282.80531,-59.047295
-BKGR705,6633234735617269120,6.835123738447552,54.959053739273656,282.821914,-59.049793
-BKGR706,6633234735617268224,1.411712893189904,11.351133897522017,282.822345,-59.051498
-BKGR707,5814773604352883456,235.3674386093261,1892.514634993744,257.461245,-67.050842
-BKGR708,5814773604352887808,2696.1644692187133,21679.000062604133,257.438931,-67.045158
-BKGR709,3785688185918317824,444.3716879533604,3573.0512589063164,170.622502,-5.590142
-BKGR710,5164989170360710272,8704.551140043053,69990.52426672506,52.461653,-8.873782
-BKGR711,5164989170360710784,72735.49204968236,584842.9332486296,52.456132,-8.871731
-BKGR712,6534858166102087040,3497408.660633971,28121549.496869933,353.018637,-43.590008
-BKGR713,6534858161806944000,113696.31293379108,914195.8524228178,353.018235,-43.588791
-BKGR714,5766217345496398336,530.5745093770222,4266.180699775237,211.961928,-86.308105
-BKGR715,5766818743997694848,856.537499246811,6887.145317650165,222.341968,-84.710487
-BKGR716,5906141916804737920,2021.8381228750272,16256.956611064788,222.027154,-46.573479
-BKGR717,5906141921110012544,1.0684307558913493,8.590911529432294,222.03066,-46.574799
-BKGR718,5906141989829493632,2.683776718731007,21.57939410508021,222.024045,-46.564926
-BKGR719,5906141714951580544,1.569446013171702,12.619415694496752,222.034766,-46.58268
-BKGR720,5775795642261636608,1474.845003250187,11858.759093823855,249.895104,-78.717033
-BKGR721,5303658065047017856,111.6211213517056,897.5098976335007,137.16197,-58.040421
-BKGR722,5303658065047016064,3.924157059466818,31.552897499054083,137.157437,-58.043365
-BKGR723,5303658065047020160,5.032066608499832,40.4612454344478,137.176572,-58.038242
-BKGR724,5303658065047019776,4.717874468449805,37.93492647224144,137.177726,-58.044159
-BKGR725,5303658129451360000,23809.286509897265,191442.8921645846,137.146211,-58.035446
-BKGR726,3567089709355071744,790.217023091702,6353.883484726755,180.323395,-18.130861
-BKGR727,3567089709355072000,3.8348323393874817,30.834665865079177,180.320163,-18.125776
-BKGR729,5114948987432414848,705905.2000672183,5675958.9599088365,57.518561,-11.140332
-BKGR730,5309814226334787328,30321.199727162515,243803.11301033827,139.463465,-56.280781
-BKGR731,3245195551337497088,149880.93067398778,1205144.842816696,58.033965,-6.244088
-BKGR732,3245195547041045760,5043.666720056267,40554.51823810248,58.035607,-6.243431
-BKGR733,6453716333979782016,180611.90823852885,1452242.8489478377,310.296883,-62.69603
-BKGR734,6453716333981363072,1.989511166960264,15.99702585116458,310.292094,-62.696465
-BKGR735,2165685517552035328,186959.00202212183,1503277.8092044496,318.452778,48.643131
-BKGR736,2165685517552040832,1.2727595990862184,10.233854701106464,318.450187,48.634392
-BKGR737,7284749865978368,4118.569330605968,33116.10467217507,44.941486,6.67501
-BKGR738,7287704803477504,102.03434505535182,820.4256817773924,44.936603,6.684019
-BKGR739,4703771835241607680,1269832.333239087,10210317.488444649,8.119441,-68.007515
-BKGR740,3720194195261631488,972179.3256740492,7816984.42463989,208.701273,5.926908
-BKGR741,2377879300214104448,1103.4340494130608,8872.36186790828,11.412262,-9.90623
-BKGR742,1521654480012063744,6542.539919008648,52606.48040320748,191.307172,38.772755
-BKGR743,5878360079772142976,6587.890639176928,52971.13110482145,218.484646,-61.454342
-BKGR744,5878360075474753664,2.151524922437213,17.2997268752402,218.48792,-61.454803
-BKGR745,5878360079798526720,14.24775311763575,114.56164646316964,218.494586,-61.454548
-BKGR746,5878363034736303744,2956.2855537142764,23770.55088283213,218.473955,-61.453564
-BKGR747,5878360079798520320,4.974465018352367,39.9980893878974,218.492735,-61.459904
-BKGR748,5878363030412248960,1.6778239180577557,13.490847921140736,218.471058,-61.452175
-BKGR749,5878363034736025216,1.0321584708685876,8.299257634331779,218.469919,-61.458717
-BKGR750,5878360182851393664,1.2495291183618324,10.047065801976649,218.495446,-61.447952
-BKGR751,5878360178553971712,14.953621409922148,120.23730865936402,218.500721,-61.451069
-BKGR752,5878363034709685120,4.838897036377889,38.90803040846004,218.468548,-61.449547
-BKGR753,5878360079798520448,8.067637595722626,64.86930524435692,218.472111,-61.461693
-BKGR754,5878363034709685504,5.39195651624909,43.35500559696772,218.466229,-61.44994
-BKGR755,5878360041115009664,1.9758154684208973,15.886903099796088,218.468175,-61.461796
-BKGR756,3720205701478602624,8198.726161207594,65923.34666200784,208.338587,5.985527
-BKGR757,1552712114380928768,943.509725516662,7586.461297915748,200.599782,47.477905
-BKGR758,6404520374118857984,587146.3712488947,4721057.029117767,334.586532,-64.557579
-BKGR759,4619020963575512960,1098.364230475896,8831.597068019037,54.267025,-82.236557
-BKGR760,5198341167666937472,4071.42445732968,32737.02775666172,160.073655,-81.833389
-BKGR761,1810256972130300032,689.8368359719442,5546.758360240548,302.583753,18.193239
-BKGR762,2523032873943091584,131.1433825557275,1054.482184263628,12.527414,-6.746952
-BKGR763,1731065231256681088,31677.17042599889,254706.0416708741,313.76445,3.434987
-BKGR764,420739806681598976,4253.499451602391,34201.034814577055,2.646501,55.679924
-BKGR765,420739810983405824,5113.831113326225,41118.687784677946,2.646965,55.679199
-BKGR766,422326028306036608,1341.9810435327,10790.44229641873,2.561199,56.928154
-BKGR767,547361528536404224,569.8314055290731,4581.832902693173,47.080062,73.753494
-BKGR768,2461885733787408000,78839.95743722601,633926.9958232959,32.356516,-10.18159
-BKGR769,2461838802680521984,2.9767775462039974,23.935320469976887,32.360156,-10.188376
-BKGR770,4249366670444339456,2263.322188984416,18198.65310030766,304.278878,5.892254
-BKGR771,4249366597427732224,5.912162754619308,47.53781833074096,304.27983,5.885979
-BKGR772,310227622389577344,58444.86787194398,469936.5742409324,20.034837,30.568085
-BKGR774,2423926817121327616,161.3416080570127,1297.2965006775687,6.989558,-11.878504
-BKGR775,4319471222616076544,2117.1244180000813,17023.123371870723,289.351428,13.8952
-BKGR776,4319471222616081920,116612.84236822544,937646.737008509,289.350102,13.900661
-BKGR777,4319471149576556672,14.379585954081945,115.62167232665062,289.357301,13.891999
-BKGR778,4319471050817381248,23.16041735261289,186.2255418649324,289.348832,13.888988
-BKGR779,4319471149585860352,24.25193419469437,195.00208126301848,289.349945,13.888424
-BKGR780,4319471119536864000,283.62622271749024,2280.5481528470727,289.343957,13.893125
-BKGR781,4319471222616084992,2.6591717058781765,21.38155303074417,289.348713,13.902827
-BKGR782,4319471046496672128,12.669117999165776,101.8683440986975,289.347318,13.887921
-BKGR783,4319471050817382656,4.917522788154909,39.54023504477077,289.345095,13.888773
-BKGR784,4319471183937658240,4.302752653946732,34.59706413285371,289.359508,13.899369
-BKGR785,4319471119536863360,2.610636352382837,20.99129570650576,289.342605,13.891113
-BKGR786,4319471252655800576,1.7936858460761202,14.422456794946353,289.352535,13.904845
-BKGR787,4319471256958330880,1.2581904404310038,10.116708735048238,289.355898,13.904479
-BKGR788,6508631171647553280,3294172.832240017,26487394.90920389,334.311607,-54.32132
-BKGR790,539325885245918848,2012.5486205176408,16182.262680302583,7.23095,74.165878
-BKGR791,539325885245918464,26.046320553898376,209.43017066098912,7.249986,74.167526
-BKGR792,539325919605819648,2083.2739395901585,16750.942452662723,7.211161,74.15667
-BKGR793,747381557123567744,504.3666720056267,4055.451823810248,151.599223,34.432003
-BKGR794,3387231421190214272,720.6864905031928,5794.810610075312,78.282647,11.54793
-BKGR795,5059842186202596608,162.8344835757932,1309.300237406018,51.277129,-29.27446
-BKGR796,2746462162218433280,13419.810435326996,107904.4229641873,357.836401,7.335228
-BKGR797,2746462230937909376,3.3246534381736463,26.73247975676693,357.828814,7.336934
-BKGR798,5945417472886581376,3773.517610689234,30341.65365367167,268.31909,-51.791866
-BKGR799,6445112140096445824,184.39382834850267,1482.652064422977,292.41301,-61.367435
-BKGR800,4335044567849011840,11932.910440534524,95948.7335215722,255.663191,-10.871582
-BKGR801,5233440847312503040,267.7604203563412,2152.9762875890583,178.243352,-70.523056
-BKGR802,5233440843004710400,12845.362986595685,103285.47392781133,178.245015,-70.527779
-BKGR803,1875350538692446464,256.2986868925051,2060.81613811863,337.899492,23.007748
-BKGR804,1875350538692446720,3.637025794338464,29.24416641615504,337.901087,23.002193
-BKGR805,1875454545620591616,2419.6156293866966,19455.35889216445,338.111352,23.716385
-BKGR806,5886929604726506368,522.091209660755,4197.969187762642,231.437539,-54.717819
-BKGR807,5886929604726504960,11.932910440534524,95.9487335215722,231.440082,-54.718624
-BKGR808,5886929604726508928,4.382746798237128,35.24027157768069,231.434135,-54.717075
-BKGR809,5886929604726510464,16.472001803029357,132.4461219617538,231.437513,-54.714569
-BKGR810,5886929604670042624,4.062060440926531,32.661734682182136,231.429818,-54.7206
-BKGR811,5886929707805723520,6467.648083852546,52004.299001600266,231.447625,-54.713978
-BKGR812,5886929604726497792,1053771.336353085,8473039.804351715,231.43593,-54.725338
-BKGR813,5886929703454636800,1.2380733665466008,9.954953749038143,231.450958,-54.711468
-BKGR814,5886929707805711360,38.26012469755687,307.6374810153664,231.453777,-54.721977
-BKGR815,5886929707805719040,7.223478444433277,58.08169028147866,231.454972,-54.715805
-BKGR816,5886929707749302784,3.489364843928054,28.056871727816144,231.446032,-54.708649
-BKGR817,5886929772174111104,1.0203434505535185,8.204256817773924,231.44086,-54.707211
-BKGR818,5706644912150163840,366.2236452750288,2944.687729359889,127.799458,-20.427391
-BKGR819,1131741783919799040,409.0217298759048,3288.813501112452,141.796373,78.005058
-BKGR820,2358990583801959680,396.959665664558,3191.8262832411706,15.582459,-17.018827
-BKGR821,3276316059729214720,1810.2826168672293,14555.90614461594,52.904906,6.458623
-BKGR822,2084096841326229120,373.8921793286327,3006.3479700930275,304.219093,47.332741
-BKGR823,2084096841326223616,105.86353238430766,851.2149579109109,304.21064,47.326481
-BKGR824,2084096841326532736,47.72504880061171,383.7419221817945,304.206322,47.333885
-BKGR825,2084096085411987968,1.4379585954081946,11.562167232665065,304.228934,47.326653
-BKGR826,2171821101673394816,15408.00395112237,123890.8540018632,323.535755,52.272964
-BKGR827,2171821101665262848,5.659087137251795,45.5029178684766,323.538119,52.270084
-BKGR828,2171821166083296000,7.010457828505442,56.36885933264055,323.524231,52.276928
-BKGR829,2281262743878808064,7722.29487598109,62092.514388914,348.975975,76.776237
-BKGR830,2281262743878807552,3.0251462902966466,24.3242381410552,348.961141,76.777588
-BKGR831,2281262743878808832,2.3536743860932607,18.92514634993744,348.973745,76.772552
-BKGR832,2281262537720379264,1.1823508860026046,9.506907024517735,348.964719,76.766991
-BKGR833,2228390283417893888,232.13807628594148,1866.548360751167,348.966728,72.383621
-BKGR834,342404280421113984,226.8539685477016,1824.0605328400952,27.990413,36.89819
-BKGR835,2273788122097110272,854.5675176649546,6871.3053229747775,322.699764,72.968513
-BKGR836,6689286086055138816,425.3499451602391,3420.103481457705,293.112262,-41.96661
-BKGR837,5836397115511763712,11034.340494130607,88723.61867908279,239.949788,-56.314476
-BKGR838,5836397115511764352,3.1823385601298337,25.588171134186748,239.948089,-56.31279
-BKGR839,5836397115511217024,3.004321329714652,24.15679126349449,239.952324,-56.310856
-BKGR840,5836397115511765760,3.546062461590856,28.51275921943403,239.941868,-56.311127
-BKGR841,5836397111120696192,502.0493176459629,4036.8187152288615,239.9434,-56.310135
-BKGR842,5836397115511190912,62.62480421684928,503.5461115363861,239.959687,-56.317261
-BKGR843,5836397184231242112,2.9494862856184296,23.715880132898896,239.938839,-56.312447
-BKGR844,5836397115510223360,6741.342324981724,54204.98725274884,239.948837,-56.321095
-BKGR845,5836397115511234176,2.574817078798283,20.703284332145127,239.947053,-56.306988
-BKGR846,5836391308714441472,255.121101392882,2051.347548048734,239.935815,-56.313831
-BKGR847,5836391308614390272,7.938644991447123,63.83211678345622,239.933091,-56.314499
-BKGR848,5836397149870953984,21.26896620306833,171.01698539238484,239.96196,-56.308216
-BKGR849,5836391239894902528,2.1416395633608225,17.220241850315873,239.939235,-56.322529
-BKGR850,5836397179840174976,15.986241930325672,128.54028148689383,239.936003,-56.307915
-BKGR851,5836391239994961536,617.6555969074934,4966.371998777026,239.945213,-56.324596
-BKGR852,5836391239994960896,1.643411725016756,13.214150433429106,239.952521,-56.324978
-BKGR853,5836391235606131328,61.4817727219209,494.3553592165576,239.940979,-56.324272
-BKGR854,996132555235269120,204.99646928994585,1648.3113405385711,95.976596,54.821934
-BKGR855,3942093027774734464,652.7492494756514,5248.548885575986,192.377215,19.2439
-BKGR856,1445941117186756736,73.40850527134958,590.2544182827324,199.059566,22.863438
-BKGR857,443671981398278272,13296.776873727322,106915.14926813764,55.878874,52.220577
-BKGR858,443671981403446400,2628.732419070038,21136.80041711356,55.87412,52.213753
-BKGR859,250294033837671296,227901.0788903393,1832480.0137147813,57.882611,49.788128
-BKGR860,250294029542612736,23645.38453443101,190125.0085647672,57.883855,49.789261
-BKGR861,252050366224397824,3241502.651220787,26063890.75333757,58.431824,53.273075
-BKGR862,252050361928131840,35.05471020252436,281.8637636357962,58.434216,53.274895
-BKGR863,252051087778904960,2.862505838446564,23.016498050977667,58.421144,53.269596
-BKGR864,4137082515814751872,34573.74154749686,277996.44781679,261.278011,-14.880802
-BKGR865,4137082412735538304,60.35960390296815,485.3323570317619,261.269721,-14.886404
-BKGR866,1999690426038064768,6248.0771164025255,50238.79876174495,334.135751,48.984509
-BKGR867,1999690460397807488,1485.0681404204552,11940.960084855567,334.15214,48.982933
-BKGR868,5932605688644984704,1345.0746293340694,10815.316834877802,242.208641,-54.215145
-BKGR869,5932608643582898176,5.416844656718331,43.55512321032203,242.202657,-54.217213
-BKGR870,5932608643582900224,56.33085993684773,452.93850951583136,242.201739,-54.212204
-BKGR871,5932608643582900352,28.82347781005032,231.7604079359525,242.203382,-54.210857
-BKGR872,5932605688644991104,8.88681994682266,71.45608970930019,242.209622,-54.209507
-BKGR873,5932608643582900480,1.6396319829359518,13.183758730793055,242.206982,-54.209454
-BKGR874,5932608643582901888,1.7772412353942333,14.29023091626862,242.201225,-54.209846
-BKGR875,5932608643582898944,41.37579782883081,332.68961666179257,242.19688,-54.216881
-BKGR876,5932605718584053248,10.369226979041876,83.37565267038238,242.215169,-54.207813
-BKGR877,5932608540503682944,2.131799623383728,17.141122025907944,242.196097,-54.219753
-BKGR878,5932605718584054784,3.817212885261138,30.6929934443241,242.21971,-54.209621
-BKGR879,5932608677942641024,1.1932910440534523,9.59487335215722,242.208092,-54.206448
-BKGR880,5932608643582904192,51.96924184479266,417.8681271373717,242.20103,-54.207577
-BKGR881,5932605688604873344,8.142286527303817,65.46953353565657,242.214541,-54.224113
-BKGR882,5932605718579059456,191.3138366130405,1538.2936476100774,242.219054,-54.208031
-BKGR883,5932608639161809920,1.565836387507461,12.590391843802758,242.191907,-54.215469
-BKGR884,5932608643582904576,1.0109888855705411,8.129039739154694,242.195645,-54.208836
-BKGR885,5932605723004728832,6.148177272192091,49.43553592165576,242.219129,-54.206913
-BKGR886,5932605722964884224,2.3536743860932607,18.92514634993744,242.216027,-54.205147
-BKGR887,5681071508639459840,408.0810060020019,3281.2494399603725,137.451619,-18.15591
-BKGR888,2814357280110461568,567.2132680406734,4560.78129274025,352.32332,15.533185
-BKGR889,566213170790619392,119329.10440534524,959487.335215722,20.127012,81.725662
-BKGR890,4613637415345498112,688.2502552763578,5534.001170020282,53.814874,-85.148399
-BKGR891,3180380234232982144,67.88071077595151,545.8071827450118,75.370924,-11.535932
-BKGR892,3333196059680703232,38881.80171296196,312636.1879598993,84.318505,6.696542
-BKGR893,1885948761335856640,200.79198871364449,1614.504450893123,344.80684,29.45977
-BKGR894,1885948765632782336,27.336718531595345,219.8058499486044,344.805981,29.468821
-BKGR895,4549521490718042496,3595.3931043404064,28909.41121135265,265.345444,16.839069
-BKGR896,4549521490718045952,3.730322511789309,29.99433561634621,265.351808,16.841068
-BKGR897,4549521593797256064,649.7501391002083,5224.433993936668,265.337384,16.84222
-BKGR898,4549521387638825088,38.26012469755687,307.6374810153664,265.347594,16.829294
-BKGR899,3357851474062952448,7010.457828505442,56368.85933264055,100.485435,16.131371
-BKGR900,3357851478361751808,1.4884915760460262,11.968486840729842,100.488674,16.13018
-BKGR901,6082243238162301696,12524.09580464928,100702.26680634556,201.45551,-50.073975
-BKGR902,5140125909625527296,420.4810046003145,3380.953880641993,23.059453,-19.30892
-BKGR903,1123476999828421120,16701.150173966587,134288.6310536911,124.40449,74.01194
-BKGR904,1123476999828420864,1.650997368880491,13.275144180537,124.413079,74.012131
-BKGR905,1655319776434680064,79021.7023091702,635388.3484726754,260.013992,73.939987
-BKGR906,1001359809610028288,234.2860234598758,1883.8193200898177,100.117152,57.804688
-BKGR907,1188053070073515648,6437931.940190051,51765360.95176154,224.124758,17.103231
-BKGR908,5431852840132861184,143.1351775796513,1150.9043899719147,145.678562,-39.532043
-BKGR909,5493689064840732928,17090.169936048496,137416.6151002177,112.486111,-51.180359
-BKGR910,5817863777479273344,125.52966827189404,1009.3440950631824,251.44426,-63.504898
-BKGR911,5817863575634403712,1.3358152007155029,10.74086471747424,251.454838,-63.501911
-BKGR912,5817863536961105280,150.5727496167098,1210.7075386662293,251.443527,-63.515335
-BKGR913,5083022399577228288,42048.100460031455,338095.3880641993,61.073238,-25.048426
-BKGR914,4490387590711644800,587.1463712488948,4721.057029117766,261.059488,8.207926
-BKGR915,5364737138549929472,248740.43022110668,2000042.6027044847,158.300537,-48.126839
-BKGR916,774812585530028544,35.62430342227639,286.4436813624924,164.34978,37.335247
-BKGR917,5937974015380377856,224.2571926430388,1803.1806845806648,251.218879,-48.464149
-BKGR918,5937974019718750592,61.05853517550803,490.9522408608588,251.221872,-48.467545
-BKGR919,5937973985359012352,1.226722641695306,9.863686184477023,251.215247,-48.468369
-BKGR920,5937974015386763136,11.034340494130609,88.72361867908279,251.220103,-48.459278
-BKGR921,5937974015380667520,5.871463712488947,47.21057029117767,251.221443,-48.459225
-BKGR922,5937974015380880768,5.3302353003936975,42.85872495175144,251.225059,-48.468296
-BKGR923,5937973981022941568,21.02550236019709,169.0593701485429,251.214293,-48.469601
-BKGR924,5937973985347715456,38.436725409186096,309.0574711095076,251.208281,-48.463387
-BKGR925,5937974019706287488,1.0274161334678629,8.261126009209892,251.22108,-48.456497
-BKGR926,5937974015380882944,1.338894572781233,10.76562496781056,251.214749,-48.455711
-BKGR927,5937973981020916224,2.739973617607928,22.03125547636516,251.214629,-48.472702
-BKGR928,5937974015380883328,2.17643840686561,17.500048271300813,251.223172,-48.455105
-BKGR929,5937973981027023616,9.7891815082419,78.7116917209119,251.206068,-48.459915
-BKGR930,5937973981020928512,238.6417258376748,1918.842136093454,251.204989,-48.461002
-BKGR931,5937973809236073984,1.3481753465872308,10.840248715070144,251.232736,-48.469482
-BKGR932,5937973981022929920,16.509973688804912,132.75144180537,251.221504,-48.474697
-BKGR933,5937973985359166976,42.63304780502562,342.79876342335285,251.218566,-48.474991
-BKGR934,5937974015380672256,283.62622271749024,2280.5481528470727,251.218975,-48.453121
-BKGR935,3282325474891194240,1447.92604821417,11642.31234713108,68.743274,4.731973
-BKGR936,5245142395500152320,2007.919887136445,16145.04450893123,154.623949,-66.623138
-BKGR937,3852953592885814784,18481.89000229411,148606.9930418159,146.118562,5.612106
-BKGR939,5873457288726187392,1971.27121894512,15850.364236609295,229.035598,-63.390907
-BKGR940,5873457391805403136,170.90169936048497,1374.166151002177,229.051929,-63.387611
-BKGR941,5873457357445661312,9.199122054643231,73.96721152411865,229.018361,-63.395988
-BKGR942,5873457288726177024,1.212680463733628,9.750777502389637,229.023105,-63.400253
-BKGR943,2879748943170797952,6946.185564806782,55852.06652394713,357.991735,37.521973
-BKGR944,1110316150585064960,210.2550236019709,1690.5937014854292,117.393704,70.719711
-BKGR945,288541164280819072,19.13138366130405,153.82936476100772,21.963113,20.59049
-BKGR946,3239798461074336640,23645.38453443101,190125.0085647672,75.859542,5.097125
-BKGR947,3239798461074336512,17528.565714872006,140941.6159764863,75.860973,5.096861
-BKGR948,5899238633046544768,777.5823266837376,6252.291913683384,217.993222,-50.432529
-BKGR950,1173190799602256512,1351.2832117318674,10865.238069182007,222.285533,7.338561
-BKGR951,1173190833961995264,16.778239180577557,134.90847921140738,222.290906,7.344396
-BKGR952,477355485759444480,40996.46223423026,329639.49992263224,67.364445,65.929604
-BKGR953,3272087264996521984,3355.4160776815206,26979.832346503543,59.694777,3.527321
-BKGR954,1316486198681936768,29427.02655405245,236613.35122201184,239.742686,27.033813
-BKGR955,5240258815854345600,252.20075429421968,2027.865966840496,166.50694,-65.103935
-BKGR956,5240258059940104320,1.8439382834850264,14.826520644229769,166.517492,-65.104813
-BKGR957,5240258815854351872,1.2669117999165775,10.18683440986975,166.509405,-65.099365
-BKGR958,5240258094299853952,10.46517225498222,84.14711808611054,166.528355,-65.09787
-BKGR959,969796094950870400,9072.905368312244,72952.34333558266,90.740976,48.416912
-BKGR960,2996552743449067776,19131.38366130405,153829.36476100772,85.720751,-13.702567
-BKGR961,170610845625707648,153.37210603520916,1233.2162723376157,62.253989,33.282169
-BKGR962,170610914345183488,3.764838761020183,30.27186978675007,62.246807,33.290066
-BKGR963,5260018826493212544,1258.1904404310037,10116.708735048238,148.821936,-55.786922
-BKGR964,5260018826493213568,1.0635217624792344,8.551439876384585,148.820786,-55.784023
-BKGR965,5260018860852954752,3.8971433522807977,31.33568888049135,148.827354,-55.777081
-BKGR966,5260018860852955136,44.23299855064183,355.66345795900503,148.829636,-55.777222
-BKGR967,5742077640723658240,3721.74300809089,29925.35055874361,143.142157,-7.473834
-BKGR968,5742077636428585984,2.17643840686561,17.500048271300813,143.139405,-7.479192
-BKGR969,2286501641906253440,3537.9067442479472,28447.181692986345,347.279243,81.105827
-BKGR970,271977330850895488,41090.9688400319,330399.3974498346,65.610467,51.80912
-BKGR972,271977262131417728,6648.847640746881,53461.26694628743,65.619862,51.808075
-BKGR973,271977330850893568,27462.899091236744,220820.42765393184,65.614466,51.814465
-BKGR974,5466575932731126784,316.0431495573704,2541.202340310214,150.181979,-27.225204
-BKGR975,5466576035810340608,57.114500258308105,459.23951183670295,150.18776,-27.217173
-BKGR976,2144053313458298368,97666.67015543516,785306.5985353504,280.910803,49.698437
-BKGR977,6748796362632835968,319702.7567518241,2570628.0765749826,301.950095,-31.7579
-BKGR978,6748796362632831872,11.527798619985084,92.69135835647408,301.962575,-31.766787
-BKGR979,5449366376733812864,154.0800395112237,1238.908540018632,163.274177,-35.35017
-BKGR980,3028535681277930624,333.99993411926056,2685.5871276945654,112.395373,-15.560338
-BKGR981,3028535651221610240,2.0264989411032253,16.294432766475353,112.390271,-15.565776
-BKGR982,5752072815599683456,6946.185564806782,55852.06652394713,127.070483,-9.193767
-BKGR983,2894106782622105856,3611.988684878421,29042.85099057607,98.64485,-30.264339
-BKGR984,5448022636085763840,192639.96077521035,1548956.5897721448,157.956003,-32.914257
-BKGR985,4346502956482919296,342.56767579726227,2754.477610635912,239.034072,-10.109444
-BKGR986,704967037090946688,1204332430.140408,9683653622.204956,133.149142,28.330822
-BKGR987,817930174532227328,82.55557015963711,663.8030547067159,140.549992,44.493313
-BKGR988,784310407489575680,533.0235300393698,4285.872495175144,172.441887,44.643978
-BKGR989,5939152077710978304,11661284.236822544,93764673.7008509,252.969995,-49.11504
-BKGR990,5939152043350985856,2.0737021652952983,16.673978863124123,252.965544,-49.11655
-BKGR991,5939152039015730048,37.64838761020182,302.7186978675007,252.967646,-49.118626
-BKGR992,5939152043306372096,10.758367640822714,86.50460883289468,252.960829,-49.113377
-BKGR993,5939152039008384768,2.156484699613963,17.339606864370246,252.963996,-49.12096
-BKGR994,5939152004649420928,56852.08296644522,457129.497944126,252.982654,-49.12038
-BKGR995,5939151970289675776,59.668673230546105,479.7768034808937,252.977686,-49.12492
-BKGR996,6726532214272195968,4224.218567335974,33965.59654695954,274.716518,-39.917545
-BKGR997,6726532209949612032,7.273549204968236,58.48429332486295,274.718884,-39.915413
-BKGR998,6726532179912776448,5.5686045915257525,44.77537652711774,274.709286,-39.92392
-BKGR999,6188821649018619520,5196.924184479266,41786.81271373716,203.166918,-27.481533
-BKGR1000,3507967457301065216,377351.76106892346,3034165.365367167,200.09132,-18.171741
-BKGR1001,5378437564522892160,627.691693001509,5047.069052066773,176.644198,-46.18589
-BKGR1002,3824122194686917760,73917.34872079652,594345.8664485827,144.971294,-5.822221
-BKGR1005,6600125416844257280,61481.772721920905,494355.3592165576,337.1996,-34.781506
-BKGR1006,5129714947555667840,163.96319829359516,1318.3758730793056,36.775428,-21.16342
-BKGR1007,5030724369517994368,770.4534090622919,6194.970556872238,15.10449,-31.303589
-BKGR1008,5002127893147217280,2997.4115823997704,24101.232185336583,15.132264,-35.960854
-BKGR1009,5447063587068512384,381.7212885261138,3069.2993444324097,154.385902,-33.297588
-BKGR1011,5447063518349034624,10.345378418780632,83.18389399048763,154.383897,-33.307083
-BKGR1012,6894862354916759936,66.03077295531389,530.9324217327363,322.765639,-8.006863
-BKGR1013,505952099574466048,236.9989277522633,1905.6329197407144,26.569738,57.482716
-BKGR1014,5117620177915997440,593.9452057986379,4775.724293044817,31.454552,-27.043245
-BKGR1015,5117620216570564480,101.0988885570541,812.9039739154694,31.463588,-27.037682
-BKGR1016,5420624180713241600,55.81441550870897,448.78594430040295,152.009645,-39.035912
-BKGR1017,6275149426516309504,829.3662935780746,6668.670303934011,209.343576,-23.893562
-BKGR1018,6275149392156571264,43.82746798237128,352.40271577680693,209.336627,-23.901966
-BKGR1019,1353022072422563584,409.9646223423026,3296.3949992263224,253.839969,40.488335
-BKGR1020,1353022042359099904,41.28063613453345,331.9244517765704,253.831791,40.48793
-BKGR1021,6133367299036588928,268.3776718731007,2157.9394105080214,189.300639,-44.523838
-BKGR1022,4868774587444927744,49630.24066293202,399060.9633508531,63.590653,-36.983471
-BKGR1023,2113890170454489472,75.98823919927693,610.9972374332441,272.700641,42.285931
-BKGR1024,2114891855610017536,4997.426105624282,40182.71218004834,273.95331,44.034061
-BKGR1025,130522578657117440,790.217023091702,6353.883484726755,42.278975,32.124664
-BKGR1026,1033950777364407552,138.91411650450476,1116.9641818143334,125.374905,55.869186
-BKGR1027,6015744985369570560,1948.706263896359,15668.926617539826,235.212048,-33.465637
-BKGR1028,1808713811868245248,442.3299855064183,3556.6345795900497,303.244346,16.450636
-BKGR1029,1808713880587725696,1.2845362986595683,10.328547392781132,303.236496,16.453098
-BKGR1030,1808713811868239744,1.3543982412455766,10.89028502970452,303.24519,16.439913
-BKGR1031,4521092032740332416,827.4588040351172,6653.33278784651,287.070855,22.490923
-BKGR1032,4521068569345942272,1.4782448721106771,11.886096356843565,287.063499,22.493521
-BKGR1033,4521091830889536768,1.908738269989683,15.347556703984043,287.079887,22.484985
-BKGR1034,1101520680334634240,19.577010833246945,157.41251096693912,107.107349,65.145576
-BKGR1035,5082605306712327808,2598.641567896713,20894.849463483737,58.666278,-26.283064
-BKGR1036,5870041277928447872,754.6513984005059,6067.911620358103,204.181634,-59.27512
-BKGR1037,5870044232866422272,3.095610999484677,24.890822432310006,204.182907,-59.271286
-BKGR1038,5870041277928450432,10.857913590974324,87.30502612353352,204.189787,-59.273067
-BKGR1039,5870041277928442368,9.766667015543517,78.53065985353506,204.197538,-59.278511
-BKGR1040,5870041277928434688,15.231629988368333,122.47268712323265,204.188632,-59.285194
-BKGR1041,5870044232866424064,10.321584708685874,82.99257634331778,204.169681,-59.265827
-BKGR1042,6721691683031758464,148.16525784783246,1191.3496638762929,277.318883,-43.870495
-BKGR1043,6708330486444782208,3546.0624615908555,28512.75921943403,278.005167,-46.699707
-BKGR1044,6708330482146901120,5.594308102463529,44.98205027480299,278.00959,-46.692974
-BKGR1045,277265363303268736,47178.74468449805,379349.2647224144,67.570788,55.503342
-BKGR1046,277265363303494784,8565.37499246811,68871.45317650164,67.572338,55.502567
-BKGR1047,277265157144839168,1.461323542985764,11.7500373369483,67.583324,55.496204
-BKGR1048,3041324689436796288,5125.619711532627,41213.47614947257,114.410815,-9.290774
-BKGR1049,3495374716268568960,16739.650301292313,134598.1983194249,192.513632,-28.372135
-BKGR1050,625453654702751872,318233856.0129833,2558817113.4186745,154.901455,19.870068
-BKGR1051,5756462478335247872,89.69048679374606,721.172647668656,135.543582,-7.602593
-BKGR1052,5743499236243184896,52.57101730365613,422.706812002229,135.808305,-10.095798
-BKGR1053,5743499201883446656,1.0933177052408465,8.791019565371997,135.797403,-10.096598
-BKGR1054,160791480935588736,337.8674710792029,2716.6847610006707,74.133637,33.02747
-BKGR1055,948666470761991936,79569.45458168323,639792.650096583,110.544261,41.10976
-BKGR1056,948666500825536384,1.0513477295338514,8.45355235357275,110.553895,41.103008
-BKGR1057,4285511294172309504,70.42816631597367,566.2904616555246,280.687263,5.937688
-BKGR1058,4285511294172311680,2.316041735261289,18.62255418649324,280.687823,5.945363
-BKGR1059,4285514244785012608,1.6283448357579318,13.093002374060182,280.681349,5.945062
-BKGR1060,4285514249109813632,96.54868902699374,776.3172682366335,280.680358,5.944345
-BKGR1061,4285511221127800192,125240.95804649255,1007022.6680634536,280.696459,5.933026
-BKGR1062,3120002649138831360,18.144557492873894,145.89460973718823,97.033582,-0.170681
-BKGR1063,3120002649138836608,5.05529357263159,40.64800605777594,97.030251,-0.176355
-BKGR1064,4287820848378092672,610.5853517550803,4909.522408608588,291.777056,1.383714
-BKGR1065,4287820852697823872,11.688166273282462,93.98082359702782,291.776523,1.38272
-BKGR1066,3393939026234131584,1594.9474594168655,12824.464704324257,78.919804,16.278751
-BKGR1067,5413438219396893568,59394.52057986378,477572.4293044817,153.716027,-47.156796
-BKGR1068,5413438116317675904,5.633085993684772,45.29385095158313,153.701424,-47.162327
-BKGR1069,4393265392167891712,20594.269,165591.96,258.828924,4.963803
-BKGR1070,654687847820642560,127863.4390470414,1028109.2028146334,119.774462,15.391521
-BKGR1072,2643842302456085888,799367.3049659869,6427457.987910884,351.77,-1.286352
-BKGR1073,1928431764627661440,17288.064777116826,139007.82450932043,344.445207,38.675079
-BKGR1074,1928431764627661312,49062.1279959102,394492.950277266,344.441358,38.674225
-BKGR1075,2086512227851023872,1221086.363131282,9818366.663083827,297.709244,48.080791
-BKGR1076,1499514786891168640,972.1793256740472,7816.984424639873,209.389489,43.493534
-BKGR1077,1014520826353577088,13205.242505570932,106179.1505575071,129.882536,47.352051
-BKGR1078,1340497608486742400,17568.973232008873,141266.51995639582,260.116169,38.242165
-BKGR1079,179498266829041664,2849.35381879008,22910.746848404,66.248026,39.460636
-BKGR1080,381592313648387200,3489.3648439280537,28056.871727816146,9.573181,42.463078
-BKGR1081,381592421023881728,14.919229035057583,119.96077052329916,9.565315,42.462692
-BKGR1082,381592519806816896,75.4651398400506,606.7911620358103,9.567012,42.467712
-BKGR1083,1849786481031300608,35624.30342227639,286443.6813624924,324.536396,30.488716
-BKGR1084,1849786549750778496,2.696164469218713,21.67900006260413,324.529541,30.493057
-BKGR1085,1334573817793362560,727.3549204968236,5848.429332486295,256.346473,33.012512
-BKGR1086,365426679516816512,354.6062461590855,2851.275921943403,9.516742,34.711575
-BKGR1087,869913435026514688,31242.543354006364,251211.34376631127,111.916469,24.33663
-BKGR1090,770622651659107712,965.4868902699376,7763.172682366336,171.274955,41.027954
-BKGR1091,846946629987527168,181445.57492873893,1458946.0973718823,155.681719,50.128345
-BKGR1093,846946625690867328,2976.777546203997,23935.320469976887,155.683211,50.13068
-BKGR1094,1808938730710633984,201.71880242312804,1621.956664841977,306.123854,16.762152
-BKGR1095,3167323052618369408,357.0642592302417,2871.040022439437,108.825058,14.262599
-BKGR1096,3167323048322924672,11.688166273282462,93.98082359702782,108.825284,14.261271
-BKGR1097,111322601672419712,190.8738269989683,1534.7556703984044,48.435419,25.197405
-BKGR1098,3668036348641580288,3271.4959059698067,26305.056965193373,213.156383,4.059997
-BKGR1099,1159336403336463872,969.943375271965,7799.0058593631165,222.767436,5.947368
-BKGR1100,363702817083391232,98.117479022062,788.9314090984308,13.000766,34.728413
-BKGR1101,359058441314838528,629.1386717933965,5058.7037478273805,33.131142,51.778759
-BKGR1102,359058479971316096,2.784494607394246,22.38923458015644,33.137162,51.785828
-BKGR1103,359058514331132672,13.481753465872307,108.40248715070142,33.118489,51.783855
-BKGR1104,1510191594552968832,4443.716879533604,35730.51258906317,206.094121,48.028667
-BKGR1105,1510191594552968960,1.1932910440534523,9.59487335215722,206.097737,48.027431
-BKGR1106,3096441729861716224,8805.345091822146,70800.97634109805,123.949894,5.836719
-BKGR1107,4583004815239650176,1029.78457226058,8280.16987145264,271.537705,26.426662
-BKGR1108,356348286886230272,1275.693612978043,10257.446172647136,31.042848,46.687836
-BKGR1109,893550942158776832,1235.2258768205486,9932.057990765936,113.184212,33.835052
-BKGR1110,1810218734055374720,7059.052000672182,56759.58959908836,303.195342,18.104868
-BKGR1111,1810218729741504256,195.3198495778532,1570.5047223818374,303.200726,18.109133
-BKGR1112,1810218734055372544,23.536743860932607,189.2514634993744,303.199931,18.110012
-BKGR1113,1541532207133249920,310.9899690641796,2500.571324851436,188.266255,44.915352
-BKGR1114,2133946843094378752,26.837767187310067,215.7939410508021,284.296064,51.269138
-BKGR1115,2133946843094376192,12.126804637336278,97.50777502389636,284.298395,51.261303
-BKGR1116,3169391577586325120,86.84531227967646,698.2955052788566,113.758247,17.830082
-BKGR1117,1291120362349158016,2117.1244180000813,17023.123371870723,229.991354,36.229664
-BKGR1119,1962153854973972096,1221.086363131282,9818.366663083829,335.512861,45.457378
-BKGR1120,4290415081653653632,2332.0957696170785,18751.63956528879,297.322651,4.672421
-BKGR1121,4290415081653654016,1.3669303338742822,10.991051596426985,297.316887,4.666824
-BKGR1122,4290415150373133440,2.8757185650675074,23.12273737892401,297.313883,4.674419
-BKGR1123,583455604761166848,294.948628561843,2371.5880132898897,135.344391,6.09723
-BKGR1124,601321985813952000,21.465765524314246,172.59938607539908,128.925737,10.206653
-BKGR1125,1506159170017461888,66.18298960744353,532.1563473681055,213.144074,47.014687
-BKGR1126,4270547520706275328,784.7772073677846,6310.143658478865,274.373238,-3.381036
-BKGR1127,4270547525007339392,8.785093360090572,70.6381386142127,274.366717,-3.387076
-BKGR1128,4270547520706333696,1.9667374209531112,15.813909410475834,274.366781,-3.389048
-BKGR1129,4177560894633502720,1485.0681404204552,11940.960084855567,270.444201,-2.970947
-BKGR1130,4177560898933892864,5.416844656718331,43.55512321032203,270.446814,-2.977166
-BKGR1131,4177560933293635072,2.516207086554394,20.23202004540349,270.447648,-2.962252
-BKGR1132,4177560933293633536,1.4379585954081946,11.562167232665065,270.452358,-2.964057
-BKGR1133,1835842749465226368,5620.130255417235,45189.67798516377,305.441397,26.692652
-BKGR1134,1835842783824956928,73408.50527134958,590254.4182827324,305.449786,26.688166
-BKGR1135,1835842852544445312,5.646071598013514,45.39826406149157,305.438501,26.70142
-BKGR1136,4606030169272920320,411.8569330605968,3311.610467217507,274.405476,36.62141
-BKGR1137,3151961363348862720,394.2270145472808,3169.8539056585464,118.063411,12.13941
-BKGR1138,316706322857704960,30.32119972716252,243.80311301033828,21.06519,32.810764
-BKGR1139,128623485853170432,29.8363972715294,239.9049708213097,42.721679,29.022396
-BKGR1140,323386882492982144,9.902534887758453,79.62313015491358,21.871105,38.968147
-BKGR1141,3383298227579280640,588.4998834211976,4731.940189549219,99.898,25.482536
-BKGR1142,3383297853919920768,2.7717010167863414,22.28636539144182,99.890985,25.48045
-BKGR1143,4593808272896243328,29.427026554052446,236.61335122201183,264.273447,25.731186
-BKGR1144,3385777286999240576,1843.938283485027,14826.52064422977,100.848071,27.252287
-BKGR1145,4483640815570090368,4599.878718789993,36986.16021800647,274.743421,10.597294
-BKGR1146,1925321658546436352,6063.82111758711,48757.25494071384,354.774222,42.465973
-BKGR1147,1757302881526250496,36.96122709433463,297.1934589451064,315.905492,11.989404
-BKGR1148,852608874351434752,26.34792273139084,211.85525774280032,150.572631,53.950863
-BKGR1149,1358614983131339392,15694.46013171702,126194.15694496752,256.610682,44.776981
-BKGR1150,2129256395211984000,5777.585500162626,46455.72547583551,292.24731,47.969513
-BKGR1151,1891507552824189568,13891.411650450476,111696.41818143334,343.041067,35.447109
-BKGR1152,898130030131443584,120.43324301404056,968.3653622204936,110.168529,37.140652
-BKGR1153,3540018633568783488,327.90374829039376,2636.569638415083,175.525336,-23.354836
-BKGR1154,6771149120491232768,7.124368604643785,57.28477961540803,289.400767,-22.389914
-BKGR1155,6771149227873508864,7.793748390719098,62.66704935076943,289.401384,-22.383919
-BKGR1156,6803000980210856704,12.9642196669243,104.2411626514416,316.961465,-26.096655
-BKGR1157,3492502001623237888,51.256197115326266,412.1347614947256,176.739094,-22.562992
-BKGR1158,3483606402800185728,142.4775311763575,1145.6164646316963,174.009715,-29.543312
-BKGR1159,5911182735242698496,51.73046486795841,415.9481974910775,268.890685,-61.747311
-BKGR1160,5911182632163485568,324.15026512207805,2606.3890753337514,268.86985,-61.749802
-BKGR1161,6287125101007614080,47.83506640037644,384.6265386728938,207.907777,-23.781174
-BKGR1162,5656896924435896832,45.78744195843554,368.1622424803512,144.926863,-28.58559
-BKGR1163,6134228079203074176,35.13551965529291,282.5135267165092,193.55256,-46.587715
-BKGR1164,6134228117863214080,70.59052000672182,567.5958959908836,193.560043,-46.590881
-BKGR1165,6638230431120193280,165.48033108817444,1330.5746548391564,285.096424,-54.893192
-BKGR1166,6805886373600546176,252.20075429421968,2027.865966840496,312.45744,-24.428793
-BKGR1167,4906145613282734208,200.79198871364449,1614.504450893123,5.618693,-59.942551
-BKGR1168,3498553232585634816,33.39999341192606,268.5587127694566,191.702787,-24.427364
-BKGR1169,6640975950310072960,643.7931940190037,5176.536095176144,294.633634,-55.330105
-BKGR1170,6441034841743467776,95.00498224924004,763.9048135389932,296.688277,-63.565609
-BKGR1171,5605481703444311040,37.82216467173015,304.1159838902052,112.419228,-29.937878
-BKGR1172,2937583121652951936,30.46115602609248,244.92845704921424,94.112075,-22.546885
-BKGR1173,2919151080524391552,39.60466837685095,318.4485286500223,103.517344,-27.050377
-BKGR1174,2919151733354157184,1.1634464027330802,9.354902093563997,103.507976,-27.046686
-BKGR1175,2905983466705521792,34.653442253007704,278.6372958138189,80.538157,-30.970844
-BKGR1176,2905983466705521280,2.592664858142483,20.846792643280303,80.547806,-30.976128
-BKGR1177,4919771654727611008,13.512832117318672,108.65238069182008,6.702437,-56.316124
-BKGR1178,4899428146994060800,247.02811314370888,1986.2744062714007,67.222871,-21.481916
-BKGR1179,5608644895310998272,169.33486316282787,1361.5677200032912,102.847505,-29.058611
-BKGR1180,5631530950664938240,9.588405252670958,77.09731377520994,140.087718,-31.26932
-BKGR1181,2966680597368750720,74.42971930453244,598.4656751782431,88.146797,-19.031656
-BKGR1182,2966680597368752512,3.060175833394644,24.60589954401647,88.138377,-19.033834
-BKGR1183,2596986648798061952,128.15819471550395,1030.4792392972015,341.364027,-14.99176
-BKGR1184,5632704511826797824,24.589312206137343,197.71483043492373,144.287622,-29.800419
-BKGR1185,6766134630213144704,100.17200837548278,805.4512254857216,292.939809,-26.740179
-BKGR1186,6144060260072337024,5.871463712488947,47.21057029117767,180.208792,-46.13641
-BKGR1187,4904279261014267648,140.19947299896407,1127.2993241403972,15.005901,-58.904778
-BKGR1188,4083159643769233408,41.37579782883081,332.68961666179257,290.810104,-20.166317
-BKGR1189,4083159648072137088,1.2727595990862184,10.233854701106464,290.813313,-20.160477
-BKGR1190,4083153772556869248,19.75815468420897,158.86903099796086,290.810896,-20.17708
-BKGR1191,1331356474971716992,1891238.8523451325,15206849.458360529,247.623437,38.347324
-BKGR1192,545560867790611072,2151524.9224372134,17299726.8752402,42.435295,71.75322
-BKGR1193,1827242816201846144,35871239.296675816,288429214.106389,300.182124,22.710873
-BKGR1194,1827242816176111360,5925.791697323989,47647.40431969719,300.179061,22.709513
-BKGR1195,1827242811877457664,2.816737535337495,22.64848969789144,300.176363,22.708496
-BKGR1196,1827242816201852800,1.116211213517056,8.975098976335008,300.172699,22.709558
-BKGR1197,1827242055963213184,28.88992278863551,232.2946708532757,300.188473,22.700834
-BKGR1198,1779546757669063552,6134036.856858428,49321837.34413814,330.794914,18.884359
-BKGR1199,3877070590167177344,236998.9277522633,1905632.9197407144,154.671097,10.129043
-BKGR1200,3997075206232885888,23000982.16100653,184943574.2519488,168.63817,25.71039
-BKGR1201,4081684580199958528,76.86814153937502,618.0722519970253,284.985377,-22.293427
-BKGR1202,4081684648919612928,1.8354661566428685,14.758398969740542,284.978563,-22.287868
-BKGR1203,4081684653237313280,30813.879589000306,247764.5949145636,284.975101,-22.293108
-BKGR1204,662078902422542336,301.81886469015285,2426.8293945765786,126.936744,17.579386
-BKGR1205,145916050683920128,53425.227617723234,429575.2451648039,67.412415,22.882765
-BKGR1206,3579426053724051584,126.10908689435382,1014.003015724732,188.137361,-9.607622
-BKGR1207,3579426053724051840,19.84935418251941,159.6023371267796,188.144892,-9.615799
-BKGR1208,2643952940813536768,49516.09427693602,398143.1486042363,350.91652,-1.189307
-BKGR1209,3406687485600728192,45892.99291312786,369010.9441005628,73.766483,18.654562
-BKGR1210,6032746832450438400,756.3910495396381,6081.899601278674,253.768887,-28.710564
-BKGR1211,6032746905521393920,43.12671523204388,346.76818602476254,253.764866,-28.707253
-BKGR1212,6032746836801906432,3.756179872151448,30.202246418268484,253.766135,-28.716984
-BKGR1213,6032746935529652736,192196.9011602013,1545394.088474032,253.776072,-28.705532
-BKGR1214,2631270757088861312,11.581008520786526,93.11920222726728,347.704375,-7.857524
-BKGR1215,6049750234317822208,8236.569761717734,66227.63500464971,242.573773,-24.990332
-BKGR1216,6049750234317821952,6.364237542665626,51.17280776489734,242.567226,-24.99481
-BKGR1217,3311804515502788352,448.4834085576963,3606.112295151127,63.273348,15.247784
-BKGR1218,3394923127797114496,100.6343813579098,809.1690194220413,76.867348,16.86771
-BKGR1219,3394923127797114624,3.9422701454728073,31.698539056585464,76.860198,16.872942
-BKGR1220,3394923127797116800,204.5249904939773,1644.520329654773,76.859528,16.862766
-BKGR1221,3855246074629979264,15803.24893215793,127068.89305194268,157.935441,0.937565
-BKGR1222,2622296783699476864,223.7414154126258,1799.03348408972,335.624507,-7.95543
-BKGR1223,150054788545735424,1080.802600959064,8690.389596538205,62.670291,24.401718
-BKGR1224,150054788545735296,149.8809306739878,1205.1448428166962,62.671037,24.402699
-BKGR1225,61607255708760960,101.79967257381708,818.5387550709673,52.341872,22.299374
-BKGR1226,61607255708761728,147.1452953871081,1183.1484704764314,52.339483,22.290113
-BKGR1227,6050191241556876672,16972.522033730722,136470.64577570857,245.440753,-23.547789
-BKGR1228,4130539180358512768,1882.5493991300305,15136.980331701212,252.426112,-19.542799
-BKGR1229,665757593450097920,799.3673049659869,6427.457987910885,127.578792,22.235914
-BKGR1230,2881784280929695360,4557.706777209546,36647.06906292289,0.362142,39.383808
-BKGR1231,6710517793025165696,5724.6162779103925,46029.81682462663,284.548373,-47.003242
-BKGR1232,3761497761876022400,9413397.133651746,75690129.21117882,161.707282,-9.398984
-BKGR1233,4608935250790855296,5416.844656718331,43555.12321032203,267.640506,36.570232
-BKGR1235,5560886336446650240,4696.197804279404,37760.63131730108,108.301485,-42.409744
-BKGR1236,5560886302086913280,1.2669117999165775,10.18683440986975,108.29829,-42.4156
-BKGR1237,5489780919480009472,1744.802927098588,14029.404807327332,117.415037,-52.120453
-BKGR1238,1864885215233116032,284.28004868599027,2285.8053592875062,314.268487,31.661034
-BKGR1239,1864885215233110400,2.6408660966144875,21.23436345499529,314.273252,31.656446
-BKGR1240,1864885421386093952,2.990517727062715,24.04580088951252,314.26991,31.6677
-BKGR1241,1864885421391555456,1.6283448357579318,13.093002374060182,314.259763,31.667253
-BKGR1242,1864885387032161664,170.11647737800843,1367.8524310486612,314.256605,31.660557
-BKGR1243,1612165353793791488,7686.814153937502,61807.22519970252,216.524016,59.444275
-BKGR1244,3438059369839738624,562013.0255417236,4518967.798516377,92.663969,30.957184
-BKGR1245,3438059369841023872,8.198726161207594,65.92334666200783,92.661877,30.953283
-BKGR1246,806492019492266752,27148.53388489328,218292.71712076265,148.643324,40.388069
-BKGR1247,727624020367528576,25512.1101392882,205134.75480487337,157.06254,25.573223
-BKGR1248,1464700950221781504,10297.845722605802,82801.6987145264,195.981868,30.640051
-BKGR1249,181908842994567936,357064.259230241,2871040.022439432,78.295529,33.318169
-BKGR1250,4534144923690481408,8293.662935780745,66686.70303934011,283.30551,24.12738
-BKGR1251,4534144923690482304,7740.09660417796,62235.65241743577,283.303331,24.125698
-BKGR1252,1055895483267019392,146.13235429857642,1175.00373369483,165.1674,64.96402
-BKGR1253,2133599775377340672,10.70893743153428,86.10715625813798,286.243425,50.040382
-BKGR1254,2101486923385239808,2470281.131437084,19862744.06271397,289.752185,41.634533
-BKGR1255,2101487301342366464,54.29331773283058,436.5552813883402,289.764463,41.63393
-BKGR1256,2131587531660567296,194.8706263896359,1566.8926617539826,285.268586,48.560013
-BKGR1257,2079018300195390464,21.22004893824104,170.62365724072325,299.407009,44.035046
-BKGR1258,2086636884980514304,28.956520938715418,232.8301653738196,296.837254,48.239964
-BKGR1259,2086636884980518912,78.29722698773249,629.5630730793853,296.849669,48.232895
-BKGR1260,2102117871259036672,36.37025794338463,292.4416641615504,288.581518,41.089806
-BKGR1261,2102118077417462400,3.425676757972623,27.54477610635912,288.567302,41.09013
-BKGR1262,2102117802539556864,6.962198176266923,55.980818834427446,288.583625,41.079121
-BKGR1263,2077841169916858240,11.213634103850454,90.16526150937624,293.351293,43.13464
-BKGR1264,2371032916186181760,18825.493991300304,151369.80331701212,11.247108,-15.271294
-BKGR1265,2371032916185811328,1.801965123766936,14.489027830811064,11.245929,-15.281094
-BKGR1266,6220602384081327104,1980.37019347361,15923.526193761683,215.122877,-31.20207
-BKGR1267,6220602384081328256,2.402959112554046,19.321429143597427,215.119372,-31.192595
-BKGR1268,6220602173626073344,2.610636352382837,20.99129570650576,215.135065,-31.202431
-BKGR1269,2244830490514284928,486.1232370276545,3908.7621716970816,303.381672,65.162041
-BKGR1270,3620030644476623616,299.74115823997704,2410.1232185336585,207.655866,-6.804028
-BKGR1271,2878641361300809856,75.29157483479649,605.39558109009,359.151996,36.212971
-BKGR1272,2878641361300809984,3.1823385601298337,25.588171134186748,359.159001,36.215561
-BKGR1273,385697172809355392,37.73517610689234,303.4165365367167,4.859266,44.027641
-BKGR1274,385697172809354752,2.610636352382837,20.99129570650576,4.849786,44.033623
-BKGR1275,382111248777193216,137.95783845283896,1109.275054471172,7.053898,42.061333
-BKGR1276,382111253074050816,1.609705326557152,12.94312801522787,7.045091,42.059692
-BKGR1278,2098964849867337856,1891.2388523451284,15206.8494583605,286.041062,36.632629
-BKGR1279,2098964849867339136,10.53771336353085,84.73039804351716,286.042481,36.633629
-BKGR1280,2131314401800665344,1777.2412353942334,14290.230916268622,286.808473,49.316402
-BKGR1281,4609131509318715136,307.43009632565986,2471.9475215922844,268.029265,37.546154
-BKGR1282,4609062308806929152,583.1044840593928,4688.557501127309,268.304354,37.211849
-BKGR1283,2188601779406152448,31.97027567518248,257.06280765749875,305.221841,59.448788
-BKGR1284,2862548428079638912,660.3077295531389,5309.324217327364,5.166978,31.98999
-BKGR1285,1909762228985058944,1296.42196669243,10424.116265144165,348.992912,31.462852
-BKGR1286,4675352109658261376,2671.445884786746,21480.245795360417,68.959728,-64.027039
-BKGR1287,4675352109659599744,5.857959720682036,47.10198899260716,68.945973,-64.022293
-BKGR1288,2924661867160818304,10489.296968556217,84341.09722686841,98.351102,-23.48621
-BKGR1289,2924662245117935488,15.586420228110692,125.32544247899726,98.362175,-23.482721
-BKGR1290,4439085988769170432,213.17996233837272,1714.1122025907944,249.314868,7.183352
-BKGR1291,3868603216762016256,1635.8609340207008,13153.436927133394,160.602432,7.435026
-BKGR1292,3868603251121754496,1155.4372940318265,9290.503400524993,160.601768,7.443054
-BKGR1293,3788394461991295488,860.4910967089166,6918.93493605328,166.429747,-5.079412
-BKGR1294,3578638842054261248,28757.18565067508,231227.3737892401,188.386852,-10.146148
-BKGR1295,123376685084303360,4728.75029232124,38022.37550922769,47.368964,30.673594
-BKGR1296,123376719445431552,2.5570921627028818,20.56076392527499,47.367272,30.677927
-BKGR1297,1587399232335653760,609.1810444151605,4898.23082040705,224.872776,46.960117
-BKGR1298,2726339892542980864,105.13477295338514,845.3552353572751,327.665717,10.46301
-BKGR1299,4746157737910069888,20689.32782664089,166356.29775914867,36.775432,-50.284519
-BKGR1300,2562569564026683520,2031.170503627077,16331.99531334639,19.550553,2.702846
-BKGR1301,4672607178880426624,355.4236979803921,2857.848791769262,55.933441,-65.193855
-BKGR1302,3435282862461427072,808.6235421106971,6501.884443689304,97.63664,29.672291
-BKGR1303,4837286842167819776,1654.8033108817444,13305.746548391564,62.616051,-45.89822
-BKGR1304,5565050255701441664,5269.220601453839,42368.12518410437,107.600275,-39.097393
-BKGR1305,6756148659453907072,244.76334578937104,1968.0641330566127,289.478676,-32.86113
-BKGR1306,6756148659453907200,5416.844656718331,43555.12321032203,289.479327,-32.859962
-BKGR1307,6614751532833886464,61.05853517550803,490.9522408608588,332.714323,-30.749672
-BKGR1308,4666498154837086208,3145.910631862448,25295.265761311617,63.373865,-69.226807
-BKGR1309,3778075717162985600,28493.5381879008,229107.46848404,160.558664,-3.835064
-BKGR1310,3778075815947014784,2.539489264071625,20.41922462198478,160.563538,-3.832746
-BKGR1311,5380888758195682944,482.7767882024971,3881.854442173032,176.298965,-42.063927
-BKGR1312,5380888758195686144,1.160770550260911,9.33338641580251,176.306032,-42.059822
-BKGR1313,702295464353437952,9478.647685352746,76214.788122221,140.102976,33.882439
-BKGR1314,702295464353438080,6.962198176266923,55.980818834427446,140.097121,33.887089
-BKGR1315,6173451477191225984,33323.1755587514,267941.0448701888,210.193542,-30.583567
-BKGR1316,6099012478412247296,2640.866096614487,21234.363454995284,217.609126,-46.15918
-BKGR1317,6778662809294560896,82.36569761717733,662.276350046497,314.575373,-35.796555
-BKGR1318,4596481632339898240,114.48441812471876,920.532755337502,267.284974,29.879107
-BKGR1319,2441013811932929280,19531.98495778532,157050.47223818375,0.32575,-8.926325
-BKGR1320,2498515516990171392,399.7112586144677,3213.950966069084,41.639084,-0.463922
-BKGR1321,4851398799032507776,420.4810046003145,3380.953880641993,49.562228,-41.302147
-BKGR1322,1242084170974175232,29836.3972715294,239904.9708213097,218.276477,21.894714
-BKGR1323,5094154336330994688,8526.020669150072,68555.01759276194,60.38562,-20.451092
-BKGR1324,5094154336332482176,663.3555715519605,5333.83094443456,60.387701,-20.450634
-BKGR1325,2980392087185289216,79.75288111822253,641.2675244755451,71.824413,-17.115154
-BKGR1326,5674618444832114304,45.05535139149392,362.2757353225893,140.50639,-23.946169
-BKGR1327,5674618444832114560,1.4182290638381712,11.403528351014929,140.505281,-23.945187
-BKGR1328,6582435924022652672,158.0324893215793,1270.6889305194268,320.76288,-40.04826
-BKGR1329,6458529931463278848,7975.288111822253,64126.752447554514,322.252865,-58.836193
-BKGR1330,6458529931463278976,862.4747335507425,6934.884728326371,322.252604,-58.834763
-BKGR1331,2340919358581488768,173.2791788233428,1393.282706395057,359.191558,-22.153164
-BKGR1332,6171009049549197824,2527.8213707629443,20325.40680684139,208.927939,-32.159607
-BKGR1333,2657135741633337088,81.04876118906591,651.6872835287018,349.063433,0.306745
-BKGR1334,2110106372987465216,110.85272695711934,891.3314829564588,279.26241,40.018707
-BKGR1335,3630269399833507200,214.65765524314244,1725.993860753991,201.655321,-8.317587
-BKGR1336,2424621502311961344,163.96319829359516,1318.3758730793056,4.146313,-10.976422
-BKGR1337,4864759888238232320,119.87990252538924,963.9161275298555,68.136454,-38.968338
-BKGR1338,6283723285046532864,3211.784376284151,25824.935566602053,214.683032,-20.275484
-BKGR1339,2910755484609597312,109.8364230475896,883.1597068019037,87.679409,-27.623163
-BKGR1340,2910755484609594368,183.96973431178628,1479.2420593014465,87.686258,-27.618069
-BKGR1341,6491038642006989056,137.00814337297692,1101.638858708326,344.873422,-60.447769
-BKGR1342,2415410962124813056,117.96315544254526,948.5041745116438,357.580534,-17.077572
-BKGR1343,6154982877299042944,2166.4385807259523,17419.642853166028,196.043901,-35.549519
-BKGR1344,6154960165513443456,6.334996527281325,50.937690070267024,196.035462,-35.548157
-BKGR1345,6154960161216677632,133.8894572781233,1076.562496781056,196.034366,-35.54871
-BKGR1346,5555500000779464448,449.517269588411,3614.4252425271015,96.74463,-46.821438
-BKGR1347,5555499966419725440,837.0403254083936,6730.374750539274,96.755426,-46.826237
-BKGR1348,6042793005779654656,744.2971930453244,5984.656751782432,239.962306,-28.061733
-BKGR1349,6086712585429729536,924.15832727928,7430.862865999149,199.433836,-47.23756
-BKGR1350,2323985539482908416,1240.9274204143958,9977.902287484145,354.168208,-34.611233
-BKGR1351,2323985535188372480,489.4928823278975,3935.856416691746,354.170142,-34.611816
-BKGR1352,6139403450370668800,328.6596444968383,2642.647559140588,195.793985,-41.384827
-BKGR1353,6139426707617728640,25.10419970846083,201.85487690558267,195.803338,-41.385677
-BKGR1354,4955371367334610048,92203.28221086827,741377.2355664001,24.354311,-45.677898
-BKGR1355,5411736896952029568,411.8569330605968,3311.610467217507,148.417002,-45.659191
-BKGR1356,1748596020745038208,2909.0178166560527,23390.48605876695,307.725542,6.429536
-BKGR1357,2359978293136820864,5078.627747558564,40835.62872897347,5.160559,-23.935728
-BKGR1358,2831084391023184128,1299.4105279750786,10448.146334887057,347.492721,18.396086
-BKGR1359,5086537022856406272,599.4409131236848,4819.91352586201,52.818043,-23.819702
-BKGR1360,5557345496687437696,442.3299855064183,3556.6345795900497,101.127587,-42.761826
-BKGR1361,1153682508388170112,886.6380828124518,7129.174526347898,227.215586,2.343304
-BKGR1362,6186950525042445824,835.1151860820063,6714.895318162744,195.359879,-27.5222
-BKGR1363,2416782701664155008,2545.3433914215875,20466.295796104627,4.602897,-15.267305
-BKGR1364,2416782705960292608,40.43396968507595,325.11667642742304,4.605523,-15.27075
-BKGR1365,2641087471777046016,231.0714987085888,1857.9723500403288,353.616152,-1.580064
-BKGR1366,6534414719318224512,20546.903495678856,165211.1090605019,357.879538,-39.906719
-BKGR1367,2095108312831835648,5429.331773283058,43655.52813883402,278.631793,35.661533
-BKGR1368,2095108312831833984,108.0802600959064,869.0389596538206,278.626065,35.659447
-BKGR1369,2095108312831833600,30.18188646901529,242.68293945765785,278.621824,35.661396
-BKGR1370,3545873945303316224,279.09135303909136,2244.0847096245607,169.439021,-19.054773
-BKGR1371,3545873567346193920,3.153162704840696,25.35357737113525,169.436545,-19.064484
-BKGR1372,2546413408888429696,860.4910967089166,6918.93493605328,3.961682,1.200451
-BKGR1373,3537110833333561728,20125.48620517641,161822.62680302584,165.399561,-23.860636
-BKGR1374,3211188618762023424,3721.74300809089,29925.35055874361,76.081782,-6.229821
-BKGR1375,5750936092375254016,63.34996527281324,509.3769007026702,131.580405,-8.026946
-BKGR1376,3652176997218325888,100.6343813579098,809.1690194220413,221.943987,1.064966
-BKGR1377,4453211899986180352,125240.95804649255,1007022.6680634536,243.959845,10.032566
-BKGR1378,3643098875168270592,782.9722698773248,6295.630730793852,217.326702,-3.444534
-BKGR1379,6535499658122055552,223.7414154126258,1799.03348408972,353.562841,-42.061428
-BKGR1380,6160877943251930368,2622.6865022785946,21088.1871251588,190.618736,-30.63987
-BKGR1381,6139698733664726784,1155.4372940318265,9290.503400524993,192.981545,-42.073608
-BKGR1382,3767805209112436736,6741.342324981724,54204.98725274884,154.908372,-9.806276
-BKGR1383,2424406513428936832,56.85208296644522,457.129497944126,3.903165,-11.938115
-BKGR1384,2308834780352875904,633.4996527281324,5093.769007026702,5.237497,-35.99826
-BKGR1385,6462994429708755072,49.516094276936016,398.1431486042363,318.736981,-55.87178
-BKGR1386,2613413008919918976,801.2100369156216,6442.274808808709,331.203047,-12.018885
-BKGR1387,2141754578242371584,529.3542218680757,4256.368756444305,291.16233,55.47316
-BKGR1388,2991284369063612928,2222.0119034269346,17866.490246961268,91.089427,-16.965294
-BKGR1389,6533307957785865856,314.5910631862448,2529.5265761311616,359.348991,-41.277149
-BKGR1390,5160557726183065984,1338.894572781233,10765.62496781056,43.688073,-10.89808
-BKGR1391,2666015878575546496,1022.6955851282686,8223.169582991115,348.494748,8.761262
-BKGR1392,5136559128264765184,507.8627747558563,4083.5628728973466,31.909202,-20.661839
-BKGR1393,3661983850663908608,11501.285418892676,92478.17414805348,205.454308,-0.128076
-BKGR1394,3603529272750802560,500.8946362574451,4027.534289823901,203.758114,-17.503464
-BKGR1395,4001613814138156416,366.2236452750288,2944.687729359889,183.366285,23.055698
-BKGR1396,6340377202215639936,71.0798301154851,571.5302827835357,223.820104,-2.057665
-BKGR1397,2115245554756763392,646.7648083852546,5200.429900160027,274.701064,45.172016
-BKGR1398,2385171398768647552,589.8565157613014,4742.848438256525,348.157246,-22.673937
-BKGR1399,2959177048983750016,122.39012579119796,984.1000335778376,75.299663,-26.054144
-BKGR1400,4756649415309914240,14182.290638381712,114035.2835101493,87.139961,-63.988434
-BKGR1401,5574766468155514752,5043.666720056267,40554.51823810248,94.336431,-38.323257
-BKGR1402,5583523425437258240,137.95783845283896,1109.275054471172,101.115041,-32.858402
-BKGR1403,5583523425437410816,1835.4661566428688,14758.398969740543,101.123037,-32.858212
-BKGR1404,5583524181351657728,1.0393130515912332,8.356785339968777,101.107368,-32.851505
-BKGR1405,5583523391077515520,1.6023094023945954,12.88365974383212,101.103792,-32.857132
-BKGR1406,596931979481073152,562.0130255417236,4518.967798516377,133.324304,8.523038
-BKGR1407,5444147952811517696,440.29766383011054,3540.2933280637008,158.224966,-34.989845
-BKGR1408,6868476691490044672,926.2887322453348,7447.992774029522,295.74384,-19.949596
-BKGR1409,6860535606196306304,14052.266616262255,112989.80174675948,305.095785,-19.31468
-BKGR1410,6910753016653587840,433257.7910495113,3483687.952466729,315.025778,-5.094404
-BKGR1411,6681720724498802176,50089.46362574451,402753.42898239015,311.042609,-39.225273
-BKGR1412,6888469489370835840,3279.0374829039374,26365.696384150822,315.476951,-13.433218
-BKGR1413,2507901914613005056,5966.867323054611,47977.68034808937,29.263338,0.758834
-BKGR1414,5065640460769428224,3011.247005642152,24212.47841855494,41.039999,-30.169039
-BKGR1415,6453566701615683456,11688.166273282462,93980.82359702782,319.94961,-58.148876
-BKGR1416,4224062406762625152,74945.64147148421,602614.0410577502,304.538823,-1.075676
-BKGR1418,2605161444735454464,1080.802600959064,8690.389596538205,342.385707,-10.67556
-BKGR1419,2512326349403275520,71243.68604643786,572847.7961540803,26.632746,2.700539
-BKGR1420,5178405479960844160,49062.1279959102,394492.950277266,37.155115,-7.060681
-BKGR1421,5089851638095503616,122.39012579119796,984.1000335778376,63.75624,-22.116434
-BKGR1422,4884779765893739904,10958.380628462124,88112.84958417679,66.370903,-30.600445
-BKGR1423,2312679845530628096,102269.55851282684,822316.9582991113,359.900292,-35.031391
-BKGR1424,2312679845529776128,21764.384068656105,175000.48271300812,359.900526,-35.032494
-BKGR1425,4223507222112425344,55557.97156367791,446723.960187841,303.167407,-2.144208
-BKGR1426,4223507222112425472,5.196924184479266,41.78681271373716,303.169283,-2.142587
-BKGR1427,4244243354278985472,159.86241930325673,1285.4028148689383,304.20789,3.29405
-BKGR1428,4244243358575904896,386.1414127266306,3104.840155801194,304.211733,3.288433
-BKGR1429,3231856379348299008,21714.3273743567,174597.99277174537,72.660671,1.893921
-BKGR1430,3515865416826633984,504.3666720056267,4055.451823810248,190.152085,-19.284243
-BKGR1431,3078836109158636928,17407.899917240342,139971.38071662877,131.107099,1.860033
-BKGR1432,3909745223886018432,23054.004900913144,185369.9132215769,175.90836,6.56373
-BKGR1433,6482103014085857024,593.9452057986379,4775.724293044817,309.511192,-48.462067
-BKGR1434,6857756246957592320,123.52258768205486,993.2057990765936,313.899962,-18.971106
-BKGR1435,1737061349198867456,704.2816631597367,5662.904616555246,315.531971,7.056235
-BKGR1436,1737061353494250112,12.52409580464928,100.70226680634556,315.531968,7.058946
-BKGR1437,1424011082893734272,37.73517610689234,303.4165365367167,246.692114,51.041115
-BKGR1438,415703635408772480,1424.7753117635752,11456.164646316964,9.458792,51.288761
-BKGR1439,415703635408771840,59.12162754619308,475.37818330740953,9.456235,51.295605
-BKGR1440,415703635408771968,1.7936858460761202,14.422456794946353,9.466089,51.294701
-BKGR1441,6780546169633475456,16662.738594476465,133979.77577291054,313.783098,-34.135555
-BKGR1443,6780546169633474944,8086.235421106971,65018.84443689304,313.788158,-34.135521
-BKGR1444,6518399301667782016,34020.94565045206,273551.5920138671,337.457189,-48.003086
-BKGR1446,4990044668377961984,151.9659821151662,1221.9100775936895,1.046351,-47.360626
-BKGR1447,4911563216311083392,11634.4640273308,93549.02093563996,24.604338,-55.772083
-BKGR1448,4859136199796131200,64.8255755248989,521.2418129187317,58.428794,-34.328194
-BKGR1449,4745660479479743488,101799.67257381706,818538.7550709671,39.897688,-50.008003
-BKGR1450,1316708918505350528,3704.643152243849,29787.85606231701,240.54935,28.169586
-BKGR1451,934346809278715776,6134.036856858428,49321.83734413814,117.026968,50.2258
-BKGR1452,934346740559239296,6664.174817502475,53584.507894544695,117.031174,50.217556
-BKGR1453,470650560777348352,20171.880242312804,162195.66648419772,65.469581,57.817181
-BKGR1454,990291507088739072,4894.928823278975,39358.56416691746,110.388223,58.268108
-BKGR1455,920308932010648448,563.3085993684773,4529.385095158314,116.716527,39.094578
-BKGR1456,1114308481600798336,7075.324796137997,56890.43396631807,94.79328,73.827682
-BKGR1457,1114308515962375296,819.8726161207595,6592.334666200783,94.767155,73.819916
+100550790,4.18800292220059E+018,266724.441941553,334173.433726551,292.84732636406,-10.89048807784
+100788584,4.20819847690484E+018,210942.571435448,347605.740712006,293.22134558444,-6.38156852855
+100799124,1.89133307407407E+018,65032.3676639404,96438.8627151397,341.95254350547,34.4377584748
+101569425,8.8615724185887E+017,25188.2729114966,39905.3096848039,107.94391923654,29.14080261282
+103444222,5.50127895495508E+017,101415.403666224,128481.613840259,66.64432432755,74.9489373182
+10506521,5.18234434731525E+017,1519739.19062531,1951440.31751505,28.62277705619,64.79315595999
+108191368,5.61368622054351E+018,941320.336790133,1206601.36217073,111.9795806756,-25.313420776
+111058824,6.33199789282013E+018,136513.392175341,205667.491546241,219.07652860971,-5.47104935277
+112331395,6.74299818684653E+018,106498.568871026,141562.770457242,290.89830939579,-34.68555805733
+113910888,6.75117741948881E+018,155098.522762267,241556.614500554,294.60708690759,-32.05862120552
+115183347,1.40715227110474E+018,54392.2031920925,78293.5125472307,249.18116804654,46.60476967936
+11523423,5.65695348486127E+018,17378.2359611627,31625.1063086498,146.40139657202,-28.36804620696
+115508162,1.3590994210828E+018,118253.575018724,199237.735438825,253.34587487683,44.85223117692
+11569594,5.03017416702834E+018,293955.246631391,450094.88801025,19.96612138019,-28.80852582981
+115853715,3.67986445665672E+017,410556.232335338,539830.153564179,11.61853762943,38.83720022257
+116266435,1.59007702418539E+018,117188.214872566,168874.245133877,221.0192255789,46.26177753598
+11652749,5.03547044581971E+018,133764.05290995,189837.644848438,22.24400172083,-28.24532709319
+11801125,9.93920754454849E+017,415410.554561393,538835.227635419,102.25599992724,54.1972376191
+118189044,2.97957656739242E+017,330547.449804661,476335.878333131,30.46260055323,27.04400442943
+119738480,1.18692984593094E+018,89979.8272547395,133323.981383046,225.27662812845,15.69988638279
+120579932,2.30878568458237E+018,424572.667879693,557330.846048226,3.93308063189,-36.09332188105
+120933166,5.08679781327064E+018,16315.118258769,25387.2879569524,53.65318264482,-22.2232248052
+120977978,5.10100965389464E+018,74548.1092509209,112312.223351748,54.86464456654,-19.79214532875
+122068964,2.10138470316263E+018,136675.151765849,183932.373994319,289.66681511511,40.85507251644
+124711673,3.0490822937258E+018,54470.8236110949,69114.2669695589,104.69162894811,-11.29443026742
+125884499,1.57915472050611E+017,54933.0089965692,264904.215050185,69.55439166864,28.21639786419
+12696393,2.02879298704568E+018,205205.653759793,291227.407005174,298.47871060548,29.38294978188
+129115451,5.90590219321532E+018,298001.513502571,411677.795145749,220.44303209459,-46.78051193709
+129577681,2.85133533362244E+018,192317.307275812,246515.786872,357.27636239905,24.42692115411
+130706946,3.46803882997668E+018,157308.677436543,217452.610370167,186.2762269476,-33.84127281888
+13092656,4.87707905703388E+018,45848.2247221914,64199.2865452462,76.19012866997,-28.43781498609
+133437950,5.40619339985609E+018,26325.8945326779,42514.4031843294,149.82317510709,-49.86877286835
+134290926,5.55931753951192E+018,77404.7302593836,99218.7773487078,107.19136811145,-43.45071242655
+135830430,4.3439401280167E+018,90144.9940006423,127829.501922995,245.102546678,-10.9036407647
+138183666,1.47861722837795E+018,324011.499695672,441969.949810509,211.78723312933,32.60339950115
+13883077,4.81758413925764E+018,15792.7241534562,24574.4118913684,73.76223889003,-38.0181575438
+140213863,2.90118183070767E+018,230628.985080829,380858.017845306,84.90384303372,-33.22240196025
+14197599,1.0023537681204E+018,187932.878688358,270515.336736875,104.0401279731,58.5643225536
+142678745,4.54415401854712E+018,43243.0060121443,62213.3277281828,255.67190190359,12.25959473091
+142945757,1.68138857865376E+018,94243.4436628905,133641.280982761,180.35435074807,67.01430841447
+143169402,2.89127911359212E+018,87197.4918576897,118822.136376304,90.0499218773,-30.54073007737
+144309685,7.57170474785811E+017,240586.050415213,336882.243288918,170.29500477026,31.54745388278
+144644879,6.00390716215706E+018,39079.5642684119,56223.4211914087,229.81010710943,-42.66631043939
+144915835,6.1554119617132E+018,404707.998630593,544693.446942948,192.95122563921,-36.06698685541
+144992248,5.31864437416662E+018,71575.7523839818,92841.9760010022,131.51745722979,-52.11341123297
+146346698,2.97630307645847E+018,857933.728423015,1101640.65256947,74.44853358592,-18.47231846018
+146613712,3.82227827932802E+018,14108.8148368088,21954.1493986438,149.47941015338,-4.43624548182
+147027804,5.39087596591046E+018,113850.811295766,157379.470562237,161.70554152376,-44.00966763735
+147349902,6.56601636283351E+018,278279.689155343,394612.641856024,326.30237879338,-43.41694898814
+147625771,1.58487331052843E+018,169090.456666196,243393.076603868,184.32614938023,64.72306363202
+147663573,5.38764371096226E+018,270071.517742946,338841.170517893,164.01198008993,-45.2739422496
+147976204,5.58054917776323E+018,77968.9982714438,103639.959752165,99.68773853976,-36.63476683534
+149120404,4.75786664339509E+018,213310.707439875,302926.713143031,80.82107771507,-61.88009852896
+149697410,3.07242269219376E+018,285674.042054713,389486.549722281,129.93326806785,-2.20210591211
+151789862,5.40042464028053E+018,326203.133489097,433445.20188695,167.87362746877,-36.48222124578
+152539368,4.83713146743092E+018,162669.475745527,281130.00223472,64.00012899688,-46.24961557062
+152690541,6.70095991024264E+018,327482.118267661,410295.445320476,304.29408851296,-31.62516049446
+152820605,6.54787957922983E+018,271852.659374511,431205.032993238,344.08859758186,-36.93632091796
+153077195,4.8509802287003E+018,23141.8821745562,36010.1357573295,49.57640246625,-42.80682896808
+15324246,1.84729154741078E+018,57394.6887269138,86377.2238365683,322.64353256762,27.50423742343
+153540510,3.32900616446514E+018,58513.2828526861,72472.843464662,93.46559185126,9.0934079536
+153990952,1.6724088972538E+018,1336105.0071089,1951782.54569585,204.50262224478,66.88651166685
+154858209,4.05919665127455E+018,501258.246788745,701890.248705595,259.96023092292,-30.03054078279
+155940660,4.92428734898359E+018,102849.248068504,136711.926092168,5.46984326164,-53.19636044595
+156692936,1.28358637123576E+018,44241.1293446532,67678.7203390244,216.69507997705,27.99740736499
+157343567,5.56619952022992E+018,118845.524495951,154156.30250066,106.12225197449,-37.32051201728
+158070580,5.57131317700953E+018,31547.2103174218,47477.5717848256,90.27989171903,-43.4637327665
+158703520,4.58381687329702E+018,158297.614564927,231241.197016792,269.20464106906,27.78692768515
+159953133,4.18659994966638E+018,13649346.0992802,17920547.7674799,292.40819914459,-12.64683114445
+159976104,1.34507315740688E+018,1514870.30664201,2066368.49027581,269.88220386947,41.73253023415
+160189951,1.72352079907855E+018,485479.26803513,615046.208712083,256.20374384619,84.1190756544
+161722484,1.60179122106767E+018,190830.249419443,256836.995717624,236.46136392439,57.39109790281
+161727542,1.62581785223705E+018,99779.1731781342,143624.664138423,237.22106992774,57.69753398582
+162329616,1.89827518433351E+018,357428.659483995,452820.867087628,331.85675931103,30.27617908732
+163450148,5.37207668790098E+018,38997.9401971977,54608.3329347606,173.85398399253,-47.74754806173
+164464070,2.10513585457704E+018,95127.9751286329,136859.770573142,283.37488947362,43.78837490692
+164677569,2.10673341491197E+018,122528.004386849,211242.954357438,284.34915393031,44.90263774243
+164725982,2.10714064653086E+018,214358.222324343,304216.710465589,284.56518727023,45.27537752235
+165191661,4.85260908645683E+018,5174897.39592627,7148924.63956836,47.96955417817,-39.02334615391
+165557886,3.45894655600996E+018,15408.1073914319,98343.8021231442,180.96173728763,-40.39444479501
+166235533,6.11247338695566E+018,85214.1440865053,107956.487610428,206.4037685061,-40.76196999188
+166346096,6.67034232533996E+018,97802.4949946558,140779.383457508,297.91728622084,-49.05132790856
+166802825,4.74166145690715E+018,386220.173702095,564801.29538261,39.13093140576,-53.68683136538
+167020210,1.86772277555808E+018,1574940.11457862,2042837.55721822,318.61089171383,36.32192637668
+167339916,5.28023787894559E+018,58532.586006271,106518.248722345,98.36904041202,-67.96622924309
+1683060,5.64268958924059E+018,125962.434783053,163387.753264132,132.43587265119,-28.50773038886
+168314172,5.4731908996242E+018,169599.521060466,231231.134226761,154.53408299422,-24.59283147206
+168784942,4.88208225155406E+018,887019.024762846,1241585.33826819,63.01537490147,-34.34009365624
+169675780,4.47673653539027E+018,74141.7898157464,98552.659256037,276.19220464047,5.5677624909
+169903854,3.03619405464284E+018,75850.7523640176,96094.1506617515,120.69193200221,-11.89413494319
+171629560,7.21235136255345E+017,6785.93413957372,26090.7873613813,158.38489362283,21.48280779319
+171655448,3.74574024842166E+018,148390.198833725,231564.138909564,204.23496856098,17.28981294302
+172298489,3.43580289710333E+018,937189.071708463,1262691.51551014,98.57979318737,31.01080889895
+172621936,2.9203461809437E+018,487500.163154028,789928.518599403,100.86441927769,-26.01664235655
+172623939,2.91885246003758E+018,428697.797900076,635731.554788253,100.92095413241,-27.85945353665
+173152591,5.9172262309602E+018,54384.6923917252,70543.1958442923,257.07912514179,-56.56286925262
+17416749,1.33006021948198E+018,804137.828836037,1082179.00912989,242.20099841974,35.69113165384
+175319102,3.82811641548852E+018,1580408.96606275,2002195.79511865,152.13593948635,-4.14669793833
+175480096,3.65978255966569E+018,337047.905566637,478337.635112733,212.89342509652,-0.65368614798
+175493503,3.64923731544243E+018,285971.463315047,384886.839482048,218.93913458475,-2.45712172921
+1755665,1.81454744691729E+017,32780.1614659998,56514.2491956436,78.59306781158,32.65530096657
+176783673,5.6770956101696E+018,962449.432284257,1312198.70820485,142.73031226684,-21.0122743797
+179081800,4.88605973486731E+018,4811211.57621027,6828060.73296978,64.89305686742,-28.78602406029
+179637675,4.65874353987128E+018,491001.565209454,739730.062710024,80.58040104879,-67.85853638626
+180570797,1.52313057866951E+018,776280.78353732,1133991.17721275,197.89642514006,38.96039981675
+180937237,5.5299999209585E+018,395370.431675645,500888.713289052,130.10065910413,-37.78711763566
+181079658,5.52836924212938E+018,320438.194226279,396885.389597518,130.30328278855,-40.14994477348
+181412841,4.29312808792674E+018,81072.5572417722,103920.263956194,287.86758717466,3.94945416361
+182007233,6.70999239826979E+018,84849.4097026644,111380.681481098,281.53770390812,-43.33965968939
+185615679,5.63956934704217E+018,84647.17516533,113925.995754326,130.41240576346,-32.19992364047
+187064502,6.89912028671026E+018,22080.8209117009,36386.3018549885,321.25631985543,-6.19856683158
+187413972,6.89826565693774E+018,4216976.01078867,5825592.51849951,321.84692271892,-7.01620199837
+18846631,4.0327434665174E+018,400838.307834878,539433.398591362,177.02450509622,37.26122855966
+18941118,6.54467017782615E+017,183186.894720552,323966.163788953,119.25566003744,14.28368158311
+189589853,5.63359999103134E+018,114668.758589498,158260.404241025,143.89688560361,-29.0387610996
+190057184,9.65448862196042E+017,55032.1730357831,84263.5068408502,96.35105263619,46.25861770056
+190257497,5.52539987353934E+018,1373878.27369408,1785105.36492339,132.73259458327,-41.03757389374
+190626077,5.98614530776021E+018,168229.690477536,215639.846764614,235.65277909402,-48.41321263159
+191251222,3.88425744054752E+017,95915.2470037694,121513.550408723,9.32693265131,46.27459679812
+192988913,5.46891386811191E+018,753604.388993295,1040089.18146161,155.30710381639,-26.81622077039
+193061690,4.04137909970703E+018,179823.337141809,225296.869732076,265.38385700114,-34.76726705305
+193220820,5.47417568838273E+018,917733.416060979,1322501.05855283,157.92571983733,-23.92146916497
+193380428,4.40638270332812E+018,176134.258677743,296757.123552333,242.50826201461,-1.29847987568
+193728601,1.3629437604103E+018,47624.2614315,86455.03757423,267.89359396566,47.19333667356
+194423763,1.87275067043586E+018,27940.2218056427,43476.6358059791,312.55141656171,38.76897793065
+195929018,2.07020605809354E+018,625495.559839333,783670.208536335,310.80709774014,45.1157069572
+196397320,3.77742721578864E+017,382385.946902372,502043.511572432,14.94518760801,45.14824607346
+197759519,6.5733347508839E+018,71244.7060560983,101028.075916637,331.58814052516,-40.23991659927
+198033349,4.68185489630304E+018,75233.533812735,117171.700498572,60.99108658965,-58.95816424485
+199496312,3.94350105549336E+018,647720.690457263,962372.933139211,198.5472758161,21.14332070303
+199957319,3.2229947966636E+018,42249.9317809461,69676.6845331718,85.8338350716,1.86232467967
+200700661,4.74945166858858E+018,14399.0412289433,79040.5424808852,47.25194226674,-49.41376749807
+201307068,4.92308671234887E+018,69816.0562938163,106900.116780334,3.87473159571,-55.20332389038
+201563847,6.63799775126946E+018,71869.4508784986,104895.593812545,284.93631891791,-55.53662831305
+201977462,3.9576498847373E+017,110767.502637304,145403.014571987,3.46934770258,51.60236716946
+20233557,2.88328607637463E+018,40263.5908534627,61650.3250473089,90.58033174935,-38.08140426106
+20440708,6.50919954614454E+017,32804.7873349302,43605.6243801492,127.41440076747,12.81336075774
+205236947,6.03198284797889E+018,73440.8847455261,97620.984547857,249.07127284748,-29.07678880959
+206923242,5.9324062946584E+018,49594.9413322636,67650.2955190256,242.70948118846,-55.35004056589
+207147439,4.72747095368056E+018,90795.4234917931,127088.894414724,45.48046704148,-57.25643018102
+207341633,1.52840493594807E+018,2354701.34585339,3090984.86494963,191.70192784441,43.1516987373
+213006022,2.52912664655839E+018,306916.638083476,469511.643347088,10.23335418859,-3.73549235043
+213041411,3.21145813225336E+018,254864.775363261,343020.581354228,75.18018079962,-5.87513359866
+21402602,9.12723710527922E+017,462853.655524397,697323.160125594,134.52149557723,41.62306817967
+217288087,5.9533075296615E+018,78278.3158986919,96953.236153667,260.16246145996,-43.95237436921
+21858919,1.33846382121474E+018,56155.5249621305,77625.504761584,257.05926917214,35.72443459667
+218966826,6.55675088142423E+018,79167.4068001038,117303.113097377,348.49989096163,-32.30653981316
+219121412,6.50351469736672E+018,7905.89114813035,38124.6890583382,340.50298087975,-59.25349560259
+219252797,4.78088395724752E+018,47314.9298024662,66254.5106286078,65.79197422335,-53.00425946968
+219488640,1.38533104980592E+018,157156.511627294,233053.10627618,243.22405058622,44.28808555481
+219503785,1.40660213733361E+018,4385965.57033309,5979803.38376015,246.20029185506,44.68995926831
+21960306,1.33425708972539E+018,605883.500633433,1022014.51175606,257.7621677752,32.30539196498
+219890172,6.29400154980693E+018,66447.1419760568,109496.190175007,208.59749183151,-18.30218845452
+219975483,6.46767103061873E+018,18572.4273856908,31291.4713855201,306.42543874488,-58.27795529271
+219986559,4.93604398014244E+018,162949.777961862,228171.528839816,29.89129672663,-53.41263894835
+22011482,5.46432526678922E+018,2672865.93996201,3552895.68989606,147.51739507302,-29.90577973428
+221589704,5.83098518176752E+018,422503.791448671,576039.540944019,248.53558580189,-59.73600701524
+223509700,4.30681484303046E+018,308101.630932653,409542.784380298,286.12211543729,7.25598954842
+224774596,5.99261651780245E+018,1594321.5092057,2635613.34390998,246.71412632905,-42.97361682118
+22598327,5.56520831049762E+018,9059188.25874738,12680399.1776609,108.06219736367,-38.17464210559
+22875394,1.26132542260518E+017,40502.3879860863,57434.1388750335,39.32662841432,25.1272217864
+228969128,6.1871435924126E+018,717783.483177292,1004701.62017296,195.07616820735,-27.40311470596
+22939756,5.58938382241443E+018,67094.5332178261,96528.3075009425,109.11507946712,-36.57123949154
+229436921,2.24017011169692E+018,2015918.1511991,2747048.07591192,293.34444050253,62.05294743099
+230081514,1.64239055048528E+018,775661.694782322,1031045.01363284,245.98870896697,66.72593589808
+230168893,1.78814057491291E+018,44708.1792618993,77078.6069879368,318.16678934965,17.93988659764
+230222180,1.30168416083168E+018,46180.0388692709,144232.138683647,245.50466262807,22.83967569174
+230270908,4.52810891408577E+018,336462.380574456,441749.379634126,271.96917254736,20.39776778838
+231268312,6.51113286983834E+018,54937.3805457687,77967.0078329606,334.71175073767,-52.11581359996
+231293910,4.74729696939385E+018,1607643.09083637,2348445.45442743,44.71383876037,-52.09599392597
+231400175,5.71509988599528E+018,60066.6597233184,74484.362308007,115.17442905759,-21.5572506047
+231842240,4.71605688911216E+018,395612.87121919,539093.105385737,25.49042833486,-60.4384567449
+231930323,5.56851055623024E+018,544043.374473382,742105.831712957,93.21410137774,-43.39375471092
+23272614,5.40322492459696E+018,58515.2102317677,79818.045043595,167.24273338577,-33.71837964708
+233729994,2.15790798460188E+018,145508.637297101,226420.037265538,277.30176215967,60.115189847
+234278946,6.39846058758073E+018,584690.111399593,947411.770755546,333.94266256022,-65.49309820899
+23572402,4.59142710866874E+018,58802.949682145,85824.6482981827,275.68870971186,30.25133483571
+236388729,1.31738587407081E+018,38895.4558922367,59555.4803748966,244.549654336,27.98926189383
+236397733,1.30245577317978E+018,70959.5971413319,105228.567345141,245.10860990333,24.36305240509
+237407919,5.57408109015706E+018,48002.1133821438,63806.6054925787,96.21891966627,-38.8688084651
+23748129,1.49568085856457E+018,8642.16705434245,29943.060269768,208.44433446307,38.07215105889
+237604391,3.12623653217277E+018,46661.0977206725,71445.9829805128,103.34424786152,2.33083215972
+237851354,3.11294649891055E+018,115750.133014023,143364.734756071,104.92870196372,0.19651696008
+238189792,4.64159803039897E+018,18172.761924748,28790.7669683205,55.65040801669,-73.30665585253
+240787309,4.14565159834956E+017,131936.797842066,189816.296894727,11.79105896895,49.70423763411
+241010599,2.6800038655039E+018,14525.8609891311,23013.0500783837,328.10685001165,-1.27579698569
+241991786,3.02053109918701E+018,119488.889238353,162910.549868881,93.2265653771,-5.09738241862
+242486094,6.0966138594344E+018,109254.411987858,150930.829172679,214.53788470892,-44.7835591015
+242856918,4.19477536837131E+018,57917.8003615576,82129.9469657941,295.40727957224,-8.31730443112
+246970602,8.76165812196969E+016,538527.917353646,855370.858785971,35.51629260663,20.66849325877
+249895874,4.51283247565203E+017,49248.6686474585,75339.1003647586,38.54188286145,51.22222652545
+250297835,2.65313053001065E+018,1328902.95220686,1811819.59303591,339.81838033409,-0.7158287503
+25155664,4.65432515236853E+018,12513159.8632388,15504030.0209738,63.31322058743,-70.42017297602
+251845156,2.31584186917329E+018,33636.0779075476,214685.665754666,6.96039943159,-32.5569007727
+251850982,2.31750625489989E+018,271268.170570812,396268.6148825,7.94433196262,-30.91823508121
+252085764,1.99756324899224E+018,685038.480212136,868023.863243838,354.2380401532,55.67597532075
+25228605,6.81816369223336E+018,299687.799587959,444050.314302026,327.02125290874,-20.23515519499
+252475665,8.51843030143429E+017,9090165.89428409,12728566.2085726,155.06091334106,53.77958926681
+253045974,7.73756504612064E+017,68484.0004793146,97192.3407235507,176.83672008389,45.50996939104
+25398947,2.45673057473758E+018,2555538.91020273,3980098.04502367,22.62740492972,-14.07320202182
+254291947,2.33239442831809E+018,184096.587262892,261269.465572893,353.76828229635,-26.64044979985
+255539185,5.99449849941098E+018,110226.790320046,144693.229349104,240.51787890166,-43.22415225405
+255638124,5.50232778596313E+018,35417.1218900531,55111.1341533942,98.15287243922,-52.03981662129
+256373151,2.24117293502427E+018,456948.778334755,578901.375028743,298.50160462659,62.99560071191
+256561056,2.23781980251096E+018,514052.318054908,814403.478581377,300.03455132652,61.17489046756
+257657213,4.81815334268425E+018,398874.284948315,544087.010077879,71.66691702928,-38.47531876408
+258195434,1.30733310797797E+018,37214.2397235537,57958.9387196258,252.20947587078,26.92580931419
+258276385,2.09351295582107E+018,204088.54803169,312208.390775555,283.03870331812,36.36035217984
+258814849,5.79716688414076E+018,72424.4519610735,110894.009229711,222.60524999031,-71.67261818096
+259702141,4.78384975242494E+018,14610.9874550309,37255.3053563604,74.41855339373,-50.65634732197
+260384178,2.0701086525629E+017,103469.969095229,151148.958687488,75.35491943611,46.95720164005
+260820752,6.38143674596855E+018,42527.9595457977,66234.7375258871,348.0015491568,-70.51682352378
+265619313,3.12182447118631E+018,470923.336224408,642365.97246226,94.83954934628,0.30097107959
+265885865,1.83865715131779E+018,53896.7211042968,118092.463460337,313.97836180065,21.4799326098
+265998891,3.12375706473595E+018,152329.805552518,213300.839797332,95.14144229401,1.67970475381
+267606903,5.49422298081475E+018,172098.096430328,244399.877451436,114.37788753416,-49.40079497824
+270415161,5.78572707982018E+017,658604.043673841,886410.221766154,135.01580666571,3.6534798135
+270737039,5.52409172958078E+018,54290.1196177054,80442.1958765731,132.05141292458,-43.26442041352
+270794015,4.43566434724104E+018,155768.865947505,212374.487614575,251.25457253326,5.83685332816
+271006000,4.38634870381827E+018,464789.949896055,679700.29201272,252.3019591093,3.82113121619
+271810393,5.2641632294014E+018,239724.146426935,340215.97556587,112.45418425694,-72.12703245016
+272651401,1.64480692914876E+018,141967.92476028,201480.562432868,233.47108909648,66.71869935639
+273591879,6.05968329113079E+018,188826.43565113,247869.929045942,188.96534237579,-59.71966687234
+273849585,4.70128632478294E+018,3352664.89696394,4348704.86112898,34.41278278361,-62.73921807036
+274233229,3.08689099390805E+018,56104.2186700211,88990.9313964399,115.45155117308,1.23909028926
+274318544,3.3287457906685E+018,230360.335791124,291839.963628065,94.02946778413,8.68736604197
+27576558,4.58890108378394E+018,1012133.55073872,1362091.97202167,277.80523048928,31.0555760707
+276229915,4.93544213929952E+017,140520.159444231,196768.639944922,56.22827111677,68.37293714397
+276540182,1.94978650952362E+018,60932.0438809468,85322.3868460034,328.5794225673,36.66783970566
+277168455,2.18726233372549E+018,181847.714103211,233095.673854842,310.13018909596,57.50258186133
+278805095,6.5694988984113E+018,17627054.032967,23138797.4199785,336.16429836769,-41.440484777
+27897593,4.58865297211469E+018,86841.4525192026,137581.289312283,279.0402756424,30.71005390037
+279225873,3.24823655998E+018,3479.75415518459,19101.3868101072,52.1092919063,-5.62684485284
+279433765,5.10768358639446E+018,160079.845341486,234097.827880862,58.08888507561,-17.73637605959
+281746741,3.80782664638441E+018,342621.208846476,670266.820989931,163.16424127606,0.48359855185
+281814965,4.90388742255781E+018,43543.7138256698,70319.9278986417,14.29705471267,-59.83393110438
+283174405,4.38489697051271E+018,195857.871777465,260247.821451536,254.38941022563,1.69052568369
+283981447,4.49547104528675E+018,102155.708309138,137490.598106964,270.66300209473,11.93975766682
+283986106,3.04888290846071E+017,41732.2842958835,62805.7917830815,29.34906770599,32.83652311049
+284043560,7.32422319175114E+017,554165.227399552,808820.579529823,167.18985439068,29.02126224758
+284708676,1.28206547177799E+018,38847.3466266556,56698.8540557574,224.08853479838,30.11812209963
+285652055,5.88263137323702E+018,48188.5983942709,73717.4372977043,233.94050614343,-57.37561295341
+286580535,4.502690266836E+018,3894.49010975504,24856.9765992115,268.89064380304,16.81435850733
+286853222,5.42134195564825E+018,5370536.97879633,6728632.62714801,150.46349634659,-38.92070891656
+287224438,1.08671774913114E+018,192023.001903168,299653.490128073,111.01979106041,60.36708971659
+288426012,1.74008823599056E+018,429278.124104286,617913.783430844,320.76862090689,7.38912559037
+289218489,1.76517359377971E+018,826915.287632491,1191627.46310255,314.84160895487,18.07178378133
+289374329,2.09641456270522E+018,668342.213601777,846867.74075071,278.16295639717,38.37875396237
+290190959,2.18012773591215E+018,55758.8646505204,73315.9406955042,307.10537295396,49.97887406936
+290244882,6.00191845486702E+018,1056810.63706217,1520424.0500503,234.16956828643,-42.13073839877
+29068958,9.33430602558872E+017,39621.675998438,56185.2507947798,117.81723602031,47.40659337601
+290952048,5.93029712211624E+018,179595.421998668,251479.703427291,250.71010594246,-54.47903354898
+290987402,3.11386699630291E+018,52421.3713091681,66411.8286971735,105.20727587686,1.21353089696
+291057788,3.96388899036927E+018,477685.755369029,687592.953105856,170.68691120293,11.58397052044
+291509053,4.39310716557292E+018,79124.4303917924,236302.044937375,255.16104263008,6.31165679975
+292207462,6.21317683230566E+018,1383719.79881213,2444864.28551678,231.02706059183,-28.1018840444
+292398116,3.5331047369757E+017,730054.467901676,936133.134738056,31.99715578978,46.58261809472
+292644903,3.15253262836111E+018,267191.119841204,343090.135051027,107.16605209024,5.12279261895
+29323830,1.3733400208077E+018,94033.3602104059,141517.287204034,238.04853565742,36.83606623922
+293895431,5.81016173718531E+018,151576.453134427,215116.964513727,263.40186334543,-70.07251426201
+294873381,4.66298524955593E+018,104050.900258021,161909.348471686,71.92010069713,-66.00652790296
+296883172,3.75393879123415E+018,233006.284643808,317679.594123495,158.76681909849,-13.22607457644
+297028903,2.16671012495416E+018,869531.160762404,1185514.40667921,312.08543351311,47.37321150608
+299003882,3.20198446948719E+018,36315.5097034491,61183.9888867617,70.75983512177,-2.77786532976
+29928623,5.14080977579423E+018,608712.70907537,852372.875857654,24.80934651575,-17.60001075712
+299438209,3.57463191676376E+017,391091.788779459,526367.494066472,26.63971766953,49.42532728487
+301057374,4.79092397587785E+018,420929.847691054,559314.134376212,67.88243753988,-45.00135698954
+303553151,5.81648939225284E+018,104360.166674651,162534.678760955,256.91027315774,-65.74067384953
+305568030,3.5565107582289E+018,589255.006289056,861715.706138106,163.57925483652,-17.06974904694
+307032089,3.32815844529939E+018,47853.4835209059,59954.6213632519,98.42942458682,11.93836792324
+307320587,5.90955958120223E+018,17155.956176275,27179.8607223955,267.98538136041,-62.99686854816
+307770775,5.73130798875385E+018,32387.7069853887,46595.9057869893,138.05946625064,-15.13868341943
+307776228,9.75360100526982E+017,18415.7322426066,29175.7003477115,112.99709836301,46.5932846056
+307945215,3.35533473060687E+018,76581.6162203799,107233.92583106,99.39270614322,12.94278331922
+309305474,2.13432215024977E+017,4143854.27373103,5971507.16700326,80.50400366214,48.75901753144
+30955603,6.1624999247664E+018,94556.0602534439,128917.255879962,201.05982497921,-38.2379361201
+309895669,5.78115387166296E+018,73918.9128088418,97032.365287553,249.34950872062,-75.42734181454
+310510023,5.77809846628764E+018,1207806.00589918,1605471.00477407,252.79274210407,-75.63474965825
+310599284,5.35700994264224E+018,1372083.4293261,1823836.07194108,152.63860564336,-51.69442186876
+311521283,4.59413486220925E+018,102097.360586905,142962.51987375,264.55744258788,26.44958555847
+31305113,2.95731347985393E+018,236445.951432849,331085.042189925,82.91308041434,-24.75895271682
+31476020,2.9071767804199E+018,1236697.8658508,1998812.55740058,83.94303168152,-29.08800942021
+314989959,1.7777894932737E+018,19711.1732289936,30153.5471846337,336.20607802421,20.53332669037
+316957007,4.49830066851942E+017,260739.976584827,370041.593321523,53.3137412301,57.98750108337
+316965103,4.49929164637373E+017,130706.304539583,359094.453412046,53.50464173661,58.5978492485
+317475082,2.23173678879394E+018,4955.94862029861,23899.1400716411,351.11465056749,73.96229415443
+31779227,4.64254529402572E+018,219654.276587851,411192.882033475,49.746242246,-71.86531217135
+318339281,8.31846315248225E+017,287072.930044229,731982.674337274,164.59925675889,48.28766011128
+319044134,4.43933011900775E+018,132405.760855882,185402.062116687,249.499981194,7.79137802359
+319244836,6.49890375791689E+018,16659.6379127683,25072.2376664729,351.48082839817,-55.61083878939
+320388843,1.30131311001764E+018,78815.413848371,118741.232457299,249.74171605482,25.86428715674
+32052093,4.66703337648221E+018,1621779.19505948,2533097.99613294,57.44506948344,-69.65629700593
+320708958,5.8638874831661E+018,77634.2061469614,96155.4606491065,205.62203315021,-64.85878939605
+321106481,4.81302079669239E+017,175280.334362514,230088.142595466,83.6430409387,67.60898480441
+321847708,2.10906554349443E+018,321607.06004965,456720.485659861,274.90790592901,39.03285966696
+322077873,2.72643218709635E+018,594496.877841274,843022.296733684,329.52911429138,10.38346532108
+328814963,1.15121479197895E+018,782364.648105053,1014816.85971872,137.21604947253,86.83469708923
+329302300,6.09111678233702E+018,1264459.18471011,1640148.8717325,212.08668060254,-48.26138015502
+329919244,5.85723481497134E+018,71690.0952877985,109669.305366723,192.32418253426,-68.3694370403
+331552389,2.22446128169574E+018,136026.670167161,174361.435747882,329.90179475931,71.2269680099
+331943891,1.04958043393675E+018,142103.131392388,188820.750626317,148.61550796815,59.16875775284
+332331771,6.726052891598E+018,125960.540234743,157813.307006011,273.02398080969,-39.22326652941
+332752519,4.15253432635496E+018,163726.065255055,254993.492935988,276.05943745083,-13.32945101794
+333538750,1.92065381937262E+018,3054478.47805777,3916692.02628055,354.54273577643,40.5126746504
+333743292,5.90775473286675E+018,180911.920561527,240476.403035359,224.45883981865,-45.25223840778
+333794492,3.56633894907099E+018,11530.2021843972,49404.733078431,169.27513919867,-11.37435916898
+334782190,1.33147195805209E+018,219481.949813894,325477.763657647,248.43923834476,38.01687210099
+334854821,1.36017319297027E+018,18487.1163815686,47138.7145529443,259.11248460062,42.65644958478
+334898066,1.36510996582039E+018,60493.9452753049,96085.5619035132,259.36178708646,47.40434220381
+334968591,3.52784841423783E+018,262264.051283295,324832.594744843,186.45139523831,-14.07851446782
+336728841,2.79329091220061E+018,36337.2128469183,56542.8500899403,6.71442441023,17.43003293525
+336833921,4.5327846903674E+018,177156.793091562,224437.215181062,281.81303750516,24.09598345678
+33754579,4.20220274127805E+018,543317.435025217,696434.071248561,283.68779567592,-10.73825497892
+338150022,5.25168613895138E+018,460435.692830584,1375073.35203137,156.02745435113,-63.9997332891
+339393298,2.83166785806905E+017,207128.652257927,279068.120278816,85.98128539581,60.62725278468
+339861887,5.29333938462282E+018,212765.433203308,315256.602255611,111.47657111253,-59.6407405204
+340558735,5.292570104441E+018,197150.489641723,246915.442232064,116.07493549248,-59.88727803918
+343567745,2.19505924555662E+018,91182.572978253,118475.198176953,310.80376734486,61.56053005953
+344028344,5.49155573740346E+018,1159578.85677864,1560518.42547519,107.88223523489,-53.1681917573
+345471366,4.24869081009413E+018,32623.1847645141,47614.5053010937,300.93343037276,5.49496130034
+345537938,3.28611026879372E+018,56809.5465424981,78529.5792384967,69.69487752019,7.070365549
+34651613,2.94522404027309E+018,102115.888324411,159039.350695302,95.82643488108,-15.44577479538
+347334021,3.94823912597497E+018,1212029.49002736,2042069.43776618,190.40458971046,19.85129213316
+347707523,4.3869046143223E+018,587393.221708217,989633.925479926,258.34567759365,1.46602607607
+347758739,5.06825970801459E+017,371180.709162625,465044.489745891,33.41790721293,58.75818950451
+348933214,4.53151141723639E+018,74413.8774176511,98914.3305779307,282.50240445356,21.96744503028
+349133132,6.29286444862538E+018,2427810.32538018,3350749.12862694,205.00868814163,-19.22752258609
+350094259,5.28769796655781E+018,390788.128017058,563145.792301992,115.11456720781,-64.19865123551
+351242989,1.18876359510307E+018,63726.4403799474,107365.636576636,223.78763702246,18.25093323109
+352081415,6.41496748693188E+018,37144.9477306598,61210.0108180605,284.54257859145,-74.21265326311
+353102269,2.69829784920468E+018,76734.122547134,100727.853217627,324.49417601678,4.12724660741
+353135214,1.90078636581452E+018,26942.4815736746,46449.8663042327,338.09058565194,31.73265566853
+353632068,9.42884173472125E+017,30727.6389909347,39857.278952859,96.79768050166,36.38162612555
+353758058,9.57225859546554E+017,42093.2848963608,85685.1208431624,99.47881296308,40.58379204902
+354153863,4.00565417577434E+017,28905.6328961257,44218.9489715177,21.06764660996,49.34611103096
+358168697,5.29880935619864E+018,49758.6199554902,213206.264633896,139.10174477781,-62.06820144788
+359190770,5.86987494244553E+018,315159.638371294,460883.67005369,201.1571847603,-59.15814929622
+359675849,2.15412040756206E+018,2647539.56888488,3757382.24692813,280.70710312661,57.86527395931
+362889717,1.82856576919154E+018,423921.091140438,537059.106431468,303.43996680611,20.35835231919
+363823958,4.55642460267693E+018,46786.1825827236,69323.5394671589,266.23158570256,22.60516987861
+36470588,3.0391024389945E+018,2309598.5467288,3322798.8563285,118.99270811258,-9.79731385957
+364775266,4.20646585703873E+018,728042.545193147,922345.89481346,292.16767717593,-8.78162391007
+364872760,6.70625958635483E+018,108670.945544077,134596.65976112,271.55988020171,-49.28258400511
+366036237,2.87133840507209E+018,18064702.9326631,26417490.0616894,353.87319381965,31.01830538917
+366637767,2.2809283892628E+018,815193.851751911,1010039.84311265,332.80778054781,77.32036544603
+368233230,2.20979506789146E+018,119800.190313853,151773.017036449,357.54119375931,66.28005755483
+36892850,3.77540998558122E+018,41337.4206540418,56386.5718922184,156.66360745834,-6.86513371302
+36982271,6.3212310626444E+018,224507.657939489,328315.878909786,230.65461540215,-8.19534179928
+369906986,4.12577277180678E+017,1187076.34245884,1662248.30192291,20.53632126696,56.45760706804
+370140658,4.64920799089801E+018,271246.834971595,360421.551603728,73.66777110117,-75.32234202396
+371703596,1.12775141570474E+018,87097.7291807928,121959.184087046,156.66075716491,76.51746436952
+372222012,6.37685054553108E+018,77507.1676122845,109908.517392378,313.47281343894,-67.98924088907
+372420452,6.40116500822888E+018,363083.043630608,482626.594700928,317.87284509936,-66.3093536007
+372442556,6.37583253520226E+018,462566.480892961,696148.189977223,318.21089278901,-69.26836423059
+372602472,5.24500382698252E+018,84433.3973029978,110834.588136395,151.88065214602,-66.54607000066
+37441978,2.8980033831112E+018,260706.846909088,360156.6276958,92.5305123284,-28.02529405386
+376161786,2.22478715375149E+018,1825585.28887777,2372016.61863611,338.10240714676,66.66598563854
+376539431,5.03055706765734E+017,56685.5100589489,85309.9321795984,84.07750029749,75.3987175944
+37661754,2.89765940777012E+018,172776.541434343,256849.554565277,93.60818303706,-28.92161002557
+376871173,2.26608082475995E+018,170289.532899066,235248.535012542,283.65722554019,72.53880528278
+377560051,4.54874214313231E+018,377205.545903081,514009.839924736,264.41892221289,15.18505938108
+37774136,2.42517421306269E+018,810967.80316623,1053705.41898537,5.49005754678,-9.90446700414
+378163077,2.08074487704801E+018,263395.96244469,326618.468409054,303.477555757,42.58265602772
+379099941,3.72539309855451E+018,91872.8270799036,123781.89506527,205.60620811337,9.3672311413
+379234262,6.63323765619503E+018,156128.072962031,257828.079450515,282.80543081041,-59.04735991006
+380332478,5.81477360435288E+018,60772.8379418578,81880.3265953588,257.46167232973,-67.05100748101
+38138973,3.78568818591832E+018,47460.9783390855,71427.2983639601,170.62239039249,-5.59024856483
+382327103,5.16498917036071E+018,146090.411027958,235925.378965218,52.46145615743,-8.87377694428
+382463166,6.53485816610209E+018,2449912.49386827,3430582.13877678,353.0191476123,-43.58995863893
+383627847,5.7662173454964E+018,63670.9433708919,94419.9569572597,211.95941192065,-86.30822892227
+383730187,5.7668187439977E+018,130632.807248893,163667.092411731,222.34131959693,-84.710557408
+383818404,5.90614191680474E+018,58848.2286385981,73729.7055707603,222.02705909013,-46.57355334409
+384388709,5.77579564226164E+018,141591.988298731,183661.080516374,249.89502005264,-78.71713822527
+384949259,5.30365806504702E+018,19800.8007366505,34137.3360439287,137.1616927027,-58.04030281881
+38579332,3.56708970935507E+018,39031.4553401211,76356.8887773077,180.32310876964,-18.13093361552
+38630296,5.11494898743242E+018,1598737.46450489,2238692.27914852,57.51867333293,-11.14029131805
+386403905,5.30981422633479E+018,297499.751021157,448651.093443948,139.46345706443,-56.28087532068
+38688434,3.2451955513375E+018,776432.368610028,1059097.52033372,58.03411408515,-6.24411646371
+387241527,6.45371633397978E+018,1570597.18405062,2264259.88147296,310.29735783462,-62.69638262063
+387580659,2.16568551755204E+018,2381263.38791223,2949363.29987739,318.45299833416,48.64325787631
+387609425,7284749865978368,159971.231939837,244719.075565338,44.94155022961,6.67477424956
+38836078,4.70377183524161E+018,859350.641289757,1447863.84653809,8.12082010431,-68.00713406546
+388940910,3.72019419526163E+018,1369397.19537376,1971144.94842998,208.7010104217,5.92680622952
+3898497,2.3778793002141E+018,55532.2317969951,129564.338851086,11.41219968358,-9.90599151901
+389853296,1.52165448430816E+018,519519.234521093,690568.738582635,191.30719880867,38.77274931184
+392996381,5.87836007979853E+018,509796.607803341,638713.429284772,218.48445717298,-61.45442432099
+393012524,3.7202057014786E+018,21724.9918011349,64880.8461190775,208.33822083732,5.98430391437
+393910201,1.55271211438093E+018,1720809.88469649,2844714.48239391,200.59984549294,47.47777691153
+394045029,6.40452037411886E+018,3028711.57976858,4077929.17435268,334.5862809725,-64.55754656368
+394680248,4.61902096357551E+018,60266.9062525868,97326.6660251987,54.26910024916,-82.23645721045
+394724489,5.19834116766694E+018,70349.7305706981,95960.9980480879,160.07356519882,-81.8333828727
+395282599,1.8102569721303E+018,124090.94913159,173759.19059126,302.58379816616,18.19315819411
+3958932,2.52303287394309E+018,19778.6980155173,32592.7048444029,12.5272598487,-6.74704288252
+396293813,1.73106523125668E+018,512891.421639272,643491.510320637,313.76456161917,3.43495493892
+396349389,4.20739806681599E+017,541811.932340394,695720.462621169,2.64625339936,55.67988978654
+396352231,4.22326028306037E+017,9956.19203203828,29733.7816515095,2.56080680641,56.92818357024
+396718866,5.47361528536404E+017,86202.9451287672,117585.676511758,47.08039655908,73.75342815835
+398734243,2.46188573378741E+018,1205582.91744108,1689448.24725705,32.35641791697,-10.18169211353
+399407154,4.24936667044434E+018,115750.194519122,164138.784374802,304.27893490357,5.89227189277
+400097481,3.10227622389577E+017,8024379.29178419,12522110.6069572,20.03498392935,30.56806851425
+40081742,2.42392681712133E+018,24550.6009234391,40456.176123328,6.98989077009,-11.87874398427
+401381481,4.31947122261608E+018,201268.400212709,252164.938755142,289.35141896964,13.89517614772
+403151606,6.50863117164755E+018,7422812.81249063,9196998.52340278,334.3119690905,-54.32141936658
+404584079,2.73718836145782E+018,1640482.69626505,2396417.56405802,335.97035102124,16.61250207769
+407497253,5.39325885245919E+017,232162.260418186,375232.186054158,7.23084683294,74.16584231202
+407589087,7.47381557123568E+017,430416.893012011,611243.463852846,151.59919546556,34.43199900539
+408133954,3.38723142119021E+018,110100.986817557,177950.687608146,78.28268155136,11.54784111677
+408250276,5.0598421862026E+018,32436.366686372,50517.6889538186,51.2772659908,-29.27451050137
+408421882,2.74646216221873E+018,739361.337160182,970549.707656742,357.8364090333,7.33506215545
+409639778,5.94541747288977E+018,176599.096629927,237683.393708116,268.31909202512,-51.79189037151
+409799386,6.44511214009645E+018,48590.8648632874,65398.0792447125,292.41305285002,-61.36741391917
+41045392,4.33504456784901E+018,587285.54513551,845353.660549282,255.66330061422,-10.871537966
+410980645,5.2334408473125E+018,87506.2667139114,136285.74406871,178.2430620728,-70.52302639244
+411371194,1.87535053869245E+018,60824.2985424384,81862.9655489187,337.89953044919,23.00779750468
+411413083,1.87545454562059E+018,51255.7819750223,69915.7759393507,338.11139805019,23.71636141313
+412598738,5.88692960472651E+018,89397.4592117884,123576.850586209,231.4373989664,-54.71789550575
+413100548,5.70664491215016E+018,213064.910931322,263895.975942266,127.79949611082,-20.42744247501
+415732481,1.1317417839198E+018,54531.7797545235,80800.265963705,141.79520048545,78.00496535596
+415972876,2.35899058380196E+018,19176.755723817,45232.7862724767,15.58316384219,-17.01850409783
+416678208,3.27631605972921E+018,219834.673962342,307824.988193997,52.90493263336,6.45868941491
+416967221,2.08409684132623E+018,132026.865269286,180004.763680417,304.21912735583,47.33279066188
+417428418,2.17182110167339E+018,297609.647092083,405759.495185967,323.53576256805,52.27305302754
+417707325,2.28126274387881E+018,294357.833309325,365012.065708633,348.97647326853,76.77628333051
+417748248,2.22839028341789E+018,106260.848061265,146795.334205287,348.96676047588,72.38365557517
+417843105,3.42404280421114E+017,32141.6721899851,50014.3408202231,27.99080292182,36.89811759048
+418224503,2.27378812209711E+018,66995.3606399142,97781.7151891119,322.69870661456,72.96841524502
+421435367,6.68928608605514E+018,42213.9195596755,65687.3528065595,293.11236362851,-41.96679545815
+421883854,5.83639711551176E+018,268707.060294555,371208.618529792,239.94972933145,-56.31456925495
+423002918,9.96132555235269E+017,158755.446321091,222298.386549228,95.97654973379,54.82178374322
+424732094,3.94209302777473E+018,79389.7740542884,119479.144385996,192.37691539265,19.24391267793
+424733375,1.44594111718707E+018,42128.6826244591,69476.7256667233,199.05960703942,22.86333615884
+428468914,4.43671981404888E+017,360974.43231646,468225.321176512,55.87891477199,52.22042881226
+428905003,2.50294033837671E+017,857852.343579685,1201240.01532492,57.88284757555,49.78759084683
+429010339,2.52050366224398E+017,2476193.61198141,3617224.28248193,58.43148769377,53.27274700022
+430194989,4.13708251581475E+018,604034.772928339,783502.515518407,261.27806775959,-14.88084004946
+430882670,1.99969042603806E+018,130704.900395845,211078.898498922,334.13578815766,48.98455459599
+431258564,5.93260568864499E+018,127029.1408556,168852.946368956,242.20852372722,-54.21529447075
+432139615,5.68107150863946E+018,118274.271406643,167854.582171256,137.4515867415,-18.15578609177
+435242045,2.81435728011046E+018,136650.190826333,202643.537291656,352.32330421875,15.53312300524
+435822372,5.66213170790619E+017,755193.026274973,935360.034601549,20.12769656727,81.72567378343
+435868942,4.6136374153455E+018,57584.2660466755,91229.676439393,53.81960431064,-85.1480791521
+43602902,3.18038023423298E+018,13788.8201222961,88008.5376108498,75.37178721048,-11.53677042301
+436247815,3.3331960596807E+018,841488.25031506,1211259.45871984,84.31826343542,6.69644899556
+436750358,1.88594876133586E+018,49331.1879418659,69953.7589918783,344.80698945863,29.45975254945
+43732320,4.54952149071804E+018,435486.397373912,564875.902459671,265.34537548958,16.83905863286
+438512504,3.35785147406295E+018,1326705.25848068,1661593.72170174,100.48541829485,16.1312957797
+438736856,6.0822432381623E+018,660785.022382149,867403.63590681,201.45574062305,-50.07402800496
+441492869,5.14012590962553E+018,136001.651076655,215721.988460516,23.0593001266,-19.30919823587
+441637779,1.12347699982842E+018,735763.674281831,990163.594804311,124.40430932134,74.01189332958
+441742021,1.65531977643468E+018,560296.297645255,774514.761740063,260.01425399517,73.93964510712
+444910849,1.00135980961003E+018,237546.812002898,311880.801471008,100.11712146187,57.80470927098
+445082412,1.18805307007352E+018,2810909.49010701,3989236.48670743,224.12454206315,17.10301365445
+44515169,5.43185284013286E+018,98480.9250719385,134268.397323386,145.67849747863,-39.53201792098
+445392997,5.49368906484073E+018,276189.594874412,391967.658815204,112.48609199379,-51.18042698679
+447319104,5.81786377747927E+018,37572.6374323282,54838.3780629482,251.44418565129,-63.50496036814
+44739474,5.08302239957723E+018,415213.217429153,551920.407160636,61.07334128082,-25.04848609321
+447863035,4.49038759071164E+018,161147.925745514,228700.77646262,261.05949653006,8.20791882287
+448186640,5.36473713854993E+018,1048404.94694518,1394441.09938855,158.30056381877,-48.12681752993
+450329942,7.74812585530029E+017,107279.119776365,170396.797821767,164.34974738496,37.33517484473
+45271240,5.93797401538038E+018,73845.4030627796,91462.7599111233,251.21890723079,-48.46413503348
+452789122,3.28232547489119E+018,114371.946141347,156009.781409613,68.74326038335,4.73194992787
+453971320,5.24514239550015E+018,235533.332441682,349280.943627593,154.6232334796,-66.62306179698
+455270228,3.85295359288582E+018,589670.246623129,861390.454380222,146.11858907072,5.61167155282
+455431081,5.87345728872619E+018,158730.129433542,201092.757779969,229.03544910832,-63.39099397698
+455767525,2.8797489431708E+018,256203.809465285,336876.00121109,357.99193493238,37.52187220272
+456300564,1.11031615058507E+018,53632.8474858247,73122.753966319,117.39362156809,70.71970917853
+456902979,2.88541164280819E+017,124527.706768824,190970.821603306,21.9631941089,20.59044526732
+457227216,3.23979846107434E+018,103907.329095999,227670.110369152,75.85875531463,5.09629116101
+457652326,5.89923863304654E+018,104324.825706357,133725.44054716,217.9928500905,-50.43252680514
+457889084,3.67410304578269E+018,13609.1748275218,26841.3113982711,211.7527817776,6.80059942696
+457926257,1.17319079960226E+018,131796.855833076,285365.332527017,222.28558481195,7.33825310553
+459170245,4.77355485760339E+017,296215.89380766,460929.433364446,67.36451050577,65.92919791522
+459930260,3.27208726499652E+018,242431.569704631,322251.134620828,59.6948368767,3.52728714125
+462589093,1.31648619868194E+018,410690.559051538,553330.698567742,239.74258912226,27.03379179848
+466584294,5.24025881585435E+018,69929.409339852,88592.4924227787,166.50682304568,-65.10394666804
+467120792,9.6979609495087E+017,538439.379066916,744356.601495829,90.7410172698,48.41689259731
+46743289,2.99655274344907E+018,409655.188067556,526022.92324761,85.72074475241,-13.70290865213
+467749217,1.70610845625708E+017,15429.6986750184,27287.4339044425,62.25380603495,33.28204732153
+469304547,5.26001882649321E+018,151939.941521197,188188.374304179,148.82182978221,-55.786808007
+46954687,5.74207764072366E+018,461411.703543345,598492.058633659,143.14205233495,-7.4738695236
+470241788,2.28650164190625E+018,160444.819521711,224668.894678669,347.27981644447,81.1059103063
+470416214,2.71977330850896E+017,536550.697582726,697150.210557937,65.6106219912,51.80886955701
+47678198,5.46657593273113E+018,57596.2390423936,78564.5164508122,150.18193619289,-27.22522156432
+47881059,2.1440533134583E+018,554860.595899003,786816.333629508,280.91121323349,49.69881705708
+48788704,6.74879636263284E+018,41143.657825932,176292.78302105,301.95172015068,-31.76141198629
+48902446,5.44936637673381E+018,43132.8851975811,61164.2975446569,163.27402180403,-35.35018847392
+50477502,3.02853568127793E+018,63474.9651468815,85430.4773533787,112.39535460833,-15.56041563409
+50896067,5.75207281559968E+018,167657.552891006,248419.819521505,127.07046481598,-9.19384744056
+52044764,2.89410678262211E+018,204809.31466891,262622.578252797,98.64486603883,-30.26430588658
+53694359,5.44802263608576E+018,758824.703644709,1076046.26739097,157.9557868054,-32.91440622479
+54905289,4.34650295648292E+018,39943.4021776557,61104.1893425798,239.03380468689,-10.10946995628
+55Cnc,7.04967037090947E+017,15745969.3279345,24946044.7958641,133.14676062083,28.32978300036
+56936642,8.17930174532227E+017,30010.4137851661,41484.3157081613,140.54995351992,44.49327035471
+56938364,7.84310407489576E+017,22410.3551754558,36929.3314075983,172.44152562086,44.64359649306
+57269920,5.93915207771098E+018,6127011.63100914,8042845.98287642,252.97037118621,-49.11517125504
+57642173,6.7265322142722E+018,247282.413426937,328699.098541269,274.71642605794,-39.91752587838
+58716586,6.18882164901862E+018,192004.646900378,265247.142806289,203.16700948084,-27.48158304173
+6077288,3.50796745730107E+018,1151981.05581273,1552084.58508138,200.09115058158,-18.17176274643
+61639855,5.37843756452289E+018,83629.0503574631,115603.00191202,176.64438054933,-46.18596514884
+62732682,3.82412219468692E+018,701845.845223745,890523.734419574,144.97115696712,-5.82218206611
+63281302,6.60012541684426E+018,280203.539250769,472096.666174967,337.19983820474,-34.781829203
+63958788,5.12971494755567E+018,12777.7542808009,81555.3075545866,36.77545837986,-21.16425423707
+66470401,5.03072436951799E+018,94841.4730997997,127646.424826619,15.10459269285,-31.30359119512
+66471305,5.00212789314722E+018,244439.279112669,380699.466398029,15.13216017907,-35.96109940759
+71299087,5.44706358706851E+018,131816.942939547,189740.640271997,154.38556513315,-33.29755633941
+71597658,6.89486235491676E+018,35803.2058083075,44344.8052488346,322.76562112856,-8.00692943175
+71976077,5.05952099574466E+017,107526.230154649,142928.78563493,26.56962775164,57.48271826586
+72588367,5.117620177916E+018,91919.09037377,154864.316424316,31.45472550309,-27.04321981042
+72656464,5.42062418071324E+018,39650.1834017259,49676.87939379,152.00958564053,-39.03589816448
+72752817,6.27514942651631E+018,103659.187048874,137788.534536317,209.34327364335,-23.89369704723
+72811500,1.35302207242256E+018,108525.050532407,160935.743968423,253.83990484968,40.48821098463
+72988213,6.13336729903659E+018,121648.917593017,170339.719182421,189.30046981299,-44.52384179798
+7586796,4.86877458744493E+018,420141.808350609,580409.983140485,63.59058059539,-36.98338132514
+7617322,2.11389017045449E+018,50118.5440724152,81004.0820039964,272.70066246891,42.2859998281
+7718417,2.11489185561002E+018,367062.830178625,528956.418657228,273.9531722664,44.03392168869
+77423462,1.30522578657117E+017,71434.8276928883,105845.675946987,42.27916723519,32.12443918835
+81107226,1.03395077736441E+018,53979.2693997431,69191.5994782871,125.37495955584,55.86916699744
+8287857,6.01574498536957E+018,101917.582508526,151012.268668635,235.21214535566,-33.46574811493
+87651997,1.80871381186825E+018,193373.593536821,247869.753833695,303.24446248312,16.45067793367
+8823379,4.52109203274033E+018,85934.3850929822,123696.126585647,287.0708526904,22.49107367774
+88567891,1.10152068033463E+018,14118.1623612994,21597.5308789453,107.107480838,65.1455832548
+89255850,5.08260530671233E+018,266921.782425363,390341.51647067,58.6662725622,-26.28311179262
+89834070,5.87004127792845E+018,38229.0175802678,69569.5898702058,204.18115698524,-59.2751952117
+90812697,6.72169168303176E+018,120308.448271685,159919.494847721,277.31882024111,-43.87065778215
+91248261,6.70833048644478E+018,157395.546202016,220310.948741759,278.00517905418,-46.69973876753
+9134886,2.77265363303269E+017,655533.868124343,812880.596079625,67.57092272636,55.50311911678
+93515836,3.0413246894368E+018,334580.011318912,496160.863224908,114.41080780558,-9.29101330739
+9477356,3.49537471626857E+018,172479.032258318,297360.431745247,192.51346399167,-28.3724891004
+95431305,6.25453654702752E+017,918400.544471594,4428815.74676013,154.89881370111,19.86980990545
+95752782,5.75646247833525E+018,32387.3767693453,44178.20740723,135.54361966579,-7.60265653643
+95784600,5.74349923624319E+018,32930.0934632615,42210.3866333723,135.80825456586,-10.0957801256
+96784659,1.60791480935589E+017,208013.717953473,257639.717081063,74.13367292462,33.02745283996
+9905178,9.48666470761992E+017,616145.315729963,830143.551623286,110.54408280458,41.10936999486
+CoRoT-11,4.28551129417231E+018,35150.3707919819,46752.0892020296,280.68730005767,5.93765777571
+CoRoT-19,3.12000264913883E+018,22011.7842732141,30408.4457221398,97.03359894654,-0.17073013075
+CoRoT-2,4.28782084837809E+018,41764.8428034388,61883.3718322814,291.77704522072,1.38366174327
+EPIC246851721,3.39393903053102E+018,107374.702338067,146394.128768504,78.91982004524,16.27869737323
+GJ1132,5.41343821939689E+018,53110.2216003883,256114.161888339,153.70885427338,-47.15487814715
+GJ1214,4.39326539216883E+018,20594.2692660657,165591.963904093,258.83147998873,4.96057533834
+GJ3470,6.54687847820643E+017,115960.520346831,419014.809425923,119.77347532186,15.39120115361
+GJ436,4.01786099251974E+018,908827.605674727,2838502.35655439,175.55067547084,26.70295395359
+GJ9827,2.64384230245609E+018,395685.36013923,866981.477445433,351.77182847413,-1.28531353557
+HAT-P-1,1.92843176462766E+018,334733.09415146,468722.607635345,344.44536893936,38.67491310096
+HAT-P-11,2.08651222785102E+018,668364.903906082,1152286.59662784,297.71020256826,48.08189581073
+HAT-P-12,1.49951478689117E+018,36721.6397141467,66826.4464721418,209.38861950303,43.49330385068
+HAT-P-13,1.01452082635358E+018,192312.752709237,285187.574025885,129.88237231341,47.35190397489
+HAT-P-14,1.34049760848674E+018,392286.256851337,509704.764220032,260.11617230186,38.2421672552
+HAT-P-15,1.79498266829042E+017,116166.493244875,172125.018396673,66.2481445206,39.46060068444
+HAT-P-16,3.81592313648387E+017,140788.878555802,192043.967211232,9.57303026785,42.46309539733
+HAT-P-17,1.84978648103262E+018,241588.259370695,382743.763773749,324.53596511793,30.48817049886
+HAT-P-18,1.33457381779336E+018,36675.7182222719,63230.337724678,256.34637374628,33.01231999523
+HAT-P-19,3.65426679516817E+017,32954.0736899628,54303.9991083961,9.5165786069,34.71139790315
+HAT-P-20,8.69913435026515E+017,148720.841985031,270643.836701338,111.91642873573,24.33610522094
+HAT-P-21,7.70622651659108E+017,75360.8371463659,111662.88242187,171.2749346008,41.02802258437
+HAT-P-22,8.46946629987527E+017,489320.671912554,761411.876429913,155.68145370147,50.12872314718
+HAT-P-23,1.80893873071063E+018,36375.9966273347,51582.7372880291,306.12390951515,16.76214539689
+HAT-P-24,3.16732305261837E+018,79066.1748188142,105162.727115747,108.8251182638,14.26260625049
+HAT-P-25,1.1132260167242E+017,33822.2823524628,50901.484557653,48.4354751119,25.19735288979
+HAT-P-26,3.66803634864158E+018,91485.054098868,147741.701859254,213.15655609101,4.05939764185
+HAT-P-27,1.15933640333646E+018,55303.3207165195,86055.2345858258,222.76731815666,5.9473622596
+HAT-P-28,3.63702817083391E+017,30230.6996942108,44122.6027012342,13.00092024349,34.72840239417
+HAT-P-29,3.59058441314839E+017,75129.864267509,103854.316584927,33.13108980256,51.7787756632
+HAT-P-3,1.51019159455297E+018,104183.004379139,165055.186429603,206.09401017795,48.02856171443
+HAT-P-30,3.09644172986172E+018,261744.789788693,352653.415738345,123.94984068652,5.83687022894
+HAT-P-31,4.58300481523965E+018,75295.0741837448,104082.69089035,271.53767106072,26.42660420232
+HAT-P-32,3.5634828688623E+017,91151.0953173617,126000.955319502,31.04275939879,46.68785164786
+HAT-P-33,8.93550942158777E+017,118365.004415018,157336.179568755,113.18423829688,33.83502109508
+HAT-P-34,1.81021873405882E+018,238478.130594181,313568.947135795,303.19543795825,18.10477574534
+HAT-P-36,1.54153220713325E+018,40882.35057171,60575.7746895067,188.26620254385,44.91536839935
+HAT-P-37,2.13394684309438E+018,15425.0867893205,23214.2765402306,284.29603837453,51.26912106289
+HAT-P-39,3.16939157758633E+018,37715.2224728106,50132.7993524407,113.7582528046,17.83002713124
+HAT-P-4,1.29112036234916E+018,114828.620577304,162964.522732367,229.99121630812,36.22954166641
+HAT-P-40,1.96215385497397E+018,85300.1538126817,117838.929553042,335.51292167393,45.45734141047
+HAT-P-41,4.29041508165365E+018,131206.035159891,174511.850392267,297.32265186773,4.67241137575
+HAT-P-42,5.83455604761167E+017,45368.932182272,66274.9481166127,135.34435788705,6.09707821156
+HAT-P-43,6.01321985813952E+017,14973.8968743971,22186.9678911427,128.92568723949,10.20658468585
+HAT-P-44,1.50615917001746E+018,19934.8017390707,31019.7292673405,213.14385444822,47.01478411525
+HAT-P-45,4.27054752070628E+018,104728.260946524,141102.250316808,274.37327068203,-3.38106009694
+HAT-P-46,4.1775608946335E+018,111326.509882044,153890.049504788,270.44418245711,-2.97098065106
+HAT-P-49,1.83584274946523E+018,264774.547917479,335438.799923892,305.44132799221,26.69267609751
+HAT-P-5,4.60603016927292E+018,51870.2478413146,72633.2661666536,274.40553558489,36.62146246082
+HAT-P-50,3.15196136334886E+018,53886.7610295366,72525.7860965828,118.06343883065,12.13934575313
+HAT-P-51,3.16706322857705E+017,15393.5820972362,23548.6289673064,21.06512357488,32.81069773471
+HAT-P-52,1.2862348585317E+017,13264.7052751236,21421.5333328689,42.72174358638,29.02224537064
+HAT-P-53,3.23386882492982E+017,13323.7662098119,18657.104834247,21.87110121085,38.96811328575
+HAT-P-54,3.38329822757928E+018,23404.2975007952,45785.6188579304,99.89799235245,25.48239594407
+HAT-P-55,4.59380827289624E+018,18409.0668910239,26484.9606688142,264.27351074481,25.73114569169
+HAT-P-56,3.38577728699924E+018,141414.285511417,183430.578691663,100.84801246998,27.252179209
+HAT-P-57,4.48364081557009E+018,231726.85266525,290732.612104855,274.743417428,10.59719480088
+HAT-P-6,1.9253216585514E+018,309310.56272721,401211.345226987,354.77408786461,42.46598700991
+HAT-P-65,1.75730288152625E+018,20284.261419381,29197.6786928457,315.905490128,11.98936655352
+HAT-P-66,8.52608874351435E+017,19296.4191428616,27019.9413925953,150.57262400109,53.95082167719
+HAT-P-67,1.35861498313134E+018,241619.098602812,321171.161604721,256.6107298129,44.77688234995
+HAT-P-7,2.12925639521198E+018,218187.57359379,293657.013791882,292.24718620019,47.9695440641
+HAT-P-8,1.89150755282649E+018,247587.760399715,337559.905988259,343.04150590197,35.44717987044
+HAT-P-9,8.98130030131444E+017,44741.0367437466,59508.2468122731,110.16851397513,37.14059288078
+HATS-1,3.54001863356878E+018,52196.4300931579,74016.7965551284,175.52523684897,-23.35484519881
+HATS-11,6.77114912049123E+018,14134.1371925729,19023.0288253387,289.40076063418,-22.39001198848
+HATS-13,6.80300098021086E+018,11776.6878770835,17723.5495454981,316.96148038891,-26.09672191331
+HATS-2,3.49250200162324E+018,16752.0586573249,26539.9733004801,176.73881941972,-22.56300991793
+HATS-22,3.48360640280019E+018,20661.1317545112,35620.5795891814,174.00987327701,-29.54336557616
+HATS-24,5.9111827352427E+018,29499.7431478715,39745.5290358757,268.89070713243,-61.7474024348
+HATS-25,6.28712510100761E+018,21977.6417940093,32077.0196814775,207.90767167789,-23.78124217227
+HATS-26,5.6568969244359E+018,25204.1704844096,34818.60635298,144.92685896472,-28.58560093425
+HATS-27,6.13422807920307E+018,25311.112908621,33644.6893387791,193.55245751903,-46.58771581452
+HATS-29,6.63823043112019E+018,36227.9310841997,52875.7394457894,285.09651807592,-54.89334604347
+HATS-3,6.80588637360055E+018,56502.9255839348,75106.273666446,312.45748948972,-24.42869171594
+HATS-30,4.90614561328273E+018,43456.3659202902,61623.0074057013,5.61851897601,-59.94258995386
+HATS-31,3.49855323258564E+018,21564.5181707454,30195.8624385372,191.70282129203,-24.42739004652
+HATS-33,6.64097595031007E+018,43563.7433622701,63582.5746657622,294.63369567727,-55.33027462115
+HATS-35,6.44103484174347E+018,36918.6360565225,49688.5141524287,296.68844799946,-63.56565064761
+HATS-39,5.60548170344431E+018,28815.4257182261,37376.918606969,112.41922538707,-29.93791712015
+HATS-4,2.93758312165295E+018,15317.238494195,23431.8410393868,94.11209141777,-22.54688202798
+HATS-41,2.91915108052439E+018,26951.5374937693,35825.2168851444,103.51735584041,-27.05041616518
+HATS-43,2.90598346670552E+018,13988.7607522765,22590.8302554678,80.53824319207,-30.97081725465
+HATS-46,4.91977165472761E+018,12224.9016950691,18398.0973797032,6.70264549646,-56.31610112385
+HATS-5,4.89942814699406E+018,33397.9657697699,51969.2080866466,67.22284654555,-21.48205982004
+HATS-51,5.608644895311E+018,37635.2228166653,54173.0912280339,102.84742225894,-29.05865600286
+HATS-52,5.63153095066494E+018,12987.8387989634,18186.7098920567,140.0875861511,-31.2692086597
+HATS-6,2.96668059736875E+018,5824.81038540722,19044.4160828696,88.14680750022,-19.03162579997
+HATS-60,2.59698664879806E+018,33886.4611617691,49501.3516612732,341.36403416624,-14.99177515713
+HATS-64,5.6327045118268E+018,24124.5492798732,31292.3126815422,144.28760872427,-29.80044412177
+HATS-65,6.76613463021315E+018,38698.9233151214,52139.7482833832,292.93978193913,-26.7402021548
+HATS-67,6.14406026007234E+018,14018.1691776709,18214.0656375796,180.20878706282,-46.13641997522
+HATS-68,4.90427926101427E+018,40544.3696487037,56010.5100374137,15.0060832427,-58.90472315716
+HATS-9,4.08315964376923E+018,19373.3122556577,29187.3234067756,290.81017169588,-20.16637807533
+HD149026,1.33135647497172E+018,1872914.26305313,2553521.87789648,247.62296892318,38.34754219061
+HD17156,5.45560867790611E+017,1938525.52402879,2677999.54199224,42.43665247105,71.7530836226
+HD189733,1.82724281620185E+018,3586823.38339061,5910615.3444045,300.18212180624,22.70974110517
+HD209458,1.77954675766906E+018,3083840.02392598,4262886.67221487,330.79502626424,18.8842393829
+HD219134,-,23982894.4102105,42413767.1414343,23.22138193,53.16835662
+HD89345,3.87707059016718E+018,624296.32011096,925791.714059742,154.67109851528,10.12884055705
+HD97658,3.99707520623289E+018,3227201.45521088,5112794.93981649,168.63764182701,25.71060296527
+K2-107,4.08168458019996E+018,33603.1960036345,46421.5415742919,284.98535399579,-22.29342129583
+K2-121,6.62078902422542E+017,24243.0525099363,44117.7754808752,126.93666036517,17.57932470513
+K2-136,1.4591605068392E+017,167745.3714889,315347.391796152,67.41287398556,22.88256246495
+K2-140,3.57942605372405E+018,31791.7100092522,47106.0843505377,188.13731626879,-9.60761057154
+K2-141,2.64395294081354E+018,186472.885344157,339345.422045781,350.91706256738,-1.18917924034
+K2-232,3.40668748560073E+018,413923.27697501,564614.68493412,73.76680173698,18.65431629612
+K2-237,6.03274683245044E+018,67479.8094957219,92046.2635189934,253.76884656878,-28.71058441059
+K2-238,2.63127076138215E+018,44584.540444598,66116.0361225883,347.70431505098,-7.85756086388
+K2-24,6.04975023431782E+018,178323.991299531,260269.151340766,242.57344664711,-24.9906110933
+K2-25,3.31180451550279E+018,5791.89509975206,31793.4036671801,63.27395214949,15.24770011886
+K2-260,3.39492312779711E+018,36850.702399469,48983.639671069,76.86733179408,16.86769402247
+K2-266,3.85524607462998E+018,86400.2898467156,177698.000164859,157.93569349072,0.93726866682
+K2-28,2.62229678369948E+018,3398.62611402152,18656.0512788006,335.62327885222,-7.95637953591
+K2-29,1.50054788545735E+017,72185.7857485093,110427.597100838,62.67042446994,24.40165279873
+K2-30,6.1607255708761E+016,24668.1522838236,37124.8029833688,52.34205731811,22.29934714177
+K2-31,6.05019124155688E+018,144026.874731769,224114.326969285,245.44054694052,-23.54828644033
+K2-32,4.13053918035851E+018,84132.9696959692,130915.872399136,252.42600550294,-19.543057889
+K2-34,6.65757593450098E+017,82135.1222738531,113466.558615201,127.57872099903,22.23591964275
+KELT-1,2.8817842809297E+018,193972.702416379,254625.364840854,0.36209766317,39.38379417761
+KELT-10,6.71051779302517E+018,193858.492761513,274899.730014545,284.54838263642,-47.00330940895
+KELT-11,3.76149776187602E+018,2371481.76488295,3636811.70871032,161.70689415478,-9.39937543394
+KELT-12,4.60893525079086E+018,242081.544405459,325815.727647701,267.64049063092,36.57017449424
+KELT-14,5.56088633644665E+018,126669.461965077,185038.783798265,108.30140689028,-42.40976246789
+KELT-15,5.48978091948001E+018,171984.402563775,240822.322018342,117.41497544645,-52.12044734779
+KELT-16,1.86488521523312E+018,63283.1335529932,86321.7612918133,314.26852356886,31.66101886227
+KELT-18,1.61216535379379E+018,248829.440720723,318954.058605965,216.52381956465,59.44427436619
+KELT-2A,3.43805936983974E+018,1082193.12487813,1475456.65783579,92.6640252882,30.95713303789
+KELT-3,8.06492023789219E+017,426093.161630975,573475.578260761,148.64311423912,40.38794129639
+KELT-4A,7.27624020367529E+017,306951.38642275,418495.974634524,157.06262215204,25.57313495887
+KELT-6,1.46470095022178E+018,272887.449866858,372053.375192799,195.98183545376,30.64014724332
+KELT-7,1.81908842994568E+017,1365641.92933053,1730110.74695914,78.29559292627,33.31794633424
+KELT-8,4.53414492369048E+018,182360.171800336,262493.841061525,283.30544671894,24.12724385068
+KPS-1,1.05589548326702E+018,31646.7112056476,50137.2929358789,165.16719072097,64.96384073874
+Kepler-12,2.13359977537734E+018,26956.6481693812,38256.8149502116,286.2434465067,50.04036753869
+Kepler-444,2.10148692338524E+018,1094506.27319442,1767547.94817139,289.75284986301,41.63179615254
+Kepler-447,2.13158753166057E+018,45647.4005989822,68697.9203577393,285.26852718016,48.55988018678
+Kepler-5,2.07901830019539E+018,22230.5868465624,29919.9794146051,299.40703409179,44.03503824705
+Kepler-6,2.08663688498051E+018,19144.4161476514,28389.9507675541,296.83724772237,48.23997065301
+Kepler-7,2.10211787125904E+018,22421.5868652921,31395.9785635753,288.58149231052,41.08973056538
+Kepler-854,2.07784116991686E+018,15556.3884740424,21219.7908351466,293.35126718944,43.13463924173
+LHS1140,2.37103291618618E+018,34576.7706296707,189801.991830196,11.24867790844,-15.27419133989
+NGTS-2,6.22060238408133E+018,138546.934639623,181868.702510319,215.12275817115,-31.20206990717
+Qatar-1,2.24483049051429E+018,41653.0094295279,68638.7062302048,303.38187389084,65.16233923856
+Qatar-2,3.62003064447662E+018,24754.5821497777,45048.6627854027,207.6554804868,-6.80407348858
+Qatar-3,2.87864136130081E+018,13486.393150761,18884.8294266674,359.15197027485,36.21295500386
+Qatar-4,3.85697172809355E+017,17569.5142153609,27835.0528911917,4.85927519276,44.02759527096
+Qatar-5,3.82111248777193E+017,32752.9578549114,47803.9127744619,7.0539375981,42.06134414126
+TRAPPIST-1,2.63547690875356E+018,875.305317496529,22278.3862950839,346.62652162764,-5.04352831943
+TrES-1,2.09896484986734E+018,86259.9321422472,136659.997661755,286.04087001232,36.632533133
+TrES-2,2.13131440180067E+018,114808.798362532,165174.396042938,286.8085269792,49.31642128807
+TrES-3,4.60913150931872E+018,48090.3168272002,71255.8878930367,268.02910631978,37.54633159012
+TrES-4,4.60906230880693E+018,60104.8783075783,81946.6882982791,268.30433503423,37.21173673368
+TrES-5,2.18860177940615E+018,15688.7127600133,24855.3343156,305.22194786719,59.4489075301
+WASP-1,2.86254842807964E+018,70592.4614177527,96245.4063717795,5.16695281581,31.98997269093
+WASP-10,1.90976222898506E+018,115193.352605212,203719.532900868,348.99304976351,31.4627472774
+WASP-100,4.6753521096596E+018,193338.703094124,242229.987708798,68.95981944297,-64.02703904669
+WASP-101,2.92466186716082E+018,244089.595613264,324653.718329607,98.3511012403,-23.48608247185
+WASP-103,4.43908598876917E+018,46638.9444956424,64429.93418063,249.31485872223,7.18337615001
+WASP-104,3.86860321676202E+018,149489.67368053,224977.31663834,160.60236437132,7.4350767322
+WASP-106,3.7883944619913E+018,146160.766286031,204662.602240764,166.42962412075,-5.07948714461
+WASP-107,3.57863884205426E+018,124211.374967942,242993.607924209,188.38641401351,-10.14621542333
+WASP-11,1.23376685084303E+017,100684.785726679,169637.227570651,47.36894788933,30.67337557169
+WASP-113,1.58739923233565E+018,88322.6684743574,125347.334082543,224.87286005601,46.96009848839
+WASP-114,2.7263398925444E+018,42728.8785510656,60640.7289758818,327.66438278522,10.46342214887
+WASP-117,4.74615773791007E+018,266999.064136122,373875.484896377,36.775824306,-50.28442125467
+WASP-118,2.56256956402668E+018,171117.7852668,227457.590302975,19.55058642313,2.70278269014
+WASP-119,4.67260717888043E+018,47124.3283806954,69824.5737370353,55.93364637887,-65.19377770049
+WASP-12,3.43528286246143E+018,105512.192879525,142008.06611342,97.63664477033,29.67226537027
+WASP-120,4.83728684216822E+018,111510.468738124,148224.817158601,62.61608182746,-45.89824431179
+WASP-121,5.56505025570144E+018,181640.290424424,238436.772548215,107.60023051115,-39.09726684656
+WASP-123,6.75614865945391E+018,141408.021077568,206389.199413993,289.47853844957,-32.86133200505
+WASP-124,6.61475153283389E+018,26127.4843054864,36585.9928288784,332.71433724353,-30.74972095142
+WASP-126,4.66649815483709E+018,122313.416293717,175971.223031898,63.37473092461,-69.22658520404
+WASP-127,3.77807571716299E+018,672071.823011345,996639.748341749,160.55876726926,-3.83499645125
+WASP-129,5.38088875819568E+018,59416.8656099643,84255.6864392339,176.29905398461,-42.06395766718
+WASP-13,7.02295464353438E+017,393019.891759837,557772.954904109,140.10296506822,33.88232635913
+WASP-131,6.17345147719123E+018,175627.423659705,245923.486903354,210.19357298871,-30.5836096821
+WASP-132,6.09901247841225E+018,71432.4415961868,123152.254640532,217.60920221165,-46.15952613026
+WASP-133,6.77866280929456E+018,31920.1977559387,46629.0333592368,314.57543964361,-35.79662367146
+WASP-135,4.5964816323399E+018,39808.2752988116,58101.3579211838,267.28488174366,29.87904110213
+WASP-136,2.44101381193293E+018,669131.082734561,900578.488025121,0.32576133519,-8.92624989686
+WASP-138,2.49851551699017E+018,109099.098556171,146991.157567993,41.63916136793,-0.46413006087
+WASP-139,4.85139879903251E+018,35205.1932278345,54781.3606931841,49.56217014617,-41.30202008157
+WASP-14,1.24208417097418E+018,435271.209291712,572327.25768593,218.27662916582,21.8946865465
+WASP-140,5.09415433633248E+018,67979.1808558851,105779.62194137,60.38553599887,-20.45099622986
+WASP-141,2.98039208718529E+018,25644.0361532489,36364.3528517703,71.82443580521,-17.11517382019
+WASP-142,5.67461844483212E+018,17873.8705193071,25028.0080360813,140.50631399232,-23.94609982165
+WASP-144,6.58243592402265E+018,12599.3516954404,20347.035763158,320.76287528609,-40.04844499403
+WASP-145A,6.45852993146328E+018,113894.613508272,191893.605117421,322.25379321308,-58.83614508765
+WASP-147,2.34091935858149E+018,43681.4599378516,63809.8883347479,359.19151098006,-22.15323259021
+WASP-15,6.1710090495492E+018,139192.501789339,187338.139900757,208.92801253851,-32.15971485103
+WASP-151,2.65713574163334E+018,26176.8101958248,37119.8496831366,349.06346506134,0.30668797901
+WASP-153,2.11010637298747E+018,71568.2497367021,101569.500534583,279.26247456878,40.01869049982
+WASP-157,3.63026939983351E+018,44456.4799160413,63959.1419227449,201.6551481058,-8.31763651818
+WASP-158,2.42462150231196E+018,40248.1765439916,53532.4749196896,4.14634710915,-10.97642285963
+WASP-159,4.86475988823823E+018,41567.2339674326,57423.5582034127,68.13647917292,-38.96829648082
+WASP-16,6.28372328504653E+018,103604.865943333,153512.333452794,214.68301084033,-20.27543500547
+WASP-160B,2.9107554846096E+018,27370.4559147336,42590.0465816171,87.67956527299,-27.62332661387
+WASP-164,6.49103864200699E+018,34712.5075656578,49940.5756385602,344.87359360141,-60.44781976542
+WASP-165,2.41541096212481E+018,32608.0963595986,48355.7320015872,357.58065133747,-17.07759524149
+WASP-167,6.15498287730095E+018,172717.083561863,213922.335798201,196.0437900172,-35.54952902278
+WASP-168,5.55550000077947E+018,62817.3801209623,87962.3997232597,96.74464282055,-46.82136062376
+WASP-17,6.04279300577966E+018,84421.5760466359,109690.510166745,239.9622465105,-28.06179545933
+WASP-172,6.08671258542973E+018,93080.0984457365,116618.093925269,199.43373864508,-47.23757471071
+WASP-173A,2.32398553948291E+018,93005.8916781923,133806.748291618,354.16871078451,-34.61130544227
+WASP-174,6.13940345037067E+018,59038.6120332713,78524.8745329637,195.79401449703,-41.38486243569
+WASP-18,4.95537136733461E+018,792916.873420966,1054626.72277846,24.35446693304,-45.6777908468
+WASP-19,5.41173689695203E+018,53864.5820660116,81064.5230596152,148.41676021593,-45.65910531582
+WASP-2,1.74859602074504E+018,78332.3803968863,124100.525901276,307.72555949993,6.42932372869
+WASP-20,2.35997829313704E+018,193990.634000278,275311.074381563,5.16056925249,-23.93578851011
+WASP-21,2.83108439102318E+018,90211.0485764647,129785.832452803,347.49280496402,18.39616223511
+WASP-22,5.08653702285641E+018,71207.2317075435,99710.604862538,52.81803774092,-23.81979607388
+WASP-23,5.55734549668744E+018,36237.278493729,57410.042891083,101.12750170009,-42.7622417133
+WASP-24,1.15368250838817E+018,76060.9740783673,105141.417567662,227.21549518765,2.34328479527
+WASP-25,6.18695052504245E+018,87283.0905063142,125573.405337817,195.35975351046,-27.52222820094
+WASP-26,2.41678270166416E+018,122921.941437583,172122.279851489,4.60304633187,-15.26740782303
+WASP-28,2.64108747177705E+018,37567.7623562652,51244.5455571575,353.61627256956,-1.57998350122
+WASP-29,6.53441471931889E+018,223449.121266939,385234.810601579,357.87918738879,-39.90713389151
+WASP-3,2.09510831283184E+018,209831.073116022,282709.140869506,278.63174017603,35.66142806337
+WASP-31,3.54587394530332E+018,54756.9721320379,74691.5964448696,169.4388560447,-19.05477789942
+WASP-32,2.54641340888843E+018,68426.0633057545,94587.4465006323,3.9617075334,1.20051445963
+WASP-34,3.53711083763088E+018,228500.183580993,333502.790868618,165.39936119816,-23.86095477284
+WASP-35,3.21118861876202E+018,133990.291153414,187624.946282039,76.08189413501,-6.22977855036
+WASP-36,5.75093609237525E+018,20266.0220991103,28738.0962657253,131.58038913361,-8.02698660212
+WASP-37,3.65217699721833E+018,34895.6238338503,50204.0232618044,221.943882714,1.0650252097
+WASP-38,4.45321189998618E+018,910718.254286502,1242271.03079755,243.9597150085,10.03240488623
+WASP-39,3.64309887516827E+018,47826.0446965297,73162.8139065133,217.32664509187,-3.44449930121
+WASP-4,6.53549965812206E+018,39457.3088620905,59382.0245652846,353.56291675195,-42.06179163682
+WASP-41,6.16087794325193E+018,85128.1685605783,128115.249933269,190.61880583955,-30.63981589857
+WASP-42,6.13969873366473E+018,90037.3046361285,140103.364819238,192.98119362102,-42.07361580579
+WASP-43,3.76780520911244E+018,85154.0046887834,160082.469621498,154.90818098459,-9.80644829653
+WASP-44,2.42440651342894E+018,19961.2631353311,30536.1272188062,3.90327548043,-11.93826871686
+WASP-45,2.30883478035288E+018,49657.3128007947,80192.9452005649,5.23776577184,-35.99847157995
+WASP-46,6.46299442970876E+018,19453.0094730153,28823.7124808981,318.7370153035,-55.87186569126
+WASP-47,2.61341300891992E+018,110912.06902207,166919.220061315,331.20309414396,-12.01907283535
+WASP-48,2.14175457824237E+018,61395.7063453185,85969.7528398551,291.1623880477,55.47302333003
+WASP-49,2.99128436906361E+018,118877.31112171,176141.663405607,91.08972726582,-16.96539267398
+WASP-5,6.53330795778587E+018,48745.5199378497,71145.5315593692,359.34902908017,-41.27722246039
+WASP-50,5.16055772618307E+018,44083.3061960008,67437.2874758566,43.68807437461,-10.89802294908
+WASP-52,2.66601587857555E+018,72136.7267578024,118871.881721819,348.49479215734,8.76107306222
+WASP-53,5.13655912826477E+018,35836.9794935078,56775.8568751624,31.90916263471,-20.66184185244
+WASP-54,3.66198385066391E+018,310943.023846328,429556.001614742,205.45424410659,-0.12817462705
+WASP-55,3.6035292727508E+018,44984.1140340336,63789.4202481209,203.75819687335,-17.50349655049
+WASP-56,4.00161381413816E+018,51431.9793119226,76207.2616605956,183.36603462238,23.05568747466
+WASP-57,6.34037720221564E+018,22184.6916156372,32871.2724872011,223.81997503357,-2.05768724912
+WASP-58,2.11524555475676E+018,65885.7774295992,94789.2806668212,274.70125986777,45.17222589006
+WASP-6,2.38517139876865E+018,29046.0515496472,44433.7571469336,348.1571247285,-22.67413002814
+WASP-61,2.95917704898375E+018,48661.0278274926,66376.3846949177,75.29966378018,-26.05414330774
+WASP-62,4.75664941530991E+018,330167.01585851,450366.420452728,87.139815721,-63.98832498849
+WASP-63,5.57476646815552E+018,116209.534889274,172331.345500182,94.33635311315,-38.32338631709
+WASP-64,5.58352342543726E+018,28808.912658206,44070.9892436612,101.11491919531,-32.85838790104
+WASP-65,5.96931979481073E+017,38520.3756117846,57076.0132602331,133.32429852119,8.52301766219
+WASP-66,5.44414795281152E+018,139853.393917677,181405.923226844,158.22503202357,-34.98990921507
+WASP-67,6.86847669149005E+018,40626.0741470585,64363.1298213336,295.74384876234,-19.94973604902
+WASP-68,6.86053560619631E+018,272832.966858043,387203.938396486,305.09572226728,-19.31472800102
+WASP-69,6.91075301665359E+018,474987.322471152,840015.446585384,315.02597080789,-5.09487006422
+WASP-7,6.6817207244988E+018,616590.447402244,819600.236370187,311.04276123778,-39.22549368743
+WASP-70A,6.88846948937084E+018,95870.3793557571,139925.660926258,315.47719752806,-13.4333864025
+WASP-71,2.5079019146132E+018,270580.932316038,378882.780947171,29.26345387291,0.75882376565
+WASP-72,5.06564046076943E+018,155193.554903994,211590.11139301,41.04007915374,-30.16907956587
+WASP-73,6.45356670161568E+018,245008.668274503,343075.044486241,319.9496996367,-58.1489343912
+WASP-74,4.22406240676263E+018,762271.827642801,1067376.28320028,304.53884318871,-1.07601229288
+WASP-75,2.60516144473545E+018,117209.299238059,162022.010128871,342.38590598498,-10.67546648648
+WASP-76,2.51232634940328E+018,1097370.90982651,1496149.96373043,26.63294255818,2.70038349421
+WASP-77A,5.1784054799617E+018,379674.983958139,580815.124691219,37.1555353583,-7.06066775421
+WASP-78,5.0898516380955E+018,93686.7212864458,129424.654676251,63.75626615164,-22.11638917444
+WASP-79,4.88477976589374E+018,298740.104428071,387500.24678208,66.37090159986,-30.60043580107
+WASP-8,2.31267984553063E+018,448757.355497215,664928.11985735,359.90089232021,-35.03133382683
+WASP-80,4.22350722211243E+018,80543.5918813243,189980.574781226,303.1667810972,-2.14444399129
+WASP-81,4.24424335427899E+018,44121.8593406162,62566.7057731658,304.20799614419,3.29394699661
+WASP-82,3.2318563793483E+018,721423.241955212,947002.609300664,72.66058935413,1.89383389914
+WASP-83,3.51586541682663E+018,41405.5263721305,62314.0314319395,190.15195236869,-19.28435443818
+WASP-84,3.07883610915864E+018,109143.727547363,169834.088027402,131.10699265673,1.85988898874
+WASP-85A,3.90974522388602E+018,239863.479977026,331570.647623672,175.90802194771,6.56378575531
+WASP-88,6.48210301408586E+018,82382.5130829968,109506.605654239,309.51123490689,-48.46208404818
+WASP-89,6.85775624695759E+018,20382.7442888618,33588.0939140224,313.90002834767,-18.97141759942
+WASP-90,1.73706134919887E+018,200052.447970634,265918.866534737,315.53194768088,7.0562799872
+WASP-92,1.42401108289373E+018,35804.2584949262,48239.7147314312,246.69203834502,51.0411344231
+WASP-93,4.15703635408773E+017,183375.041214261,235465.040507295,9.45874270048,51.2887783063
+WASP-94A,6.78054616963417E+018,320367.764016607,436999.686997331,313.78324376267,-34.13575750621
+WASP-95,6.51839930166778E+018,283865.717603867,414310.430236126,337.45784341161,-48.00309977059
+WASP-96,4.99004466837796E+018,29400.3190277622,44246.5670742936,1.04657491105,-47.36063493404
+WASP-97,4.91156321631108E+018,179343.515283824,265735.023650435,24.60516274398,-55.77199769303
+WASP-98,4.85913619979613E+018,21316.5876399007,32080.8024233618,58.42901702035,-34.3282733287
+WASP-99,4.74566047947974E+018,600619.539657552,818881.65913263,39.89766856621,-50.00819890986
+XO-1,1.31670891850535E+018,98086.5177620446,141116.199562929,240.54927183235,28.1696268544
+XO-2N,9.34346809278716E+017,140216.514671894,218185.181142031,117.02676263913,50.22512582327
+XO-3,4.70650560779278E+017,319588.964508643,414543.612816102,65.46958069345,57.81721007633
+XO-4,9.90291507088739E+017,122895.72734377,172085.573016364,110.38802395728,58.26811026231
+XO-5,9.20308932010648E+017,60215.3911158306,90622.2934498613,116.71638297929,39.094466195
+XO-6,1.11430848160335E+018,983995.450633648,1261303.08613684,94.79294684687,73.82756411441
+BKGR0,4.18800292220059E+018,6049.87471602521,48645.1163661628,292.847333,-10.89045
+BKGR1,4.1880036781155E+018,4.40297663830111,35.402933280637,292.843919,-10.888036
+BKGR2,4.18800292650292E+018,61.7655596907493,496.637199877703,292.851605,-10.895941
+BKGR3,4.20819847690484E+018,26591.7170587818,213815.530307442,293.221079,-6.381548
+BKGR4,4.20819868736171E+018,2.8297390050699,22.7530303764593,293.220215,-6.374677
+BKGR5,1.89133307407407E+018,171.295668465428,1377.33393113883,341.952515,34.43787
+BKGR6,1.89133307407407E+018,33.1700694745372,266.709967594615,341.946152,34.429939
+BKGR7,8.8615724185887E+017,130.841761145755,1052.05694253957,107.944059,29.14089
+BKGR8,5.50127895495508E+017,530.574509377022,4266.18069977524,66.644279,74.948929
+BKGR9,5.18234434731525E+017,491752.278815491,3954023.50447708,28.623381,64.793159
+BKGR10,5.18234434731518E+017,3.72174300809089,29.9253505587436,28.641284,64.799355
+BKGR11,5.61368622054351E+018,20358.5283521474,163696.444508308,111.979674,-25.313553
+BKGR12,5.61368622485104E+018,3.37090397459286,27.1043655943613,111.978122,-25.316557
+BKGR13,6.33199788852419E+018,4589.29929131279,36901.0944100563,219.076644,-5.471204
+BKGR14,6.74299818684653E+018,1272.75959908622,10233.8547011065,290.898411,-34.685387
+BKGR15,6.75117741948881E+018,1266.91179991658,10186.8344098697,294.607001,-32.058495
+BKGR16,1.40715227110474E+018,131.143382555728,1054.48218426363,249.181293,46.604717
+BKGR17,5.65695348486278E+018,109.331770524085,879.1019565372,146.401478,-28.368259
+BKGR18,1.3590994210828E+018,6134.03685685843,49321.8373441381,253.345833,44.852177
+BKGR19,5.03017416702719E+018,4515.92147031347,36311.0867142354,19.965928,-28.808451
+BKGR20,3.67986445665672E+017,24702.8113143709,198627.44062714,11.618307,38.83728
+BKGR21,1.59007702418539E+018,2268.53968547702,18240.605328401,221.019225,46.261719
+BKGR22,5.03547044581971E+018,352.165153930892,2831.64787655819,22.244026,-28.245342
+BKGR23,9.93920754454849E+017,19895.1116696026,159970.258511646,102.25613,54.197235
+BKGR24,2.97957656739242E+017,223.741415412626,1799.03348408972,30.462575,27.044027
+BKGR25,1.18692984593094E+018,1382.75864115185,11118.321975656,225.276706,15.699975
+BKGR27,2.30878568458237E+018,33554.1607768152,269798.323465035,3.932775,-36.093304
+BKGR28,5.08679781327064E+018,48.5005184608118,389.977226816937,53.653171,-22.223097
+BKGR29,5.10100965389464E+018,167.782391805776,1349.08479211407,54.864678,-19.792084
+BKGR30,2.10138470316263E+018,90.1044792707533,724.501429364811,289.666834,40.855213
+BKGR31,2.10138453135851E+018,4.48483408557696,36.0611229515113,289.679593,40.857204
+BKGR32,3.0490822937258E+018,110.089622152339,885.195600186889,104.691643,-11.294426
+BKGR33,1.57915472050611E+017,588499.883421199,4731940.18954923,69.552331,28.216698
+BKGR34,2.0287929870343E+018,8030.57016801114,64571.2578600626,298.478799,29.382929
+BKGR35,2.02879291831503E+018,140522.666162623,1129898.0174676,298.482928,29.383444
+BKGR36,2.02879287961012E+018,45367.6601673414,364786.910752889,298.478437,29.372646
+BKGR37,2.02879298269889E+018,16.1341608057013,129.729650067757,298.467622,29.387613
+BKGR39,5.90590219321532E+018,16245.9974656082,130628.893042287,220.442836,-46.780434
+BKGR40,2.85133533362244E+018,1046.51722549822,8414.71180861106,357.276464,24.426895
+BKGR41,3.46803882997668E+018,3370.90397459286,27104.3655943613,186.276289,-33.841286
+BKGR42,4.87707905703388E+018,172.086333346663,1383.69141570828,76.190074,-28.437756
+BKGR43,5.40619339985215E+018,140.522666162623,1129.89801746759,149.822962,-49.868668
+BKGR44,5.40619339985215E+018,2.49313836132366,20.0465317706966,149.820437,-49.868542
+BKGR45,5.40619319369372E+018,2.33209576961708,18.7516395652888,149.834209,-49.865295
+BKGR46,5.55931753951192E+018,359.539310434041,2890.94112113527,107.191377,-43.450787
+BKGR47,5.5593175395123E+018,1.68556840138759,13.5531188458225,107.188714,-43.446781
+BKGR48,4.3439401280167E+018,784.777207367785,6310.14365847887,245.102641,-10.903593
+BKGR49,4.34394013231416E+018,14.5460937119135,116.96050819281,245.102918,-10.901465
+BKGR50,1.47861722837795E+018,18144.5574928739,145894.609737188,211.787309,32.60331
+BKGR51,4.81758413925764E+018,27.780904475108,223.377407695602,73.762138,-38.018112
+BKGR52,2.90118183070767E+018,1547.91240659694,12446.2708201347,84.903921,-33.222439
+BKGR53,1.0023537681204E+018,146.806870598906,1180.42730450589,104.040089,58.564426
+BKGR54,4.54415401854712E+018,222.201190342693,1786.64902469613,255.671961,12.259587
+BKGR55,4.54415401854712E+018,8.37040325408394,67.3037475053927,255.667686,12.263463
+BKGR56,1.68138857865376E+018,1158.10085207865,9311.92022272673,180.354276,67.014503
+BKGR57,1.68138857865376E+018,32.7903748290394,263.656963841508,180.354691,67.01635
+BKGR58,2.89127911359212E+018,696.219817626692,5598.08188344275,90.049924,-30.540836
+BKGR59,2.89127910929536E+018,12.7275959908622,102.338547011065,90.058401,-30.534191
+BKGR60,7.57170474785811E+017,10733.6240818753,86305.6537535241,170.295196,31.547348
+BKGR61,6.00390716215706E+018,120.710870311682,970.597674926806,229.810253,-42.666199
+BKGR62,6.00390716215706E+018,1.20710870311682,9.70597674926806,229.80683,-42.666615
+BKGR63,6.00390719651681E+018,1.48165257847832,11.9134966387629,229.813227,-42.659721
+BKGR64,6.00390719651681E+018,141.17128931899,1135.1133897522,229.815305,-42.659206
+BKGR65,6.1554119617132E+018,27273.8458236719,219300.310522293,192.951044,-36.066631
+BKGR66,6.1554119617132E+018,127.569361297804,1025.74461726471,192.957472,-36.071564
+BKGR67,6.15541216357556E+018,735.77729352943,5916.15095243408,192.944768,-36.061626
+BKGR68,5.31864437416662E+018,379.093537659201,3048.17043636368,131.517565,-52.113438
+BKGR69,2.97630307645847E+018,131143.382555728,1054482.18426363,74.448406,-18.47226
+BKGR71,3.82227827932802E+018,35.1355196552929,282.513526716509,149.479418,-4.43623
+BKGR72,3.82227828362307E+018,1.31143382555728,10.5448218426363,149.485146,-4.438538
+BKGR73,5.39087596591046E+018,1418.22906383817,11403.5283510149,161.705694,-44.009628
+BKGR74,6.56601636283351E+018,16701.1501739666,134288.631053691,326.302179,-43.416904
+BKGR75,1.58487331052843E+018,5429.33177328306,43655.528138834,184.326594,64.722939
+BKGR76,5.38764371096226E+018,5391.95651624909,43355.0055969677,164.012121,-45.273792
+BKGR77,5.58054917776323E+018,413.757978288308,3326.89616661793,99.687706,-36.634686
+BKGR78,5.5805489716048E+018,321.178437628415,2582.49355666021,99.689035,-36.639412
+BKGR79,4.75786664339509E+018,1108.52726957119,8913.31482956459,80.821015,-61.880402
+BKGR80,3.07242269219376E+018,3879.23760505581,31191.7144680832,129.933342,-2.202079
+BKGR81,5.40042464028053E+018,1899.96841425391,15277.0410862554,167.873622,-36.48217
+BKGR82,4.83713146743092E+018,19758.154684209,158869.030997961,64.000106,-46.249645
+BKGR83,6.70095991024264E+018,9610.50880956578,77275.0414386286,304.294086,-31.625071
+BKGR84,6.54787957922983E+018,27526.2076119513,221329.471312138,344.088412,-36.93623
+BKGR85,4.85098022440357E+018,79.203866146314,636.85306988783,49.576308,-42.806786
+BKGR86,1.84729154741078E+018,720.686490503193,5794.81061007531,322.643487,27.504253
+BKGR87,3.32900616446514E+018,288.899227886355,2322.94670853276,93.465578,9.093426
+BKGR88,3.32900616446514E+018,154435.230685349,1241764.51916012,93.470207,9.092409
+BKGR89,1.6724088972538E+018,138914.116504505,1116964.18181433,204.502934,66.886406
+BKGR90,4.05919664683792E+018,56460.7159801351,453982.640614916,259.960878,-30.030302
+BKGR91,4.05919664684393E+018,18.524495158879,148.949567540819,259.961038,-30.02858
+BKGR92,4.05919665117553E+018,2.66530172975024,21.4308426009552,259.962615,-30.029995
+BKGR93,4.05919665123714E+018,41.5667798342099,334.225242160102,259.956662,-30.02807
+BKGR94,4.05919664683994E+018,15.4435230685349,124.176451916012,259.955666,-30.031605
+BKGR95,4.05919664683996E+018,44.745192534137,359.781846702358,259.965342,-30.030708
+BKGR96,4.05919664683994E+018,5.71145002583081,45.9239511836703,259.954838,-30.030544
+BKGR97,4.05919664684393E+018,64.6764808385255,520.042990016003,259.956193,-30.0271
+BKGR98,4.05919665123711E+018,1.89996841425391,15.2770410862554,259.962188,-30.035166
+BKGR99,4.05919665116916E+018,1.39877023158955,11.24706607642,259.954766,-30.028482
+BKGR100,4.05919674991918E+018,42145.0313423152,338874.778426727,259.964699,-30.026979
+BKGR101,4.05919664683993E+018,1.89996841425391,15.2770410862554,259.954974,-30.033587
+BKGR102,4.05919665123711E+018,1345.07462933407,10815.3168348778,259.965941,-30.033421
+BKGR103,4.05919664683996E+018,2.09771450466699,16.8670544387002,259.966914,-30.030846
+BKGR104,4.05919664684393E+018,7.04281663159737,56.6290461655525,259.963001,-30.035955
+BKGR105,4.05919664684393E+018,2.59864156789671,20.8948494634837,259.961862,-30.036377
+BKGR106,4.05919675431635E+018,4.11856933060597,33.1161046721751,259.962967,-30.024693
+BKGR107,4.05919657812045E+018,101.799672573817,818.538755070967,259.966741,-30.035271
+BKGR108,4.05919664683999E+018,28.167375353375,226.484896978914,259.956534,-30.023838
+BKGR109,4.05919674992315E+018,1.1317392582719,9.09995504021968,259.969019,-30.030718
+BKGR110,4.05919960177747E+018,6.91427074113764,55.5954495882148,259.952592,-30.025553
+BKGR111,4.05919960617464E+018,2.94948628561843,23.7158801328989,259.951701,-30.026688
+BKGR112,4.05919664685932E+018,2.20671568107563,17.7434981932133,259.963323,-30.038492
+BKGR113,4.05919657812045E+018,7.3577729352943,59.1615095243408,259.968605,-30.035257
+BKGR114,4.05919960177959E+018,81.0487611890659,651.687283528702,259.954933,-30.022888
+BKGR115,4.05919658244951E+018,2.17143273743567,17.4597992771745,259.965765,-30.03808
+BKGR116,4.05919674991918E+018,1.70508636359338,13.7100565655766,259.969314,-30.02598
+BKGR117,4.05919960610669E+018,4663.86940598903,37500.6889597178,259.948966,-30.029411
+BKGR118,4.05919665123711E+018,22.8426445135392,183.670431641939,259.957757,-30.040262
+BKGR119,4.05919960617465E+018,357.064259230242,2871.04002243944,259.94868,-30.028229
+BKGR120,4.05919658251762E+018,8.52602066915007,68.5550175927619,259.964627,-30.04052
+BKGR121,4.05919960610673E+018,2.7780904475108,22.3377407695602,259.956429,-30.020376
+BKGR122,4.92428734898359E+018,939.17469210314,7551.60467447305,5.469609,-53.196304
+BKGR123,1.28358637123576E+018,464.244087254152,3732.83889449176,216.695211,27.997269
+BKGR124,5.56619952022992E+018,930.564286770617,7482.37114666943,106.122253,-37.320499
+BKGR125,5.57131317700953E+018,126.399798363432,1016.34053408768,90.279714,-43.463825
+BKGR126,4.58381686899895E+018,677.245894734869,5445.51861059505,269.204714,27.786957
+BKGR127,4.18659994966638E+018,22581166.9240075,181567973.596614,292.407692,-12.646664
+BKGR128,1.34507315740688E+018,905203.826502111,7278455.76019156,269.8823,41.732567
+BKGR130,1.72352079907855E+018,2646.95392169903,21283.3137181917,256.204219,84.118996
+BKGR131,1.60179122106767E+018,4413.12654770381,35484.5454705048,236.461317,57.391174
+BKGR132,1.62581785223705E+018,1468.06870598906,11804.2730450589,237.221338,57.697475
+BKGR133,1.89827518433351E+018,1839.69734311786,14792.4205930145,331.856717,30.276146
+BKGR134,1.89827576844906E+018,4.75057721194948,38.1978788204646,331.853393,30.285744
+BKGR135,5.37207668790098E+018,141.496722750635,1137.73009636099,173.853999,-47.747555
+BKGR136,2.10513585457704E+018,624.807711640253,5023.8798761745,283.374818,43.788227
+BKGR137,2.10673341491197E+018,25278.2137076294,203254.068068414,284.349302,44.902134
+BKGR138,2.10673338055223E+018,1.73279178823343,13.9328270639506,284.334379,44.899223
+BKGR139,2.10714064653086E+018,1048.92969685562,8434.10972268684,284.565096,45.275345
+BKGR140,4.85260908645683E+018,21465765.5243142,172599386.075399,47.969021,-39.023266
+BKGR141,3.45894655600996E+018,4974.46501835237,39998.0893878974,180.963642,-40.395042
+BKGR142,6.11247338695566E+018,246.459964249443,1981.70610190608,206.403853,-40.76189
+BKGR143,6.67034232533996E+018,359.539310434041,2890.94112113527,297.917125,-49.051144
+BKGR144,4.74166145690715E+018,6648.84764074688,53461.2669462874,39.130654,-53.686798
+BKGR145,1.86772277555808E+018,82555.5701596371,663803.054706716,318.61095,36.321953
+BKGR146,5.28023787894559E+018,1428.0597580647,11482.5738332863,98.369992,-67.966393
+BKGR147,5.28023788324442E+018,3.09561099948468,24.89082243231,98.361016,-67.971123
+BKGR148,5.28023778016521E+018,1.5694460131717,12.6194156944968,98.352015,-67.974884
+BKGR149,5.64268958924059E+018,115.810085207865,931.192022272673,132.436015,-28.507792
+BKGR150,5.64268958494111E+018,26.5305578066978,213.323768233987,132.437258,-28.507895
+BKGR151,5.4731908996242E+018,285.592225771056,2296.3561574432,154.534159,-24.592833
+BKGR152,4.88208225155406E+018,31242.5433540064,251211.343766311,63.015084,-34.340122
+BKGR153,4.47673653539027E+018,178.956048310776,1438.9286064796,276.192249,5.5678
+BKGR154,3.03619405464284E+018,275.262076119514,2213.29471312138,120.691926,-11.894098
+BKGR155,7.21235136255345E+017,3124.25433540064,25121.1343766311,158.38407,21.483133
+BKGR156,3.74574024842166E+018,46.5314280401529,374.144397685001,204.235117,17.289787
+BKGR157,3.43580289710333E+018,215152.492243721,1729972.68752402,98.579888,31.011438
+BKGR158,2.9203461809437E+018,133274.2911009,1071616.14141335,100.864402,-26.016691
+BKGR159,2.91885246003758E+018,8030.57016801114,64571.2578600626,100.921005,-27.859444
+BKGR160,2.91885238702366E+018,589.856515761301,4742.84843825653,100.926279,-27.866131
+BKGR161,2.91885239131811E+018,9.65486890269938,77.6317268236634,100.926331,-27.868202
+BKGR162,5.9172262309602E+018,171.690545762954,1380.50901376287,257.079237,-56.56279
+BKGR163,5.9172277127529E+018,1.89996841425391,15.2770410862554,257.090548,-56.560925
+BKGR164,5.91722623528415E+018,291.572379529629,2344.44066978902,257.068927,-56.567383
+BKGR165,1.33006021948198E+018,160230.94023946,1288365.97438321,242.201067,35.691277
+BKGR167,3.82811641548852E+018,564607.15980135,4539826.40614915,152.135897,-4.146677
+BKGR168,3.65978255966569E+018,3628.66086713576,29176.9066998353,212.89357,-0.653477
+BKGR169,3.64923731544243E+018,6772.45894734869,54455.1861059505,218.939263,-2.457168
+BKGR170,1.81454744691729E+017,236.998927752263,1905.63291974071,78.593244,32.655586
+BKGR171,1.81454744691729E+017,2.96993114783328,23.8802707605092,78.600811,32.657898
+BKGR172,1.81454706035155E+017,1.2409274204144,9.97790228748414,78.582688,32.652081
+BKGR173,5.6770956101696E+018,266530.172975024,2143084.26009552,142.730226,-21.012403
+BKGR174,5.67709550709039E+018,38.7031560614703,311.199755155415,142.729656,-21.02331
+BKGR175,4.88605973486731E+018,2305400.49009132,18536991.3221577,64.892717,-28.786245
+BKGR176,4.65874353987128E+018,12610.9086894354,101400.301572473,80.580239,-67.858719
+BKGR177,4.65874357423102E+018,1.4512638624745,11.6691506488685,80.58267,-67.856888
+BKGR178,4.65874374170803E+018,5.83104484059393,46.8855750112731,80.561819,-67.859047
+BKGR179,4.65874357423101E+018,7.54651398400506,60.679116203581,80.573529,-67.851814
+BKGR180,4.65874353987154E+018,1.01098888557054,8.12903973915469,80.598296,-67.864128
+BKGR181,1.52313057866757E+018,41090.9688400319,330399.397449835,197.896765,38.960583
+BKGR182,5.5299999209585E+018,15876.1934149461,127655.416413178,130.100825,-37.787189
+BKGR183,5.52836924212938E+018,9413.39713365175,75690.1292111788,130.303342,-40.150005
+BKGR184,4.29312808792674E+018,426.330478050256,3427.98763423353,287.867571,3.949431
+BKGR185,4.2931280879277E+018,5.34252276177232,42.9575245164804,287.861921,3.952814
+BKGR186,4.29312809226054E+018,38084.335392493,306224.015183073,287.862944,3.943311
+BKGR187,4.29312809226056E+018,1.43135177579651,11.5090438997191,287.85912,3.94886
+BKGR188,4.29312809226056E+018,1.99869433326348,16.0708647675716,287.856951,3.949627
+BKGR189,6.70999239826979E+018,80.8623542110697,650.18844436893,281.537746,-43.339581
+BKGR190,6.70998943903363E+018,11343.4818670432,91209.3260308556,281.549354,-43.344158
+BKGR191,5.63956934704217E+018,106.107573030221,853.177211044364,130.412336,-32.199863
+BKGR192,6.89912028671026E+018,116.881662732825,939.808235970278,321.256237,-6.198632
+BKGR193,6.89826565693774E+018,10465172.2549822,84147118.0861107,321.846861,-7.015783
+BKGR194,4.0327434665174E+018,3764.83876102018,30271.8697867501,177.024467,37.261185
+BKGR195,6.54467017782615E+017,29427.0265540525,236613.351222012,119.25569,14.284005
+BKGR196,5.63359999103134E+018,177.31536939809,1425.73642972002,143.896933,-29.038769
+BKGR197,9.65448862196042E+017,70.1045782850544,563.688593326406,96.351159,46.258827
+BKGR198,5.52539987353934E+018,440297.663830111,3540293.3280637,132.733228,-41.037926
+BKGR199,5.52539987353553E+018,1.81863850177131,14.6230931546915,132.730692,-41.03437
+BKGR200,5.52539987353934E+018,4.34256553406985,34.9171868258627,132.726063,-41.042187
+BKGR201,5.52540135100809E+018,11.0343404941306,88.7236186790828,132.729611,-41.031033
+BKGR202,5.52540114484966E+018,27.5262076119513,221.329471312138,132.743186,-41.036819
+BKGR203,5.98614530775186E+018,1196.04186400622,9616.99181956123,235.652782,-48.41312
+BKGR204,5.98614530775186E+018,2353.67438609326,18925.1463499374,235.650971,-48.415512
+BKGR205,5.98614530775186E+018,2.96993114783328,23.8802707605092,235.651104,-48.420097
+BKGR206,3.88425744054752E+017,83.5115186082006,671.489531816274,9.327041,46.27462
+BKGR207,3.8842577841449E+017,309.561099948468,2489.082243231,9.318284,46.269466
+BKGR208,5.46891386811191E+018,7616.34101817516,61240.5731530466,155.307111,-26.816204
+BKGR209,4.04137909970703E+018,290.232726133869,2333.66894336724,265.383873,-34.767265
+BKGR210,4.04137899662813E+018,4750.57721194948,38197.8788204646,265.38134,-34.767521
+BKGR211,4.04137909964985E+018,1.76094738980929,14.1592172917332,265.382013,-34.765091
+BKGR212,4.04137909964985E+018,3.62866086713576,29.1769066998353,265.380924,-34.764389
+BKGR213,4.04137909970701E+018,10.6843075589135,85.9091152943229,265.388208,-34.765457
+BKGR214,4.04137899662783E+018,96.9943375271965,779.900585936312,265.382277,-34.772621
+BKGR215,4.0413788935486E+018,1.38914116504505,11.1696418181433,265.387342,-34.772259
+BKGR216,4.04137909527333E+018,2.15152492243721,17.2997268752402,265.390003,-34.763897
+BKGR217,4.04137888911062E+018,53671.8272639823,431558.074405275,265.389682,-34.771919
+BKGR218,4.04137888911488E+018,11.4484418124719,92.0532755337502,265.391332,-34.770573
+BKGR219,4.04137899218982E+018,2.93593462710861,23.606915561547,265.382067,-34.774368
+BKGR220,4.04137888911063E+018,6.39361352844447,51.4090107134968,265.392746,-34.769821
+BKGR221,4.04137909964278E+018,1.48506814042046,11.9409600848556,265.376647,-34.761845
+BKGR222,4.04137899662784E+018,20.4054596069149,164.073803785406,265.379044,-34.774525
+BKGR223,4.0413787904694E+018,37475.408981745,301327.83179091,265.386825,-34.775242
+BKGR224,4.04137878603349E+018,457.874419584355,3681.62242480351,265.38346,-34.776161
+BKGR225,4.04137909527115E+018,20171.8802423128,162195.666484198,265.390564,-34.760036
+BKGR226,4.04137899219915E+018,14.7484500325019,118.587590938239,265.373475,-34.771015
+BKGR227,4.04137889354859E+018,21.4163956336082,172.202418503159,265.394261,-34.771236
+BKGR228,4.04137889348443E+018,1.51267761850581,12.1629591075318,265.389426,-34.775684
+BKGR229,4.04137888911489E+018,1.24952911836183,10.0470658019766,265.395545,-34.766747
+BKGR230,4.04137909526912E+018,11.3958410003683,91.630329151248,265.388217,-34.757896
+BKGR231,4.04137899219412E+018,96.7712567413104,778.106864363906,265.371825,-34.764053
+BKGR232,4.04137909970699E+018,9.83436631708111,79.0750083823535,265.384001,-34.756405
+BKGR233,4.04137909964262E+018,1.38594622902398,11.1439523548366,265.381834,-34.756496
+BKGR234,4.04137878603138E+018,8.54567517664955,68.7130532297478,265.390079,-34.777039
+BKGR235,5.47417568838273E+018,8447.85364180988,67926.501413594,157.925696,-23.921494
+BKGR236,4.40638270332812E+018,6618.29896074435,53215.6347368106,242.508718,-1.298437
+BKGR237,1.3629437604103E+018,198.037019347361,1592.35261937617,267.893694,47.1936
+BKGR238,1.3629437604103E+018,191.313836613041,1538.29364761008,267.897876,47.193489
+BKGR239,1.87275067043586E+018,105.863532384308,851.214957910911,312.551404,38.769146
+BKGR240,1.87275067474574E+018,14.8165257847832,119.134966387629,312.55367,38.777653
+BKGR241,1.87275067474547E+018,1.03453784187806,8.31838939904876,312.543864,38.777607
+BKGR242,2.07020605809354E+018,47287.5029232124,380223.755092277,310.806994,45.115757
+BKGR243,2.07020605379076E+018,21.5152492243721,172.997268752402,310.798057,45.116199
+BKGR244,2.07020601943106E+018,32.8659644496838,264.264755914059,310.82188,45.115818
+BKGR245,3.77742721578864E+017,2562.98686892505,20608.1613811863,14.945234,45.148239
+BKGR246,3.77742717282522E+017,664.884764074688,5346.12669462874,14.945533,45.147114
+BKGR247,3.77742717282522E+017,1345.07462933407,10815.3168348778,14.944092,45.149658
+BKGR248,6.5733347508839E+018,829.366293578075,6668.67030393401,331.5881,-40.23988
+BKGR249,4.68185489630304E+018,198.037019347361,1592.35261937617,60.99075,-58.958202
+BKGR250,4.68185489630304E+018,399.711258614468,3213.95096606908,60.997796,-58.958145
+BKGR251,3.94350105549336E+018,26469.5392169903,212833.137181917,198.547245,21.143419
+BKGR253,3.2229947966636E+018,102.50531419332,824.212594663484,85.833834,1.862602
+BKGR255,4.92308671234887E+018,175.689732320089,1412.66519956396,3.874719,-55.20327
+BKGR256,6.63799775126946E+018,488.36707993923,3926.80419812977,284.936199,-55.536579
+BKGR257,6.63799771690972E+018,5.45439243010037,43.8570329012155,284.928505,-55.544132
+BKGR258,3.9576498847373E+017,722.347844443328,5808.16902814787,3.469226,51.602371
+BKGR259,2.88328607637463E+018,238.092865098973,1914.42892164585,90.580287,-38.081417
+BKGR260,6.50919954614454E+017,82.5555701596371,663.803054706716,127.41442,12.813326
+BKGR261,6.03198284797889E+018,353.790674424795,2844.71816929863,249.071285,-29.076487
+BKGR262,6.03198284797889E+018,20977.1450466699,168670.544387002,249.076757,-29.074312
+BKGR263,5.9324062946584E+018,186.100003435455,1496.37087506644,242.709561,-55.349976
+BKGR264,5.93240650522213E+018,1.58032489321579,12.7068893051943,242.704738,-55.345776
+BKGR265,5.93240629906368E+018,3.22660929938451,25.9441380531306,242.716971,-55.352848
+BKGR266,5.93240629465894E+018,3.19702756751825,25.7062807657499,242.714643,-55.355503
+BKGR267,5.93240650081738E+018,84.2842411759731,677.702747955856,242.70367,-55.344494
+BKGR268,5.9324064021429E+018,6.24807711640253,50.238798761745,242.718021,-55.345543
+BKGR269,5.93240629906367E+018,2.14163956336082,17.2202418503159,242.71567,-55.3577
+BKGR270,5.93240639773816E+018,435.257618149476,3499.76792545068,242.723149,-55.346382
+BKGR271,5.93240640214291E+018,3.21178437628415,25.8249355666021,242.716201,-55.341515
+BKGR272,5.9324064021429E+018,1.22108636313128,9.81836666308383,242.722792,-55.344246
+BKGR273,5.93240650081737E+018,134.19810435327,1079.04422964187,242.691771,-55.348888
+BKGR274,5.93240639773816E+018,6.14817727219209,49.4355359216558,242.72806,-55.348129
+BKGR275,4.72747095368056E+018,123.238493613913,990.921489127645,45.480378,-57.256413
+BKGR276,1.52840493594807E+018,1917548.6055403,15418397.8070154,191.701872,43.151932
+BKGR277,2.52912664655839E+018,22016.4037584739,177026.892798043,10.233327,-3.734955
+BKGR278,3.21145813225336E+018,8724.61720278213,70151.8690883571,75.180019,-5.8751
+BKGR279,9.12723710527922E+017,12126.8046373363,97507.7750238964,134.521889,41.623337
+BKGR280,5.9533075296615E+018,157.306395988248,1264.85064520766,260.162461,-43.952354
+BKGR281,5.95330753399742E+018,24702.8113143709,198627.44062714,260.165895,-43.954834
+BKGR282,5.95330756835687E+018,4.09964622342303,32.9639499922632,260.156577,-43.952522
+BKGR283,5.95330756835686E+018,81.4228652730382,654.695335356566,260.155192,-43.955509
+BKGR284,5.95330749963739E+018,2.10739711488448,16.9449092246035,260.165792,-43.95842
+BKGR285,5.95330752966362E+018,49.516094276936,398.143148604236,260.165589,-43.945946
+BKGR286,5.95330749530184E+018,1.08579135909743,8.73050261235335,260.162458,-43.961365
+BKGR287,5.9533075983831E+018,1.20710870311682,9.70597674926806,260.152754,-43.94659
+BKGR288,1.33846382121474E+018,277.80904475108,2233.77407695602,257.059218,35.724518
+BKGR289,6.55675088142423E+018,1235.22587682055,9932.05799076594,348.499657,-32.306583
+BKGR290,6.50351469736672E+018,12323.8493613913,99092.1489127645,340.500216,-59.253471
+BKGR291,4.78088395724752E+018,189.559860816196,1524.19048667768,65.791794,-53.004322
+BKGR292,4.78088395295208E+018,48.836707993923,392.680419812977,65.7927,-53.00518
+BKGR293,1.38533104980592E+018,333.231755587514,2679.41044870189,243.224108,44.288044
+BKGR294,1.40660213733361E+018,14346513.8241295,115355749.85957,246.200303,44.689983
+BKGR295,1.40660206861414E+018,52.089043319973,418.831412655591,246.203415,44.683216
+BKGR296,1.33425708972539E+018,400632.68822799,3221359.88821657,257.762098,32.305466
+BKGR297,6.29400154980693E+018,1801.96512376694,14489.0278308111,208.59776,-18.301659
+BKGR298,6.46767103061873E+018,70.2661860283521,564.988029735819,306.42515,-58.277779
+BKGR299,4.93604398014244E+018,537.955536039016,4325.52918511219,29.891097,-53.412666
+BKGR300,5.46432526678922E+018,2031170.50362708,16331995.3133464,147.517495,-29.905424
+BKGR301,5.83098518176752E+018,34573.7415474969,277996.44781679,248.535525,-59.735874
+BKGR302,5.8309850786883E+018,1.38594622902398,11.1439523548366,248.530634,-59.744125
+BKGR303,5.83098525048755E+018,3.03211997271625,24.3803113010338,248.522115,-59.729206
+BKGR304,4.30681484303046E+018,13764.0544229219,110672.379264265,286.122129,7.256043
+BKGR305,4.30681484733164E+018,1.61713538875455,13.0028707796926,286.122964,7.252938
+BKGR306,4.30681484733165E+018,20.1254862051764,161.822626803026,286.118783,7.259341
+BKGR308,4.30681484733164E+018,44.9517269588411,361.44252425271,286.119002,7.249721
+BKGR309,4.3068146368739E+018,8.01210036915622,64.4227480880871,286.129158,7.253582
+BKGR310,4.30681484733481E+018,48.9492882327898,393.585641669175,286.114653,7.253107
+BKGR314,4.30681484303603E+018,11.5277986199851,92.6913583564741,286.116601,7.26426
+BKGR315,4.30681484303212E+018,36.7914056816608,295.827979035398,286.116395,7.247582
+BKGR316,5.99261651780245E+018,475057.721194949,3819787.88204647,246.714036,-42.973782
+BKGR317,5.99261651346862E+018,19.3529146433387,155.610624854087,246.71171,-42.972691
+BKGR318,5.99261651780245E+018,15.3019359979928,123.037995361825,246.711689,-42.970406
+BKGR319,5.99261648344271E+018,38.7031560614703,311.199755155415,246.710061,-42.975773
+BKGR320,5.9926172737167E+018,917.796466102902,7379.70916583896,246.70696,-42.969685
+BKGR321,5.99261799527129E+018,5.80425362314686,46.6701553618625,246.72275,-42.965466
+BKGR322,5.56520831049762E+018,3197027.56751824,25706280.7657498,108.062395,-38.174545
+BKGR323,1.26132542259723E+017,174.480292709859,1402.94048073273,39.326617,25.127228
+BKGR324,1.26132439181093E+017,12.2955052943996,98.8642432945792,39.3172,25.124981
+BKGR325,6.1871435924126E+018,21025.5023601971,169059.370148543,195.076363,-27.403164
+BKGR326,5.58938382241443E+018,616.235028454964,4954.94966014639,109.114928,-36.571136
+BKGR327,5.58938382241443E+018,1.8270329556877,14.690590285915,109.114702,-36.567383
+BKGR328,2.24017011169505E+018,1635860.9340207,13153436.9271334,293.343877,62.053188
+BKGR329,2.24017086331505E+018,10.2269558512827,82.2316958299111,293.330405,62.056862
+BKGR330,1.64239055048469E+018,133274.2911009,1071616.14141335,245.98865,66.726028
+BKGR331,1.78814057061553E+018,620.506565607094,4989.29573036786,318.166862,17.940132
+BKGR332,1.30168416083168E+018,100402.92870353,807307.982320605,245.504948,22.839373
+BKGR333,4.52810891408577E+018,1921.96901160202,15453.9408847404,271.969147,20.39784
+BKGR334,6.51113286983834E+018,295.628555371428,2377.05508828321,334.711623,-52.115772
+BKGR335,4.74729696939385E+018,2227134.16987626,17907676.760597,44.713064,-52.095997
+BKGR336,5.71509988599528E+018,137.323979762062,1104.17839855351,115.174438,-21.557257
+BKGR337,5.71510009215371E+018,5.36718272639823,43.1558074405275,115.167397,-21.55283
+BKGR338,4.71605688911216E+018,35297.6978453442,283817.549906643,25.490174,-60.438442
+BKGR339,5.56851055623024E+018,62624.8042168493,503546.111536386,93.213753,-43.394062
+BKGR341,5.40322492459696E+018,1654.80331088174,13305.7465483916,167.242852,-33.718395
+BKGR342,5.40322492459696E+018,52.3294754197401,420.764650618412,167.25187,-33.712044
+BKGR343,2.15790798460188E+018,7920.3866146314,63685.306988783,277.301587,60.115185
+BKGR344,6.39846058758073E+018,40902.1729875905,328881.350111245,333.942319,-65.493057
+BKGR345,4.59142710866874E+018,546.696610322204,4395.81338034431,275.68863,30.251291
+BKGR346,4.59142721174796E+018,4.55770677720955,36.6470690629229,275.689463,30.262402
+BKGR347,1.31738587407081E+018,34.6534422530077,278.637295813819,244.549695,27.989285
+BKGR348,1.30245577317978E+018,203.585283521474,1636.96444508308,245.108589,24.362988
+BKGR349,5.57408109015706E+018,117.691847713737,946.322675446223,96.21888,-38.868816
+BKGR350,1.49568085856457E+018,4006.3268822799,32213.5988821656,208.44391,38.073204
+BKGR351,3.12623653217277E+018,45.7874419584355,368.162242480351,103.344388,2.330875
+BKGR352,3.1262365364736E+018,1.35752045164394,10.9153897294342,103.350776,2.337839
+BKGR353,3.11294649891055E+018,671.036867050794,5395.59379588566,104.928761,0.196545
+BKGR354,4.64159803039897E+018,55.3027058715472,444.671450031706,55.65043,-73.306587
+BKGR355,4.14565159834956E+017,4043.39696850759,32511.6676427423,11.79077,49.704288
+BKGR356,2.6800038655039E+018,46.7462073533406,375.871369758552,328.106894,-1.275721
+BKGR357,3.02053109918701E+018,149.880930673988,1205.1448428167,93.226515,-5.09737
+BKGR358,6.0966138594344E+018,244.763345789371,1968.06413305661,214.537988,-44.783485
+BKGR359,4.19477536837131E+018,197.127121894512,1585.03642366093,295.407277,-8.317173
+BKGR360,4.19477536407392E+018,25.4534339142159,204.662957961046,295.404346,-8.31744
+BKGR361,4.19477536837131E+018,1.03453784187806,8.31838939904876,295.40004,-8.317003
+BKGR362,4.19477536837131E+018,48.2776788202497,388.185444217303,295.399377,-8.318331
+BKGR363,8.76165812196969E+016,267144.588478675,2148024.57953605,35.516238,20.668531
+BKGR365,4.51283247565203E+017,504.366672005627,4055.45182381025,38.541978,51.222328
+BKGR366,2.65313053001065E+018,645277.290604151,5188469.24329438,339.818409,-0.715827
+BKGR367,4.65432515236853E+018,8293662.93578075,66686703.0393401,63.312508,-70.42041
+BKGR368,4.6543251480738E+018,108.579135909743,873.050261235335,63.316364,-70.42231
+BKGR369,2.31584186917329E+018,95443.5053227053,767430.837950947,6.959792,-32.556629
+BKGR370,2.31584186917329E+018,121268.046373363,975077.750238964,6.9593,-32.551693
+BKGR372,2.31750625489989E+018,21664.3858072595,174196.42853166,7.943713,-30.918083
+BKGR373,1.99756324899224E+018,8236.56976171773,66227.6350046497,354.238026,55.675995
+BKGR374,1.99756318027276E+018,23.1604173526129,186.225541864932,354.250315,55.674065
+BKGR375,1.99756318027277E+018,261.063635238284,2099.12957065058,354.244271,55.668465
+BKGR376,6.81816369223336E+018,28297.390050699,227530.303764593,327.021183,-20.235403
+BKGR377,8.51843030143429E+017,119054655.081101,957280575.581659,155.061633,53.779415
+BKGR378,7.73756504612064E+017,190.434829378925,1531.22583030851,176.837005,45.51001
+BKGR379,2.45673057473758E+018,1155437.29403182,9290503.40052497,22.62729,-14.07332
+BKGR380,2.45673057473758E+018,2.76532628134477,22.2351081734143,22.625374,-14.06855
+BKGR381,2.33239442831809E+018,6176.55596907493,49663.7199877703,353.768123,-26.640352
+BKGR382,5.99449849941098E+018,376.483876102018,3027.18697867501,240.517909,-43.224098
+BKGR383,5.99449857245745E+018,3.53790674424795,28.4471816929863,240.515732,-43.213608
+BKGR384,5.50232778596313E+018,308.849129175566,2483.35751293116,98.152875,-52.03997
+BKGR385,5.50232919471646E+018,2186.48439010554,17580.8248239829,98.167758,-52.040916
+BKGR386,5.50232919900784E+018,981.17479022062,7889.31409098431,98.169918,-52.042759
+BKGR387,2.241172935021E+018,3175.01938454651,25529.3199736806,298.501574,62.995598
+BKGR388,2.24117272886502E+018,2.79734725053331,22.4925785914723,298.516834,62.996712
+BKGR389,2.23781980251497E+018,176500.679278546,1419185.76585874,300.033513,61.17432
+BKGR391,4.81815334268425E+018,23645.384534431,190125.008564767,71.666888,-38.475349
+BKGR392,1.30733310797797E+018,37.0464315224385,297.87856062317,252.209631,26.926062
+BKGR393,1.30733310797797E+018,1.24665528113774,10.0239581918615,252.205116,26.921335
+BKGR394,2.09351295582107E+018,13266.195135552,106669.251248418,283.038621,36.360397
+BKGR395,5.79716688414076E+018,149.192290350576,1199.60770523299,222.605685,-71.672569
+BKGR396,4.78384975242494E+018,264.695392169903,2128.33137181917,74.418562,-50.656677
+BKGR397,2.0701086525629E+017,413.757978288308,3326.89616661793,75.354924,46.95726
+BKGR398,6.38143674596855E+018,38.4367254091861,309.057471109508,348.001677,-70.516762
+BKGR399,3.12182447118631E+018,45263.3174444365,363947.92413979,94.839376,0.301171
+BKGR400,3.1218240932292E+018,2.31071498708589,18.5797235004033,94.832861,0.29333
+BKGR401,1.83865715131779E+018,4175.86433724729,33576.795578366,313.978374,21.48024
+BKGR402,1.83865715561549E+018,3.95135801672551,31.7716117358325,313.973532,21.480549
+BKGR403,3.12375706473595E+018,462.111079426199,3715.6880576776,95.141394,1.679765
+BKGR404,3.12374531370507E+018,1.1422111126972,9.18415588750978,95.143989,1.677801
+BKGR405,5.49422298081475E+018,4894.92882327898,39358.5641669175,114.377992,-49.400768
+BKGR406,5.78572707982018E+017,97891.815082419,787116.917209119,135.016064,3.653432
+BKGR408,5.52409172958078E+018,513.743548526448,4130.84830240149,132.051335,-43.264263
+BKGR409,5.52408877034279E+018,1.8524495158879,14.8949567540819,132.059983,-43.267838
+BKGR410,5.52409172528029E+018,11.1364399896542,89.5445682150318,132.058021,-43.258633
+BKGR411,5.52408873598305E+018,6.37890862538577,51.29077326991,132.049954,-43.273094
+BKGR412,4.43566434724104E+018,2739.97361760793,22031.2554763652,251.254559,5.836842
+BKGR413,4.38634870381827E+018,71902.8957571086,578148.291551173,252.30181,3.821173
+BKGR414,5.2641632294014E+018,1131.7392582719,9099.95504021969,112.4542,-72.127121
+BKGR415,1.64480692914876E+018,426.330478050256,3427.98763423353,233.471426,66.718605
+BKGR416,6.05968329113079E+018,2869.10459590356,23069.5565587047,188.965705,-59.719662
+BKGR417,6.05968325677105E+018,218.145561555532,1754.03900489409,188.962151,-59.715004
+BKGR418,4.70128632048783E+018,808623.542110699,6501884.44368932,34.413397,-62.739155
+BKGR419,4.70128484301869E+018,19.3084041748114,155.25273034839,34.412412,-62.741608
+BKGR420,3.08689099390805E+018,87.8509336009057,706.381386142127,115.451479,1.239271
+BKGR421,3.3287457906685E+018,4372.66676031928,35159.2212021762,94.029464,8.687361
+BKGR422,3.32874585938798E+018,290.901781665605,2339.0486058767,94.022976,8.695772
+BKGR423,4.58890108378394E+018,34653.4422530077,278637.295813819,277.805246,31.055437
+BKGR424,4.93544213929952E+017,2803.79580193234,22544.4293401114,56.227513,68.373207
+BKGR425,1.94978650952362E+018,346.534422530077,2786.37295813819,328.579261,36.667786
+BKGR426,2.18726233372549E+018,2771.70101678634,22286.3653914418,310.130503,57.502724
+BKGR427,2.18726157781125E+018,11688.1662732825,93980.8235970278,310.135652,57.492641
+BKGR428,6.5694988984113E+018,36286608.6713576,291769066.998353,336.163364,-41.440315
+BKGR429,6.5694988984113E+018,599440.913123685,4819913.52586201,336.169365,-41.438259
+BKGR430,4.58865297211469E+018,2247.74158862762,18073.3744535609,279.040253,30.710291
+BKGR431,4.58865317827328E+018,1.35439824124558,10.8902850297045,279.033119,30.715538
+BKGR432,3.24823655998E+018,4526.33174444365,36394.792413979,52.108728,-5.626717
+BKGR433,5.10768358639446E+018,2201.64037584739,17702.6892798043,58.08888,-17.736441
+BKGR434,3.80782664638518E+018,579090.421025591,4656281.69831388,163.165013,0.483886
+BKGR435,4.90388742255781E+018,461.048253436626,3707.14221228963,14.296426,-59.834099
+BKGR436,4.38489697051271E+018,529.354221868076,4256.36875644431,254.389425,1.690558
+BKGR437,4.49547104528675E+018,122.955052943996,988.642432945792,270.662999,11.939787
+BKGR438,3.04888290846071E+017,21.3671392905,171.806363931,29.349097,32.836487
+BKGR439,7.32422319175114E+017,155505.724563512,1250372.01959885,167.189979,29.021309
+BKGR440,1.28206547177799E+018,284.935381879008,2291.0746848404,224.08868,30.11808
+BKGR441,5.88263137323702E+018,330.176668488808,2654.8454660533,233.940829,-57.375439
+BKGR442,5.88263136891253E+018,1.20989137606341,9.72835133645367,233.938078,-57.376072
+BKGR443,5.88263140327227E+018,1.4117128931899,11.351133897522,233.941412,-57.371372
+BKGR444,5.88263136891252E+018,1.03453784187806,8.31838939904876,233.933121,-57.377182
+BKGR445,5.88263136890463E+018,5.89856515761301,47.4284843825653,233.932798,-57.373543
+BKGR446,5.88263136891252E+018,2.38641725837675,19.1884213609345,233.929432,-57.377045
+BKGR447,5.88263136890462E+018,1.15012854188927,9.24781741480535,233.928984,-57.375866
+BKGR448,5.88263130451754E+018,68.1940339008415,548.326514233003,233.936865,-57.382919
+BKGR449,5.88263136891252E+018,8.82564350861685,70.9641894477119,233.929708,-57.37038
+BKGR450,5.88263130019306E+018,3.39426996467597,27.2922440810997,233.95184,-57.38176
+BKGR451,5.88263140327226E+018,9.500498224924,76.3904813538993,233.932928,-57.367947
+BKGR452,5.88263136891252E+018,1.40846604363469,11.3250270140161,233.930873,-57.368645
+BKGR453,5.882631300188E+018,2.39743245995816,19.2769910897101,233.940446,-57.384342
+BKGR454,5.88263130018512E+018,51.9692418447927,417.868127137372,233.951809,-57.382748
+BKGR455,5.88263130018512E+018,50.4366672005627,405.545182381025,233.937921,-57.385422
+BKGR456,5.88263140759676E+018,8.78509336009057,70.6381386142127,233.930863,-57.367111
+BKGR457,5.88263130019305E+018,1.70508636359338,13.7100565655766,233.949429,-57.384762
+BKGR458,4.502690266836E+018,292.244523281385,2349.84516369239,268.886566,16.816324
+BKGR459,4.50269019811652E+018,2.11712441800008,17.0231233718707,268.900562,16.817698
+BKGR460,5.42134195564825E+018,1068430.75589135,8590911.52943229,150.463523,-38.920666
+BKGR461,1.08671774913114E+018,1899.96841425391,15277.0410862554,111.019579,60.367065
+BKGR462,1.08671781785062E+018,18.6959002022122,150.327780920445,111.014451,60.373814
+BKGR463,1.74008823599056E+018,7157.25319598882,57549.1941442569,320.768576,7.389057
+BKGR464,1.76517359377971E+018,35871.2392966758,288429.214106389,314.841582,18.071898
+BKGR466,2.09641456270522E+018,8604.91096708917,69189.3493605328,278.162909,38.378761
+BKGR467,2.18012773591215E+018,159.494745941687,1282.44647043243,307.105338,49.978867
+BKGR468,2.18012774021939E+018,9.3917469210314,75.5160467447305,307.115252,49.977024
+BKGR469,6.00191845486702E+018,324897.5086562,2612397.42267604,234.169864,-42.130341
+BKGR470,6.00191845486701E+018,119604.186400622,961699.181956123,234.169583,-42.134079
+BKGR471,6.00191855794624E+018,21.9657674349726,176.619742242916,234.171509,-42.126003
+BKGR472,9.33430602558872E+017,200.33017995466,1610.79119369786,117.817267,47.406616
+BKGR474,5.93029712211624E+018,572.461627791039,4602.98168246266,250.71013,-54.47897
+BKGR475,5.93030887750272E+018,10.2034345055352,82.0425681777392,250.697403,-54.475063
+BKGR476,5.9302967485141E+018,199.869433326348,1607.08647675716,250.712126,-54.488621
+BKGR477,5.93030887750272E+018,9.52239913519111,76.5665796003053,250.695145,-54.473679
+BKGR478,3.11386699630291E+018,52.6922060145384,423.681251841044,105.20729,1.213539
+BKGR479,3.96388899036927E+018,73408.5052713496,590254.418282732,170.687139,11.583944
+BKGR480,3.96388898607363E+018,1.22672264169531,9.86368618447702,170.693715,11.582494
+BKGR481,4.39310716557292E+018,233209.576961708,1875163.95652888,255.161144,6.313074
+BKGR482,6.21317683230566E+018,440297.663830111,3540293.3280637,231.02663,-28.101604
+BKGR483,3.5331047369757E+017,11034.3404941306,88723.6186790828,31.997118,46.582672
+BKGR485,3.15253262836111E+018,5479.56876165379,44059.4677673203,107.166049,5.122636
+BKGR486,1.3733400208077E+018,2049.96469289946,16483.1134053857,238.048205,36.836575
+BKGR487,5.81016173718531E+018,3773.51761068923,30341.6536536717,263.401918,-70.072433
+BKGR488,5.81016170282558E+018,1.01098888557054,8.12903973915469,263.423947,-70.070969
+BKGR489,5.8101602597163E+018,42.5349945160239,342.010348145771,263.401089,-70.08168
+BKGR490,4.66298524525127E+018,2895.65209387154,23283.016537382,71.919932,-66.006401
+BKGR491,3.75393878693915E+018,1843.93828348503,14826.5206442298,158.766822,-13.225983
+BKGR492,2.16671012495416E+018,27717.0101678634,222863.653914418,312.085523,47.373344
+BKGR493,2.16671019367363E+018,1.08579135909743,8.73050261235335,312.075312,47.372345
+BKGR494,3.20198446948719E+018,55.6860459152575,447.753765271178,70.759717,-2.777766
+BKGR495,5.14080977579423E+018,105377.133635308,847303.980435171,24.808859,-17.599747
+BKGR496,3.57463191676376E+017,3843.67254091861,30905.7471109508,26.639841,49.425327
+BKGR497,3.57463191676375E+017,62.0506565607094,498.929573036786,26.633367,49.42844
+BKGR498,4.79092397587785E+018,3339.99934119261,26855.8712769457,67.882367,-45.001457
+BKGR499,5.81648939225284E+018,478.350664003765,3846.26538672894,256.909909,-65.74054
+BKGR500,3.5565107539327E+018,3204.39747720298,25765.5398630122,163.579145,-17.06963
+BKGR501,3.32815844529939E+018,112.913633020836,907.902572440956,98.429458,11.93836
+BKGR502,5.90955958120223E+018,33.7867471079203,271.668476100067,267.985467,-62.996788
+BKGR503,5.73130798875385E+018,109.080314429712,877.080078143697,138.059457,-15.138665
+BKGR504,9.75360100526982E+017,284.28004868599,2285.80535928751,112.997118,46.593376
+BKGR505,9.75360207902976E+017,144.127343231678,1158.88207808329,113.009989,46.594326
+BKGR506,3.35533473060687E+018,398.791948230248,3206.55908396969,99.392718,12.942798
+BKGR507,3.35533472630708E+018,2.04524990493977,16.4452032965477,99.397096,12.944733
+BKGR508,2.13432215024977E+017,1075836.76408227,8650460.88328947,80.50351,48.759544
+BKGR509,2.13432219320633E+017,31.6771704259989,254.706041670874,80.509794,48.762852
+BKGR510,2.13432180665238E+017,2.18648439010554,17.5808248239829,80.49526,48.762451
+BKGR511,6.1624999247664E+018,144.127343231678,1158.88207808329,201.059782,-38.237949
+BKGR512,6.16249992906207E+018,4.22421856733597,33.9655965469595,201.068735,-38.230457
+BKGR513,5.78115387166296E+018,330.176668488808,2654.8454660533,249.349455,-75.427322
+BKGR514,5.77809846628764E+018,409964.622342303,3296394.99922633,252.793989,-75.634262
+BKGR515,5.35700994264224E+018,64231.2510761286,516463.0392537,152.639008,-51.69445
+BKGR516,5.3570099082825E+018,4.42329985506418,35.5663457959005,152.640437,-51.704117
+BKGR517,4.59413486220925E+018,133.889457278123,1076.56249678106,264.557477,26.449583
+BKGR518,2.95731347985393E+018,10345.3784187806,83183.8939904876,82.913165,-24.759014
+BKGR519,2.90717677612172E+018,246459.964249443,1981706.10190608,83.943302,-29.088282
+BKGR520,1.7777894932737E+018,43.9285007304223,353.215087935972,336.205966,20.533335
+BKGR521,4.49830066851942E+017,2332.09576961708,18751.6395652888,53.313842,57.987469
+BKGR522,4.49830002431394E+017,1.37640544229219,11.0672379264265,53.333178,57.988628
+BKGR523,4.49929198992326E+017,408081.006002001,3281249.43996037,53.502039,58.598648
+BKGR524,2.23173678879394E+018,8447.85364180988,67926.501413594,351.11051,73.962158
+BKGR525,4.64254529402572E+018,8198.72616120759,65923.3466620078,49.745157,-71.865768
+BKGR526,8.31846315248225E+017,1048929.69685562,8434109.72268682,164.598911,48.288105
+BKGR527,4.43933011900775E+018,2498.88563880765,20092.7437990642,249.500032,7.79142
+BKGR528,6.49890375791689E+018,34.3357375847767,276.082733730867,351.480853,-55.610825
+BKGR529,1.30131311001764E+018,178.956048310776,1438.9286064796,249.741739,25.864382
+BKGR530,4.66703337648179E+018,810.487611890659,6516.87283528702,57.445039,-69.656342
+BKGR531,5.8638874831661E+018,236.45384534431,1901.25008564767,205.622144,-64.858765
+BKGR532,5.86388768932453E+018,184.818900022941,1486.06993041816,205.611177,-64.860458
+BKGR533,5.86388768494922E+018,4.35257618149476,34.9976792545068,205.616021,-64.854378
+BKGR534,5.86388758624533E+018,3.67914056816608,29.5827979035398,205.642198,-64.855606
+BKGR535,5.86388748316608E+018,7.54651398400506,60.679116203581,205.607652,-64.866974
+BKGR536,5.86388778802845E+018,2.39743245995816,19.2769910897101,205.639466,-64.851578
+BKGR537,4.81302079669239E+017,332.465343817365,2673.24797567669,83.643088,67.609055
+BKGR538,2.10906554349443E+018,3204.39747720298,25765.5398630122,274.907929,39.032856
+BKGR539,2.72643218709604E+018,106843.075589135,859091.152943229,329.529125,10.383571
+BKGR540,1.15121479197895E+018,108829.436668308,875062.849941458,137.21886,86.834778
+BKGR541,6.09111678233702E+018,366223.645275029,2944687.72935989,212.087005,-48.2612
+BKGR542,6.09111743517205E+018,1.71690545762954,13.8050901376287,212.074801,-48.264076
+BKGR543,5.85723481497134E+018,954.435053227053,7674.30837950947,192.32421,-68.369476
+BKGR544,5.85723481930148E+018,3.37867471079203,27.1668476100067,192.321291,-68.36972
+BKGR545,5.85723488802096E+018,3.00432132971465,24.1567912634945,192.315117,-68.369034
+BKGR546,5.8572349223807E+018,2.06893278266409,16.6356297759149,192.351184,-68.370079
+BKGR547,2.22446128169574E+018,191.313836613041,1538.29364761008,329.901646,71.227005
+BKGR548,1.04958043393675E+018,323.404740200395,2600.39454680689,148.615472,59.168694
+BKGR549,1.04958043393706E+018,7.7937483907191,62.6670493507694,148.601507,59.167736
+BKGR550,1.04958043823261E+018,2.75896620738787,22.1839688437168,148.602231,59.164246
+BKGR551,6.726052891598E+018,141.496722750635,1137.73009636099,273.023937,-39.223236
+BKGR552,6.72605286158121E+018,1.44459591071362,11.6155357717748,273.025993,-39.227776
+BKGR553,4.15253432635496E+018,1345.07462933407,10815.3168348778,276.059317,-13.329378
+BKGR555,4.15253433066269E+018,58.0425362314686,466.701553618625,276.061704,-13.330165
+BKGR556,4.1525372813012E+018,457.874419584355,3681.62242480351,276.060777,-13.327534
+BKGR558,4.15253432635982E+018,2.77170101678634,22.2863653914418,276.05949,-13.333706
+BKGR563,4.1525372856042E+018,454.722434250643,3656.27831429876,276.054682,-13.328199
+BKGR565,4.15253432635982E+018,4557.70677720955,36647.0690629229,276.064849,-13.330485
+BKGR568,4.1525372856042E+018,3.86141412726631,31.0484015580119,276.052759,-13.32888
+BKGR571,4.15253432636371E+018,14.3795859540819,115.621672326651,276.066556,-13.331269
+BKGR578,4.15253728559886E+018,457874.419584356,3681622.42480352,276.056663,-13.322084
+BKGR580,4.15254316111946E+018,14988.0930673988,120514.48428167,276.065142,-13.323516
+BKGR583,4.15253432635982E+018,29.6310049574184,238.253476618599,276.06805,-13.329391
+BKGR588,4.15253432636371E+018,1.01331945564589,8.14777911109814,276.068637,-13.334005
+BKGR590,4.15253728130119E+018,53.6718272639822,431.558074405275,276.048891,-13.32907
+BKGR593,4.15253432636371E+018,37.1318323670343,298.565241623708,276.069273,-13.333439
+BKGR594,4.15253429200396E+018,2.7211117718964,21.8795933804398,276.055206,-13.339027
+BKGR595,4.15254316111946E+018,263479.227313909,2118552.57742801,276.064442,-13.320233
+BKGR598,4.15253728129376E+018,5.87146371248895,47.2105702911777,276.056157,-13.319377
+BKGR601,1.92065381937262E+018,395135.801672552,3177161.17358325,354.542905,40.512726
+BKGR602,5.90775473286675E+018,3189.67460815541,25647.1579606291,224.4589,-45.252174
+BKGR603,5.90775469850701E+018,3.8881801712962,31.2636187959899,224.445094,-45.253475
+BKGR604,3.56633894907099E+018,23482.6108522276,188816.197211838,169.276869,-11.373664
+BKGR605,1.33147195805209E+018,1777.24123539423,14290.2309162686,248.439402,38.01643
+BKGR606,1.36017319297027E+018,7425.85357004268,59708.9242320941,259.112519,42.656181
+BKGR607,1.36510996582039E+018,1144.84418124719,9205.32755337502,259.361841,47.404335
+BKGR608,3.52784841423783E+018,175.28565714872,1409.41615976486,186.451341,-14.078506
+BKGR609,2.79329091220061E+018,255.121101392882,2051.34754804873,6.714488,17.43017
+BKGR610,4.5327846903674E+018,265.305578066978,2133.23768233987,281.812993,24.096008
+BKGR611,4.20220274127805E+018,34099.3720298116,274182.193560047,283.687844,-10.738187
+BKGR612,4.20220274127806E+018,2.78449460739425,22.3892345801564,283.68413,-10.736989
+BKGR613,4.20220274127804E+018,13.7008143372977,110.163885870833,283.691024,-10.740762
+BKGR614,4.20220280564075E+018,1650997.36888049,13275144.180537,283.68354,-10.734333
+BKGR615,4.20220280999754E+018,9.67712567413103,77.8106864363906,283.687004,-10.73233
+BKGR616,4.20220280995137E+018,6.55762203115612,52.7277508649772,283.677251,-10.73578
+BKGR617,4.20220277563777E+018,1.74480292709859,14.0294048073273,283.698795,-10.736987
+BKGR618,5.25168613895138E+018,2708609.39896468,21779065.7803384,156.029186,-63.998596
+BKGR619,5.25168607455516E+018,23591.0016591106,189687.733179331,156.038709,-64.001823
+BKGR620,5.25168762074339E+018,9.92536258824943,79.8066804264281,156.025041,-63.992142
+BKGR621,2.83166785806905E+017,5281.36740942518,42465.7937995681,85.981267,60.627495
+BKGR622,5.29333938462282E+018,5257.10173036562,42270.6812002229,111.476962,-59.640484
+BKGR623,5.292570104441E+018,327.149590596981,2630.50569651934,116.074991,-59.887337
+BKGR624,2.19505924555662E+018,524.501073190744,4217.34613312853,310.803731,61.56057
+BKGR625,2.19505927991643E+018,1.28158194715504,10.304792392972,310.821043,61.566837
+BKGR626,5.49155573740346E+018,14816.5257847832,119134.966387629,107.882276,-53.16814
+BKGR627,4.24869081009413E+018,182.283089649552,1465.68028658483,300.933443,5.495015
+BKGR628,3.2861102644956E+018,288.899227886355,2322.94670853276,69.694805,7.070355
+BKGR629,2.94522404027309E+018,614.817727219209,4943.55359216558,95.826303,-15.445785
+BKGR630,2.94522410899256E+018,1.76094738980929,14.1592172917332,95.826076,-15.437874
+BKGR631,2.94522400161181E+018,120.989137606341,972.835133645367,95.820976,-15.453529
+BKGR632,2.94522324999911E+018,4.8836707993923,39.2680419812977,95.832398,-15.454966
+BKGR633,3.94823912597497E+018,2284264.45135392,18367043.1641939,190.404474,19.851309
+BKGR634,4.3869046143223E+018,46531.4280401529,374144.397685001,258.345768,1.465925
+BKGR635,4.38690461002443E+018,3.08849129175566,24.8335751293116,258.350922,1.464246
+BKGR636,5.06825970801459E+017,1740.78999172403,13997.1380716629,33.41776,58.758247
+BKGR637,5.06825970801458E+017,3.58712392966758,28.8429214106389,33.429902,58.760216
+BKGR638,5.06826039520933E+017,9.92536258824943,79.8066804264281,33.415003,58.767097
+BKGR639,4.53151141723639E+018,172.880647771168,1390.0782450932,282.50241,21.967476
+BKGR640,4.53151142154584E+018,12786.3439047041,102810.920281463,282.49694,21.971237
+BKGR641,4.53151131846614E+018,7.44297193045324,59.8465675178243,282.494454,21.961664
+BKGR642,6.29286444862538E+018,41951.3925125904,337317.790249762,205.008691,-19.227638
+BKGR643,6.29286445292142E+018,1.4117128931899,11.351133897522,205.007797,-19.222597
+BKGR644,5.28769796655781E+018,6119.92896357756,49208.4002660923,115.114973,-64.198837
+BKGR645,1.18876359510307E+018,209.771450466699,1686.70544387002,223.787943,18.251163
+BKGR646,6.41496748693088E+018,357.064259230242,2871.04002243944,284.542391,-74.212547
+BKGR647,2.69829784920468E+018,280.379580193234,2254.44293401114,324.494251,4.127291
+BKGR648,1.90078636581452E+018,175.689732320089,1412.66519956396,338.090243,31.732763
+BKGR649,9.42884173472125E+017,97.6666701554352,785.30659853535,96.797636,36.38166
+BKGR650,9.57225859546554E+017,301.818864690153,2426.82939457658,99.478684,40.583923
+BKGR651,4.00565417577434E+017,215.648469961396,1733.96068643702,21.0676,49.346146
+BKGR652,5.29880935619864E+018,355423.697980392,2857848.79176926,139.10827,-62.071117
+BKGR653,5.29880860028439E+018,606.382111758711,4875.72549407139,139.11142,-62.071701
+BKGR654,5.86987494244553E+018,3263.97167418129,26244.5570130293,201.157885,-59.158142
+BKGR655,5.86987493807902E+018,2.58075264517196,20.7510103315252,201.151273,-59.156631
+BKGR656,5.86987494244553E+018,2.28426445135392,18.3670431641939,201.169617,-59.159691
+BKGR657,2.15412040756206E+018,5208904.3319973,41883141.2655591,280.706067,57.865196
+BKGR658,1.82856576919154E+018,17731.536939809,142573.642972002,303.440181,20.358271
+BKGR659,1.82856576919154E+018,7477.32712793221,60122.8067223685,303.441917,20.357698
+BKGR660,1.82856576919154E+018,1.15543729403183,9.29050340052499,303.44307,20.34923
+BKGR661,4.55642460267693E+018,313.145648545965,2517.90445721562,266.231627,22.605272
+BKGR662,3.0391024389945E+018,1677823.91805776,13490847.9211407,118.992622,-9.797198
+BKGR663,3.03910247335423E+018,10.2034345055352,82.0425681777392,119.002914,-9.798083
+BKGR664,4.20646585703873E+018,62480.7711640253,502387.98761745,292.16772,-8.781412
+BKGR665,4.20646623499586E+018,1.30240597860299,10.4722317996617,292.167938,-8.771085
+BKGR666,6.70625958635483E+018,494.022104203427,3972.27444772959,271.559846,-49.282635
+BKGR667,2.87133840507084E+018,17568.9732320089,141266.519956396,353.872755,31.016243
+BKGR668,2.87133840507084E+018,61907944.0108512,497782066.861762,353.870375,31.017153
+BKGR669,2.87133840507084E+018,30.2514629029665,243.242381410552,353.881136,31.022495
+BKGR670,2.2809283892628E+018,12639.9798363432,101634.053408768,332.807543,77.320381
+BKGR671,2.20979506789146E+018,844.785364180988,6792.6501413594,357.540469,66.280037
+BKGR672,2.2097950721906E+018,10417.0891561262,83760.4971974333,357.528754,66.282295
+BKGR673,2.20979514091007E+018,1.77724123539423,14.2902309162686,357.522694,66.287903
+BKGR674,3.77540998558122E+018,976.666701554352,7853.0659853535,156.663645,-6.86512
+BKGR675,6.3212310626444E+018,10635.2176247923,85514.3987638459,230.654773,-8.195262
+BKGR676,4.12577277180678E+017,562013.025541724,4518967.79851638,20.536336,56.457729
+BKGR677,4.1257727718068E+017,44131.2654770381,354845.454705048,20.533169,56.455811
+BKGR678,4.12577380259891E+017,19.5770108332469,157.412510966939,20.545852,56.460209
+BKGR679,4.64920799089801E+018,1150.12854188927,9247.81741480535,73.667748,-75.322357
+BKGR680,1.12775141570474E+018,146.806870598906,1180.42730450589,156.660825,76.517525
+BKGR681,6.37685054553108E+018,661.829896074435,5321.56347368106,313.472995,-67.989281
+BKGR682,6.40116500822888E+018,2616.6544907099,21039.6856406728,317.872678,-66.309341
+BKGR683,6.37583253520226E+018,92628.8732245335,744799.277402952,318.210435,-69.268219
+BKGR685,6.37583250084253E+018,6219.3698096972,50007.9724486742,318.183442,-69.269058
+BKGR686,5.24500382698252E+018,506.694722787018,4074.1709389131,151.880761,-66.546089
+BKGR687,5.24500365518366E+018,18.1028261686723,145.559061446159,151.881923,-66.556412
+BKGR688,2.8980033831112E+018,12239.0125791198,98410.0033577838,92.53072,-28.025276
+BKGR689,2.89800331439192E+018,3.28659644496838,26.4264755914059,92.539388,-28.028528
+BKGR690,2.89800925862665E+018,1.93529146433387,15.5610624854087,92.540166,-28.023615
+BKGR691,2.22478715375149E+018,766913.497197556,6166507.25264382,338.101027,66.665703
+BKGR692,2.2247871537515E+018,17.4480292709859,140.294048073273,338.120757,66.666451
+BKGR693,5.03055706765734E+017,512.561971153263,4121.34761494726,84.077426,75.398773
+BKGR694,5.03055779782116E+017,1.98037019347361,15.9235261937617,84.074491,75.399765
+BKGR695,2.89765940777012E+018,974.420430474141,7835.00443478993,93.608196,-28.921535
+BKGR696,2.26608082475995E+018,3834.83233938748,30834.6658650792,283.65741,72.538742
+BKGR697,4.54874214313231E+018,3417.79792006473,27481.4248792925,264.418897,15.185134
+BKGR698,2.42517421306269E+018,123807.33665466,995495.374903814,5.489827,-9.904613
+BKGR699,2.0807448727429E+018,4433.49661432004,35648.3346905209,303.477478,42.5826
+BKGR700,2.08074487704622E+018,9.8117479022062,78.8931409098431,303.477918,42.588844
+BKGR701,2.08074487704622E+018,19.8951116696026,159.970258511646,303.469236,42.588894
+BKGR702,3.72539309855451E+018,1182.3508860026,9506.90702451774,205.606091,9.367255
+BKGR703,3.72539309425992E+018,16.2834483575793,130.930023740602,205.604559,9.367163
+BKGR704,6.63323765619503E+018,11932.9104405345,95948.7335215722,282.80531,-59.047295
+BKGR705,6.63323473561727E+018,6.83512373844755,54.9590537392737,282.821914,-59.049793
+BKGR706,6.63323473561727E+018,1.4117128931899,11.351133897522,282.822345,-59.051498
+BKGR707,5.81477360435288E+018,235.367438609326,1892.51463499374,257.461245,-67.050842
+BKGR708,5.81477360435289E+018,2696.16446921871,21679.0000626041,257.438931,-67.045158
+BKGR709,3.78568818591832E+018,444.37168795336,3573.05125890632,170.622502,-5.590142
+BKGR710,5.16498917036071E+018,8704.55114004305,69990.5242667251,52.461653,-8.873782
+BKGR711,5.16498917036071E+018,72735.4920496824,584842.93324863,52.456132,-8.871731
+BKGR712,6.53485816610209E+018,3497408.66063397,28121549.4968699,353.018637,-43.590008
+BKGR713,6.53485816180694E+018,113696.312933791,914195.852422818,353.018235,-43.588791
+BKGR714,5.7662173454964E+018,530.574509377022,4266.18069977524,211.961928,-86.308105
+BKGR715,5.7668187439977E+018,856.537499246811,6887.14531765017,222.341968,-84.710487
+BKGR716,5.90614191680474E+018,2021.83812287503,16256.9566110648,222.027154,-46.573479
+BKGR717,5.90614192111001E+018,1.06843075589135,8.59091152943229,222.03066,-46.574799
+BKGR718,5.90614198982949E+018,2.68377671873101,21.5793941050802,222.024045,-46.564926
+BKGR719,5.90614171495158E+018,1.5694460131717,12.6194156944968,222.034766,-46.58268
+BKGR720,5.77579564226164E+018,1474.84500325019,11858.7590938239,249.895104,-78.717033
+BKGR721,5.30365806504702E+018,111.621121351706,897.509897633501,137.16197,-58.040421
+BKGR722,5.30365806504702E+018,3.92415705946682,31.5528974990541,137.157437,-58.043365
+BKGR723,5.30365806504702E+018,5.03206660849983,40.4612454344478,137.176572,-58.038242
+BKGR724,5.30365806504702E+018,4.71787446844981,37.9349264722414,137.177726,-58.044159
+BKGR725,5.30365812945136E+018,23809.2865098973,191442.892164585,137.146211,-58.035446
+BKGR726,3.56708970935507E+018,790.217023091702,6353.88348472676,180.323395,-18.130861
+BKGR727,3.56708970935507E+018,3.83483233938748,30.8346658650792,180.320163,-18.125776
+BKGR729,5.11494898743242E+018,705905.200067218,5675958.95990884,57.518561,-11.140332
+BKGR730,5.30981422633479E+018,30321.1997271625,243803.113010338,139.463465,-56.280781
+BKGR731,3.2451955513375E+018,149880.930673988,1205144.8428167,58.033965,-6.244088
+BKGR732,3.24519554704105E+018,5043.66672005627,40554.5182381025,58.035607,-6.243431
+BKGR733,6.45371633397978E+018,180611.908238529,1452242.84894784,310.296883,-62.69603
+BKGR734,6.45371633398136E+018,1.98951116696026,15.9970258511646,310.292094,-62.696465
+BKGR735,2.16568551755204E+018,186959.002022122,1503277.80920445,318.452778,48.643131
+BKGR736,2.16568551755204E+018,1.27275959908622,10.2338547011065,318.450187,48.634392
+BKGR737,7284749865978368,4118.56933060597,33116.1046721751,44.941486,6.67501
+BKGR738,7287704803477504,102.034345055352,820.425681777392,44.936603,6.684019
+BKGR739,4.70377183524161E+018,1269832.33323909,10210317.4884446,8.119441,-68.007515
+BKGR740,3.72019419526163E+018,972179.325674049,7816984.42463989,208.701273,5.926908
+BKGR741,2.3778793002141E+018,1103.43404941306,8872.36186790828,11.412262,-9.90623
+BKGR742,1.52165448001206E+018,6542.53991900865,52606.4804032075,191.307172,38.772755
+BKGR743,5.87836007977214E+018,6587.89063917693,52971.1311048215,218.484646,-61.454342
+BKGR744,5.87836007547475E+018,2.15152492243721,17.2997268752402,218.48792,-61.454803
+BKGR745,5.87836007979853E+018,14.2477531176358,114.56164646317,218.494586,-61.454548
+BKGR746,5.8783630347363E+018,2956.28555371428,23770.5508828321,218.473955,-61.453564
+BKGR747,5.87836007979852E+018,4.97446501835237,39.9980893878974,218.492735,-61.459904
+BKGR748,5.87836303041225E+018,1.67782391805776,13.4908479211407,218.471058,-61.452175
+BKGR749,5.87836303473603E+018,1.03215847086859,8.29925763433178,218.469919,-61.458717
+BKGR750,5.87836018285139E+018,1.24952911836183,10.0470658019766,218.495446,-61.447952
+BKGR751,5.87836017855397E+018,14.9536214099221,120.237308659364,218.500721,-61.451069
+BKGR752,5.87836303470969E+018,4.83889703637789,38.90803040846,218.468548,-61.449547
+BKGR753,5.87836007979852E+018,8.06763759572263,64.8693052443569,218.472111,-61.461693
+BKGR754,5.87836303470969E+018,5.39195651624909,43.3550055969677,218.466229,-61.44994
+BKGR755,5.87836004111501E+018,1.9758154684209,15.8869030997961,218.468175,-61.461796
+BKGR756,3.7202057014786E+018,8198.72616120759,65923.3466620078,208.338587,5.985527
+BKGR757,1.55271211438093E+018,943.509725516662,7586.46129791575,200.599782,47.477905
+BKGR758,6.40452037411886E+018,587146.371248895,4721057.02911777,334.586532,-64.557579
+BKGR759,4.61902096357551E+018,1098.3642304759,8831.59706801904,54.267025,-82.236557
+BKGR760,5.19834116766694E+018,4071.42445732968,32737.0277566617,160.073655,-81.833389
+BKGR761,1.8102569721303E+018,689.836835971944,5546.75836024055,302.583753,18.193239
+BKGR762,2.52303287394309E+018,131.143382555728,1054.48218426363,12.527414,-6.746952
+BKGR763,1.73106523125668E+018,31677.1704259989,254706.041670874,313.76445,3.434987
+BKGR764,4.20739806681599E+017,4253.49945160239,34201.0348145771,2.646501,55.679924
+BKGR765,4.20739810983406E+017,5113.83111332623,41118.6877846779,2.646965,55.679199
+BKGR766,4.22326028306037E+017,1341.9810435327,10790.4422964187,2.561199,56.928154
+BKGR767,5.47361528536404E+017,569.831405529073,4581.83290269317,47.080062,73.753494
+BKGR768,2.46188573378741E+018,78839.957437226,633926.995823296,32.356516,-10.18159
+BKGR769,2.46183880268052E+018,2.976777546204,23.9353204699769,32.360156,-10.188376
+BKGR770,4.24936667044434E+018,2263.32218898442,18198.6531003077,304.278878,5.892254
+BKGR771,4.24936659742773E+018,5.91216275461931,47.537818330741,304.27983,5.885979
+BKGR772,3.10227622389577E+017,58444.867871944,469936.574240932,20.034837,30.568085
+BKGR774,2.42392681712133E+018,161.341608057013,1297.29650067757,6.989558,-11.878504
+BKGR775,4.31947122261608E+018,2117.12441800008,17023.1233718707,289.351428,13.8952
+BKGR776,4.31947122261608E+018,116612.842368225,937646.737008509,289.350102,13.900661
+BKGR777,4.31947114957656E+018,14.3795859540819,115.621672326651,289.357301,13.891999
+BKGR778,4.31947105081738E+018,23.1604173526129,186.225541864932,289.348832,13.888988
+BKGR779,4.31947114958586E+018,24.2519341946944,195.002081263018,289.349945,13.888424
+BKGR780,4.31947111953686E+018,283.62622271749,2280.54815284707,289.343957,13.893125
+BKGR781,4.31947122261609E+018,2.65917170587818,21.3815530307442,289.348713,13.902827
+BKGR782,4.31947104649667E+018,12.6691179991658,101.868344098698,289.347318,13.887921
+BKGR783,4.31947105081738E+018,4.91752278815491,39.5402350447708,289.345095,13.888773
+BKGR784,4.31947118393766E+018,4.30275265394673,34.5970641328537,289.359508,13.899369
+BKGR785,4.31947111953686E+018,2.61063635238284,20.9912957065058,289.342605,13.891113
+BKGR786,4.3194712526558E+018,1.79368584607612,14.4224567949464,289.352535,13.904845
+BKGR787,4.31947125695833E+018,1.258190440431,10.1167087350482,289.355898,13.904479
+BKGR788,6.50863117164755E+018,3294172.83224002,26487394.9092039,334.311607,-54.32132
+BKGR790,5.39325885245919E+017,2012.54862051764,16182.2626803026,7.23095,74.165878
+BKGR791,5.39325885245918E+017,26.0463205538984,209.430170660989,7.249986,74.167526
+BKGR792,5.3932591960582E+017,2083.27393959016,16750.9424526627,7.211161,74.15667
+BKGR793,7.47381557123568E+017,504.366672005627,4055.45182381025,151.599223,34.432003
+BKGR794,3.38723142119021E+018,720.686490503193,5794.81061007531,78.282647,11.54793
+BKGR795,5.0598421862026E+018,162.834483575793,1309.30023740602,51.277129,-29.27446
+BKGR796,2.74646216221843E+018,13419.810435327,107904.422964187,357.836401,7.335228
+BKGR797,2.74646223093791E+018,3.32465343817365,26.7324797567669,357.828814,7.336934
+BKGR798,5.94541747288658E+018,3773.51761068923,30341.6536536717,268.31909,-51.791866
+BKGR799,6.44511214009645E+018,184.393828348503,1482.65206442298,292.41301,-61.367435
+BKGR800,4.33504456784901E+018,11932.9104405345,95948.7335215722,255.663191,-10.871582
+BKGR801,5.2334408473125E+018,267.760420356341,2152.97628758906,178.243352,-70.523056
+BKGR802,5.23344084300471E+018,12845.3629865957,103285.473927811,178.245015,-70.527779
+BKGR803,1.87535053869245E+018,256.298686892505,2060.81613811863,337.899492,23.007748
+BKGR804,1.87535053869245E+018,3.63702579433846,29.244166416155,337.901087,23.002193
+BKGR805,1.87545454562059E+018,2419.6156293867,19455.3588921645,338.111352,23.716385
+BKGR806,5.88692960472651E+018,522.091209660755,4197.96918776264,231.437539,-54.717819
+BKGR807,5.88692960472651E+018,11.9329104405345,95.9487335215722,231.440082,-54.718624
+BKGR808,5.88692960472651E+018,4.38274679823713,35.2402715776807,231.434135,-54.717075
+BKGR809,5.88692960472651E+018,16.4720018030294,132.446121961754,231.437513,-54.714569
+BKGR810,5.88692960467004E+018,4.06206044092653,32.6617346821821,231.429818,-54.7206
+BKGR811,5.88692970780572E+018,6467.64808385255,52004.2990016003,231.447625,-54.713978
+BKGR812,5.8869296047265E+018,1053771.33635309,8473039.80435172,231.43593,-54.725338
+BKGR813,5.88692970345464E+018,1.2380733665466,9.95495374903814,231.450958,-54.711468
+BKGR814,5.88692970780571E+018,38.2601246975569,307.637481015366,231.453777,-54.721977
+BKGR815,5.88692970780572E+018,7.22347844443328,58.0816902814787,231.454972,-54.715805
+BKGR816,5.8869297077493E+018,3.48936484392805,28.0568717278161,231.446032,-54.708649
+BKGR817,5.88692977217411E+018,1.02034345055352,8.20425681777392,231.44086,-54.707211
+BKGR818,5.70664491215016E+018,366.223645275029,2944.68772935989,127.799458,-20.427391
+BKGR819,1.1317417839198E+018,409.021729875905,3288.81350111245,141.796373,78.005058
+BKGR820,2.35899058380196E+018,396.959665664558,3191.82628324117,15.582459,-17.018827
+BKGR821,3.27631605972921E+018,1810.28261686723,14555.9061446159,52.904906,6.458623
+BKGR822,2.08409684132623E+018,373.892179328633,3006.34797009303,304.219093,47.332741
+BKGR823,2.08409684132622E+018,105.863532384308,851.214957910911,304.21064,47.326481
+BKGR824,2.08409684132653E+018,47.7250488006117,383.741922181795,304.206322,47.333885
+BKGR825,2.08409608541199E+018,1.43795859540819,11.5621672326651,304.228934,47.326653
+BKGR826,2.17182110167339E+018,15408.0039511224,123890.854001863,323.535755,52.272964
+BKGR827,2.17182110166526E+018,5.6590871372518,45.5029178684766,323.538119,52.270084
+BKGR828,2.1718211660833E+018,7.01045782850544,56.3688593326406,323.524231,52.276928
+BKGR829,2.28126274387881E+018,7722.29487598109,62092.514388914,348.975975,76.776237
+BKGR830,2.28126274387881E+018,3.02514629029665,24.3242381410552,348.961141,76.777588
+BKGR831,2.28126274387881E+018,2.35367438609326,18.9251463499374,348.973745,76.772552
+BKGR832,2.28126253772038E+018,1.1823508860026,9.50690702451774,348.964719,76.766991
+BKGR833,2.22839028341789E+018,232.138076285941,1866.54836075117,348.966728,72.383621
+BKGR834,3.42404280421114E+017,226.853968547702,1824.0605328401,27.990413,36.89819
+BKGR835,2.27378812209711E+018,854.567517664955,6871.30532297478,322.699764,72.968513
+BKGR836,6.68928608605514E+018,425.349945160239,3420.10348145771,293.112262,-41.96661
+BKGR837,5.83639711551176E+018,11034.3404941306,88723.6186790828,239.949788,-56.314476
+BKGR838,5.83639711551176E+018,3.18233856012983,25.5881711341867,239.948089,-56.31279
+BKGR839,5.83639711551122E+018,3.00432132971465,24.1567912634945,239.952324,-56.310856
+BKGR840,5.83639711551177E+018,3.54606246159086,28.512759219434,239.941868,-56.311127
+BKGR841,5.8363971111207E+018,502.049317645963,4036.81871522886,239.9434,-56.310135
+BKGR842,5.83639711551119E+018,62.6248042168493,503.546111536386,239.959687,-56.317261
+BKGR843,5.83639718423124E+018,2.94948628561843,23.7158801328989,239.938839,-56.312447
+BKGR844,5.83639711551022E+018,6741.34232498172,54204.9872527488,239.948837,-56.321095
+BKGR845,5.83639711551124E+018,2.57481707879828,20.7032843321451,239.947053,-56.306988
+BKGR846,5.83639130871444E+018,255.121101392882,2051.34754804873,239.935815,-56.313831
+BKGR847,5.83639130861439E+018,7.93864499144712,63.8321167834562,239.933091,-56.314499
+BKGR848,5.83639714987095E+018,21.2689662030683,171.016985392385,239.96196,-56.308216
+BKGR849,5.8363912398949E+018,2.14163956336082,17.2202418503159,239.939235,-56.322529
+BKGR850,5.83639717984018E+018,15.9862419303257,128.540281486894,239.936003,-56.307915
+BKGR851,5.83639123999496E+018,617.655596907493,4966.37199877703,239.945213,-56.324596
+BKGR852,5.83639123999496E+018,1.64341172501676,13.2141504334291,239.952521,-56.324978
+BKGR853,5.83639123560613E+018,61.4817727219209,494.355359216558,239.940979,-56.324272
+BKGR854,9.96132555235269E+017,204.996469289946,1648.31134053857,95.976596,54.821934
+BKGR855,3.94209302777473E+018,652.749249475651,5248.54888557599,192.377215,19.2439
+BKGR856,1.44594111718676E+018,73.4085052713496,590.254418282732,199.059566,22.863438
+BKGR857,4.43671981398278E+017,13296.7768737273,106915.149268138,55.878874,52.220577
+BKGR858,4.43671981403446E+017,2628.73241907004,21136.8004171136,55.87412,52.213753
+BKGR859,2.50294033837671E+017,227901.078890339,1832480.01371478,57.882611,49.788128
+BKGR860,2.50294029542613E+017,23645.384534431,190125.008564767,57.883855,49.789261
+BKGR861,2.52050366224398E+017,3241502.65122079,26063890.7533376,58.431824,53.273075
+BKGR862,2.52050361928132E+017,35.0547102025244,281.863763635796,58.434216,53.274895
+BKGR863,2.52051087778905E+017,2.86250583844656,23.0164980509777,58.421144,53.269596
+BKGR864,4.13708251581475E+018,34573.7415474969,277996.44781679,261.278011,-14.880802
+BKGR865,4.13708241273554E+018,60.3596039029682,485.332357031762,261.269721,-14.886404
+BKGR866,1.99969042603806E+018,6248.07711640253,50238.798761745,334.135751,48.984509
+BKGR867,1.99969046039781E+018,1485.06814042046,11940.9600848556,334.15214,48.982933
+BKGR868,5.93260568864499E+018,1345.07462933407,10815.3168348778,242.208641,-54.215145
+BKGR869,5.9326086435829E+018,5.41684465671833,43.555123210322,242.202657,-54.217213
+BKGR870,5.9326086435829E+018,56.3308599368477,452.938509515831,242.201739,-54.212204
+BKGR871,5.9326086435829E+018,28.8234778100503,231.760407935953,242.203382,-54.210857
+BKGR872,5.93260568864499E+018,8.88681994682266,71.4560897093002,242.209622,-54.209507
+BKGR873,5.9326086435829E+018,1.63963198293595,13.1837587307931,242.206982,-54.209454
+BKGR874,5.9326086435829E+018,1.77724123539423,14.2902309162686,242.201225,-54.209846
+BKGR875,5.9326086435829E+018,41.3757978288308,332.689616661793,242.19688,-54.216881
+BKGR876,5.93260571858405E+018,10.3692269790419,83.3756526703824,242.215169,-54.207813
+BKGR877,5.93260854050368E+018,2.13179962338373,17.1411220259079,242.196097,-54.219753
+BKGR878,5.93260571858406E+018,3.81721288526114,30.6929934443241,242.21971,-54.209621
+BKGR879,5.93260867794264E+018,1.19329104405345,9.59487335215722,242.208092,-54.206448
+BKGR880,5.9326086435829E+018,51.9692418447927,417.868127137372,242.20103,-54.207577
+BKGR881,5.93260568860487E+018,8.14228652730382,65.4695335356566,242.214541,-54.224113
+BKGR882,5.93260571857906E+018,191.313836613041,1538.29364761008,242.219054,-54.208031
+BKGR883,5.93260863916181E+018,1.56583638750746,12.5903918438028,242.191907,-54.215469
+BKGR884,5.9326086435829E+018,1.01098888557054,8.12903973915469,242.195645,-54.208836
+BKGR885,5.93260572300473E+018,6.14817727219209,49.4355359216558,242.219129,-54.206913
+BKGR886,5.93260572296488E+018,2.35367438609326,18.9251463499374,242.216027,-54.205147
+BKGR887,5.68107150863946E+018,408.081006002002,3281.24943996037,137.451619,-18.15591
+BKGR888,2.81435728011046E+018,567.213268040673,4560.78129274025,352.32332,15.533185
+BKGR889,5.66213170790619E+017,119329.104405345,959487.335215722,20.127012,81.725662
+BKGR890,4.6136374153455E+018,688.250255276358,5534.00117002028,53.814874,-85.148399
+BKGR891,3.18038023423298E+018,67.8807107759515,545.807182745012,75.370924,-11.535932
+BKGR892,3.3331960596807E+018,38881.801712962,312636.187959899,84.318505,6.696542
+BKGR893,1.88594876133586E+018,200.791988713644,1614.50445089312,344.80684,29.45977
+BKGR894,1.88594876563278E+018,27.3367185315953,219.805849948604,344.805981,29.468821
+BKGR895,4.54952149071804E+018,3595.39310434041,28909.4112113527,265.345444,16.839069
+BKGR896,4.54952149071805E+018,3.73032251178931,29.9943356163462,265.351808,16.841068
+BKGR897,4.54952159379726E+018,649.750139100208,5224.43399393667,265.337384,16.84222
+BKGR898,4.54952138763883E+018,38.2601246975569,307.637481015366,265.347594,16.829294
+BKGR899,3.35785147406295E+018,7010.45782850544,56368.8593326406,100.485435,16.131371
+BKGR900,3.35785147836175E+018,1.48849157604603,11.9684868407298,100.488674,16.13018
+BKGR901,6.0822432381623E+018,12524.0958046493,100702.266806346,201.45551,-50.073975
+BKGR902,5.14012590962553E+018,420.481004600315,3380.95388064199,23.059453,-19.30892
+BKGR903,1.12347699982842E+018,16701.1501739666,134288.631053691,124.40449,74.01194
+BKGR904,1.12347699982842E+018,1.65099736888049,13.275144180537,124.413079,74.012131
+BKGR905,1.65531977643468E+018,79021.7023091702,635388.348472675,260.013992,73.939987
+BKGR906,1.00135980961003E+018,234.286023459876,1883.81932008982,100.117152,57.804688
+BKGR907,1.18805307007352E+018,6437931.94019005,51765360.9517615,224.124758,17.103231
+BKGR908,5.43185284013286E+018,143.135177579651,1150.90438997191,145.678562,-39.532043
+BKGR909,5.49368906484073E+018,17090.1699360485,137416.615100218,112.486111,-51.180359
+BKGR910,5.81786377747927E+018,125.529668271894,1009.34409506318,251.44426,-63.504898
+BKGR911,5.8178635756344E+018,1.3358152007155,10.7408647174742,251.454838,-63.501911
+BKGR912,5.81786353696111E+018,150.57274961671,1210.70753866623,251.443527,-63.515335
+BKGR913,5.08302239957723E+018,42048.1004600315,338095.388064199,61.073238,-25.048426
+BKGR914,4.49038759071164E+018,587.146371248895,4721.05702911777,261.059488,8.207926
+BKGR915,5.36473713854993E+018,248740.430221107,2000042.60270448,158.300537,-48.126839
+BKGR916,7.74812585530029E+017,35.6243034222764,286.443681362492,164.34978,37.335247
+BKGR917,5.93797401538038E+018,224.257192643039,1803.18068458066,251.218879,-48.464149
+BKGR918,5.93797401971875E+018,61.058535175508,490.952240860859,251.221872,-48.467545
+BKGR919,5.93797398535901E+018,1.22672264169531,9.86368618447702,251.215247,-48.468369
+BKGR920,5.93797401538676E+018,11.0343404941306,88.7236186790828,251.220103,-48.459278
+BKGR921,5.93797401538067E+018,5.87146371248895,47.2105702911777,251.221443,-48.459225
+BKGR922,5.93797401538088E+018,5.3302353003937,42.8587249517514,251.225059,-48.468296
+BKGR923,5.93797398102294E+018,21.0255023601971,169.059370148543,251.214293,-48.469601
+BKGR924,5.93797398534772E+018,38.4367254091861,309.057471109508,251.208281,-48.463387
+BKGR925,5.93797401970629E+018,1.02741613346786,8.26112600920989,251.22108,-48.456497
+BKGR926,5.93797401538088E+018,1.33889457278123,10.7656249678106,251.214749,-48.455711
+BKGR927,5.93797398102092E+018,2.73997361760793,22.0312554763652,251.214629,-48.472702
+BKGR928,5.93797401538088E+018,2.17643840686561,17.5000482713008,251.223172,-48.455105
+BKGR929,5.93797398102702E+018,9.7891815082419,78.7116917209119,251.206068,-48.459915
+BKGR930,5.93797398102093E+018,238.641725837675,1918.84213609345,251.204989,-48.461002
+BKGR931,5.93797380923607E+018,1.34817534658723,10.8402487150701,251.232736,-48.469482
+BKGR932,5.93797398102293E+018,16.5099736888049,132.75144180537,251.221504,-48.474697
+BKGR933,5.93797398535917E+018,42.6330478050256,342.798763423353,251.218566,-48.474991
+BKGR934,5.93797401538067E+018,283.62622271749,2280.54815284707,251.218975,-48.453121
+BKGR935,3.28232547489119E+018,1447.92604821417,11642.3123471311,68.743274,4.731973
+BKGR936,5.24514239550015E+018,2007.91988713645,16145.0445089312,154.623949,-66.623138
+BKGR937,3.85295359288582E+018,18481.8900022941,148606.993041816,146.118562,5.612106
+BKGR939,5.87345728872619E+018,1971.27121894512,15850.3642366093,229.035598,-63.390907
+BKGR940,5.8734573918054E+018,170.901699360485,1374.16615100218,229.051929,-63.387611
+BKGR941,5.87345735744566E+018,9.19912205464323,73.9672115241187,229.018361,-63.395988
+BKGR942,5.87345728872618E+018,1.21268046373363,9.75077750238964,229.023105,-63.400253
+BKGR943,2.8797489431708E+018,6946.18556480678,55852.0665239471,357.991735,37.521973
+BKGR944,1.11031615058507E+018,210.255023601971,1690.59370148543,117.393704,70.719711
+BKGR945,2.88541164280819E+017,19.1313836613041,153.829364761008,21.963113,20.59049
+BKGR946,3.23979846107434E+018,23645.384534431,190125.008564767,75.859542,5.097125
+BKGR947,3.23979846107434E+018,17528.565714872,140941.615976486,75.860973,5.096861
+BKGR948,5.89923863304654E+018,777.582326683738,6252.29191368338,217.993222,-50.432529
+BKGR950,1.17319079960226E+018,1351.28321173187,10865.238069182,222.285533,7.338561
+BKGR951,1.173190833962E+018,16.7782391805776,134.908479211407,222.290906,7.344396
+BKGR952,4.77355485759445E+017,40996.4622342303,329639.499922632,67.364445,65.929604
+BKGR953,3.27208726499652E+018,3355.41607768152,26979.8323465035,59.694777,3.527321
+BKGR954,1.31648619868194E+018,29427.0265540525,236613.351222012,239.742686,27.033813
+BKGR955,5.24025881585435E+018,252.20075429422,2027.8659668405,166.50694,-65.103935
+BKGR956,5.2402580599401E+018,1.84393828348503,14.8265206442298,166.517492,-65.104813
+BKGR957,5.24025881585435E+018,1.26691179991658,10.1868344098698,166.509405,-65.099365
+BKGR958,5.24025809429985E+018,10.4651722549822,84.1471180861105,166.528355,-65.09787
+BKGR959,9.6979609495087E+017,9072.90536831224,72952.3433355827,90.740976,48.416912
+BKGR960,2.99655274344907E+018,19131.3836613041,153829.364761008,85.720751,-13.702567
+BKGR961,1.70610845625708E+017,153.372106035209,1233.21627233762,62.253989,33.282169
+BKGR962,1.70610914345184E+017,3.76483876102018,30.2718697867501,62.246807,33.290066
+BKGR963,5.26001882649321E+018,1258.190440431,10116.7087350482,148.821936,-55.786922
+BKGR964,5.26001882649321E+018,1.06352176247923,8.55143987638459,148.820786,-55.784023
+BKGR965,5.26001886085296E+018,3.8971433522808,31.3356888804914,148.827354,-55.777081
+BKGR966,5.26001886085296E+018,44.2329985506418,355.663457959005,148.829636,-55.777222
+BKGR967,5.74207764072366E+018,3721.74300809089,29925.3505587436,143.142157,-7.473834
+BKGR968,5.74207763642859E+018,2.17643840686561,17.5000482713008,143.139405,-7.479192
+BKGR969,2.28650164190625E+018,3537.90674424795,28447.1816929863,347.279243,81.105827
+BKGR970,2.71977330850896E+017,41090.9688400319,330399.397449835,65.610467,51.80912
+BKGR972,2.71977262131418E+017,6648.84764074688,53461.2669462874,65.619862,51.808075
+BKGR973,2.71977330850894E+017,27462.8990912367,220820.427653932,65.614466,51.814465
+BKGR974,5.46657593273113E+018,316.04314955737,2541.20234031021,150.181979,-27.225204
+BKGR975,5.46657603581034E+018,57.1145002583081,459.239511836703,150.18776,-27.217173
+BKGR976,2.1440533134583E+018,97666.6701554352,785306.59853535,280.910803,49.698437
+BKGR977,6.74879636263284E+018,319702.756751824,2570628.07657498,301.950095,-31.7579
+BKGR978,6.74879636263283E+018,11.5277986199851,92.6913583564741,301.962575,-31.766787
+BKGR979,5.44936637673381E+018,154.080039511224,1238.90854001863,163.274177,-35.35017
+BKGR980,3.02853568127793E+018,333.999934119261,2685.58712769457,112.395373,-15.560338
+BKGR981,3.02853565122161E+018,2.02649894110323,16.2944327664754,112.390271,-15.565776
+BKGR982,5.75207281559968E+018,6946.18556480678,55852.0665239471,127.070483,-9.193767
+BKGR983,2.89410678262211E+018,3611.98868487842,29042.8509905761,98.64485,-30.264339
+BKGR984,5.44802263608576E+018,192639.96077521,1548956.58977214,157.956003,-32.914257
+BKGR985,4.34650295648292E+018,342.567675797262,2754.47761063591,239.034072,-10.109444
+BKGR986,7.04967037090947E+017,1204332430.14041,9683653622.20496,133.149142,28.330822
+BKGR987,8.17930174532227E+017,82.5555701596371,663.803054706716,140.549992,44.493313
+BKGR988,7.84310407489576E+017,533.02353003937,4285.87249517514,172.441887,44.643978
+BKGR989,5.93915207771098E+018,11661284.2368225,93764673.7008509,252.969995,-49.11504
+BKGR990,5.93915204335099E+018,2.0737021652953,16.6739788631241,252.965544,-49.11655
+BKGR991,5.93915203901573E+018,37.6483876102018,302.718697867501,252.967646,-49.118626
+BKGR992,5.93915204330637E+018,10.7583676408227,86.5046088328947,252.960829,-49.113377
+BKGR993,5.93915203900839E+018,2.15648469961396,17.3396068643702,252.963996,-49.12096
+BKGR994,5.93915200464942E+018,56852.0829664452,457129.497944126,252.982654,-49.12038
+BKGR995,5.93915197028968E+018,59.6686732305461,479.776803480894,252.977686,-49.12492
+BKGR996,6.7265322142722E+018,4224.21856733597,33965.5965469595,274.716518,-39.917545
+BKGR997,6.72653220994961E+018,7.27354920496824,58.484293324863,274.718884,-39.915413
+BKGR998,6.72653217991278E+018,5.56860459152575,44.7753765271177,274.709286,-39.92392
+BKGR999,6.18882164901862E+018,5196.92418447927,41786.8127137372,203.166918,-27.481533
+BKGR1000,3.50796745730107E+018,377351.761068923,3034165.36536717,200.09132,-18.171741
+BKGR1001,5.37843756452289E+018,627.691693001509,5047.06905206677,176.644198,-46.18589
+BKGR1002,3.82412219468692E+018,73917.3487207965,594345.866448583,144.971294,-5.822221
+BKGR1005,6.60012541684426E+018,61481.7727219209,494355.359216558,337.1996,-34.781506
+BKGR1006,5.12971494755567E+018,163.963198293595,1318.37587307931,36.775428,-21.16342
+BKGR1007,5.03072436951799E+018,770.453409062292,6194.97055687224,15.10449,-31.303589
+BKGR1008,5.00212789314722E+018,2997.41158239977,24101.2321853366,15.132264,-35.960854
+BKGR1009,5.44706358706851E+018,381.721288526114,3069.29934443241,154.385902,-33.297588
+BKGR1011,5.44706351834903E+018,10.3453784187806,83.1838939904876,154.383897,-33.307083
+BKGR1012,6.89486235491676E+018,66.0307729553139,530.932421732736,322.765639,-8.006863
+BKGR1013,5.05952099574466E+017,236.998927752263,1905.63291974071,26.569738,57.482716
+BKGR1014,5.117620177916E+018,593.945205798638,4775.72429304482,31.454552,-27.043245
+BKGR1015,5.11762021657057E+018,101.098888557054,812.903973915469,31.463588,-27.037682
+BKGR1016,5.42062418071324E+018,55.814415508709,448.785944300403,152.009645,-39.035912
+BKGR1017,6.27514942651631E+018,829.366293578075,6668.67030393401,209.343576,-23.893562
+BKGR1018,6.27514939215657E+018,43.8274679823713,352.402715776807,209.336627,-23.901966
+BKGR1019,1.35302207242256E+018,409.964622342303,3296.39499922632,253.839969,40.488335
+BKGR1020,1.3530220423591E+018,41.2806361345335,331.92445177657,253.831791,40.48793
+BKGR1021,6.13336729903659E+018,268.377671873101,2157.93941050802,189.300639,-44.523838
+BKGR1022,4.86877458744493E+018,49630.240662932,399060.963350853,63.590653,-36.983471
+BKGR1023,2.11389017045449E+018,75.9882391992769,610.997237433244,272.700641,42.285931
+BKGR1024,2.11489185561002E+018,4997.42610562428,40182.7121800483,273.95331,44.034061
+BKGR1025,1.30522578657117E+017,790.217023091702,6353.88348472676,42.278975,32.124664
+BKGR1026,1.03395077736441E+018,138.914116504505,1116.96418181433,125.374905,55.869186
+BKGR1027,6.01574498536957E+018,1948.70626389636,15668.9266175398,235.212048,-33.465637
+BKGR1028,1.80871381186825E+018,442.329985506418,3556.63457959005,303.244346,16.450636
+BKGR1029,1.80871388058773E+018,1.28453629865957,10.3285473927811,303.236496,16.453098
+BKGR1030,1.80871381186824E+018,1.35439824124558,10.8902850297045,303.24519,16.439913
+BKGR1031,4.52109203274033E+018,827.458804035117,6653.33278784651,287.070855,22.490923
+BKGR1032,4.52106856934594E+018,1.47824487211068,11.8860963568436,287.063499,22.493521
+BKGR1033,4.52109183088954E+018,1.90873826998968,15.347556703984,287.079887,22.484985
+BKGR1034,1.10152068033463E+018,19.5770108332469,157.412510966939,107.107349,65.145576
+BKGR1035,5.08260530671233E+018,2598.64156789671,20894.8494634837,58.666278,-26.283064
+BKGR1036,5.87004127792845E+018,754.651398400506,6067.9116203581,204.181634,-59.27512
+BKGR1037,5.87004423286642E+018,3.09561099948468,24.89082243231,204.182907,-59.271286
+BKGR1038,5.87004127792845E+018,10.8579135909743,87.3050261235335,204.189787,-59.273067
+BKGR1039,5.87004127792844E+018,9.76666701554352,78.5306598535351,204.197538,-59.278511
+BKGR1040,5.87004127792844E+018,15.2316299883683,122.472687123233,204.188632,-59.285194
+BKGR1041,5.87004423286642E+018,10.3215847086859,82.9925763433178,204.169681,-59.265827
+BKGR1042,6.72169168303176E+018,148.165257847832,1191.34966387629,277.318883,-43.870495
+BKGR1043,6.70833048644478E+018,3546.06246159086,28512.759219434,278.005167,-46.699707
+BKGR1044,6.7083304821469E+018,5.59430810246353,44.982050274803,278.00959,-46.692974
+BKGR1045,2.77265363303269E+017,47178.7446844981,379349.264722414,67.570788,55.503342
+BKGR1046,2.77265363303495E+017,8565.37499246811,68871.4531765016,67.572338,55.502567
+BKGR1047,2.77265157144839E+017,1.46132354298576,11.7500373369483,67.583324,55.496204
+BKGR1048,3.0413246894368E+018,5125.61971153263,41213.4761494726,114.410815,-9.290774
+BKGR1049,3.49537471626857E+018,16739.6503012923,134598.198319425,192.513632,-28.372135
+BKGR1050,6.25453654702752E+017,318233856.012983,2558817113.41867,154.901455,19.870068
+BKGR1051,5.75646247833525E+018,89.6904867937461,721.172647668656,135.543582,-7.602593
+BKGR1052,5.74349923624319E+018,52.5710173036561,422.706812002229,135.808305,-10.095798
+BKGR1053,5.74349920188345E+018,1.09331770524085,8.791019565372,135.797403,-10.096598
+BKGR1054,1.60791480935589E+017,337.867471079203,2716.68476100067,74.133637,33.02747
+BKGR1055,9.48666470761992E+017,79569.4545816832,639792.650096583,110.544261,41.10976
+BKGR1056,9.48666500825536E+017,1.05134772953385,8.45355235357275,110.553895,41.103008
+BKGR1057,4.28551129417231E+018,70.4281663159737,566.290461655525,280.687263,5.937688
+BKGR1058,4.28551129417231E+018,2.31604173526129,18.6225541864932,280.687823,5.945363
+BKGR1059,4.28551424478501E+018,1.62834483575793,13.0930023740602,280.681349,5.945062
+BKGR1060,4.28551424910981E+018,96.5486890269937,776.317268236634,280.680358,5.944345
+BKGR1061,4.2855112211278E+018,125240.958046493,1007022.66806345,280.696459,5.933026
+BKGR1062,3.12000264913883E+018,18.1445574928739,145.894609737188,97.033582,-0.170681
+BKGR1063,3.12000264913884E+018,5.05529357263159,40.6480060577759,97.030251,-0.176355
+BKGR1064,4.28782084837809E+018,610.58535175508,4909.52240860859,291.777056,1.383714
+BKGR1065,4.28782085269782E+018,11.6881662732825,93.9808235970278,291.776523,1.38272
+BKGR1066,3.39393902623413E+018,1594.94745941687,12824.4647043243,78.919804,16.278751
+BKGR1067,5.41343821939689E+018,59394.5205798638,477572.429304482,153.716027,-47.156796
+BKGR1068,5.41343811631768E+018,5.63308599368477,45.2938509515831,153.701424,-47.162327
+BKGR1069,4.39326539216789E+018,20594.269,165591.96,258.828924,4.963803
+BKGR1070,6.54687847820643E+017,127863.439047041,1028109.20281463,119.774462,15.391521
+BKGR1072,2.64384230245609E+018,799367.304965987,6427457.98791088,351.77,-1.286352
+BKGR1073,1.92843176462766E+018,17288.0647771168,139007.82450932,344.445207,38.675079
+BKGR1074,1.92843176462766E+018,49062.1279959102,394492.950277266,344.441358,38.674225
+BKGR1075,2.08651222785102E+018,1221086.36313128,9818366.66308383,297.709244,48.080791
+BKGR1076,1.49951478689117E+018,972.179325674047,7816.98442463987,209.389489,43.493534
+BKGR1077,1.01452082635358E+018,13205.2425055709,106179.150557507,129.882536,47.352051
+BKGR1078,1.34049760848674E+018,17568.9732320089,141266.519956396,260.116169,38.242165
+BKGR1079,1.79498266829042E+017,2849.35381879008,22910.746848404,66.248026,39.460636
+BKGR1080,3.81592313648387E+017,3489.36484392805,28056.8717278161,9.573181,42.463078
+BKGR1081,3.81592421023882E+017,14.9192290350576,119.960770523299,9.565315,42.462692
+BKGR1082,3.81592519806817E+017,75.4651398400506,606.79116203581,9.567012,42.467712
+BKGR1083,1.8497864810313E+018,35624.3034222764,286443.681362492,324.536396,30.488716
+BKGR1084,1.84978654975078E+018,2.69616446921871,21.6790000626041,324.529541,30.493057
+BKGR1085,1.33457381779336E+018,727.354920496824,5848.4293324863,256.346473,33.012512
+BKGR1086,3.65426679516817E+017,354.606246159086,2851.2759219434,9.516742,34.711575
+BKGR1087,8.69913435026515E+017,31242.5433540064,251211.343766311,111.916469,24.33663
+BKGR1090,7.70622651659108E+017,965.486890269938,7763.17268236634,171.274955,41.027954
+BKGR1091,8.46946629987527E+017,181445.574928739,1458946.09737188,155.681719,50.128345
+BKGR1093,8.46946625690867E+017,2976.777546204,23935.3204699769,155.683211,50.13068
+BKGR1094,1.80893873071063E+018,201.718802423128,1621.95666484198,306.123854,16.762152
+BKGR1095,3.16732305261837E+018,357.064259230242,2871.04002243944,108.825058,14.262599
+BKGR1096,3.16732304832292E+018,11.6881662732825,93.9808235970278,108.825284,14.261271
+BKGR1097,1.1132260167242E+017,190.873826998968,1534.7556703984,48.435419,25.197405
+BKGR1098,3.66803634864158E+018,3271.49590596981,26305.0569651934,213.156383,4.059997
+BKGR1099,1.15933640333646E+018,969.943375271965,7799.00585936312,222.767436,5.947368
+BKGR1100,3.63702817083391E+017,98.117479022062,788.931409098431,13.000766,34.728413
+BKGR1101,3.59058441314839E+017,629.138671793397,5058.70374782738,33.131142,51.778759
+BKGR1102,3.59058479971316E+017,2.78449460739425,22.3892345801564,33.137162,51.785828
+BKGR1103,3.59058514331133E+017,13.4817534658723,108.402487150701,33.118489,51.783855
+BKGR1104,1.51019159455297E+018,4443.7168795336,35730.5125890632,206.094121,48.028667
+BKGR1105,1.51019159455297E+018,1.19329104405345,9.59487335215722,206.097737,48.027431
+BKGR1106,3.09644172986172E+018,8805.34509182215,70800.9763410981,123.949894,5.836719
+BKGR1107,4.58300481523965E+018,1029.78457226058,8280.16987145264,271.537705,26.426662
+BKGR1108,3.5634828688623E+017,1275.69361297804,10257.4461726471,31.042848,46.687836
+BKGR1109,8.93550942158777E+017,1235.22587682055,9932.05799076594,113.184212,33.835052
+BKGR1110,1.81021873405537E+018,7059.05200067218,56759.5895990884,303.195342,18.104868
+BKGR1111,1.8102187297415E+018,195.319849577853,1570.50472238184,303.200726,18.109133
+BKGR1112,1.81021873405537E+018,23.5367438609326,189.251463499374,303.199931,18.110012
+BKGR1113,1.54153220713325E+018,310.98996906418,2500.57132485144,188.266255,44.915352
+BKGR1114,2.13394684309438E+018,26.8377671873101,215.793941050802,284.296064,51.269138
+BKGR1115,2.13394684309438E+018,12.1268046373363,97.5077750238964,284.298395,51.261303
+BKGR1116,3.16939157758633E+018,86.8453122796765,698.295505278857,113.758247,17.830082
+BKGR1117,1.29112036234916E+018,2117.12441800008,17023.1233718707,229.991354,36.229664
+BKGR1119,1.96215385497397E+018,1221.08636313128,9818.36666308383,335.512861,45.457378
+BKGR1120,4.29041508165365E+018,2332.09576961708,18751.6395652888,297.322651,4.672421
+BKGR1121,4.29041508165365E+018,1.36693033387428,10.991051596427,297.316887,4.666824
+BKGR1122,4.29041515037313E+018,2.87571856506751,23.122737378924,297.313883,4.674419
+BKGR1123,5.83455604761167E+017,294.948628561843,2371.58801328989,135.344391,6.09723
+BKGR1124,6.01321985813952E+017,21.4657655243142,172.599386075399,128.925737,10.206653
+BKGR1125,1.50615917001746E+018,66.1829896074435,532.156347368106,213.144074,47.014687
+BKGR1126,4.27054752070628E+018,784.777207367785,6310.14365847887,274.373238,-3.381036
+BKGR1127,4.27054752500734E+018,8.78509336009057,70.6381386142127,274.366717,-3.387076
+BKGR1128,4.27054752070633E+018,1.96673742095311,15.8139094104758,274.366781,-3.389048
+BKGR1129,4.1775608946335E+018,1485.06814042046,11940.9600848556,270.444201,-2.970947
+BKGR1130,4.17756089893389E+018,5.41684465671833,43.555123210322,270.446814,-2.977166
+BKGR1131,4.17756093329364E+018,2.51620708655439,20.2320200454035,270.447648,-2.962252
+BKGR1132,4.17756093329363E+018,1.43795859540819,11.5621672326651,270.452358,-2.964057
+BKGR1133,1.83584274946523E+018,5620.13025541724,45189.6779851638,305.441397,26.692652
+BKGR1134,1.83584278382496E+018,73408.5052713496,590254.418282732,305.449786,26.688166
+BKGR1135,1.83584285254445E+018,5.64607159801351,45.3982640614916,305.438501,26.70142
+BKGR1136,4.60603016927292E+018,411.856933060597,3311.61046721751,274.405476,36.62141
+BKGR1137,3.15196136334886E+018,394.227014547281,3169.85390565855,118.063411,12.13941
+BKGR1138,3.16706322857705E+017,30.3211997271625,243.803113010338,21.06519,32.810764
+BKGR1139,1.2862348585317E+017,29.8363972715294,239.90497082131,42.721679,29.022396
+BKGR1140,3.23386882492982E+017,9.90253488775845,79.6231301549136,21.871105,38.968147
+BKGR1141,3.38329822757928E+018,588.499883421198,4731.94018954922,99.898,25.482536
+BKGR1142,3.38329785391992E+018,2.77170101678634,22.2863653914418,99.890985,25.48045
+BKGR1143,4.59380827289624E+018,29.4270265540524,236.613351222012,264.273447,25.731186
+BKGR1144,3.38577728699924E+018,1843.93828348503,14826.5206442298,100.848071,27.252287
+BKGR1145,4.48364081557009E+018,4599.87871878999,36986.1602180065,274.743421,10.597294
+BKGR1146,1.92532165854644E+018,6063.82111758711,48757.2549407138,354.774222,42.465973
+BKGR1147,1.75730288152625E+018,36.9612270943346,297.193458945106,315.905492,11.989404
+BKGR1148,8.52608874351435E+017,26.3479227313908,211.8552577428,150.572631,53.950863
+BKGR1149,1.35861498313134E+018,15694.460131717,126194.156944968,256.610682,44.776981
+BKGR1150,2.12925639521198E+018,5777.58550016263,46455.7254758355,292.24731,47.969513
+BKGR1151,1.89150755282419E+018,13891.4116504505,111696.418181433,343.041067,35.447109
+BKGR1152,8.98130030131444E+017,120.433243014041,968.365362220494,110.168529,37.140652
+BKGR1153,3.54001863356878E+018,327.903748290394,2636.56963841508,175.525336,-23.354836
+BKGR1154,6.77114912049123E+018,7.12436860464379,57.284779615408,289.400767,-22.389914
+BKGR1155,6.77114922787351E+018,7.7937483907191,62.6670493507694,289.401384,-22.383919
+BKGR1156,6.80300098021086E+018,12.9642196669243,104.241162651442,316.961465,-26.096655
+BKGR1157,3.49250200162324E+018,51.2561971153263,412.134761494726,176.739094,-22.562992
+BKGR1158,3.48360640280019E+018,142.477531176358,1145.6164646317,174.009715,-29.543312
+BKGR1159,5.9111827352427E+018,51.7304648679584,415.948197491078,268.890685,-61.747311
+BKGR1160,5.91118263216349E+018,324.150265122078,2606.38907533375,268.86985,-61.749802
+BKGR1161,6.28712510100761E+018,47.8350664003764,384.626538672894,207.907777,-23.781174
+BKGR1162,5.6568969244359E+018,45.7874419584355,368.162242480351,144.926863,-28.58559
+BKGR1163,6.13422807920307E+018,35.1355196552929,282.513526716509,193.55256,-46.587715
+BKGR1164,6.13422811786321E+018,70.5905200067218,567.595895990884,193.560043,-46.590881
+BKGR1165,6.63823043112019E+018,165.480331088174,1330.57465483916,285.096424,-54.893192
+BKGR1166,6.80588637360055E+018,252.20075429422,2027.8659668405,312.45744,-24.428793
+BKGR1167,4.90614561328273E+018,200.791988713644,1614.50445089312,5.618693,-59.942551
+BKGR1168,3.49855323258564E+018,33.3999934119261,268.558712769457,191.702787,-24.427364
+BKGR1169,6.64097595031007E+018,643.793194019004,5176.53609517614,294.633634,-55.330105
+BKGR1170,6.44103484174347E+018,95.00498224924,763.904813538993,296.688277,-63.565609
+BKGR1171,5.60548170344431E+018,37.8221646717302,304.115983890205,112.419228,-29.937878
+BKGR1172,2.93758312165295E+018,30.4611560260925,244.928457049214,94.112075,-22.546885
+BKGR1173,2.91915108052439E+018,39.604668376851,318.448528650022,103.517344,-27.050377
+BKGR1174,2.91915173335416E+018,1.16344640273308,9.354902093564,103.507976,-27.046686
+BKGR1175,2.90598346670552E+018,34.6534422530077,278.637295813819,80.538157,-30.970844
+BKGR1176,2.90598346670552E+018,2.59266485814248,20.8467926432803,80.547806,-30.976128
+BKGR1177,4.91977165472761E+018,13.5128321173187,108.65238069182,6.702437,-56.316124
+BKGR1178,4.89942814699406E+018,247.028113143709,1986.2744062714,67.222871,-21.481916
+BKGR1179,5.608644895311E+018,169.334863162828,1361.56772000329,102.847505,-29.058611
+BKGR1180,5.63153095066494E+018,9.58840525267096,77.0973137752099,140.087718,-31.26932
+BKGR1181,2.96668059736875E+018,74.4297193045324,598.465675178243,88.146797,-19.031656
+BKGR1182,2.96668059736875E+018,3.06017583339464,24.6058995440165,88.138377,-19.033834
+BKGR1183,2.59698664879806E+018,128.158194715504,1030.4792392972,341.364027,-14.99176
+BKGR1184,5.6327045118268E+018,24.5893122061373,197.714830434924,144.287622,-29.800419
+BKGR1185,6.76613463021315E+018,100.172008375483,805.451225485722,292.939809,-26.740179
+BKGR1186,6.14406026007234E+018,5.87146371248895,47.2105702911777,180.208792,-46.13641
+BKGR1187,4.90427926101427E+018,140.199472998964,1127.2993241404,15.005901,-58.904778
+BKGR1188,4.08315964376923E+018,41.3757978288308,332.689616661793,290.810104,-20.166317
+BKGR1189,4.08315964807214E+018,1.27275959908622,10.2338547011065,290.813313,-20.160477
+BKGR1190,4.08315377255687E+018,19.758154684209,158.869030997961,290.810896,-20.17708
+BKGR1191,1.33135647497172E+018,1891238.85234513,15206849.4583605,247.623437,38.347324
+BKGR1192,5.45560867790611E+017,2151524.92243721,17299726.8752402,42.435295,71.75322
+BKGR1193,1.82724281620185E+018,35871239.2966758,288429214.106389,300.182124,22.710873
+BKGR1194,1.82724281617611E+018,5925.79169732399,47647.4043196972,300.179061,22.709513
+BKGR1195,1.82724281187746E+018,2.8167375353375,22.6484896978914,300.176363,22.708496
+BKGR1196,1.82724281620185E+018,1.11621121351706,8.97509897633501,300.172699,22.709558
+BKGR1197,1.82724205596321E+018,28.8899227886355,232.294670853276,300.188473,22.700834
+BKGR1198,1.77954675766906E+018,6134036.85685843,49321837.3441381,330.794914,18.884359
+BKGR1199,3.87707059016718E+018,236998.927752263,1905632.91974071,154.671097,10.129043
+BKGR1200,3.99707520623289E+018,23000982.1610065,184943574.251949,168.63817,25.71039
+BKGR1201,4.08168458019996E+018,76.868141539375,618.072251997025,284.985377,-22.293427
+BKGR1202,4.08168464891961E+018,1.83546615664287,14.7583989697405,284.978563,-22.287868
+BKGR1203,4.08168465323731E+018,30813.8795890003,247764.594914564,284.975101,-22.293108
+BKGR1204,6.62078902422542E+017,301.818864690153,2426.82939457658,126.936744,17.579386
+BKGR1205,1.4591605068392E+017,53425.2276177232,429575.245164804,67.412415,22.882765
+BKGR1206,3.57942605372405E+018,126.109086894354,1014.00301572473,188.137361,-9.607622
+BKGR1207,3.57942605372405E+018,19.8493541825194,159.60233712678,188.144892,-9.615799
+BKGR1208,2.64395294081354E+018,49516.094276936,398143.148604236,350.91652,-1.189307
+BKGR1209,3.40668748560073E+018,45892.9929131279,369010.944100563,73.766483,18.654562
+BKGR1210,6.03274683245044E+018,756.391049539638,6081.89960127867,253.768887,-28.710564
+BKGR1211,6.03274690552139E+018,43.1267152320439,346.768186024763,253.764866,-28.707253
+BKGR1212,6.03274683680191E+018,3.75617987215145,30.2022464182685,253.766135,-28.716984
+BKGR1213,6.03274693552965E+018,192196.901160201,1545394.08847403,253.776072,-28.705532
+BKGR1214,2.63127075708886E+018,11.5810085207865,93.1192022272673,347.704375,-7.857524
+BKGR1215,6.04975023431782E+018,8236.56976171773,66227.6350046497,242.573773,-24.990332
+BKGR1216,6.04975023431782E+018,6.36423754266563,51.1728077648973,242.567226,-24.99481
+BKGR1217,3.31180451550279E+018,448.483408557696,3606.11229515113,63.273348,15.247784
+BKGR1218,3.39492312779711E+018,100.63438135791,809.169019422041,76.867348,16.86771
+BKGR1219,3.39492312779712E+018,3.94227014547281,31.6985390565855,76.860198,16.872942
+BKGR1220,3.39492312779712E+018,204.524990493977,1644.52032965477,76.859528,16.862766
+BKGR1221,3.85524607462998E+018,15803.2489321579,127068.893051943,157.935441,0.937565
+BKGR1222,2.62229678369948E+018,223.741415412626,1799.03348408972,335.624507,-7.95543
+BKGR1223,1.50054788545735E+017,1080.80260095906,8690.38959653821,62.670291,24.401718
+BKGR1224,1.50054788545735E+017,149.880930673988,1205.1448428167,62.671037,24.402699
+BKGR1225,6.1607255708761E+016,101.799672573817,818.538755070967,52.341872,22.299374
+BKGR1226,6.16072557087617E+016,147.145295387108,1183.14847047643,52.339483,22.290113
+BKGR1227,6.05019124155688E+018,16972.5220337307,136470.645775709,245.440753,-23.547789
+BKGR1228,4.13053918035851E+018,1882.54939913003,15136.9803317012,252.426112,-19.542799
+BKGR1229,6.65757593450098E+017,799.367304965987,6427.45798791089,127.578792,22.235914
+BKGR1230,2.8817842809297E+018,4557.70677720955,36647.0690629229,0.362142,39.383808
+BKGR1231,6.71051779302517E+018,5724.61627791039,46029.8168246266,284.548373,-47.003242
+BKGR1232,3.76149776187602E+018,9413397.13365175,75690129.2111788,161.707282,-9.398984
+BKGR1233,4.60893525079086E+018,5416.84465671833,43555.123210322,267.640506,36.570232
+BKGR1235,5.56088633644665E+018,4696.1978042794,37760.6313173011,108.301485,-42.409744
+BKGR1236,5.56088630208691E+018,1.26691179991658,10.1868344098698,108.29829,-42.4156
+BKGR1237,5.48978091948001E+018,1744.80292709859,14029.4048073273,117.415037,-52.120453
+BKGR1238,1.86488521523312E+018,284.28004868599,2285.80535928751,314.268487,31.661034
+BKGR1239,1.86488521523311E+018,2.64086609661449,21.2343634549953,314.273252,31.656446
+BKGR1240,1.86488542138609E+018,2.99051772706272,24.0458008895125,314.26991,31.6677
+BKGR1241,1.86488542139156E+018,1.62834483575793,13.0930023740602,314.259763,31.667253
+BKGR1242,1.86488538703216E+018,170.116477378008,1367.85243104866,314.256605,31.660557
+BKGR1243,1.61216535379379E+018,7686.8141539375,61807.2251997025,216.524016,59.444275
+BKGR1244,3.43805936983974E+018,562013.025541724,4518967.79851638,92.663969,30.957184
+BKGR1245,3.43805936984102E+018,8.19872616120759,65.9233466620078,92.661877,30.953283
+BKGR1246,8.06492019492267E+017,27148.5338848933,218292.717120763,148.643324,40.388069
+BKGR1247,7.27624020367529E+017,25512.1101392882,205134.754804873,157.06254,25.573223
+BKGR1248,1.46470095022178E+018,10297.8457226058,82801.6987145264,195.981868,30.640051
+BKGR1249,1.81908842994568E+017,357064.259230241,2871040.02243943,78.295529,33.318169
+BKGR1250,4.53414492369048E+018,8293.66293578075,66686.7030393401,283.30551,24.12738
+BKGR1251,4.53414492369048E+018,7740.09660417796,62235.6524174358,283.303331,24.125698
+BKGR1252,1.05589548326702E+018,146.132354298576,1175.00373369483,165.1674,64.96402
+BKGR1253,2.13359977537734E+018,10.7089374315343,86.107156258138,286.243425,50.040382
+BKGR1254,2.10148692338524E+018,2470281.13143708,19862744.062714,289.752185,41.634533
+BKGR1255,2.10148730134237E+018,54.2933177328306,436.55528138834,289.764463,41.63393
+BKGR1256,2.13158753166057E+018,194.870626389636,1566.89266175398,285.268586,48.560013
+BKGR1257,2.07901830019539E+018,21.220048938241,170.623657240723,299.407009,44.035046
+BKGR1258,2.08663688498051E+018,28.9565209387154,232.83016537382,296.837254,48.239964
+BKGR1259,2.08663688498052E+018,78.2972269877325,629.563073079385,296.849669,48.232895
+BKGR1260,2.10211787125904E+018,36.3702579433846,292.44166416155,288.581518,41.089806
+BKGR1261,2.10211807741746E+018,3.42567675797262,27.5447761063591,288.567302,41.09013
+BKGR1262,2.10211780253956E+018,6.96219817626692,55.9808188344274,288.583625,41.079121
+BKGR1263,2.07784116991686E+018,11.2136341038505,90.1652615093762,293.351293,43.13464
+BKGR1264,2.37103291618618E+018,18825.4939913003,151369.803317012,11.247108,-15.271294
+BKGR1265,2.37103291618581E+018,1.80196512376694,14.4890278308111,11.245929,-15.281094
+BKGR1266,6.22060238408133E+018,1980.37019347361,15923.5261937617,215.122877,-31.20207
+BKGR1267,6.22060238408133E+018,2.40295911255405,19.3214291435974,215.119372,-31.192595
+BKGR1268,6.22060217362607E+018,2.61063635238284,20.9912957065058,215.135065,-31.202431
+BKGR1269,2.24483049051429E+018,486.123237027655,3908.76217169708,303.381672,65.162041
+BKGR1270,3.62003064447662E+018,299.741158239977,2410.12321853366,207.655866,-6.804028
+BKGR1271,2.87864136130081E+018,75.2915748347965,605.39558109009,359.151996,36.212971
+BKGR1272,2.87864136130081E+018,3.18233856012983,25.5881711341867,359.159001,36.215561
+BKGR1273,3.85697172809355E+017,37.7351761068923,303.416536536717,4.859266,44.027641
+BKGR1274,3.85697172809355E+017,2.61063635238284,20.9912957065058,4.849786,44.033623
+BKGR1275,3.82111248777193E+017,137.957838452839,1109.27505447117,7.053898,42.061333
+BKGR1276,3.82111253074051E+017,1.60970532655715,12.9431280152279,7.045091,42.059692
+BKGR1278,2.09896484986734E+018,1891.23885234513,15206.8494583605,286.041062,36.632629
+BKGR1279,2.09896484986734E+018,10.5377133635309,84.7303980435172,286.042481,36.633629
+BKGR1280,2.13131440180067E+018,1777.24123539423,14290.2309162686,286.808473,49.316402
+BKGR1281,4.60913150931872E+018,307.43009632566,2471.94752159228,268.029265,37.546154
+BKGR1282,4.60906230880693E+018,583.104484059393,4688.55750112731,268.304354,37.211849
+BKGR1283,2.18860177940615E+018,31.9702756751825,257.062807657499,305.221841,59.448788
+BKGR1284,2.86254842807964E+018,660.307729553139,5309.32421732736,5.166978,31.98999
+BKGR1285,1.90976222898506E+018,1296.42196669243,10424.1162651442,348.992912,31.462852
+BKGR1286,4.67535210965826E+018,2671.44588478675,21480.2457953604,68.959728,-64.027039
+BKGR1287,4.6753521096596E+018,5.85795972068204,47.1019889926072,68.945973,-64.022293
+BKGR1288,2.92466186716082E+018,10489.2969685562,84341.0972268684,98.351102,-23.48621
+BKGR1289,2.92466224511794E+018,15.5864202281107,125.325442478997,98.362175,-23.482721
+BKGR1290,4.43908598876917E+018,213.179962338373,1714.11220259079,249.314868,7.183352
+BKGR1291,3.86860321676202E+018,1635.8609340207,13153.4369271334,160.602432,7.435026
+BKGR1292,3.86860325112175E+018,1155.43729403183,9290.50340052499,160.601768,7.443054
+BKGR1293,3.7883944619913E+018,860.491096708917,6918.93493605328,166.429747,-5.079412
+BKGR1294,3.57863884205426E+018,28757.1856506751,231227.37378924,188.386852,-10.146148
+BKGR1295,1.23376685084303E+017,4728.75029232124,38022.3755092277,47.368964,30.673594
+BKGR1296,1.23376719445432E+017,2.55709216270288,20.560763925275,47.367272,30.677927
+BKGR1297,1.58739923233565E+018,609.181044415161,4898.23082040705,224.872776,46.960117
+BKGR1298,2.72633989254298E+018,105.134772953385,845.355235357275,327.665717,10.46301
+BKGR1299,4.74615773791007E+018,20689.3278266409,166356.297759149,36.775432,-50.284519
+BKGR1300,2.56256956402668E+018,2031.17050362708,16331.9953133464,19.550553,2.702846
+BKGR1301,4.67260717888043E+018,355.423697980392,2857.84879176926,55.933441,-65.193855
+BKGR1302,3.43528286246143E+018,808.623542110697,6501.8844436893,97.63664,29.672291
+BKGR1303,4.83728684216782E+018,1654.80331088174,13305.7465483916,62.616051,-45.89822
+BKGR1304,5.56505025570144E+018,5269.22060145384,42368.1251841044,107.600275,-39.097393
+BKGR1305,6.75614865945391E+018,244.763345789371,1968.06413305661,289.478676,-32.86113
+BKGR1306,6.75614865945391E+018,5416.84465671833,43555.123210322,289.479327,-32.859962
+BKGR1307,6.61475153283389E+018,61.058535175508,490.952240860859,332.714323,-30.749672
+BKGR1308,4.66649815483709E+018,3145.91063186245,25295.2657613116,63.373865,-69.226807
+BKGR1309,3.77807571716299E+018,28493.5381879008,229107.46848404,160.558664,-3.835064
+BKGR1310,3.77807581594701E+018,2.53948926407163,20.4192246219848,160.563538,-3.832746
+BKGR1311,5.38088875819568E+018,482.776788202497,3881.85444217303,176.298965,-42.063927
+BKGR1312,5.38088875819569E+018,1.16077055026091,9.33338641580251,176.306032,-42.059822
+BKGR1313,7.02295464353438E+017,9478.64768535275,76214.788122221,140.102976,33.882439
+BKGR1314,7.02295464353438E+017,6.96219817626692,55.9808188344274,140.097121,33.887089
+BKGR1315,6.17345147719123E+018,33323.1755587514,267941.044870189,210.193542,-30.583567
+BKGR1316,6.09901247841225E+018,2640.86609661449,21234.3634549953,217.609126,-46.15918
+BKGR1317,6.77866280929456E+018,82.3656976171773,662.276350046497,314.575373,-35.796555
+BKGR1318,4.5964816323399E+018,114.484418124719,920.532755337502,267.284974,29.879107
+BKGR1319,2.44101381193293E+018,19531.9849577853,157050.472238184,0.32575,-8.926325
+BKGR1320,2.49851551699017E+018,399.711258614468,3213.95096606908,41.639084,-0.463922
+BKGR1321,4.85139879903251E+018,420.481004600315,3380.95388064199,49.562228,-41.302147
+BKGR1322,1.24208417097418E+018,29836.3972715294,239904.97082131,218.276477,21.894714
+BKGR1323,5.094154336331E+018,8526.02066915007,68555.0175927619,60.38562,-20.451092
+BKGR1324,5.09415433633248E+018,663.355571551961,5333.83094443456,60.387701,-20.450634
+BKGR1325,2.98039208718529E+018,79.7528811182225,641.267524475545,71.824413,-17.115154
+BKGR1326,5.67461844483212E+018,45.0553513914939,362.275735322589,140.50639,-23.946169
+BKGR1327,5.67461844483212E+018,1.41822906383817,11.4035283510149,140.505281,-23.945187
+BKGR1328,6.58243592402265E+018,158.032489321579,1270.68893051943,320.76288,-40.04826
+BKGR1329,6.45852993146328E+018,7975.28811182225,64126.7524475545,322.252865,-58.836193
+BKGR1330,6.45852993146328E+018,862.474733550743,6934.88472832637,322.252604,-58.834763
+BKGR1331,2.34091935858149E+018,173.279178823343,1393.28270639506,359.191558,-22.153164
+BKGR1332,6.1710090495492E+018,2527.82137076294,20325.4068068414,208.927939,-32.159607
+BKGR1333,2.65713574163334E+018,81.0487611890659,651.687283528702,349.063433,0.306745
+BKGR1334,2.11010637298747E+018,110.852726957119,891.331482956459,279.26241,40.018707
+BKGR1335,3.63026939983351E+018,214.657655243142,1725.99386075399,201.655321,-8.317587
+BKGR1336,2.42462150231196E+018,163.963198293595,1318.37587307931,4.146313,-10.976422
+BKGR1337,4.86475988823823E+018,119.879902525389,963.916127529856,68.136454,-38.968338
+BKGR1338,6.28372328504653E+018,3211.78437628415,25824.9355666021,214.683032,-20.275484
+BKGR1339,2.9107554846096E+018,109.83642304759,883.159706801904,87.679409,-27.623163
+BKGR1340,2.91075548460959E+018,183.969734311786,1479.24205930145,87.686258,-27.618069
+BKGR1341,6.49103864200699E+018,137.008143372977,1101.63885870833,344.873422,-60.447769
+BKGR1342,2.41541096212481E+018,117.963155442545,948.504174511644,357.580534,-17.077572
+BKGR1343,6.15498287729904E+018,2166.43858072595,17419.642853166,196.043901,-35.549519
+BKGR1344,6.15496016551344E+018,6.33499652728133,50.937690070267,196.035462,-35.548157
+BKGR1345,6.15496016121668E+018,133.889457278123,1076.56249678106,196.034366,-35.54871
+BKGR1346,5.55550000077947E+018,449.517269588411,3614.4252425271,96.74463,-46.821438
+BKGR1347,5.55549996641973E+018,837.040325408394,6730.37475053927,96.755426,-46.826237
+BKGR1348,6.04279300577966E+018,744.297193045324,5984.65675178243,239.962306,-28.061733
+BKGR1349,6.08671258542973E+018,924.15832727928,7430.86286599915,199.433836,-47.23756
+BKGR1350,2.32398553948291E+018,1240.9274204144,9977.90228748415,354.168208,-34.611233
+BKGR1351,2.32398553518837E+018,489.492882327898,3935.85641669175,354.170142,-34.611816
+BKGR1352,6.13940345037067E+018,328.659644496838,2642.64755914059,195.793985,-41.384827
+BKGR1353,6.13942670761773E+018,25.1041997084608,201.854876905583,195.803338,-41.385677
+BKGR1354,4.95537136733461E+018,92203.2822108683,741377.2355664,24.354311,-45.677898
+BKGR1355,5.41173689695203E+018,411.856933060597,3311.61046721751,148.417002,-45.659191
+BKGR1356,1.74859602074504E+018,2909.01781665605,23390.486058767,307.725542,6.429536
+BKGR1357,2.35997829313682E+018,5078.62774755856,40835.6287289735,5.160559,-23.935728
+BKGR1358,2.83108439102318E+018,1299.41052797508,10448.1463348871,347.492721,18.396086
+BKGR1359,5.08653702285641E+018,599.440913123685,4819.91352586201,52.818043,-23.819702
+BKGR1360,5.55734549668744E+018,442.329985506418,3556.63457959005,101.127587,-42.761826
+BKGR1361,1.15368250838817E+018,886.638082812452,7129.1745263479,227.215586,2.343304
+BKGR1362,6.18695052504245E+018,835.115186082006,6714.89531816274,195.359879,-27.5222
+BKGR1363,2.41678270166416E+018,2545.34339142159,20466.2957961046,4.602897,-15.267305
+BKGR1364,2.41678270596029E+018,40.433969685076,325.116676427423,4.605523,-15.27075
+BKGR1365,2.64108747177705E+018,231.071498708589,1857.97235004033,353.616152,-1.580064
+BKGR1366,6.53441471931823E+018,20546.9034956789,165211.109060502,357.879538,-39.906719
+BKGR1367,2.09510831283184E+018,5429.33177328306,43655.528138834,278.631793,35.661533
+BKGR1368,2.09510831283183E+018,108.080260095906,869.038959653821,278.626065,35.659447
+BKGR1369,2.09510831283183E+018,30.1818864690153,242.682939457658,278.621824,35.661396
+BKGR1370,3.54587394530332E+018,279.091353039091,2244.08470962456,169.439021,-19.054773
+BKGR1371,3.54587356734619E+018,3.1531627048407,25.3535773711353,169.436545,-19.064484
+BKGR1372,2.54641340888843E+018,860.491096708917,6918.93493605328,3.961682,1.200451
+BKGR1373,3.53711083333356E+018,20125.4862051764,161822.626803026,165.399561,-23.860636
+BKGR1374,3.21118861876202E+018,3721.74300809089,29925.3505587436,76.081782,-6.229821
+BKGR1375,5.75093609237525E+018,63.3499652728132,509.37690070267,131.580405,-8.026946
+BKGR1376,3.65217699721833E+018,100.63438135791,809.169019422041,221.943987,1.064966
+BKGR1377,4.45321189998618E+018,125240.958046493,1007022.66806345,243.959845,10.032566
+BKGR1378,3.64309887516827E+018,782.972269877325,6295.63073079385,217.326702,-3.444534
+BKGR1379,6.53549965812206E+018,223.741415412626,1799.03348408972,353.562841,-42.061428
+BKGR1380,6.16087794325193E+018,2622.68650227859,21088.1871251588,190.618736,-30.63987
+BKGR1381,6.13969873366473E+018,1155.43729403183,9290.50340052499,192.981545,-42.073608
+BKGR1382,3.76780520911244E+018,6741.34232498172,54204.9872527488,154.908372,-9.806276
+BKGR1383,2.42440651342894E+018,56.8520829664452,457.129497944126,3.903165,-11.938115
+BKGR1384,2.30883478035288E+018,633.499652728132,5093.7690070267,5.237497,-35.99826
+BKGR1385,6.46299442970876E+018,49.516094276936,398.143148604236,318.736981,-55.87178
+BKGR1386,2.61341300891992E+018,801.210036915622,6442.27480880871,331.203047,-12.018885
+BKGR1387,2.14175457824237E+018,529.354221868076,4256.36875644431,291.16233,55.47316
+BKGR1388,2.99128436906361E+018,2222.01190342693,17866.4902469613,91.089427,-16.965294
+BKGR1389,6.53330795778587E+018,314.591063186245,2529.52657613116,359.348991,-41.277149
+BKGR1390,5.16055772618307E+018,1338.89457278123,10765.6249678106,43.688073,-10.89808
+BKGR1391,2.66601587857555E+018,1022.69558512827,8223.16958299112,348.494748,8.761262
+BKGR1392,5.13655912826477E+018,507.862774755856,4083.56287289735,31.909202,-20.661839
+BKGR1393,3.66198385066391E+018,11501.2854188927,92478.1741480535,205.454308,-0.128076
+BKGR1394,3.6035292727508E+018,500.894636257445,4027.5342898239,203.758114,-17.503464
+BKGR1395,4.00161381413816E+018,366.223645275029,2944.68772935989,183.366285,23.055698
+BKGR1396,6.34037720221564E+018,71.0798301154851,571.530282783536,223.820104,-2.057665
+BKGR1397,2.11524555475676E+018,646.764808385255,5200.42990016003,274.701064,45.172016
+BKGR1398,2.38517139876865E+018,589.856515761301,4742.84843825653,348.157246,-22.673937
+BKGR1399,2.95917704898375E+018,122.390125791198,984.100033577838,75.299663,-26.054144
+BKGR1400,4.75664941530991E+018,14182.2906383817,114035.283510149,87.139961,-63.988434
+BKGR1401,5.57476646815552E+018,5043.66672005627,40554.5182381025,94.336431,-38.323257
+BKGR1402,5.58352342543726E+018,137.957838452839,1109.27505447117,101.115041,-32.858402
+BKGR1403,5.58352342543741E+018,1835.46615664287,14758.3989697405,101.123037,-32.858212
+BKGR1404,5.58352418135166E+018,1.03931305159123,8.35678533996878,101.107368,-32.851505
+BKGR1405,5.58352339107752E+018,1.6023094023946,12.8836597438321,101.103792,-32.857132
+BKGR1406,5.96931979481073E+017,562.013025541724,4518.96779851638,133.324304,8.523038
+BKGR1407,5.44414795281152E+018,440.297663830111,3540.2933280637,158.224966,-34.989845
+BKGR1408,6.86847669149005E+018,926.288732245335,7447.99277402952,295.74384,-19.949596
+BKGR1409,6.86053560619631E+018,14052.2666162623,112989.801746759,305.095785,-19.31468
+BKGR1410,6.91075301665359E+018,433257.791049511,3483687.95246673,315.025778,-5.094404
+BKGR1411,6.6817207244988E+018,50089.4636257445,402753.42898239,311.042609,-39.225273
+BKGR1412,6.88846948937084E+018,3279.03748290394,26365.6963841508,315.476951,-13.433218
+BKGR1413,2.50790191461301E+018,5966.86732305461,47977.6803480894,29.263338,0.758834
+BKGR1414,5.06564046076943E+018,3011.24700564215,24212.4784185549,41.039999,-30.169039
+BKGR1415,6.45356670161568E+018,11688.1662732825,93980.8235970278,319.94961,-58.148876
+BKGR1416,4.22406240676263E+018,74945.6414714842,602614.04105775,304.538823,-1.075676
+BKGR1418,2.60516144473545E+018,1080.80260095906,8690.38959653821,342.385707,-10.67556
+BKGR1419,2.51232634940328E+018,71243.6860464379,572847.79615408,26.632746,2.700539
+BKGR1420,5.17840547996084E+018,49062.1279959102,394492.950277266,37.155115,-7.060681
+BKGR1421,5.0898516380955E+018,122.390125791198,984.100033577838,63.75624,-22.116434
+BKGR1422,4.88477976589374E+018,10958.3806284621,88112.8495841768,66.370903,-30.600445
+BKGR1423,2.31267984553063E+018,102269.558512827,822316.958299111,359.900292,-35.031391
+BKGR1424,2.31267984552978E+018,21764.3840686561,175000.482713008,359.900526,-35.032494
+BKGR1425,4.22350722211243E+018,55557.9715636779,446723.960187841,303.167407,-2.144208
+BKGR1426,4.22350722211243E+018,5.19692418447927,41.7868127137372,303.169283,-2.142587
+BKGR1427,4.24424335427899E+018,159.862419303257,1285.40281486894,304.20789,3.29405
+BKGR1428,4.24424335857591E+018,386.141412726631,3104.84015580119,304.211733,3.288433
+BKGR1429,3.2318563793483E+018,21714.3273743567,174597.992771745,72.660671,1.893921
+BKGR1430,3.51586541682663E+018,504.366672005627,4055.45182381025,190.152085,-19.284243
+BKGR1431,3.07883610915864E+018,17407.8999172403,139971.380716629,131.107099,1.860033
+BKGR1432,3.90974522388602E+018,23054.0049009131,185369.913221577,175.90836,6.56373
+BKGR1433,6.48210301408586E+018,593.945205798638,4775.72429304482,309.511192,-48.462067
+BKGR1434,6.85775624695759E+018,123.522587682055,993.205799076594,313.899962,-18.971106
+BKGR1435,1.73706134919887E+018,704.281663159737,5662.90461655525,315.531971,7.056235
+BKGR1436,1.73706135349425E+018,12.5240958046493,100.702266806346,315.531968,7.058946
+BKGR1437,1.42401108289373E+018,37.7351761068923,303.416536536717,246.692114,51.041115
+BKGR1438,4.15703635408773E+017,1424.77531176358,11456.164646317,9.458792,51.288761
+BKGR1439,4.15703635408772E+017,59.1216275461931,475.37818330741,9.456235,51.295605
+BKGR1440,4.15703635408772E+017,1.79368584607612,14.4224567949464,9.466089,51.294701
+BKGR1441,6.78054616963348E+018,16662.7385944765,133979.775772911,313.783098,-34.135555
+BKGR1443,6.78054616963348E+018,8086.23542110697,65018.844436893,313.788158,-34.135521
+BKGR1444,6.51839930166778E+018,34020.9456504521,273551.592013867,337.457189,-48.003086
+BKGR1446,4.99004466837796E+018,151.965982115166,1221.91007759369,1.046351,-47.360626
+BKGR1447,4.91156321631108E+018,11634.4640273308,93549.02093564,24.604338,-55.772083
+BKGR1448,4.85913619979613E+018,64.8255755248989,521.241812918732,58.428794,-34.328194
+BKGR1449,4.74566047947974E+018,101799.672573817,818538.755070967,39.897688,-50.008003
+BKGR1450,1.31670891850535E+018,3704.64315224385,29787.856062317,240.54935,28.169586
+BKGR1451,9.34346809278716E+017,6134.03685685843,49321.8373441381,117.026968,50.2258
+BKGR1452,9.34346740559239E+017,6664.17481750248,53584.5078945447,117.031174,50.217556
+BKGR1453,4.70650560777348E+017,20171.8802423128,162195.666484198,65.469581,57.817181
+BKGR1454,9.90291507088739E+017,4894.92882327898,39358.5641669175,110.388223,58.268108
+BKGR1455,9.20308932010648E+017,563.308599368477,4529.38509515831,116.716527,39.094578
+BKGR1456,1.1143084816008E+018,7075.324796138,56890.4339663181,94.79328,73.827682
+BKGR1457,1.11430851596238E+018,819.87261612076,6592.33466620078,94.767155,73.819916
diff --git a/src/detector_features.c b/src/detector_features.c
index b0ba366d46c2741bc2d9f4e76b05ded37b0171fc..cf17a88cd6f1ee33097d95b79e9cf9930a0fa89d 100644
--- a/src/detector_features.c
+++ b/src/detector_features.c
@@ -1,8 +1,8 @@
 /**
 * @file    detector_features.c
 * @author  Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date    September, 2023
-* @version 0.5
+* @date    November, 2023
+* @version 1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
@@ -34,9 +34,9 @@
 #include "./detector_features.h"
 
 #define SWAP(T, a, b) do { T tmp = a; a = b; b = tmp; } while (0)
-#define SET_PIXEL(img,cols,x,y,val) ( img[x + cols * y] = val )
-#define SET_PIXEL_SMEAR(img,cols,x,y,val) ( img[x + cols * y] += val )
-#define GET_PIXEL(img,cols,x,y) ( img[x + cols * y] )
+#define SET_PIXEL(img,cols,x,y,val) ( (img)[(x) + (cols) * (y)] = (val) )
+#define SET_PIXEL_SMEAR(img,cols,x,y,val) ( (img)[(x) + (cols) * (y)] += (val) )
+#define GET_PIXEL(img,cols,x,y) ( (img)[(x) + (cols) * (y)] )
 #define TWO_PI 6.28318531f
 #define SIGDIVFWHM 0.42466452f
 #define XDIM 200
@@ -242,9 +242,8 @@ void convolve_starmask_fast(double *result, double *starmask, double *psf, int w
 {
 	unsigned int i, j, k, l, i_start, j_start;
 	bzero(result, (size_t) width_star * height_star * sizeof(double));
-//#pragma omp parallel for collapse(2)
-	for(i=0; i<height_star; i++){
-		for(j=0; j<width_star; j++){
+	for(i=0; i<width_star; i++){
+		for(j=0; j<height_star; j++){
 			if (starmask[i+height_star*j] > 0){
 				i_start = i - (width_psf - 1)/2;
 				j_start = j - (height_psf - 1)/2;
@@ -252,8 +251,8 @@ void convolve_starmask_fast(double *result, double *starmask, double *psf, int w
 					for(l=0; l<height_psf; l++){
 						if((i_start + k) > 0){
                             if((j_start + l) > 0){
-                                if((i_start + k) < height_star){
-                                    if((j_start + l) < width_star){
+                                if((i_start + k) < width_star){
+                                    if((j_start + l) < height_star){
 							            result[i_start + k + height_star * (j_start + l)] = result[i_start + k + height_star * (j_start + l)] + psf[k + height_psf*l] * starmask[i + height_star*j];
 							        }
                                 }
@@ -339,7 +338,7 @@ void generate_linear_smearing_kernel(double *smear_kernel, double x_origin, doub
 	y1 = y0 + y;
 
     if(x0 == x1 && y0 == y1){
-        SET_PIXEL_SMEAR(smear_kernel, dim, (int) y0, (int )y0, 1);
+        SET_PIXEL_SMEAR(smear_kernel, dim, (int) x0, (int )y0, 1);
         return;
     }
 
@@ -376,8 +375,8 @@ void generate_linear_smearing_kernel(double *smear_kernel, double x_origin, doub
     }
 
     if(x0 > x1){
-        SWAP(double, x0, y0);
-        SWAP(double, x1, y1);
+        SWAP(double, x0, x1);
+        SWAP(double, y0, y1);
     }
 
 	dx = x1 - x0;
@@ -393,6 +392,16 @@ void generate_linear_smearing_kernel(double *smear_kernel, double x_origin, doub
     xEnd = round(x0);
     yEnd = y0 + grad * (xEnd - x0);
     xGap = complement(x0 + 0.5);
+
+	if(xEnd < 0)
+		xEnd = 0;
+	if(yEnd < 0)
+		yEnd = 0;
+	if(xEnd > dim - 1)
+		xEnd = dim - 1;
+	if(yEnd > dim - 1)
+		yEnd = dim - 1;
+
     xPoint1 = (int) xEnd;
     yPoint1 = (int) yEnd;
 
@@ -409,6 +418,16 @@ void generate_linear_smearing_kernel(double *smear_kernel, double x_origin, doub
     xEnd = round(x1);
     yEnd = y1 + grad * (xEnd - x1);
     xGap = fractional(x1 + 0.5);
+	
+	if(xEnd < 0)
+		xEnd = 0;
+	if(yEnd < 0)
+		yEnd = 0;
+	if(xEnd > dim - 1)
+		xEnd = dim - 1;
+	if(yEnd > dim - 1)
+		yEnd = dim - 1;
+
     xPoint2 = (int) xEnd;
     yPoint2 = (int) yEnd;
 
@@ -441,70 +460,6 @@ void generate_linear_smearing_kernel(double *smear_kernel, double x_origin, doub
     }
 }
 
-void generate_linear_smearing_kernel_old(double *smear_kernel, double x_origin, double y_origin,  double x, double y, unsigned int dim)
-{
-
-	unsigned int x0, x1, y0, y1;
-	int dx, dy, err, e2, sx, sy;
-
-	x0 = (unsigned int) (dim/2) + floor(x_origin);
-	y0 = (unsigned int) (dim/2) + floor(y_origin);
-	x1 = (unsigned int) (dim/2) + floor(x);
-	y1 = (unsigned int) (dim/2) + floor(y);
-
-    if(x0 > (dim-1)){
-        x0 = dim-1;
-    }
-    if(x0 < 0){
-        x0 = 0;
-    }
-    if(x1 > (dim-1)){
-        x1 = dim-1;
-    }
-    if(x1 < 0){
-        x1 = 0;
-    }
-    if(y0 > (dim-1)){
-        y0 = dim-1;
-    }
-    if(y0 < 0){
-        y0 = 0;
-    }
-    if(y1 > (dim-1)){
-        y1 = dim-1;
-    }
-    if(y1 < 0){
-        y1 = 0;
-    }
-
-	dx =  abs(x1 - x0);
-	sx = x0 < x1 ? 1 : -1;
- 	dy = -abs(y1 - y0);
-	sy = y0 < y1 ? 1 : -1;
-    err = dx + dy; /* error value e_xy */
-
-    if(err < 1){
-        SET_PIXEL(smear_kernel, dim, x0, y0, 1);
-        return;
-    }
-
-    for(;;){  /* loop */
-        SET_PIXEL(smear_kernel, dim, x0, y0, 1);
-		if(x0 == x1 && y0 == y1)
-		    break;
-
-        e2 = 2 * err;
-
-        if(e2 >= dy){
-  		    err += dy;
-  		    x0 += sx;
-		} /* e_xy+e_x > 0 */
-		if (e2 <= dx){
-  		    err += dx;
-  		    y0 += sy;
-		} /* e_xy+e_y < 0 */
-    }
-}
 /**
  * @brief function that generates a linear smearing kernel and convolves it with a given star-map
  *
@@ -521,3 +476,67 @@ void smear_star_image(double *smeared_image, double *starmask, double *smear_ker
 {
 	convolve_starmask_fast(smeared_image, starmask, smear_kernel, width, height, width_kernel, height_kernel);
 }
+
+/**
+ * @brief Function for generating Shot noise. The mean is subtracted in order to keept the signal
+ * in the image consistent. 
+ *
+ * @param signal: combined stellar and bkgr flux of the image
+ * @param[out] shot_noise: buffer for the output array
+ * @param width: width of the image buffers
+ * @param height: height of the image buffers
+ *
+ *
+ */
+void generate_shot(double *signal, double *shot_noise, unsigned int width, unsigned int height)
+{
+    unsigned int i;
+    double matrix;
+
+    for(i = 0; i < width*height; i++)
+    {
+        random_poisson_trm(&matrix, signal[i], 1);
+		shot_noise[i] = matrix;
+    }
+}
+
+double smear_buffer[50*50];
+
+/**
+ * @brief Function for inverting and normalizing the smearing kernel so that the end 
+ * point is centered note that this function is designed for the downsampled kernel with size 25*25
+ *
+ * @param[out] smear: smearing kernel
+ * @param x_smear: endpoint of the smear in x dim
+ * @param y_smear: endpoint of the smaer in y dim
+ * @param dim: dimension of the kernel
+ *
+ */
+void shift_smear(double *smear, double x_smear, double y_smear, unsigned int dim)
+{
+	int x_diff, y_diff;
+	unsigned int i, j;
+	double sum = 0;
+
+	x_diff = (int) - x_smear;
+	y_diff = (int) - y_smear;
+
+	bzero(smear_buffer, 50*50);
+
+	for(i = 0; i < dim; i++){
+		for(j = 0; j < dim; j++){
+			if((i+x_diff) >= 0 && (i+x_diff) < dim){
+				if((j+y_diff) >= 0 && (j+y_diff) < dim){
+					SET_PIXEL(smear_buffer, 50, i+x_diff,  j+y_diff, smear[i + dim*j]);
+				}
+			}
+		}
+	}
+
+	for(i = 0; i < dim; i++){
+		for(j = 0; j < dim; j++){
+			smear[i + dim*j] = smear_buffer[i + 50*j];
+			sum = sum + smear[i + dim*j];
+		}
+	}	
+}
\ No newline at end of file
diff --git a/src/detector_features.h b/src/detector_features.h
index f045f0ff52628166a976f6433b544d1b599e84f6..e09b5d27b9689c77885130f363576abe1194583c 100644
--- a/src/detector_features.h
+++ b/src/detector_features.h
@@ -47,6 +47,10 @@ void smear_star_image(double *, double *, double*, unsigned int, unsigned int, u
 
 void generate_linear_smearing_kernel(double *, double, double,  double, double, unsigned int);
 
+void generate_shot(double *, double *, unsigned int, unsigned int);
+
+void shift_smear(double*, double, double, unsigned int);
+
 #ifdef __cplusplus
 }
 #endif
diff --git a/src/fcu_algorithms.c b/src/fcu_algorithms.c
index 1cdd5adbbc0b98fd9e7c93b1c281c7866597f4ce..596568e3f41e9d542d41159bd41884e0419003fe 100644
--- a/src/fcu_algorithms.c
+++ b/src/fcu_algorithms.c
@@ -1,8 +1,8 @@
 /**
 * @file    fcu_algorithms.c
 * @author  Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date    September, 2023
-* @version 0.5
+* @date    November, 2023
+* @version 1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
@@ -327,6 +327,45 @@ void check8 (unsigned int *image, unsigned int *sum, int *is_target, unsigned in
     return;
 }
 
+/**
+ * @brief Aggressive thresholding method using mean and 1 sigma
+ *
+ * This thresholding method determines the mean and standard deviation of the image and
+ * subtracts it from every pixel. This only leaves statistical outliers and helps with
+ * guiding of fainter stars on the image outside as the background is greatly redused.
+ * Note that this can lead to significant changes to the measured singal 
+ *
+ * @param[out] image: input array to be processed
+ * @param dimX: x dimension of the image
+ * @param dimY: y dimension of the image
+ *
+ */
+
+void std_threshold(unsigned int *image, unsigned int dimX, unsigned int dimY){
+    unsigned int mean, std, i;
+    unsigned long sum, sumSquare;
+
+    sum = 0;
+    sumSquare = 0;
+    for(i = 0; i < dimX*dimY; i++){
+        sum = sum + image[i];
+        sumSquare = sumSquare + (image[i] * image[i]);
+    }
+   
+    if(dimX == 0 || dimY == 0){
+        return;
+    }else{
+        mean = (unsigned int) (sum / (dimX * dimY));
+        std = (unsigned int) sqrt((sumSquare / (dimX * dimY)) - (mean*mean));
+    }
+    for(i = 0; i < dimX*dimY; i++){
+        if(image[i] < (mean + std))
+            image[i] = 0;
+        else
+            image[i] = image[i] - (mean + std);
+    }
+}
+
 /**
  * @brief Algorithm for target identification
  *
@@ -997,7 +1036,7 @@ struct valpack CheckRoiForStar (unsigned int *data, unsigned int x_dim, unsigned
 
     pearson_x = pearson_r(x_strip, ref_x, 25);
     pearson_y = pearson_r(y_strip, ref_y, 25);
-
+ 
     if ((pearson_x*pearson_y) < PearsonLimit || pearson_x <= 0.0 || pearson_y <= 0.0){
         package.index = 106;
     }
@@ -1293,6 +1332,7 @@ struct coord ArielCoG (unsigned int *img, unsigned int rows, unsigned int cols,
     res.x = x_start + x_roi;
     res.y = y_start + y_roi;
 
+    
     res.validity = CheckRoiForStar (img, rows, cols, CenSignalLimit, CenSigmaLimit, PearsonLimit,fgs , res.x, res.y);
 
     if(res.validity.index > 99){
@@ -1340,8 +1380,9 @@ struct coord SourceDetection(unsigned int *data, unsigned int xdim, unsigned int
     unsigned int source_br[target_number];
     int target[target_number];
     int pos_x, pos_y, flag;
-    unsigned int tmp_br = 0, sum = 0, th = 0, mean, i; /*tmp_br is a placeholder for the brightnes check*/
+    unsigned int tmp_br = 0, sum = 0, mean, i; /*tmp_br is a placeholder for the brightnes check*/
     struct coord result;
+    unsigned int th = 0;
 
     flag = 0;
 
@@ -1454,13 +1495,13 @@ struct coord SourceDetection(unsigned int *data, unsigned int xdim, unsigned int
             printf("\n");
     }
 #endif
-
+    
     th = GetMin(roi, ROISIZE*BIN*ROISIZE*BIN);
 
     for (i=0; i < (ROISIZE*BIN*ROISIZE*BIN); i++){
         roi[i] = roi[i] - th;
     }
-
+    
     result = ArielCoG(roi, ROISIZE*BIN, ROISIZE*BIN, iter, mode, fwhm_x, fwhm_y, fgs, CenSignalLimit, CenSigmaLimit, PearsonLimit);
     result.x = result.x + (float) (pos_x*BIN);
     result.y = result.y + (float) (pos_y*BIN);
diff --git a/src/fcu_algorithms.h b/src/fcu_algorithms.h
index 6e4515b7dca9bd87b3b4e784c96664f57a40d163..4998641a73d74093e846bd1f40fb5ab1a93a0d89 100644
--- a/src/fcu_algorithms.h
+++ b/src/fcu_algorithms.h
@@ -26,6 +26,8 @@ struct coord{
 
 void MinMaxU32(unsigned int *, unsigned int, unsigned int *, unsigned int *);
 
+void std_threshold(unsigned int *, unsigned int, unsigned int);
+
 int MedFilter3x3 (unsigned int *, unsigned int, unsigned int, unsigned int, unsigned int *);
 
 struct valpack CheckRoiForStar(unsigned int *, unsigned int, unsigned int, unsigned int, unsigned int, float, unsigned int, double, double);
diff --git a/src/utilities.c b/src/utilities.c
index c3be04e575931b417116bfbd00f080be07c62015..b6292e13dbf4d2040ae5247ddfa5be86ce9bb056 100644
--- a/src/utilities.c
+++ b/src/utilities.c
@@ -1,8 +1,8 @@
 /**
 * @file    utilities.c
 * @author  Gerald Mösenlechner (gerald.moesenlechner@univie.ac.at)
-* @date    September, 2023
-* @version 0.5
+* @date    November, 2023
+* @version 1.0
 *
 * @copyright
 * This program is free software; you can redistribute it and/or modify it
diff --git a/test/DetectorFeatureTest.cpp b/test/DetectorFeatureTest.cpp
index 65a5e078d885357570f2dfc9706a3dfb42dfba9e..c152e9aabd5af7a570578614a060d16baa916571 100644
--- a/test/DetectorFeatureTest.cpp
+++ b/test/DetectorFeatureTest.cpp
@@ -292,7 +292,7 @@ void DetectorFeaturesTest::testSmear()
     generate_linear_smearing_kernel(kernel, 0, 0, 10, 10, 125);
     std::cout << "Check endpoints of smear in positive smear direction.\n";
     CPPUNIT_ASSERT(kernel[62 + 125*62] > 0.0);
-    CPPUNIT_ASSERT(kernel[71 + 125*71] > 0.0);
+    CPPUNIT_ASSERT(kernel[72 + 125*72] > 0.0);
 
     for(i = 0; i < 125*125; i++){
         kernel[i] = 0.;
@@ -302,7 +302,7 @@ void DetectorFeaturesTest::testSmear()
     std::cout << "Check endpoints of smear in negative smear direction.\n";
     CPPUNIT_ASSERT(kernel[62 + 125*62] > 0.0);
     CPPUNIT_ASSERT(kernel[52 + 125*52] > 0.0);
-
+    
     for(i = 0; i < 125*125; i++){
         kernel[i] = 0.;
     }
diff --git a/test/FGS1_270nm.txt b/test/FGS1_270nm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4b8a92007e7e49b9f90ad46cb22d785e2b3149cd
--- /dev/null
+++ b/test/FGS1_270nm.txt
@@ -0,0 +1,1600 @@
+4.475583015145683615e-06
+3.099116144399148833e-06
+8.689608562107049002e-07
+3.847668315456317790e-06
+2.859666513809812930e-06
+3.073771968927210194e-06
+7.220798173947786255e-06
+2.879188222189616105e-06
+3.481412765640666779e-06
+3.655084561441911658e-06
+1.980858409832500155e-06
+2.885503351117870276e-06
+6.742976374760483672e-06
+8.712305499022316926e-06
+1.285489384609573279e-05
+1.112109594364922399e-05
+1.212373472327572143e-05
+4.042077126910502871e-05
+5.954310192401486438e-05
+6.293034828135415091e-05
+3.387302755615286779e-05
+1.179453459063486116e-05
+6.759788409486571984e-06
+2.583682615171430649e-06
+1.343650913984784295e-06
+2.630600711362915074e-06
+1.449543835932854891e-06
+3.350542342762748096e-06
+6.310755451699383319e-06
+6.842687767810878964e-06
+3.578168291148889929e-06
+3.693282310922317510e-06
+3.671149091823129869e-06
+2.596375501167529774e-06
+4.551204503282400433e-06
+4.625077500267443980e-06
+6.453006882623988066e-06
+4.931976733403043419e-06
+3.938461496928987353e-06
+4.577848816358288664e-06
+2.668234050650322024e-06
+2.832726187160150445e-06
+1.125243131201025812e-06
+2.017113995339390194e-06
+4.245522473933675040e-06
+2.257901416032300400e-06
+4.676906444261114145e-06
+5.923822076573583576e-06
+7.756168166236888321e-06
+1.009953890736187898e-05
+1.901680979342562647e-06
+4.733099555226219443e-06
+4.500269590950158300e-06
+1.101621764484462709e-05
+1.439788382946414900e-05
+9.240545439398856865e-06
+1.920678441622001328e-05
+3.039723800590593203e-05
+6.586679187843821133e-05
+1.062602944176835134e-04
+7.657988409667947798e-05
+3.298976704781460013e-05
+6.756173391006721563e-06
+5.230773862101363811e-06
+4.196168442895552086e-06
+4.581030746662365570e-06
+9.883147975674567238e-06
+2.249190589780368971e-06
+2.585803380621890596e-06
+3.345257449287844761e-06
+6.610544700765330276e-06
+6.501406728441464225e-06
+5.649980058298474490e-06
+2.139084966135610268e-06
+5.593912245068183802e-06
+3.438722398456517235e-06
+3.537306439134520434e-06
+3.570257469351987214e-06
+3.480163042339920383e-06
+1.809469022606792660e-06
+2.486669544416808296e-06
+2.394336657036591805e-06
+2.044283568153945444e-06
+5.691006219853085024e-06
+5.663913297509970957e-06
+4.316225001609369712e-06
+4.331152673389496120e-06
+5.922862662378852374e-06
+6.556149555359966219e-06
+5.351571022443698573e-06
+1.906069616862668280e-06
+7.313188490920890928e-06
+4.799929682598451944e-06
+7.980441468984591881e-06
+8.682629085662071488e-06
+1.395406944400981506e-05
+2.671089763712195425e-05
+4.859957528118069765e-05
+1.019566513179706103e-04
+9.299865021129622886e-05
+7.706669592202467541e-05
+2.811396196670783577e-05
+1.081057718794875888e-05
+2.974079202535039562e-06
+3.432337020834203977e-06
+2.153970592278127173e-06
+5.297152061029897227e-06
+4.170281886339572389e-06
+6.082840105186924630e-06
+1.000638669456449054e-05
+9.307700937107099014e-06
+5.855717948062034147e-06
+3.544666569366828249e-06
+2.959977209671220512e-06
+3.571860884068674507e-06
+2.261015188737877579e-06
+5.840102737244714038e-06
+2.567029013211756382e-06
+5.668632639261308554e-06
+2.340470345436588919e-06
+1.766615434295692459e-06
+4.802112028199519619e-06
+7.366448122952498045e-06
+6.589573675314093251e-06
+3.776951850589024637e-06
+4.826924194755571806e-06
+3.518695757778760441e-06
+5.992941181152688731e-06
+4.822631640052201581e-06
+3.926883755162059516e-06
+4.968868856155113415e-06
+7.631776507408307090e-06
+1.158165587001810428e-05
+1.742371394987274149e-05
+1.162695139561509139e-05
+2.235068416278778139e-05
+1.647111682382267512e-05
+5.740882704089306221e-05
+1.011191853970293584e-04
+9.768935205653448447e-05
+5.322206580758990005e-05
+1.917507036644921110e-05
+3.723872057094992419e-06
+5.066091364448601449e-06
+2.995841426182823064e-06
+7.631907356503709044e-06
+6.911501915043502852e-06
+2.700935203733526463e-06
+5.233732576997444798e-06
+4.175922386281781399e-06
+7.909839164915647948e-06
+3.961118148528391271e-06
+1.004641426072234940e-05
+4.322302597649183940e-06
+2.169653932215988239e-06
+5.005817795798498663e-06
+5.069117808314302270e-06
+2.316480369397448204e-06
+1.618834379378807693e-06
+3.601015681198432229e-06
+2.828563009057446914e-06
+3.635623626901400516e-06
+2.402183538973136093e-06
+1.784999935813360991e-06
+5.889869405593261887e-06
+2.397005710526235574e-06
+4.700172950142016761e-06
+4.258450199460462621e-06
+8.357086183970624752e-06
+4.124395408807175943e-06
+8.658068325899948296e-06
+1.065124607934684787e-05
+7.891639845276804838e-06
+9.931762450172578182e-06
+1.071129128901339021e-05
+2.988019214103306308e-05
+1.480876593592750042e-05
+4.349979656274322720e-05
+1.238999542418233227e-04
+1.073027106319180942e-04
+7.017027838336391472e-05
+3.017045304501452582e-05
+3.652638116020459410e-06
+4.375261012564381318e-06
+5.248105892838690072e-06
+7.126728509603727672e-06
+6.925184762835269128e-06
+5.348804542493200283e-06
+6.152301235030723454e-06
+3.095692926616112947e-06
+4.437807634853932506e-06
+5.208082199819079658e-06
+4.048407791198331977e-06
+9.292229325241393504e-06
+2.852433861004418874e-06
+3.020223994709979533e-06
+3.352972999509414839e-06
+2.685855946241067326e-06
+3.839047151335622880e-06
+3.500847153395965305e-06
+4.676732746613664820e-06
+4.391287447275193050e-06
+3.295358891432393686e-06
+4.650775035367809421e-06
+5.918528792435316917e-06
+5.649692368445087586e-06
+7.440223281911659442e-06
+2.114241238829625893e-06
+4.603332245446421527e-06
+4.479863812106469181e-06
+4.612840505904600678e-06
+8.821187787080330260e-06
+6.564765220300112944e-06
+1.181305989775080506e-05
+7.370941466222947843e-06
+2.023567437560541932e-05
+1.962265226163142803e-05
+3.852573378615581492e-05
+1.817576965221118527e-04
+1.901639914348083845e-04
+6.390600539155636339e-05
+2.447568242518485162e-05
+3.851868447238963154e-06
+7.027940744471454803e-06
+1.855698184087168048e-05
+9.905182251554130369e-06
+6.726846018554465625e-06
+1.016920513336232159e-05
+3.303062783713575252e-06
+3.469209158713475059e-06
+5.397734263293230412e-06
+6.067867796641322979e-06
+3.269054176051650343e-06
+6.325114215677804461e-06
+4.477771548282248587e-06
+9.010337452867497114e-06
+4.168623725115262312e-06
+1.975661562898166737e-06
+9.454879296809361327e-06
+5.541939622714069300e-06
+2.990788697900279338e-06
+1.570909495879146187e-06
+1.179364163777086244e-06
+1.029026630914592349e-05
+7.151125189315945642e-06
+1.840866917747843886e-06
+7.882868225658365449e-06
+2.994938490455895980e-06
+1.674982526875375502e-06
+7.800327027488898507e-06
+6.386169679733584494e-06
+1.095432200182520995e-05
+4.445584356745628545e-06
+1.687817871976169016e-05
+4.486512241974368245e-06
+1.826851741820804988e-05
+1.694187763900182985e-05
+3.806585080823855446e-05
+2.097535440853845706e-04
+2.214003948585674343e-04
+6.801041008617399728e-05
+7.954802645752546224e-06
+1.134011595475754828e-05
+6.107754168895870293e-06
+8.200291447832887569e-06
+1.816378140559487785e-05
+5.390084162605121401e-06
+5.218842396240845310e-06
+7.001927928507429824e-06
+1.149396285484725965e-05
+6.689241971941342594e-06
+5.461041659234883427e-06
+5.437237992498764310e-06
+5.327604769771369475e-06
+6.618812669961367315e-06
+7.716047688519415520e-06
+2.355134251567265543e-06
+1.249845678770873439e-06
+3.951094910725499517e-06
+2.721794721682553702e-06
+6.145669837108575268e-06
+1.097042870744073250e-06
+3.915544483631227307e-06
+6.958736034739367463e-06
+3.854850832199298890e-06
+1.922879793023825462e-06
+2.664467499189292398e-06
+3.503541020107378934e-06
+2.176299645104887781e-06
+7.225423135757364405e-06
+4.159318722913839363e-06
+7.783082676718346105e-06
+1.235576050811794492e-05
+1.423354735473298061e-05
+1.089428872739920865e-05
+2.685564807976321101e-05
+1.570110482738606083e-05
+3.009163558161135558e-05
+2.714496703376887278e-04
+2.951048987351585860e-04
+3.822457280692274218e-05
+9.094012921888417551e-06
+4.609273934758075598e-06
+4.543777763776333151e-06
+7.937700986229917157e-06
+1.286486217046105449e-05
+7.606512543696979589e-06
+7.670388928156119117e-06
+1.280667008061145659e-05
+1.045830701368349738e-05
+1.003405744063288182e-05
+7.165969127407775220e-06
+4.626238943515643360e-06
+5.302976045039288051e-06
+2.943761168379558685e-06
+4.472029867886879651e-06
+1.564167158362065580e-06
+4.063825471679944392e-06
+2.975497217058822307e-06
+2.006187326758891898e-06
+3.460362542653322660e-06
+3.934220119386856241e-06
+3.353961876950139912e-06
+7.987782094029228190e-06
+3.324181696898333037e-06
+3.609381980724224155e-06
+5.829528675310958276e-06
+5.132413329359670250e-06
+7.477679346291131826e-06
+6.411191364884461781e-06
+5.256108809053313565e-06
+5.739565085951326785e-06
+7.848048615693935904e-06
+1.015501231981464630e-05
+2.011917462878809923e-05
+1.243887667992785623e-05
+1.053920724374711519e-05
+1.262140096864830557e-05
+2.762884338472858096e-04
+4.185534440833794468e-04
+2.874273641766153482e-05
+8.236046885514068674e-06
+5.985895074388816357e-06
+1.243810758955201378e-05
+1.061988159587726271e-05
+1.570929652413649786e-05
+1.128044221842252382e-05
+5.858774884984452688e-06
+7.248339841828637634e-06
+1.144614330952922011e-05
+5.115526172972265126e-06
+3.524752286623044866e-06
+6.115364607859807023e-06
+2.784474500668595309e-06
+2.421934736463507291e-06
+3.318862263993557482e-06
+1.855275767580572606e-06
+6.218106077994109778e-06
+1.504639906100027056e-06
+6.687694625339198394e-06
+8.639801298761111729e-06
+6.463011899516525629e-06
+2.916778372210882054e-06
+3.156181706372400448e-06
+7.437929411926128500e-06
+1.193291772127857552e-05
+4.385178906332565773e-06
+4.439747179899461923e-06
+3.620768918348856272e-06
+5.787703312308944919e-06
+6.231956924332606782e-06
+5.072687365042510420e-06
+5.489213694723540430e-06
+1.600652647795705426e-05
+1.026311260872828405e-05
+8.991742773929959029e-06
+1.349937681486366343e-05
+2.762955023410276650e-05
+3.073145244586163931e-04
+5.470738733848242320e-04
+3.039235064505479389e-05
+1.932348237321820675e-05
+1.122331568127580684e-05
+1.119561321144595837e-05
+2.674677163253271584e-05
+2.895880999364707195e-05
+1.372505277164082869e-05
+1.050007046196150093e-05
+6.615317844509380138e-06
+6.558163046212277621e-06
+6.135190472110003632e-06
+5.286428627604710889e-06
+6.217571023866219098e-06
+2.911121667417511747e-06
+3.799464099328805170e-06
+1.182296380711970675e-06
+4.262304822763323817e-06
+2.268567882963813734e-06
+1.717588398806690173e-06
+1.768032103843496521e-06
+6.263372033045448947e-06
+2.467265227928300928e-06
+2.616550917255173128e-06
+8.294984135757819981e-06
+1.186611769255035966e-05
+7.356823762681025531e-06
+3.115737305262700695e-06
+1.212244406362327356e-05
+5.813272974433169582e-06
+9.337536406113497431e-06
+8.305793733967120393e-06
+4.946342462663914222e-06
+5.537289724497231110e-06
+1.360357707426143516e-05
+8.188394995112225914e-06
+1.563220049418352357e-05
+2.860472416910800328e-05
+1.419206222298894866e-05
+3.557967377819784343e-04
+9.546811977556644672e-04
+1.010009636929700848e-04
+1.579965793931710849e-05
+2.042670398878101783e-05
+1.729594558856638431e-05
+1.835090002830978666e-05
+2.335236115021673976e-05
+1.165487308370004889e-05
+1.939612780499360369e-05
+9.941667372066054011e-06
+7.398112229445561085e-06
+1.110524033943851054e-05
+3.500135760486056594e-06
+4.327507210695464204e-06
+2.440681708388890948e-06
+6.889975783173501175e-06
+4.848928003557442870e-06
+2.408069849022524377e-06
+3.924222616129925891e-06
+2.616840960456874762e-06
+2.805953175240549713e-06
+9.772489945031282918e-06
+1.374215670929825120e-06
+3.442645100656500925e-06
+2.752216716613638692e-06
+8.541426148285935092e-06
+6.397491952274752687e-06
+4.780166377555086837e-06
+7.777773863559249315e-06
+6.789356645384473252e-06
+8.079216335688375357e-06
+1.752039936680044828e-05
+1.251947821605981992e-05
+1.674319532702342442e-05
+2.171092058675517294e-05
+1.183500226942324357e-05
+1.682213410965106363e-05
+1.631101336935940528e-05
+2.763507064485158039e-05
+3.878671288239133067e-04
+1.448260686124573215e-03
+1.705192595254570041e-04
+3.322760772418189673e-05
+2.529136242833650362e-05
+2.706449212929992119e-05
+3.634136072730301866e-05
+2.463556499247462320e-05
+1.453323140100261216e-05
+1.118852190940668198e-05
+1.176253774690076698e-05
+1.084204021957803986e-05
+7.316268613149799588e-06
+1.297506929324715741e-05
+8.663996369060623242e-06
+1.845907533339582802e-06
+3.426417439053533515e-06
+3.649600921718184435e-06
+5.044263616806473913e-06
+6.888867579330490700e-06
+3.027892869886068164e-06
+2.101019420126944421e-06
+1.206283836024189754e-05
+2.879040463571248988e-06
+5.787705039562168825e-06
+1.351623758523099493e-06
+5.887398097325362226e-06
+7.990691745864124818e-06
+6.196950389395218428e-06
+5.807454070563964198e-06
+6.966010862720970413e-06
+1.652262872727965610e-05
+7.614227659802992681e-06
+1.607804250827549205e-05
+1.335118037104858688e-05
+1.467936497530732908e-05
+2.079549049676938081e-05
+2.396468951831089980e-05
+2.946828364611168104e-05
+5.758887023985967776e-05
+4.173988144135106740e-04
+1.872897395081381559e-03
+3.750023796596933714e-04
+4.135149147924103053e-05
+2.188607466053546835e-05
+1.650596979579238305e-05
+1.843643135000737321e-05
+2.100370954120758316e-05
+2.066065762910805574e-05
+1.163962638354900441e-05
+2.588243261812779112e-05
+1.318063245878270870e-05
+1.531022827510112021e-05
+5.182116505420449320e-06
+8.256392020096963791e-06
+4.571146936900521552e-06
+4.552540593065149759e-06
+8.159921531048600920e-06
+3.432249737380616205e-06
+4.429050571498401841e-06
+4.461276124913105075e-06
+5.679541857756762218e-06
+5.520837665195665758e-06
+3.064634162751959319e-06
+4.868531283968607727e-06
+3.648464878150261694e-06
+5.548729189522097370e-06
+8.407592258785518297e-06
+2.493518174826406845e-06
+6.527133098615947262e-06
+1.395547251660381790e-05
+1.058046742936778517e-05
+1.548649825143861271e-05
+1.919294133571181451e-05
+1.670825915023856431e-05
+1.331113123229964481e-05
+2.862030390642001548e-05
+1.737107507410132082e-05
+2.477091934207326871e-05
+9.352612773371802419e-05
+6.859635525333829167e-04
+1.958151438079710517e-03
+8.845376613514355484e-04
+1.569223448113617951e-04
+5.762482304655529622e-05
+3.318860652078934334e-05
+1.749090949705596912e-05
+1.482582380211230910e-05
+1.891694868119846826e-05
+1.848694586796134303e-05
+1.645237131509018745e-05
+1.615019904180263168e-05
+2.041786770935699756e-05
+9.570535818982692274e-06
+7.750578440711425191e-06
+7.555072779645325104e-06
+2.224252603126331306e-06
+7.937523427630861018e-06
+5.003560850181195500e-06
+7.178381471243180595e-06
+1.834259078348419332e-06
+2.006913442347385637e-06
+3.361037186486410035e-06
+5.037592076684979775e-06
+4.442303649255193044e-06
+1.215938572104111263e-05
+4.771384346788353399e-06
+2.429657587633271684e-06
+5.824510454020174532e-06
+1.295322285833299029e-05
+6.188550086317520377e-06
+1.734694580210177081e-05
+8.353989107715953282e-06
+1.466139825713735387e-05
+2.180293519729898120e-05
+1.627308650434300372e-05
+2.052470665837221125e-05
+3.079554468142588387e-05
+8.351166757156696209e-05
+2.765214927759440775e-04
+7.946051300543478108e-04
+1.609400880903494660e-03
+2.734142027474324634e-03
+9.995281681619574109e-04
+1.359284133022984221e-04
+5.839843050615743474e-05
+3.056080378722474578e-05
+2.068037302626460336e-05
+2.208840027844289456e-05
+1.062446205057130495e-05
+1.796648218734899592e-05
+1.061399726916285107e-05
+1.690467151690068880e-05
+1.287165468186763636e-05
+1.756084811215170667e-05
+7.759117897729801873e-06
+5.177822751951219534e-06
+6.089302984252736106e-06
+5.490064705526465217e-06
+6.253056816603325000e-06
+4.404659028474000879e-06
+2.535675568351241292e-06
+4.141126356778088212e-06
+2.467099561064654930e-06
+7.577454473664233285e-06
+6.112192232553365239e-06
+7.175879773036193276e-06
+4.020008338406326803e-06
+7.626285180288495363e-06
+1.132722339186498876e-05
+7.733184670893481275e-06
+8.705761400994461036e-06
+1.637298523478290259e-05
+2.448081194220825385e-05
+2.470202431227797851e-05
+2.926800232181756830e-05
+2.118997194341643269e-05
+3.923598782751962514e-05
+3.955568541427263067e-05
+8.351103406274893413e-04
+1.949266338726804047e-03
+2.765168662694055153e-03
+6.682996263460627522e-03
+3.450160878935678872e-03
+5.958881963412989433e-04
+6.311093454574002667e-05
+6.366213545223978502e-05
+5.524468090125049123e-05
+4.325200675160861591e-05
+1.839584251232608160e-05
+1.388888971779698006e-05
+1.205203058886343190e-05
+1.429378355915752825e-05
+7.211070064452641825e-06
+1.034995936264766826e-05
+1.037248185072564912e-05
+8.493822248692198840e-06
+5.436777223317963722e-06
+6.221945715847947332e-06
+3.290526694557083130e-06
+4.861597199721786282e-06
+2.664251163683608986e-06
+3.780652840660062383e-06
+2.308214187768757033e-06
+5.200671401994693602e-06
+4.661073071695333135e-06
+5.293470376104308209e-06
+8.936133614082767025e-06
+6.253843124128919578e-06
+9.773961216262652910e-06
+1.334291987273831951e-05
+9.806552556305710817e-06
+1.951372994157310855e-05
+1.915872614864141192e-05
+2.199683179997751994e-05
+1.951098838499678017e-05
+3.408796853121931703e-05
+7.815871975144355081e-05
+1.732035459472664818e-04
+1.707488889794270227e-03
+4.529774477316564178e-03
+8.113373374531723456e-03
+1.365435617755591038e-02
+8.324714157236321604e-03
+2.007751227722063755e-03
+3.189310012949954690e-04
+1.262298939717696313e-04
+6.018852163035655144e-05
+2.696611588790128432e-05
+1.303604639339502254e-05
+1.748295286219028388e-05
+1.835570765572802206e-05
+1.422064621804236901e-05
+7.510154247819008280e-06
+1.247425147454994047e-05
+9.095910654193199238e-06
+9.403544960069171551e-06
+2.905664738637391626e-06
+7.738267711564758756e-06
+6.496205690506295994e-06
+2.566664922786657229e-06
+1.767308377342682429e-06
+9.213082057067142991e-07
+2.842467214823679581e-06
+7.199963008650309709e-06
+2.347306045302213064e-06
+6.019354876664745234e-06
+1.059202179522910034e-05
+4.866016211313244767e-06
+6.130593036185146104e-06
+1.049850756372903105e-05
+5.288748662291974365e-06
+1.696250222665945839e-05
+2.308060258202524156e-05
+3.139548596004916543e-05
+3.918756812431319449e-05
+6.370305919170287290e-05
+2.127660994494355866e-04
+6.860012985332565941e-04
+2.542613398178850126e-03
+1.067655819287752911e-02
+2.565638951406028906e-02
+2.931073646597071036e-02
+1.912987901763962828e-02
+5.320526593450429324e-03
+1.139835779430826588e-03
+3.351460769546432119e-04
+7.785331810434187360e-05
+3.839731006465439738e-05
+2.801457936935620812e-05
+1.055599343815697336e-05
+1.877516998869201937e-05
+1.138582401826264119e-05
+9.507517123205721000e-06
+9.002730023750065005e-06
+1.062728311431417832e-05
+8.840673748355176977e-06
+5.538962333850910963e-06
+2.357932621706095529e-06
+3.820905664171951421e-06
+2.699800707470055950e-06
+3.076593055219356348e-06
+1.065583303341814965e-06
+4.919604638394306936e-06
+3.074583992440219668e-06
+5.624656631220960009e-06
+4.523266843677265165e-06
+5.277685694563556725e-06
+9.118192757111966837e-06
+1.444402544863589738e-05
+6.331258028520445474e-06
+5.084393295299388775e-06
+2.664038351214558658e-05
+4.798986378863452992e-05
+5.641796535802357968e-05
+7.909182693483024159e-05
+2.933438503780689058e-04
+8.924221528215175135e-04
+2.395942849149667112e-03
+1.027945423144611958e-02
+2.869170713642415008e-02
+4.235746000258350241e-02
+3.732963183728645745e-02
+2.660113323329081278e-02
+1.275744857432250037e-02
+2.270305530684733810e-03
+3.533910410825599801e-04
+1.089917636140045622e-04
+5.037800985355954863e-05
+5.551672068608207557e-05
+3.653160693162203223e-05
+2.229440458499391191e-05
+1.194812125589834930e-05
+1.749247961039082541e-05
+4.487098969325350183e-06
+1.733144758122655792e-05
+1.198892488672201974e-05
+5.723409122935108248e-06
+3.769825626312325073e-06
+2.209599252071880301e-06
+1.285699521463380267e-06
+3.456166639492204329e-06
+3.198870713439589713e-06
+4.605207710920658520e-06
+4.573693771774834714e-06
+7.337523448980076395e-06
+4.723746827374800976e-06
+6.980641545134491849e-06
+5.751414893339940821e-06
+1.665832170830014845e-05
+5.896924397868142399e-06
+1.954419437286674798e-05
+3.116713867680163139e-05
+7.870826122157592456e-05
+1.407566029673903919e-04
+2.389654842251110443e-04
+3.807775602442832604e-04
+6.243288493990777153e-04
+5.467105981434247121e-03
+2.217384749430488522e-02
+3.238611959090212378e-02
+2.888439918775075055e-02
+2.727297151900379135e-02
+1.910160154152729106e-02
+1.174802200752582057e-02
+4.849603662097030053e-03
+2.981652750258701086e-03
+1.150300443035086632e-03
+3.300573515457640443e-04
+1.370415382787572517e-04
+5.684248185574996458e-05
+3.673817989652345870e-05
+1.422697860174565930e-05
+2.140857545012675762e-05
+9.491581358037666104e-06
+1.946633552547705434e-05
+6.645037867730276386e-06
+5.305479082220668597e-06
+1.016549361472637759e-05
+2.050897400578391385e-06
+3.245549972084743211e-06
+1.693134715023300578e-06
+4.293028003488444365e-06
+4.804955127078708114e-06
+3.594082949825187448e-06
+5.879322147772919847e-06
+4.539596566795776604e-06
+1.008006785221073938e-05
+3.519275698239315670e-06
+1.428989569943671742e-05
+1.477306584251071304e-05
+2.732298133851311628e-05
+4.217009950773345820e-05
+7.966488167731694504e-05
+1.538464203859059537e-04
+2.223090007022615611e-04
+1.165567878087404819e-03
+4.904265038240569231e-03
+1.351445230604447593e-02
+1.986958885699196056e-02
+2.495398850743314745e-02
+3.017350469576182345e-02
+2.977471698383169635e-02
+2.097021937610406978e-02
+1.210484251942917262e-02
+4.187159347876832569e-03
+2.325728332428110209e-03
+1.396396778316312927e-03
+6.034137022352575918e-04
+2.345941166879044262e-04
+1.014283054818499179e-04
+4.456217155903865421e-05
+2.639139622024495654e-05
+1.199159416911040822e-05
+1.875117932943498955e-05
+7.891548895078252056e-06
+7.107955445821447910e-06
+6.407520660771476805e-06
+3.821072860685540135e-06
+4.762310890936158209e-06
+3.194522620159680079e-06
+1.852229499664668864e-06
+3.909355004698155939e-06
+3.113853853589539326e-06
+3.083772865116647609e-06
+7.603341825520501857e-06
+6.176043495466569199e-06
+6.563594410265011181e-06
+8.073017496789130178e-06
+1.563728538714686346e-05
+2.221193374504129689e-05
+2.597307798514111786e-05
+5.327561663140920349e-05
+7.299860329602923055e-05
+1.610353099488204536e-04
+6.834629716683715463e-04
+2.460156879105958837e-03
+4.029979988872326412e-03
+3.215303662311317420e-03
+4.360259327389650122e-03
+1.869779417282283959e-02
+3.545405274177919341e-02
+3.276149185125336316e-02
+1.994255235014985236e-02
+5.595832303522197196e-03
+9.644116652715673064e-04
+2.144784226855649773e-04
+3.365819385604598962e-04
+2.331909476490607398e-04
+1.511033410795023491e-04
+1.150024312030344142e-04
+3.556064741129471814e-05
+2.692938418028659173e-05
+1.524692553768702617e-05
+1.477857843654041588e-05
+6.082681567756079353e-06
+8.315829751261591827e-06
+1.216620430748504340e-05
+6.856086165852810549e-06
+1.564476115208805354e-06
+1.384506193837302400e-06
+5.728552017192302306e-06
+2.194267832208546808e-06
+2.930224067114354185e-06
+4.542162857332162856e-06
+1.268361564702598411e-05
+5.988192495830062741e-06
+1.040093721006962431e-05
+7.768808304214321891e-06
+1.717644132896078564e-05
+2.287662157099978492e-05
+2.073909911118018937e-05
+4.378827014903750040e-05
+1.172312307003934434e-04
+3.341840035403471172e-04
+8.645920364752778409e-04
+1.455624867543579707e-03
+1.157282041029648791e-03
+3.295245327097222929e-04
+6.462507822664276475e-04
+7.418438558716658297e-03
+3.074159545206386901e-02
+2.818670233919848278e-02
+9.919343587830534853e-03
+1.085950450597957624e-03
+9.697461516283974550e-05
+7.926076222950481154e-05
+4.248880749372409846e-05
+3.843374394942330834e-05
+7.529359257913830492e-05
+5.869236698903329883e-05
+2.022764860154178991e-05
+2.221561623281841167e-05
+2.245477380865298998e-05
+1.297973695124590669e-05
+7.157049728770048042e-06
+1.151403341437677686e-05
+1.069417557245836927e-05
+3.383223087340497991e-06
+3.564612500427581131e-06
+1.865802682904498395e-06
+9.566228328102907986e-06
+4.104276475276852011e-06
+6.717858433714525625e-06
+5.565176521529366317e-06
+1.675097323582165225e-05
+1.064163267731307667e-05
+1.217159898703694619e-05
+7.025927023958079201e-06
+1.490917590435741758e-05
+2.616529228740738949e-05
+2.730213751434128081e-05
+4.556112964231541691e-05
+1.772204757265473623e-04
+3.906916288831588499e-04
+5.845819160439922127e-04
+4.673811553602339581e-04
+1.467744908220679537e-04
+1.497263438690707329e-04
+3.918396498913686936e-04
+3.815332568529223971e-03
+2.364852519174454396e-02
+2.029969997620060390e-02
+3.553124194648660424e-03
+3.486644793593695214e-04
+7.658645900461948444e-05
+6.436830826314132237e-05
+7.102668461184470682e-05
+6.524360469089856196e-05
+5.754843343657588164e-05
+2.332558054987551822e-05
+5.358200179984968744e-05
+3.432216311605626696e-05
+2.585734082522741557e-05
+2.243464557173397494e-05
+1.066613683166157394e-05
+2.036760481682182877e-05
+7.859266538395101728e-06
+3.683594630686425315e-06
+5.058503551488503174e-06
+5.396220387151997994e-06
+8.059265304563722020e-06
+3.517832020139637316e-06
+6.667689024211953602e-06
+8.135562991254341743e-06
+6.571143488084688747e-06
+1.570347181114726515e-05
+1.076788301723653181e-05
+7.857674917430034948e-06
+1.160637001062724040e-05
+3.340123624391886465e-05
+4.714949198654642449e-05
+8.977232176832379822e-05
+2.019229664139755604e-04
+3.267106581977806965e-04
+2.584813587683973358e-04
+8.947545899213681217e-05
+4.196507516053681351e-05
+9.953043062053912261e-05
+1.374220971457397217e-04
+1.096036776247007096e-03
+1.273638074337655850e-02
+1.065874730899721116e-02
+9.179815857268641514e-04
+1.478156933828759167e-04
+6.252866365710748134e-05
+5.711770061877899824e-05
+4.998653033956145658e-05
+4.971561809216988820e-05
+4.703275310403008560e-05
+4.097661481854983974e-05
+4.933152727401421053e-05
+3.916104713508622578e-05
+2.187043760034627796e-05
+1.503477772797399029e-05
+2.390974682355069856e-05
+1.470444307264444781e-05
+1.142596090981208260e-05
+3.010681363618327359e-06
+5.389255417671877297e-06
+9.708559818293205780e-06
+1.122171025771704717e-05
+2.895584709687856584e-06
+4.820656664392342899e-06
+8.244873674217101787e-06
+6.209120800774486738e-06
+1.416901796091855570e-05
+9.652610914168636757e-06
+7.958152439272146863e-06
+2.142888782064634819e-05
+2.397460010805086257e-05
+6.373304031922738912e-05
+1.191347340075245352e-04
+1.493895588328496944e-04
+1.582433376030252569e-04
+8.880914689393619292e-05
+4.588287813091737225e-05
+5.753370797226507467e-05
+6.792792555828314823e-05
+9.116703531673157087e-05
+2.756212719871604239e-04
+5.482939346486294559e-03
+5.151391530356401113e-03
+3.375624351514563905e-04
+1.317090546725689713e-04
+6.767755982742127340e-05
+3.885484870373716895e-05
+2.749459705146175889e-05
+2.966798519120979706e-05
+2.639199824777799976e-05
+2.151797698485623342e-05
+1.766484484861652383e-05
+2.203895461339394298e-05
+1.749319068472347726e-05
+1.907159102478960932e-05
+1.551255848657783561e-05
+9.828275089493364655e-06
+9.848284916290331691e-06
+4.148008556111449254e-06
+9.388408429579716711e-06
+1.200716944760931889e-05
+7.728102751494652937e-06
+5.897190427094509555e-06
+3.670297445712559035e-06
+4.726426613822330979e-06
+1.042552454447562388e-05
+1.714283268451628520e-05
+6.222819771193634897e-06
+1.286406195128202295e-05
+2.508123369667098217e-05
+1.961797846744255266e-05
+4.547595058810745668e-05
+1.004254018582969525e-04
+8.667758051163951510e-05
+5.008353361667228069e-05
+2.982556341260540514e-05
+3.318620280207916349e-05
+5.089219154511150480e-05
+5.965023798840895467e-05
+8.818799884273591304e-05
+3.329453006109248835e-05
+2.801065843644211066e-03
+2.796235841954637300e-03
+1.288066834302344424e-04
+7.000179369808213440e-05
+6.385427791631467895e-05
+2.946870741073314429e-05
+2.262636449609646590e-05
+1.969207191822064349e-05
+1.789658820196409096e-05
+2.566999805913442045e-05
+9.177207157739140865e-06
+2.295214048131270912e-05
+1.898819723303948970e-05
+1.163831903230403615e-05
+1.429342938814012774e-05
+8.077734919610254105e-06
+7.887951173914985664e-06
+5.034919790679798007e-06
+5.869908876590562299e-06
+1.520930990443728303e-05
+3.080009237776385841e-06
+5.930141294009290532e-06
+2.212121776858900060e-06
+4.139433646762813302e-06
+1.133322715409959520e-05
+9.862436329557156011e-06
+1.373560023921671672e-05
+1.193314617776934080e-05
+2.323122073491268696e-05
+3.699337061851799504e-05
+3.972486898644087103e-05
+6.397427892022450335e-05
+5.467568490906263219e-05
+1.627612184240496829e-05
+2.838922892486207405e-05
+3.083651365062768153e-05
+4.163851291978648821e-05
+4.689858265471821212e-05
+8.368859037833313716e-05
+4.131842555653429292e-05
+1.649287995860926424e-03
+1.859302880888303883e-03
+1.711150980783413239e-04
+3.655767927110501738e-05
+6.423769131538943004e-05
+3.490872978826504855e-05
+2.016704880292343192e-05
+1.749206495472129379e-05
+1.642710309990277464e-05
+1.411274248629682719e-05
+1.009287591908491501e-05
+1.504541927283862827e-05
+6.006431032825557820e-06
+1.035701740331768800e-05
+1.278755797330421960e-05
+3.795484238545525764e-06
+6.788286868265805808e-06
+4.634980452957587173e-06
+2.814498088981383976e-06
+7.734714223316876150e-06
+5.353337627529216305e-06
+4.226149940619292438e-06
+4.704275815750067204e-06
+6.139280984920069504e-06
+7.040444407275905110e-06
+7.758106175101909445e-06
+7.741040145172138609e-06
+1.567695130058344979e-05
+9.164525244560304434e-06
+2.643588698016862754e-05
+4.762315362148514258e-05
+4.915006271343918691e-05
+3.908878042823888847e-05
+1.732468002127368541e-05
+1.645096550038772205e-05
+1.388190760227901209e-05
+5.492740371454306927e-05
+4.140171660437188308e-05
+4.645514019156805918e-05
+6.121786417019920595e-05
+1.000977067120840253e-03
+1.340087051404302045e-03
+1.965609402456465612e-04
+5.888458991561142336e-05
+3.736334444358341825e-05
+2.519292546293818900e-05
+2.066978001933864495e-05
+1.252235115247691301e-05
+1.231690161704678503e-05
+1.015052952983205436e-05
+6.841306329907452256e-06
+9.121401076970632541e-06
+1.083772077458943052e-05
+5.552091879177035433e-06
+7.185751078449791091e-06
+1.101146677257852912e-05
+1.081450871220644206e-05
+4.702731174168549069e-06
+5.876021045112367546e-06
+6.618453680615343109e-06
+8.704731577571159766e-06
+3.841085421728506680e-06
+3.369512628041340454e-06
+6.677199614343323495e-06
+2.283997200760365037e-06
+1.051924917794534382e-05
+5.093782394049250437e-06
+6.685622475740659472e-06
+7.374445089500956085e-06
+1.958607722939741247e-05
+2.632901586504692487e-05
+2.296938353391969411e-05
+1.948134105100177293e-05
+1.324786316490439363e-05
+1.498365109836030797e-05
+1.021365681988804659e-05
+2.290928234963975595e-05
+3.653725518230582065e-05
+2.597756627000928596e-05
+4.437225929486146244e-05
+6.537532732869081589e-04
+9.466045623574140862e-04
+2.423316873045878441e-04
+7.446187352407270031e-05
+4.160071385270408209e-05
+4.418604339778300731e-05
+1.480227301557859272e-05
+1.906454079781385788e-05
+1.603537663247622539e-05
+9.012822435866110339e-06
+9.640392973610794486e-06
+1.054808974451584807e-05
+7.985903989013527142e-06
+4.801951461967165024e-06
+6.957634629614854688e-06
+1.690147084891466007e-05
+4.186348788436555275e-06
+8.117142798684569695e-06
+9.850714837129680650e-06
+1.301526817123213487e-05
+3.974054392152799169e-06
+3.706543821932046295e-06
+2.114322829181751606e-06
+3.996716689629084671e-06
+4.297000952478475958e-06
+9.503737453373727425e-06
+5.965687193601484800e-06
+1.092584330306555667e-05
+8.115126817303058862e-06
+1.348891120805806552e-05
+1.651300790088094432e-05
+1.532788333943588998e-05
+1.624225573727510123e-05
+1.429241816312490652e-05
+1.588179651140584215e-05
+2.251738737086909339e-05
+2.228605801220161301e-05
+4.849831261148632102e-05
+3.137089728892158297e-05
+7.143442376944727503e-05
+3.372870656646437238e-04
+5.394260825330154377e-04
+2.384984636590424133e-04
+6.262483793092010038e-05
+5.191604629188393660e-05
+2.784165702791827418e-05
+1.591630590118952245e-05
+1.436921914238006515e-05
+1.064749346460240488e-05
+9.984805855352276189e-06
+6.637197463093155377e-06
+7.771143176992694599e-06
+5.427872677260411850e-06
+2.916094950007244267e-06
+3.750994979860389660e-06
+6.858020948678426374e-06
+6.780852471911598686e-06
+5.502463652133678858e-06
+1.298939576419076450e-05
+6.455942576171397711e-06
+3.575246969765715778e-06
+4.903333609296392468e-06
+4.062606247081146787e-06
+3.582169066653234775e-06
+4.458110244104118170e-06
+8.669926824327078060e-06
+9.612909849954586172e-06
+7.815125697769757579e-06
+1.050799706564138930e-05
+1.777953875372327133e-05
+1.761526268851575571e-05
+1.613859931363496755e-05
+1.449925518597585881e-05
+9.862992238160653624e-06
+6.198524619722777952e-06
+1.917846512825948768e-05
+1.854546051026765462e-05
+3.231491796577877165e-05
+2.039990280315272028e-05
+7.766959621850673965e-05
+2.687256042338848636e-04
+3.452990161861322705e-04
+2.027590312400167055e-04
+6.517576883557606713e-05
+3.449363208328930409e-05
+1.660530383571067473e-05
+9.596608672135979132e-06
+5.859655826256591315e-06
+8.432055394977392901e-06
+1.258098982898598220e-05
+7.559856100624309684e-06
+3.596040906886629524e-06
+3.085906681624712587e-06
+1.657657156398236393e-06
+6.284229926865185963e-06
+4.776080797090215370e-06
+2.698633935584732942e-06
+1.892707392458804953e-06
+3.744867060549960147e-06
+5.919870619028191055e-06
+5.208333474355454677e-06
+4.792242520041995595e-06
+5.456584802002994384e-06
+5.502625320116866827e-06
+6.884833449365854944e-06
+8.391130615261544926e-06
+8.498098833009144889e-06
+1.203701813338197262e-05
+1.867778243561283940e-05
+1.265457157615504785e-05
+1.950208386217634562e-05
+1.431404229070019848e-05
+1.739465451768764395e-05
+9.492358303530969377e-06
+7.408738033828173023e-06
+1.468187759943844346e-05
+2.857323277395728748e-05
+2.834988657192970328e-05
+1.838897483647890843e-05
+6.468038758188635528e-05
+1.575402618060665308e-04
+1.792984922415505973e-04
+1.487989157666704291e-04
+5.590873555620427761e-05
+2.238885672392865631e-05
+1.653536956839651205e-05
+1.982067826939772228e-05
+1.855327196171199740e-05
+1.256675639246230201e-05
+9.002997126846087639e-06
+5.342393546796254985e-06
+2.943590653393652576e-06
+3.658645358169965212e-06
+5.375875414680901438e-06
+7.553432650099797453e-06
+5.046946580765481357e-06
+5.774230424963092508e-06
+3.698051406813249378e-06
+3.365231247139864558e-06
+2.385310002162210115e-06
+6.735156411812928725e-06
+3.779199852182307806e-06
+5.821482315214029543e-06
+7.760143662762713173e-06
+5.561019289365882424e-06
+5.923668903330447976e-06
+8.390021831012166173e-06
+4.192157583080764002e-06
+1.008630058662856844e-05
+1.495387742974012919e-05
+1.455793940811734520e-05
+7.981069380133799877e-06
+9.878941484174153052e-06
+1.429008136616713077e-05
+1.707269542324114695e-05
+1.254216562003564672e-05
+1.169336972364877906e-05
+1.665122104767681970e-05
+3.165536570481803931e-05
+4.590774356982600457e-05
+9.695374825504285139e-05
+1.415775532387494797e-04
+1.059379685587065847e-04
+6.029399225410705222e-05
+1.616741587418561645e-05
+1.813524696984586155e-05
+6.396157050372656917e-06
+1.088970478315318442e-05
+3.630892775315521875e-06
+1.053847722820304731e-05
+9.721552441756031092e-06
+9.649782852187941759e-06
+6.651208716741741471e-06
+7.960605671873106730e-06
+4.324750587958764305e-06
+4.950103455995800502e-06
+6.761246396426354788e-06
+3.503301469375222167e-06
+1.333397362696390865e-06
+2.629466844422837563e-06
+2.881751983654639234e-06
+2.327826325133773253e-06
+6.313468073773842847e-06
+3.667861228356265476e-06
+2.254264169236442576e-06
+3.064177565910482135e-06
+3.884343087564675720e-06
+9.120722802701254449e-06
+8.666272621124649405e-06
+9.972805909031090966e-06
+6.554663762495392036e-06
+1.482889402925785955e-05
+1.633950705806552222e-05
+9.772810023537481676e-06
+7.258755546763982385e-06
+1.018378625525844799e-05
+8.232872806821803452e-06
+2.118243853894715190e-05
+1.474176957694684625e-05
+5.844744448855713771e-05
+1.089502041429463679e-04
+9.223784031640038471e-05
+6.431858115298345999e-05
+3.707875788745411557e-05
+1.953102540418235868e-05
+1.840931993275713899e-05
+5.983573567188373477e-06
+9.004606325868484175e-06
+5.593920606343611118e-06
+5.975546967184784068e-06
+7.799897601762759670e-06
+4.845202179960636336e-06
+3.694967159540870529e-06
+4.878415765583868355e-06
+3.063177798368783630e-06
+2.245333354130572663e-06
+4.446388280334894964e-06
+4.604096820244848849e-06
+3.571469699779380331e-06
+4.379685715061878859e-06
+3.458256569885708359e-06
+5.251678240319861129e-07
+3.051227077774651412e-06
+5.431880956014498225e-06
+6.975689225313369326e-06
+7.752856055039978543e-06
+3.765952703741702370e-06
+1.444457949753935353e-05
+1.508559938137909575e-05
+1.735465923372798741e-05
+8.963094249938877994e-06
+1.009383316959723294e-05
+9.991934644767572671e-06
+8.858966349836065585e-06
+7.692636624146479655e-06
+1.355444024741193348e-05
+8.107210187409781693e-06
+8.758855153062758745e-06
+8.887381928656330583e-06
+2.252875363277859747e-05
+3.582781213876438204e-05
+5.738951701716924587e-05
+7.596221361324009510e-05
+4.648621160073662249e-05
+2.792475335968270747e-05
+2.002016950620859743e-05
+1.817441890542572413e-05
+2.027419811227148055e-05
+6.575517734528103165e-06
+6.365822868586309903e-06
+1.218350054192191454e-05
+1.437105710415933597e-05
+9.459179670612040752e-06
+7.458279087996183031e-06
+4.871058572669499823e-06
+3.481730168663144857e-06
+4.418216182591073931e-06
+1.948368808596543480e-06
+8.089935404774185079e-06
+2.102282954682016077e-06
+4.509386013680461752e-06
+2.738734883590790808e-06
+5.315549811096181999e-06
+4.397759600615606227e-06
+5.375702699274458783e-06
+5.705440314213705521e-06
+5.867168472370309573e-06
+9.866468912350172092e-06
+4.869814342728900740e-06
+6.714505329839163164e-06
+3.529605442152101384e-06
+3.435615879983794340e-06
+8.916009464949644508e-06
+8.090375421142880231e-06
+1.114299600505042778e-05
+6.658493995713207878e-06
+6.202172909553807479e-06
+1.199921053764896512e-05
+1.073759501254077338e-05
+2.566519616293661492e-05
+4.134322832473633574e-05
+5.714705888641851447e-05
+5.071788737313062608e-05
+2.966032505697549466e-05
+2.412273015676801493e-05
+1.405016974443351157e-05
+1.112738801496554758e-05
+1.186858135338885565e-05
+6.593898993278744710e-06
+4.939836895432633322e-06
+4.824357428599708720e-06
+5.944851246785843286e-06
+4.479803490517307194e-06
+3.615168922796498802e-06
+2.237898669120215082e-06
+2.725120970105436978e-06
+2.093609351303246152e-06
+2.208224076411489425e-06
+4.652105118681803961e-06
+1.658044276129668610e-06
+1.624971479783835915e-06
+2.702568221884451043e-06
+1.884179678621335378e-06
+8.695117115094105697e-06
+1.022264956554853545e-05
+7.039629151954267196e-06
+2.195070743793771750e-06
+9.004604122884605279e-06
+9.265182204026152209e-06
+1.134721320122976732e-05
+8.170688821386720908e-06
+4.006104080967011819e-06
+1.082920735394988340e-05
+4.699260664672054238e-06
+8.155563199128412224e-06
+6.379348479080147369e-06
+1.192791523625065099e-05
+6.751786284638051387e-06
+6.630915751746587942e-06
+1.196111230901596000e-05
+2.371214722687781025e-05
+4.298519803950138579e-05
+4.033106545757204491e-05
+2.552292543675015819e-05
+2.096982913854614650e-05
+1.483789388867325113e-05
+1.566913746387385646e-05
+1.128858505776008598e-05
+1.535911357887874074e-05
+1.302507217915149693e-05
+7.825369348727153913e-06
+8.627643461833458600e-06
+6.467885072814195598e-06
+4.522089713185200082e-06
+3.006781091412448157e-06
+5.908112547578162783e-06
+4.167263073412925264e-06
+1.054530368872603884e-06
+4.846659843683950971e-06
+1.257753109235518038e-06
+2.458650040496842735e-06
+6.772291945111519560e-07
+3.169628990786732278e-06
+3.598297078280263418e-06
+3.811350821318363957e-06
+7.651876889984081902e-06
+5.377076064228582998e-06
+8.062428263800711063e-06
+1.370005843066863987e-05
+8.890450937501706140e-06
+6.977297702033935969e-06
+4.733191233809980040e-06
+5.074861638707988540e-06
+5.839841785648149436e-06
+9.836189890516399049e-06
+8.604465465844041155e-06
+7.393342531427560445e-06
+9.273448553062015794e-06
+9.042659912245722671e-06
+1.937887542402818658e-05
+3.229982287933494053e-05
+3.156399110745351555e-05
+3.204533234895018173e-05
+1.919613689459325352e-05
+1.759051677383293000e-05
+1.579760261828726627e-05
+1.701438609715811052e-05
+1.372159902128114696e-05
+7.176712929041470770e-06
+7.416594662728924127e-06
+8.649298708592279640e-06
+8.189093035190395551e-06
+4.310246578457455410e-06
+7.487097521630432722e-06
+3.591844800378577937e-06
+4.679872576619934432e-06
+8.157846624213729910e-06
+4.295618069322884946e-06
+2.314021449790666696e-06
+3.624106166723892866e-06
+5.280747625616520946e-06
+3.314038000336942235e-06
+3.240472113906063197e-06
+4.058948920674311719e-06
+4.045666009395458419e-06
+8.312869610760158858e-06
+5.268846929853631907e-06
+3.629928335443551074e-06
+6.847985578206429875e-06
+3.395816114945325577e-06
+6.541138915896867034e-06
+3.157878845941179915e-06
+4.975088008359668543e-06
+8.483464119217059112e-06
+9.144626301780015790e-06
+7.625587552178015032e-06
+4.345668175349523936e-06
+5.777419973301132365e-06
+9.209515973595285338e-06
+8.534433743180917009e-06
+3.210695580767127162e-05
+4.852072850937762282e-05
+4.335090824681691745e-05
+2.323634157549554172e-05
+2.106154954133956862e-05
+1.082800201327698139e-05
+1.383184186905085630e-05
+1.160523275639079231e-05
+9.048826711138885972e-06
+6.055776050840796930e-06
+7.488541499034634586e-06
+3.813785062619903220e-06
+3.220891523998221767e-06
+5.741112656546296581e-06
+2.549009008544190856e-06
+6.375959720920248804e-06
+6.049623398904481291e-06
+1.535964763261580467e-06
+9.601261375620912473e-07
+2.322541087822206692e-06
+2.987625207915629966e-06
diff --git a/test/FGS2_270nm.txt b/test/FGS2_270nm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f85752e50a6b4cac6bb3078df4548c3b23812816
--- /dev/null
+++ b/test/FGS2_270nm.txt
@@ -0,0 +1,1600 @@
+2.127279483296332099e-06
+1.432303456170983418e-06
+3.796909791104231705e-06
+1.124955858874070444e-06
+1.566436460904517751e-06
+2.463898381840727830e-06
+1.256164140502277491e-06
+4.081706302790659958e-06
+2.710902411500548740e-06
+5.645896237125842229e-06
+2.681745675404000699e-06
+3.327345599197674431e-06
+6.942889656247604470e-06
+7.407172566791839226e-06
+6.599794384981970233e-06
+1.199892533099977394e-05
+2.260355886828729427e-05
+5.345534079920944575e-05
+6.981968858251940346e-05
+5.443222490179958637e-05
+4.165492006025736953e-05
+1.755683424551153824e-05
+1.782163792820245455e-05
+7.786335215988318724e-06
+4.052603340740153276e-06
+7.594174165302255503e-06
+2.912676647402136693e-06
+5.407087076551849159e-06
+3.918318090306628902e-06
+3.877414590314174807e-06
+4.546314627295382206e-06
+8.127899805783628048e-06
+7.474602272748759508e-06
+7.155902634325314425e-06
+3.052227745700509304e-06
+4.539345131786368679e-06
+1.257875308379245937e-06
+2.747799288291852123e-06
+1.071777416610085515e-06
+8.246388127958586937e-07
+1.381015311683084795e-06
+1.836426198343893960e-06
+1.705104203957222499e-06
+1.939831946989287993e-06
+1.720887696346455275e-06
+1.684515157988846122e-06
+3.984543878082555069e-06
+2.475434274783734676e-06
+8.804060290914017864e-06
+2.043295456861786587e-06
+3.420427965108350774e-06
+4.326571552115904959e-06
+7.804066225829096328e-06
+5.393212967444048989e-06
+9.232838217002679979e-06
+6.570833860573448349e-06
+2.201763212768730125e-05
+7.546912194853864781e-05
+1.138917125372938545e-04
+7.525329131829712817e-05
+4.390372337514808769e-05
+2.555346845358398266e-05
+5.990841825810595163e-06
+1.280943044937401453e-05
+5.379961437247918847e-06
+2.396074509893390623e-06
+8.014044180443916855e-06
+3.595425137891369130e-06
+4.962040941316265434e-06
+4.588639097948652595e-06
+7.780481139239374649e-06
+3.624950178451908517e-06
+9.464195312822553581e-06
+3.362124297705519480e-06
+3.065702541447843196e-06
+1.927613031811188125e-06
+2.769817398734767988e-06
+3.271198152555706324e-06
+1.617443566027712193e-06
+2.230603396032711472e-06
+7.568573528785715758e-07
+2.075212950667152603e-06
+2.166040880279085658e-06
+1.719601317902271809e-06
+4.126590279079541060e-06
+2.994532657448015278e-06
+5.300615266482403706e-06
+5.956808101541971419e-06
+6.723402814460917335e-06
+1.822928954218738790e-06
+2.677404370825200200e-06
+8.995963531321567468e-06
+4.834029461185827004e-06
+1.377845828736214330e-05
+4.864966931627624743e-06
+9.048509399796348781e-06
+2.183614806075266616e-05
+6.502916388205804712e-05
+1.234481586807952436e-04
+9.032140788321562459e-05
+2.600811607271755118e-05
+1.760051316308735862e-05
+6.590602377597228208e-06
+3.754197458743257730e-06
+5.263017728303153288e-06
+7.579034099620941971e-06
+2.452624473222517436e-06
+8.540511350544799412e-06
+3.827434607125049007e-06
+5.777662437385083811e-06
+3.056255003507124770e-06
+5.337731132937449912e-06
+1.986591650713419171e-06
+4.396682345745460558e-06
+1.714267567583020638e-06
+2.422904591019776474e-06
+2.461522756117724477e-06
+1.338653543658439500e-06
+1.980085954199153942e-06
+4.019079548555715568e-06
+1.723192877591455970e-06
+1.357965451502116147e-06
+3.226138165124972693e-06
+3.343963988614430396e-06
+4.149326819958019046e-06
+3.725226618196344064e-06
+2.075057937597733398e-06
+4.147499596350919303e-06
+3.384613251060602307e-06
+1.930569828628231651e-06
+8.390229592908393210e-06
+5.395162941541166557e-06
+1.620147633298526865e-05
+7.050118376276044028e-06
+1.064845410149655531e-05
+6.237540008115097660e-06
+2.006642127440131632e-05
+9.125819350960779177e-05
+1.880947895841288792e-04
+1.411826313215061991e-04
+3.818559340119844631e-05
+1.693922773533798804e-05
+3.315147078440035864e-06
+8.912055987592570154e-06
+5.508826146089310590e-06
+3.914579104296983492e-06
+1.055415154114304859e-05
+5.130469476430723103e-06
+1.128505542561320881e-05
+3.115768803505352038e-06
+3.840725964049603181e-06
+1.998353184848136002e-06
+4.539204211319117774e-06
+2.805102046653568560e-06
+3.375521856964171459e-06
+5.121233548893195739e-06
+1.831644581702309113e-06
+2.137716375665090786e-06
+1.347779935259263224e-06
+2.795149659073634234e-06
+1.184977933456809084e-06
+1.868996502900257570e-06
+3.222763120703478574e-06
+5.935755735279292209e-06
+1.962455999605187680e-06
+2.079153443617257607e-06
+6.847362690583429355e-06
+2.779381879573999537e-06
+8.135434587095135631e-06
+3.317393224431894242e-06
+5.920091406660444962e-06
+6.525258624904562430e-06
+9.223964111333161830e-06
+9.050811777225853361e-06
+9.885739539657854518e-06
+1.000636380324812699e-05
+2.345894572248904763e-05
+7.537930779131203434e-05
+2.405037552629093805e-04
+1.968215889814316515e-04
+3.171117105475603447e-05
+1.302811283123902454e-05
+1.044703150106736613e-05
+2.493945593596571726e-06
+1.068116444846285618e-05
+9.761340193702699845e-06
+6.967448460078781280e-06
+1.073684965073399953e-05
+4.508651028773996201e-06
+8.886431685209667558e-06
+5.703251473706041490e-06
+9.220758438421536204e-06
+4.962301194249477251e-06
+4.977470536600515066e-06
+5.161012356505881685e-06
+3.375603044441618364e-06
+3.781080612956909290e-06
+3.366245394138210556e-06
+1.162895523998025123e-06
+1.068925024324388822e-06
+1.004404914581018338e-06
+3.676700793781932224e-06
+1.803980741681250732e-06
+3.429346132497360367e-06
+4.696686206685942110e-06
+3.650656625879857314e-06
+8.845093416764320251e-06
+5.351943261228289431e-06
+4.059728892043180523e-06
+6.581303970340761982e-06
+4.466070020306548411e-06
+1.096264997177458112e-05
+3.725069459868467526e-06
+9.425972671870739401e-06
+7.378450228341631295e-06
+1.643876390226680837e-05
+8.717465757813894637e-06
+1.183760341370543957e-04
+3.667137120183201282e-04
+3.005691484402160532e-04
+6.165268408915321587e-05
+5.045920615476635786e-06
+3.428114253101428998e-06
+8.080060045538894805e-06
+4.181874986003421416e-06
+1.076764073587587791e-05
+8.100272727277260180e-06
+6.496435100461533029e-06
+9.095225656355882237e-06
+5.049581594939865901e-06
+5.691890168332302456e-06
+1.107134050853751543e-05
+5.048617860670713960e-06
+7.785071050865942984e-06
+2.782691259056475292e-06
+2.398595342448549727e-06
+5.103301923927436919e-06
+2.212615288863518091e-06
+2.044995098724990019e-06
+1.289327442809517121e-06
+2.070392137199939026e-06
+3.701593039096652501e-06
+2.225850260393902646e-06
+3.715270121183348074e-06
+9.381118450309580874e-06
+3.305925093399362321e-06
+2.907840869491808346e-06
+4.367863213879507766e-06
+6.055565983412599960e-06
+5.304488032261580280e-06
+1.226045384381576741e-05
+5.717941437467782619e-06
+9.358763863539282973e-06
+5.849929908959486058e-06
+1.889071506475720663e-05
+6.160570207734336025e-06
+1.649704922331801950e-05
+7.679292862635413673e-05
+3.801673798149269538e-04
+3.882017724138554435e-04
+6.772788702524623400e-05
+9.125056751282009898e-06
+1.035176681018906900e-05
+4.692640327031680766e-06
+1.706683324438110861e-05
+9.297583903921381564e-06
+1.345771280205195148e-05
+7.028974229304401158e-06
+1.250435438973236386e-05
+7.371634668687946442e-06
+1.016881388912812372e-05
+4.410470133983953632e-06
+9.437048056233276544e-06
+5.738513106595543879e-06
+4.041032267323165291e-06
+4.735137775847265150e-06
+2.808070765469061005e-06
+2.066055743270347164e-06
+2.704740288999337251e-06
+4.745469804663124173e-06
+2.379553766329202160e-06
+2.842761820727081340e-06
+3.847002326913898513e-06
+5.350393076295735971e-06
+7.465655396665358705e-06
+1.569935227496409997e-06
+4.047702406649636850e-06
+2.676958602142602147e-06
+6.836308303931787309e-06
+3.432789201750715649e-06
+6.131309551689359969e-06
+1.008608890648346107e-05
+6.186762077370481381e-06
+1.494060806435914808e-05
+7.405396695630239781e-06
+1.801184475832330825e-05
+9.956781059626430960e-06
+7.302118701794029594e-05
+5.302084933523259005e-04
+5.910732282007838010e-04
+1.129474533062459890e-04
+4.457866976370532633e-06
+7.252772158014517563e-06
+1.200747062251579835e-05
+6.515941161943102017e-06
+2.045601071599097297e-05
+6.448820167518911847e-06
+1.464899685802544157e-05
+5.396217318494548267e-06
+1.426039607162444764e-05
+5.373971964050499332e-06
+8.502270828163007631e-06
+7.779579986482946052e-06
+4.073076534246599052e-06
+7.621997057094392349e-06
+5.670419996391941694e-06
+2.894665833543829501e-06
+2.263597094416301937e-06
+2.184412627169359960e-06
+3.524644132895367289e-06
+4.977244666461182755e-06
+2.665040488748650722e-06
+3.685185822950685552e-06
+6.043209250499221208e-06
+5.746579341371553209e-06
+1.927206287023546657e-06
+6.647150901953893936e-06
+5.510330299025571398e-06
+4.022126616747871632e-06
+8.542207566771464747e-06
+7.589079030887079243e-06
+1.429633682951684373e-05
+6.341315936337422308e-06
+7.288820733207421562e-06
+1.585728280811126041e-05
+1.262792467459700256e-05
+1.445273358091724687e-05
+3.790664329680105439e-05
+5.037012660362040874e-04
+6.671681231817909322e-04
+1.117146586282933239e-04
+2.832165699079725057e-05
+8.333617633149027868e-06
+9.779679691427907345e-06
+1.617891848120477850e-05
+7.974604222750545011e-06
+2.056142374439354583e-05
+6.690237664535578253e-06
+1.478933863365105818e-05
+8.050386764816441386e-06
+9.361031616316685449e-06
+6.415824835058221693e-06
+3.210176254025756823e-06
+5.341664250663979546e-06
+4.851922293326545977e-06
+3.139875135730708970e-06
+5.192259290159401178e-06
+2.011652750226597050e-06
+2.025892349074303466e-06
+1.265255171096104882e-06
+4.091524379823523702e-06
+3.954596752365843143e-06
+2.745848540987899117e-06
+4.106136820821696186e-06
+7.058898414550322225e-06
+4.274697582672325453e-06
+5.389842188567534716e-06
+1.194525063972342119e-05
+9.342611332689714523e-06
+7.887366197068319302e-06
+1.853248214812081067e-05
+6.595306352876504979e-06
+1.187474624208993015e-05
+9.450484076400698068e-06
+2.030419776835708102e-05
+7.766772320524292512e-06
+3.427683520740396495e-05
+6.661598818933293215e-05
+7.002388594135046081e-04
+9.608928484681714555e-04
+1.705417704310132493e-04
+2.365182438525266327e-05
+1.185560318987975221e-05
+1.166229133967403933e-05
+1.724038734594570749e-05
+1.242490176311790442e-05
+1.031745836892428793e-05
+1.307618030866291126e-05
+1.008262663006028426e-05
+8.939364350706847275e-06
+1.288678143800549705e-05
+3.899228028522540875e-06
+3.779355729605279156e-06
+5.560327032292334530e-06
+2.122577923394964980e-06
+2.375146597353910562e-06
+3.249250845275436748e-06
+2.226743925321956578e-06
+2.959028098211747255e-06
+1.719966029066359906e-06
+2.471251875065083023e-06
+6.273663397636052139e-06
+2.798320893451534884e-06
+2.855391039853296343e-06
+9.230803297715224655e-06
+5.388889582139344425e-06
+5.665607356459575955e-06
+1.002810327250343295e-05
+1.100227426658839072e-05
+7.010627684861753004e-06
+1.170469236891453405e-05
+1.175002386799047927e-05
+6.423133571522713648e-06
+1.652471610005516885e-05
+9.956645845641534984e-06
+2.971037729131748665e-05
+2.040908775511650824e-05
+5.137503131414378481e-05
+6.137836712401526689e-04
+9.571903841433272980e-04
+2.340088293949685707e-04
+1.589236694199027528e-04
+2.204081174551352526e-05
+1.684480161088066754e-05
+6.614628224670090360e-06
+1.358956862485273770e-05
+1.553842856790457627e-05
+1.445319032829242841e-05
+9.034109268243672520e-06
+1.639907038245100329e-05
+7.255485716898181553e-06
+9.345803633142158703e-06
+5.128903147158259440e-06
+3.790719412938153877e-06
+4.610032606776670580e-06
+4.692826303392764523e-06
+2.145539689748308204e-06
+2.131712125636861310e-06
+5.074119405861786808e-06
+2.184078904954482572e-06
+3.293304612044507012e-06
+3.563039267146492074e-06
+5.059802186624204328e-06
+4.006537687415951314e-06
+6.602161827022216605e-06
+4.183862983751219921e-06
+9.165642704776978106e-06
+6.226379129253595950e-06
+1.010464046854496114e-05
+1.508037274697458900e-05
+8.971601995848221689e-06
+2.051973590467300244e-05
+7.274996458658369359e-06
+6.828945234488885749e-06
+2.439239608239030812e-05
+3.407918664831051934e-05
+3.543055108436779364e-05
+9.437376808169659211e-05
+6.531831408187831721e-04
+1.277640429069901813e-03
+5.493469867020439991e-04
+2.832735203490258677e-04
+4.213423115000319104e-05
+2.911459690304146246e-05
+3.830506373916623455e-05
+1.876150288102731897e-05
+3.370130446272526247e-05
+1.292573466469986958e-05
+1.910966259976193974e-05
+9.012930330034526168e-06
+1.085262418110913979e-05
+1.190152294006534022e-05
+4.406424962099473419e-06
+5.711073696568701864e-06
+5.541919484803665063e-06
+6.061658346925911421e-06
+3.908172818275019303e-06
+5.048725974975337295e-06
+4.303160991802308121e-06
+2.915763536813445517e-06
+2.721949581047864039e-06
+2.475815162620193524e-06
+6.603741512408424680e-06
+6.820364626109932344e-06
+3.806863572592115335e-06
+3.491747895580178344e-06
+9.994726138351544875e-06
+8.318827823634237627e-06
+6.483693285166172998e-06
+1.433540190806368813e-05
+1.256703522670888082e-05
+1.001628279250778140e-05
+1.236688312438083735e-05
+7.517139825055670749e-06
+1.605032117560559524e-05
+7.303437818847847789e-05
+5.478764739624491869e-05
+2.065785210415473777e-04
+4.541478970972459496e-04
+1.320725225975238329e-03
+1.279863480517842537e-03
+8.448794884447316956e-04
+2.292071996654016603e-04
+9.012275894625087211e-05
+1.419136534630974603e-05
+2.423038272027484453e-05
+1.876241072446968789e-05
+4.255633259121241430e-05
+1.870130074725531209e-05
+1.401373406828235726e-05
+1.670271856410540751e-05
+8.792444182500091910e-06
+7.493168715927873573e-06
+1.047021000143861515e-05
+4.636304253217576559e-06
+5.437623523202499456e-06
+6.422343600499187100e-06
+8.760165443417542038e-06
+3.212299072866004534e-06
+3.725480881648204402e-06
+1.770785659863643070e-06
+3.605374438958006600e-06
+5.680507961375480015e-06
+1.043267250086951221e-05
+2.789834334913276204e-06
+3.451599704511474389e-06
+7.107713300601215632e-06
+8.442227349574711256e-06
+7.658407738029619186e-06
+6.974468907844029225e-06
+1.131902080057129538e-05
+1.043401084709277259e-05
+8.282369339133627441e-06
+1.172636779086342253e-05
+2.390094939625759561e-05
+1.115973547845512746e-04
+1.908764093669103855e-04
+8.036250934868799985e-04
+1.123468836600082042e-03
+2.232516973509828234e-03
+2.635118027761096035e-03
+1.610368535258862232e-03
+3.731760109392958215e-04
+1.026679129686867867e-04
+7.101714063676806089e-05
+3.703458643571603962e-05
+4.523019046702253748e-05
+4.793434004005124366e-05
+2.683719914324156391e-05
+2.535716852972368606e-05
+1.486089504144938782e-05
+8.132661825269109127e-06
+1.300249913609691398e-05
+1.097734784567818004e-05
+4.942892571441343110e-06
+4.747349801849809497e-06
+1.060897189719892273e-05
+6.888843289810022501e-06
+3.528150079612347454e-06
+4.376831492935965964e-06
+2.770268521761367025e-06
+3.796756372733397906e-06
+5.653084786459201764e-06
+7.809220610584637949e-06
+2.210557764384937251e-06
+8.334432485385413736e-06
+6.451254447032621779e-06
+1.076584626296454163e-05
+1.565140684804824874e-05
+9.484151109912383412e-06
+1.144004661030525462e-05
+2.593070213416210525e-05
+1.874044358936489651e-05
+2.417603051248247420e-05
+8.892254798215413298e-05
+7.431534718000441331e-05
+3.062536781985899896e-04
+1.145967129341651444e-03
+1.779919893676011697e-03
+2.774775879988416495e-03
+4.657528699393102649e-03
+3.411336477905357271e-03
+1.235470310132978124e-03
+4.023497654683350728e-04
+1.239729231418403932e-04
+3.152312701039140390e-05
+3.076701689599648209e-05
+1.657769272350760872e-05
+3.471770977303477944e-05
+1.670727950741879468e-05
+8.815103486006538923e-06
+1.106293349652489017e-05
+1.224208211887377441e-05
+8.518338254284906622e-06
+4.937019254576113781e-06
+6.167062100346993773e-06
+1.167185170166459902e-05
+5.169474716054761092e-06
+3.329567942778309592e-06
+4.517158042174308980e-06
+3.268669820621199500e-06
+4.719120130355439823e-06
+4.603883219948950797e-06
+3.489973306631440177e-06
+5.546252926003445170e-06
+1.543907543656338740e-05
+8.696646764493194784e-06
+1.286083275291485231e-05
+1.584821352202312302e-05
+1.538154756673700929e-05
+1.591353299653298196e-05
+2.817641762085492993e-05
+2.242168754560359145e-05
+1.653481644584230047e-05
+9.545614697602457417e-05
+1.162672330186813259e-04
+5.762207257969979238e-04
+1.612557909332072237e-03
+3.642642511032810441e-03
+5.525794028367785223e-03
+9.449488078519193562e-03
+6.759750391952951999e-03
+2.421065955601904053e-03
+5.040222195010836707e-04
+1.640942381257410676e-04
+1.197364960917136141e-04
+6.635660478179189318e-05
+5.263524978002130563e-05
+3.488417830020368955e-05
+1.530802125684917577e-05
+1.444795200817683249e-05
+1.234912637852959108e-05
+8.331480726884423889e-06
+6.339669397053015262e-06
+6.174789124282123471e-06
+7.451887416638771107e-06
+7.864767972381706858e-06
+5.063195335187370240e-06
+4.266502545528103823e-06
+3.298352974107164418e-06
+4.004713572163808190e-06
+3.715120881584172845e-06
+2.545987296524086318e-06
+4.603870630711381104e-06
+1.120642512415699338e-05
+1.628751599542068910e-05
+8.037864908112465562e-06
+9.518175060303504123e-06
+1.238357258122787544e-05
+2.045747829554610749e-05
+3.097060788261796389e-05
+1.969141939547678743e-05
+2.904926394057800079e-05
+1.091728862101652199e-04
+1.112016510103982939e-04
+1.829327078915527112e-04
+8.077640008811000838e-04
+2.794033279093349580e-03
+8.564285303194502097e-03
+1.200023904839161298e-02
+1.639921445877207812e-02
+1.209493526861259681e-02
+5.454979793966310657e-03
+1.867673978856086063e-03
+1.015598417723922661e-03
+3.104920287876394218e-04
+1.561225677858427770e-04
+1.012831788865319293e-04
+3.433115511138648372e-05
+3.000224671324185164e-05
+2.814529554496227479e-05
+1.396958670766893347e-05
+1.010218753104719859e-05
+8.507707736415063071e-06
+9.891181406853320418e-06
+7.373494002709688094e-06
+5.670353227926218467e-06
+4.237099643426258457e-06
+5.816544948756522520e-06
+2.599538819910747348e-06
+5.680801348890019141e-06
+2.056000981565533775e-06
+3.105575016457482461e-06
+5.870594495988787512e-06
+1.265165529239083154e-05
+1.180157226525731621e-05
+7.178556341492640392e-06
+1.516094123047094421e-05
+1.664012987626574440e-05
+3.510588136108113989e-05
+6.422993866218547950e-05
+9.372014797084804861e-05
+1.741580691759335041e-04
+3.980454081112428538e-04
+3.775857516739750683e-04
+8.824282347642005810e-04
+2.707395042929336762e-03
+7.541236915651132813e-03
+1.891099991905727945e-02
+2.255053129000530662e-02
+2.488503859308611663e-02
+1.920961164495634671e-02
+8.980108345267743750e-03
+3.233566860525341306e-03
+1.111258585489777271e-03
+1.119836104422865513e-04
+5.249463957944013883e-05
+6.393808469829965362e-05
+4.747135418857013564e-05
+4.915447114405143651e-05
+3.362794123659805653e-05
+1.971329968997332708e-05
+1.412830799593367616e-05
+1.584593314966738833e-05
+1.333874434628615103e-05
+9.149314783247279153e-06
+6.338341299240190530e-06
+5.784132016961030361e-06
+5.363944382437998898e-06
+2.768477492133364418e-06
+4.725192317739868948e-06
+2.919189324067826758e-06
+3.959027812970992202e-06
+6.453473636260416677e-06
+9.898650522259385702e-06
+9.659037701264970162e-06
+1.388930907675209542e-05
+2.715084936549762886e-05
+2.896513829273104478e-05
+5.635414037291497521e-05
+1.095230245587803717e-04
+1.772561477024388061e-04
+1.967943665742618578e-04
+2.218173598151404859e-04
+1.436736430555597883e-04
+1.425445249110568989e-03
+5.566583637082025970e-03
+1.303972640023453623e-02
+2.406520877352378782e-02
+2.328630907688815019e-02
+2.295462790667929243e-02
+1.910595958758885826e-02
+9.183068220216257516e-03
+4.604028656517138857e-03
+1.849400352788218519e-03
+9.017484457956551243e-04
+4.512705917261839285e-04
+2.309356769102215710e-04
+1.529332881226062391e-04
+9.374469725556422851e-05
+4.663536095912394915e-05
+2.835319585989768486e-05
+1.819683525731252666e-05
+2.147887002556042864e-05
+1.547127230957554854e-05
+1.150541994090358670e-05
+7.194556614953970079e-06
+9.232661848971325096e-06
+5.618308671379901759e-06
+2.210196052880868635e-06
+2.895556223006131228e-06
+6.897576061185086141e-06
+3.804001698226960296e-06
+7.648898226409220111e-06
+7.870087749325979537e-06
+1.332975396243999075e-05
+2.607933478407405809e-05
+3.367798906973459795e-05
+4.112964520458419621e-05
+6.602141153664941404e-05
+1.192923553037676313e-04
+1.396166736882725257e-04
+1.288610285249720691e-04
+2.668022834952231848e-04
+1.337984447317108229e-03
+4.844442436300392535e-03
+1.114051810315250246e-02
+1.820939722607514688e-02
+2.337648306314272367e-02
+1.738109133924438041e-02
+1.651613682293401331e-02
+1.673586722628003787e-02
+1.012999383487504616e-02
+7.932503897768851051e-03
+4.206397565588071777e-03
+2.283685224068791875e-03
+1.169783920898872544e-03
+5.773036595725796437e-04
+3.503948453168770089e-04
+1.734234406418888857e-04
+8.354925924100128800e-05
+4.103657711779435443e-05
+2.372675719216033754e-05
+2.488613373878968102e-05
+1.836586772440647249e-05
+1.265713545984312505e-05
+8.080471845448218717e-06
+8.872742800289732721e-06
+6.834073715723801485e-06
+3.155137242145914418e-06
+3.457945906625945744e-06
+8.498775498178135800e-06
+4.801876949965779190e-06
+8.429412172480081153e-06
+8.600868859342509530e-06
+1.777829432596832315e-05
+3.196800764747260358e-05
+3.802726172704962669e-05
+4.320321200785441401e-05
+6.158385271949235753e-05
+1.042428638253828832e-04
+1.846712749286521312e-04
+4.502387973754528238e-04
+1.193467905806602390e-03
+3.655764580918022168e-03
+7.742266686792374092e-03
+1.152054115670944970e-02
+1.406083214486843549e-02
+1.967695828160659008e-02
+1.813458422109803791e-02
+1.746013576827541713e-02
+1.690259185351960028e-02
+8.745982088675123903e-03
+6.241079666611311361e-03
+3.108762937454438453e-03
+1.638247402088264604e-03
+9.892776085848420213e-04
+6.212257122186514487e-04
+4.750095981345350436e-04
+2.286573560755967183e-04
+1.114497525872672548e-04
+5.316743959925276605e-05
+2.924420981056084518e-05
+3.094839056789425185e-05
+2.075310969722263870e-05
+1.303285270170824705e-05
+8.213523123063937783e-06
+6.907576007272823852e-06
+6.074712827755697057e-06
+5.952429247298340111e-06
+5.655956185311749969e-06
+6.683496635819668081e-06
+6.776421275069061375e-06
+8.510276160499599080e-06
+1.035123885553869190e-05
+1.883398894436120040e-05
+2.941185056320230526e-05
+4.319239598222440280e-05
+4.065434887049708060e-05
+6.510867089363279027e-05
+1.398164512534079494e-04
+4.066629713260394205e-04
+8.370769707339107552e-04
+1.534351228839451065e-03
+2.923702030438139234e-03
+3.879834045148520746e-03
+3.985558660175281785e-03
+5.441765248738890913e-03
+1.753186524208542874e-02
+2.497327373254531330e-02
+2.314638451349470410e-02
+1.750039872415077441e-02
+6.645672411351345385e-03
+2.646750884477239510e-03
+8.233961844554720574e-04
+3.722016047850531021e-04
+3.744511794670995304e-04
+3.765610944248657960e-04
+3.735693880202276842e-04
+1.946862698457598449e-04
+1.003482084684124498e-04
+5.438870149343963899e-05
+3.446289704536002052e-05
+3.840217088442947997e-05
+1.965108427158160755e-05
+1.259168886369322195e-05
+6.934855792586856636e-06
+6.363611022052919978e-06
+4.196989914213024818e-06
+8.045103494728002402e-06
+7.077705913836529498e-06
+6.193306844047490075e-06
+6.391482506741132216e-06
+9.163846103370548423e-06
+1.154527291014210885e-05
+1.670247887572388228e-05
+2.594101329258243578e-05
+4.578425846924548512e-05
+4.576748795548834983e-05
+9.148208165942930254e-05
+2.205719972162968699e-04
+5.683181050613534454e-04
+8.489827435961470837e-04
+1.203974461393901617e-03
+1.174213134602230309e-03
+4.508494585364040703e-04
+3.868778068269251380e-04
+2.301260430807339306e-03
+1.204805778878258009e-02
+2.222142097908777481e-02
+2.066257277368979683e-02
+1.169679442565400851e-02
+3.903250991044955771e-03
+1.042957331740331775e-03
+1.927940806572126095e-04
+3.134213653130887460e-05
+9.140183110065212661e-05
+1.333827161153753097e-04
+1.513025571590076196e-04
+1.089957737042261438e-04
+7.267835168272934970e-05
+4.895657008196019149e-05
+3.482849430784925655e-05
+3.755687935237898964e-05
+1.547739002044209110e-05
+1.063387912294502219e-05
+5.778049961518793133e-06
+5.777725968893224976e-06
+3.967964311012631575e-06
+8.183760385111735585e-06
+6.848542377567887773e-06
+7.193913013993354864e-06
+4.752883192371644883e-06
+9.047015809103863194e-06
+1.209447342222412527e-05
+1.628356919084314642e-05
+2.549893607607804215e-05
+4.443095427780800543e-05
+5.902101301229287916e-05
+1.277856789738722400e-04
+2.818654455079732443e-04
+4.840459068838202147e-04
+5.946269209878707199e-04
+7.505039176507178039e-04
+5.222589724968034093e-04
+2.050295621828471411e-04
+1.604184320092558234e-04
+7.474402070881606790e-04
+5.224576745882082533e-03
+1.697839903211252610e-02
+1.633770069531553445e-02
+5.443890268402137161e-03
+1.438924338980165397e-03
+2.671294850395260234e-04
+5.919363043471178665e-05
+5.413035296883429422e-05
+2.528438700749429931e-05
+4.643783499944038927e-05
+3.392548288843496543e-05
+4.153639223479996809e-05
+5.196038789626105460e-05
+4.079475442082766440e-05
+2.462052255817175360e-05
+2.584794048923970113e-05
+1.222713933361116186e-05
+1.035511619508500881e-05
+6.782210618766383790e-06
+4.836528394881250182e-06
+4.211132409685847176e-06
+7.091229492498381284e-06
+6.347003147337671429e-06
+7.108402184407535371e-06
+4.593782995212764727e-06
+7.788927212497552351e-06
+1.190994254323136784e-05
+2.008731803133586446e-05
+2.649653917404497526e-05
+4.270624759612617210e-05
+7.228504438846930329e-05
+1.505900143429859798e-04
+2.675867475744825113e-04
+2.867976531177375576e-04
+3.645626278824848528e-04
+2.880934439790511226e-04
+1.230434405342752449e-04
+1.041249164425571308e-04
+6.136333982218971739e-05
+6.323923689320037206e-04
+3.235681768184680163e-03
+1.411478225118045077e-02
+1.281588807074107370e-02
+2.420569364578921759e-03
+6.572390938550370237e-04
+2.173848687549201526e-04
+5.124687128858484297e-05
+5.445587533121494755e-05
+1.796290906736843854e-05
+3.518338326915295159e-05
+2.027253275740285523e-05
+1.721802949540840127e-05
+3.338610047600550827e-05
+3.152362755020417413e-05
+1.857658446785504061e-05
+1.678257609842779183e-05
+1.239202768039935373e-05
+1.322275774240132260e-05
+9.773709439715457553e-06
+4.994619542390269960e-06
+4.622600943931270520e-06
+6.985391557387980729e-06
+4.509548935128346600e-06
+6.840098582228416936e-06
+4.655516687649757928e-06
+6.845613496972069392e-06
+1.347922297817602591e-05
+2.552651926861194097e-05
+2.711427620405921886e-05
+4.670337541759143316e-05
+8.314090196101581100e-05
+1.514590727932376389e-04
+1.785200437097567529e-04
+1.583202761429387991e-04
+2.068428083854202855e-04
+7.511060953152534126e-05
+4.973495615331708714e-05
+2.231920136089791037e-05
+1.207874930799269803e-04
+3.196264335077578949e-04
+1.440902007266214521e-03
+1.009016237812431979e-02
+9.162526400666969051e-03
+8.439314314009228185e-04
+2.596011797807751026e-04
+5.454850161053118127e-05
+3.282370435623182170e-05
+1.711379649487190918e-05
+2.703135608248270609e-05
+1.453677960289304103e-05
+3.455960485389310559e-05
+2.443526691836971646e-05
+1.878558117981224000e-05
+2.552284964448420121e-05
+2.998475992758484115e-05
+1.532535736362468116e-05
+1.166555827493126932e-05
+1.759635849801250454e-05
+1.272966468944479435e-05
+6.246164489037989269e-06
+4.829585523238593507e-06
+6.803370180002686561e-06
+2.347783093250643157e-06
+7.298365172105726389e-06
+5.254351503263751643e-06
+6.731702748407931573e-06
+1.850449309096319309e-05
+2.570005768788159966e-05
+2.836271137168454428e-05
+5.510055931435782673e-05
+9.092971313491500810e-05
+1.177899821997668926e-04
+1.100703885913266325e-04
+1.186752437484520843e-04
+6.786073701667189896e-05
+2.601344594719535265e-05
+4.313689614632420236e-05
+2.541898973303967162e-05
+6.931200744803626371e-05
+1.213271204651554416e-04
+5.476854959603545030e-04
+6.194568536810658547e-03
+5.721932119503389709e-03
+3.438450834024337887e-04
+2.137207715669978809e-04
+2.091006017158974454e-05
+4.857021454760248008e-05
+2.288897198157603455e-05
+3.624939883034390464e-05
+2.452207529238157899e-05
+2.461298926976866674e-05
+2.827498638526810919e-05
+1.438606436167316249e-05
+1.723257687582469759e-05
+3.167623244784310496e-05
+1.472990613357369659e-05
+1.089362832580707620e-05
+1.990820392693403115e-05
+1.146114270623451882e-05
+7.867040748509881887e-06
+4.394388495111389171e-06
+5.473931860174505905e-06
+2.726760818094174654e-06
+6.126769620283657630e-06
+7.161052463437712711e-06
+9.567403338044344835e-06
+2.147004900423009962e-05
+2.099771039804364291e-05
+3.246972516187741545e-05
+6.202133222042019510e-05
+7.734162328918518770e-05
+6.535256960711014352e-05
+7.733174790687858172e-05
+6.738821555076934431e-05
+1.684601637907026770e-05
+2.722528046282840129e-05
+2.497248075825474014e-05
+3.898407907125627490e-05
+4.774727053844644468e-05
+4.743251502410730103e-05
+2.219101321916771685e-04
+3.161230159911038520e-03
+3.194200016975205433e-03
+2.495948112830139766e-04
+9.266734313991933686e-05
+2.291552664705472173e-05
+2.333885294230792108e-05
+5.110737366915670335e-05
+1.527266480188356549e-05
+2.940983682905172123e-05
+1.201412465892531676e-05
+1.743796810162064048e-05
+1.721460703299999566e-05
+9.008900800387123478e-06
+1.535838627498167070e-05
+1.639805585848204257e-05
+1.303670659231768165e-05
+1.292236502081989983e-05
+7.336403795168227597e-06
+9.864506257588028372e-06
+5.253220328102839115e-06
+6.233428285607920111e-06
+5.086904190524194500e-06
+4.792508881167638609e-06
+8.163277716836409776e-06
+1.733791988171244541e-05
+1.774045476631877941e-05
+2.008309892189659099e-05
+3.829702660867621627e-05
+6.178877566167884701e-05
+4.604811564607419569e-05
+4.880256180161737767e-05
+4.934546067820738956e-05
+1.480644238758034117e-05
+2.616349599942753806e-05
+1.166337385607641003e-05
+4.399373066603187336e-05
+2.371579189950284995e-05
+4.790134150878940184e-05
+2.163432330721544501e-05
+2.192737997088179108e-04
+1.969835079998465827e-03
+1.993885016315961097e-03
+2.235773224038637287e-04
+1.459780755927569116e-04
+3.986044928311590686e-05
+6.435685197531435886e-05
+3.159444466577482591e-05
+2.873543970151820555e-05
+1.701240733657171874e-05
+2.294904795647972293e-05
+8.899932630987260210e-06
+2.058306447214482252e-05
+9.512565772090199819e-06
+7.378950202425188921e-06
+1.374445563599874118e-05
+1.283840558097153249e-05
+7.000883021484680186e-06
+6.825355411728450078e-06
+1.165630264214118742e-05
+9.804578043503790825e-06
+5.791511363382228890e-06
+5.069030934307458417e-06
+6.076210424579675535e-06
+1.010069438223176248e-05
+1.928767920208340707e-05
+1.378375765098239852e-05
+2.508029183024279907e-05
+3.924118852227197733e-05
+4.164564397394969166e-05
+3.113952104269137504e-05
+4.326888645717597400e-05
+2.004333668063576777e-05
+2.279756027700464329e-05
+1.594162556194852342e-05
+2.580833777852116107e-05
+2.032335362345833048e-05
+4.435573764687929298e-05
+1.675219127333203045e-05
+2.799471410469918435e-05
+1.843154430362657680e-04
+1.067878158365282229e-03
+1.125217613692217240e-03
+2.988569968638937454e-04
+1.079023110519597678e-04
+1.796734645119998951e-05
+3.878018751274085372e-05
+2.949481570599555994e-05
+3.694067811471606750e-05
+1.688077405565765229e-05
+1.710776777813441537e-05
+1.523825628088740347e-05
+1.014085636253337206e-05
+1.162762764983207190e-05
+8.326727020249118756e-06
+7.158744515203887155e-06
+1.134133856020531428e-05
+1.578129316660129936e-05
+7.034079930224282423e-06
+8.681137435504532784e-06
+1.166823740524488103e-05
+7.198715849101200532e-06
+4.612592476184174524e-06
+6.299297812923456585e-06
+1.358484606421883113e-05
+1.271645099244646707e-05
+1.189526959034979186e-05
+2.996592836848796222e-05
+2.995165754101184483e-05
+2.163892136748965338e-05
+2.998584289070601515e-05
+1.546204207970149088e-05
+1.201416767209359347e-05
+1.791537563806324410e-05
+1.477313156707069327e-05
+2.234381180301800961e-05
+1.859702155449475283e-05
+2.354169376662228620e-05
+2.049953309130782348e-05
+1.868614734044581028e-05
+2.025682482642585189e-04
+8.072364297142674457e-04
+8.597104911249582680e-04
+2.769776428071680911e-04
+7.867285491342525759e-05
+3.555454964358550690e-05
+2.045946657353504459e-05
+5.520856387345126525e-05
+1.559646543160950728e-05
+3.207232525283043372e-05
+1.062739437883848705e-05
+1.482832707802794038e-05
+6.564759625903220658e-06
+7.442466135513398502e-06
+1.110150903331355506e-05
+6.962954002888279940e-06
+7.568533587422954479e-06
+1.774948540008012131e-05
+4.452454410065383048e-06
+3.865762132845262403e-06
+7.017952221370624119e-06
+1.018702189427953025e-05
+6.759352425696870664e-06
+7.976623885792064034e-06
+9.912947583967264949e-06
+1.216562026150034041e-05
+1.360593311377304016e-05
+2.397989393653830360e-05
+1.818982421459899444e-05
+2.912190616319892847e-05
+1.961188693261572247e-05
+1.268483341030490216e-05
+1.587642888457336201e-05
+7.111860904446047651e-06
+2.766000190646924123e-05
+1.310754930801272668e-05
+2.989160388774830156e-05
+2.052809453536313001e-05
+9.048067837274287835e-06
+3.600382114554694514e-05
+1.526210909250539185e-04
+5.012418401624062604e-04
+5.795856511331054159e-04
+2.620799176225958784e-04
+1.071017249548884007e-04
+2.093178515040579801e-05
+3.688635496808434402e-05
+2.065681969300345200e-05
+2.554523245244061066e-05
+1.740680127140050004e-05
+1.711911615578256990e-05
+5.599023572073638132e-06
+1.111229166748535650e-05
+5.095887262535312488e-06
+7.181887088260831483e-06
+6.296415280009573935e-06
+3.737477348020132909e-06
+7.192084281650806094e-06
+5.066733880941892373e-06
+3.780540804834176100e-06
+4.500915423029576815e-06
+7.809480491401186146e-06
+5.926118531044447512e-06
+1.120707840181440664e-05
+6.615556363326140742e-06
+1.045748893876227686e-05
+1.536293103711044774e-05
+1.284046711991989893e-05
+1.627570352794329873e-05
+2.537760358672719728e-05
+1.133812986563092789e-05
+2.596741452422973771e-05
+6.633127497006317355e-06
+1.454554186115071175e-05
+9.548992099430403488e-06
+2.330896878411822568e-05
+1.840505985877119305e-05
+2.262040946147508532e-05
+8.851816246864634672e-06
+2.583126634109160079e-05
+1.412262528738196684e-04
+3.751456464534546373e-04
+4.406024117279737167e-04
+2.169577218910658217e-04
+8.114539764289153815e-05
+3.429921791498132552e-05
+1.636425101089346149e-05
+3.005787315100705699e-05
+2.033934113943663158e-05
+9.707073730827030250e-06
+8.072742341468884384e-06
+8.230206649794917840e-06
+5.037669265765870103e-06
+7.866722638898099461e-06
+4.369043294126776841e-06
+6.871622996748409064e-06
+5.465147475627753843e-06
+3.133707934596608441e-06
+5.656808292094752282e-06
+5.735643262655034508e-06
+2.824067792983422874e-06
+3.225444374526812453e-06
+4.503958807390577651e-06
+7.727621645730430378e-06
+1.247116405380737832e-05
+6.885968457727147338e-06
+7.235468850925301215e-06
+8.590803062198936138e-06
+1.665540457114942464e-05
+7.383813809431605580e-06
+1.358499041282232235e-05
+1.091985431542973266e-05
+1.587232894143209640e-05
+7.238555731085046409e-06
+1.160890999178687780e-05
+1.032370930505092375e-05
+2.111770637813111594e-05
+1.596175494409051674e-05
+8.323056732290841622e-06
+2.918829989075818083e-05
+9.148115978055917246e-05
+2.730293131254723192e-04
+3.576988656022918192e-04
+2.255222544774006048e-04
+9.827643822484148444e-05
+3.164564657250528633e-05
+2.861638562609439621e-05
+2.965423600993160691e-05
+1.240857683472043002e-05
+1.038548241925923337e-05
+7.080768179147953694e-06
+9.701629394715881018e-06
+4.956174170752691458e-06
+4.704222360531439910e-06
+9.076295155380712648e-06
+4.133547030504519960e-06
+4.887900439605443731e-06
+3.466599792670607491e-06
+2.787955675934516276e-06
+6.579294330528719049e-06
+2.606627068409663349e-06
+2.241447810847052264e-06
+2.998594931495518409e-06
+3.382220715702117747e-06
+1.216985944137844996e-05
+5.373560898920813678e-06
+6.296138415524727452e-06
+6.887886678215227583e-06
+5.961760443408811990e-06
+9.561999547127643885e-06
+8.699446451056929222e-06
+7.737873807324720691e-06
+1.403092508139478218e-05
+1.138299308110202247e-05
+1.181747243822541083e-05
+1.359225822931735218e-05
+1.542745552756234626e-05
+1.423402278727478953e-05
+7.865004203482139813e-06
+3.289904678633451588e-05
+8.304858081747115348e-05
+1.926734250367961540e-04
+2.548309873102774770e-04
+1.604159222193148179e-04
+8.335401657569436443e-05
+5.554936184658418286e-05
+2.614427530358414824e-05
+1.974329040457677338e-05
+2.048460309771781219e-05
+5.805932631055278288e-06
+1.145422990927248492e-05
+6.648931279679709690e-06
+5.772737571784539530e-06
+3.871132016592913928e-06
+6.111813606460794491e-06
+2.643318470561449056e-06
+1.810960897918958362e-06
+3.374883812931055876e-06
+4.735344883966109343e-06
+4.154959194014223402e-06
+2.359954868867322387e-06
+3.519071669714069889e-06
+1.845412764992073231e-06
+3.176484568014164005e-06
+6.681816686576664149e-06
+4.102609243581742309e-06
+1.238036113978523325e-05
+5.983944533049061074e-06
+7.427002013984411311e-06
+8.828899993758091683e-06
+4.444896886847430554e-06
+1.164682517703998100e-05
+7.784416630808729202e-06
+1.503622622433810376e-05
+1.288275239957453688e-05
+1.208496574600568736e-05
+1.845163650549469715e-05
+1.164122157477983120e-05
+7.462357525116009515e-06
+2.895095125893211094e-05
+8.186711861579980699e-05
+1.433988697999628067e-04
+1.671500751036303703e-04
+1.364683269104405533e-04
+9.024436820815676650e-05
+3.708309077266020532e-05
+2.890250568802940319e-05
+2.545981067371656597e-05
+9.608764755173169493e-06
+1.477783765308723793e-05
+5.446321132223924017e-06
+1.305212268076836227e-05
+2.912815902153710821e-06
+7.848107849052083496e-06
+3.189810159262717481e-06
+3.295427632516271771e-06
+3.738903701290118612e-06
+2.731544192705088251e-06
+3.990276802319740604e-06
+1.677168642530778135e-06
+1.448888550883603575e-06
+3.288416820050020856e-06
+7.231431577564521631e-06
+3.392004149179162293e-06
+4.089754234697339359e-06
+8.368591977283712654e-06
+6.775557432875877529e-06
+6.809189193297367049e-06
+9.834575243494364763e-06
+3.470366827540400559e-06
+8.547727105015356586e-06
+3.280358585509776591e-06
+9.754611735103563822e-06
+7.514197411184707411e-06
+1.166563531784916224e-05
+1.040288364513462300e-05
+6.237041745117475721e-06
+6.630295143297579327e-06
+7.844365005853883561e-06
+2.075328571792409491e-05
+6.101659688661570857e-05
+1.055187737330542453e-04
+1.110719572711058565e-04
+8.653207972909302871e-05
+5.442523300633485663e-05
+5.086950037322033290e-05
+2.939612566630938747e-05
+1.121911437987045218e-05
+1.839610945203151208e-05
+9.440805722503535356e-06
+6.800895117351003194e-06
+5.234733501291996309e-06
+7.323001528227842180e-06
+4.217358654008184668e-06
+4.448887094072950570e-06
+1.673366274680869003e-06
+4.361018427016797803e-06
+1.538780090981422110e-06
+1.326046123187507906e-06
+5.071998578741141572e-06
+1.566110578307520571e-06
+2.238683920102450288e-06
+9.027118408908287199e-06
+5.134389808435350164e-06
+8.278882596400055801e-06
+8.326667918713622849e-06
+5.406232514955997811e-06
+8.158450535969297637e-06
+2.912544498479828406e-06
+6.130448049307753238e-06
+3.706916474868812994e-06
+9.618870665834344528e-06
+3.038759475437507005e-06
+8.152622149290585950e-06
+7.442405095883984387e-06
+7.251979880232891761e-06
+1.345289097382566205e-05
+6.484094675369502612e-06
+9.157389986883205993e-06
+2.791712611242079981e-05
+6.526176526856817086e-05
+7.701735964229616642e-05
+9.399479620859495406e-05
+9.762625711312948303e-05
+6.357231946567924600e-05
+3.571830890471986363e-05
+1.574805775048715437e-05
+2.063066094833278474e-05
+9.981134471012687105e-06
+8.477897534370954183e-06
+3.619153606697908201e-06
+7.346383876766209951e-06
+6.197055169624127582e-06
+4.632392858442670465e-06
+2.446999993192751568e-06
+3.995598708513973971e-06
+1.638205356175682460e-06
+3.615218385008082614e-06
+1.868220255410428181e-06
+4.617813084448795000e-06
+2.589815698595148798e-06
+2.147721571164676968e-06
+4.711893647962463291e-06
+7.974210053283515236e-06
+7.835923381831604050e-06
+4.022358958757627990e-06
+1.068796360379500415e-05
+3.827044897657732597e-06
+8.694573205060160349e-06
+3.815058012295278073e-06
+6.726413585264968137e-06
+5.688395959428672245e-06
+1.109936301524548134e-05
+2.871482236506880073e-06
+1.014349445737931159e-05
+6.409678059929468675e-06
+6.159283780581607207e-06
+1.121828823894809893e-05
+1.930724144875425996e-05
+2.368075383933873385e-05
+3.993519843942870375e-05
+5.426973814274646844e-05
+5.889917161213504507e-05
+4.654565070496732821e-05
+4.112691027990550847e-05
+3.611334376530704409e-05
+2.163821049959776879e-05
+7.166147943609159671e-06
+1.479626507090532473e-05
+8.055188705428383925e-06
+3.612482793422799757e-06
+8.113257371625349546e-06
+2.858965265597931317e-06
+5.272435823251595623e-06
+2.798428162959585470e-06
+3.071240811448096359e-06
+4.166153414075621212e-06
+4.523261858327535659e-06
+2.043623937954499954e-06
+2.293334017954925644e-06
+4.110662607386587397e-06
+9.371818648951514765e-07
+3.749044941266863119e-06
+9.322850893679703900e-06
+3.306281841327061541e-06
+5.637410200798404109e-06
+5.619056947607462292e-06
+4.947721765108938754e-06
+7.419917280884866413e-06
+4.215691247813105303e-06
+8.278053805979353495e-06
+5.280333141360595392e-06
+6.658348926736590946e-06
+8.559159877573808254e-06
+4.407245657252173405e-06
+7.540261373681533721e-06
+9.395104179944304589e-06
+4.003369466518164421e-06
+1.036113192176750064e-05
+2.384727701888466556e-05
+3.611825231072705525e-05
+5.151259736446971594e-05
+5.251794712521616501e-05
+5.404588141480124158e-05
+5.050117657088447663e-05
+2.446361185070979950e-05
+1.345543491324422149e-05
+1.780039301051118493e-05
+1.070226967072621502e-05
+4.532520647732787951e-06
+5.507990841366020463e-06
+3.634526090234247894e-06
+6.027594476556584054e-06
+3.109226613263587016e-06
+4.508757131356297167e-06
+1.245919929217743143e-06
+2.938204727849814161e-06
+2.552368037172559568e-06
+1.098986093040022345e-06
+4.029400518642299462e-06
+2.331543977129609811e-06
+2.628006730089086196e-07
diff --git a/test/HFSTest.cpp b/test/HFSTest.cpp
index b4fffcc5a030b6a2662459f06353e386c8202212..72f61e44971966449c4bfbe8a6fb3d62028f5537 100644
--- a/test/HFSTest.cpp
+++ b/test/HFSTest.cpp
@@ -203,22 +203,22 @@ void HFSTest::testTransformation()
 
     fgs.transform_to_detector(vecx, vecVel, 0, 0,  output);
     CPPUNIT_ASSERT_DOUBLES_EQUAL(output[0], 0, 1e-7);
-    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], acos(cos(1.7*1e-8))*(360/TWO_PI)*3600000/176.0, 0.001);
+    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], 1.7*1e-8*(360/TWO_PI)*3600000/176.0, 0.1);
 
     fgs.transform_to_detector(vecy, vecVel, 0, 0, output);
-    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[0], acos(cos(1e-5))*(360/TWO_PI)*3600000/176.0, 0.1);
+    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[0], 1e-5*(360/TWO_PI)*3600000/176.0, 0.1);
     CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], 0, 1e-7);
 
     fgs.transform_to_detector(vecz, vecVel, 0, 0, output);
     CPPUNIT_ASSERT_DOUBLES_EQUAL(output[0], 0, 1e-7);
-    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], acos(cos(0.999998*1e-5))*(360/TWO_PI)*3600000/176.0, 0.1);
+    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], 0.999998*1e-5*(360/TWO_PI)*3600000/176.0, 0.1);
 
     vecVel[0] = 1000;
 
     fgs.transform_to_detector(vecx, vecVel, 0, 0,  output);
-    velRes = acos((cos(1.7*1e-8) - 1.7/CVEL)/(1 - cos(1.7*1e-8)*(1.7/CVEL)));
+    velRes = 1.7*1e-8 - 1.7/CVEL;
     CPPUNIT_ASSERT_DOUBLES_EQUAL(output[0], 0, 1e-7);
-    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], velRes*(360/TWO_PI)*3600000/176.0, 0.001);
+    CPPUNIT_ASSERT_DOUBLES_EQUAL(output[1], velRes*(360/TWO_PI)*3600000/176.0, 0.1);
 
 
 }
@@ -230,14 +230,14 @@ void HFSTest::testMainLoop()
     FGS fgs(real_path);
     struct hfs_state state;
     hfs_parameters update;
-    centroid_packet output;
+    outputHfs outPacket;
     double quat[4] = {0.8892834993148474, -0.0006038143244162956, 0.2873837014059442, -0.3557880006700909};
     double vel[3] = {0.0, 0.0, 0.0};
     double time;
     double dt = 0.015625;
     unsigned int i;
 
-    output.time = 0.;
+    outPacket.time = 0.;
     time = 0.;
     update.reset = 0;
     /*set FGS channel*/
@@ -278,14 +278,14 @@ void HFSTest::testMainLoop()
     update.ang_rate[1] = 1;
     update.ang_rate[2] = 1;
 
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     state = fgs.get_hfs_state();
     CPPUNIT_ASSERT_DOUBLES_EQUAL(state.sim_time, 0.0, 0.00001);
     std::cout << "Check exposure start\n";
     CPPUNIT_ASSERT_DOUBLES_EQUAL(state.start_exposure, 0.0, 0.00001);
 
     update.time = update.time + dt;    
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     state = fgs.get_hfs_state();
     std::cout << "Check time propagation\n";
     CPPUNIT_ASSERT_DOUBLES_EQUAL(state.sim_time, dt, 0.00001);
@@ -294,7 +294,7 @@ void HFSTest::testMainLoop()
     for(i = 0; i < 10; i++)
     {
         update.time = update.time + dt;    
-        fgs.set_params(update, &output);
+        fgs.set_params(update, &outPacket);
     }
     
     state = fgs.get_hfs_state();
@@ -303,20 +303,20 @@ void HFSTest::testMainLoop()
     CPPUNIT_ASSERT_DOUBLES_EQUAL(state.start_exposure, 0.109375, 0.00001);
 
     std::cout << "Check generated centroid packet\n";
-    CPPUNIT_ASSERT(output.x > 100);
-    CPPUNIT_ASSERT_DOUBLES_EQUAL(output.time, 0.12, 0.01);
+    CPPUNIT_ASSERT(outPacket.x < 1);
+    CPPUNIT_ASSERT_DOUBLES_EQUAL(outPacket.time, 0.12, 0.01);
 
     std::cout << "Check Channel transition\n";
     
     update.channel = 2;
     update.time = update.time + dt;
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     update.time = update.time + dt;
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     
     /* Advance time to next centroid generation */
     update.time = update.time + dt;    
-    fgs.set_params(update, &output); 
+    fgs.set_params(update, &outPacket); 
 
     state = fgs.get_hfs_state();
     CPPUNIT_ASSERT_DOUBLES_EQUAL(state.transition_end, update.time + 0.5, 0.0001);
@@ -324,7 +324,7 @@ void HFSTest::testMainLoop()
     for(i = 0; i < 50; i++)
     {
         update.time = update.time + dt;    
-        fgs.set_params(update, &output);
+        fgs.set_params(update, &outPacket);
     }
     
     state = fgs.get_hfs_state();
@@ -333,7 +333,7 @@ void HFSTest::testMainLoop()
     std::cout << "Check Reset of FGS\n";
     update.reset = 1;
     update.time = update.time + dt;    
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     
     update.reset = 0;
     update.channel = 1;
@@ -343,7 +343,7 @@ void HFSTest::testMainLoop()
     for(i = 0; i < 50; i++)
     {
         update.time = update.time + dt;    
-        fgs.set_params(update, &output);
+        fgs.set_params(update, &outPacket);
     }
 
     state = fgs.get_hfs_state();
@@ -365,14 +365,14 @@ void HFSTest::testSave()
     struct hfs_state state;
     struct hfs_state stateNew;    
     hfs_parameters update;
-    centroid_packet output;
+    outputHfs outPacket;
     double quat[4] = {0.8892834993148474, -0.0006038143244162956, 0.2873837014059442, -0.3557880006700909};
     double vel[3] = {0.0, 0.0, 0.0};
     double time;
     double dt = 0.015625;
     unsigned int i;
 
-    output.time = 0.;
+    outPacket.time = 0.;
     time = 0.;
     update.reset = 0;
     /*set FGS channel*/
@@ -413,18 +413,18 @@ void HFSTest::testSave()
     update.ang_rate[1] = 1;
     update.ang_rate[2] = 1;
 
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
 
     update.channel = 2;
     
     for(i = 0; i < 50; i++)
     {
         update.time = update.time + dt;    
-        fgs.set_params(update, &output);
+        fgs.set_params(update, &outPacket);
     }
 
     update.save = 1;
-    fgs.set_params(update, &output);
+    fgs.set_params(update, &outPacket);
     update.save = 0;
 
     FGS fgsSave(realPathNew);
diff --git a/test/HFS_config_test.xml b/test/HFS_config_test.xml
index ce7ebb6aeead439d2ccd32f8543fecc1f947b0a3..54e7b025daa54036fb46e41e809db1e67eac4fcd 100644
--- a/test/HFS_config_test.xml
+++ b/test/HFS_config_test.xml
@@ -130,6 +130,9 @@
         Index can range from -1 to 1. A value of 0.5 to 0.6 serves as a
         decent cutoff for invalid measurements-->
   <validation_pearson_limit>0.6</validation_pearson_limit>
+  
+  <!-- default failed status of the HFS -->
+  <failed_status>0</failed_status>
 
   <!--  Configuration of the Tracking procedure -->
   <Tracking>