diff --git a/.gitignore b/.gitignore index 600fba9..ee06264 100644 --- a/.gitignore +++ b/.gitignore @@ -142,3 +142,5 @@ deployment/*/Pulumi.prod*.yaml tmp_downloads +containers/hvr/*.gz +containers/hvr/*.lic diff --git a/containers/predictive_maintenance/Dockerfile b/containers/predictive_maintenance/Dockerfile new file mode 100644 index 0000000..e2f5e94 --- /dev/null +++ b/containers/predictive_maintenance/Dockerfile @@ -0,0 +1,14 @@ +FROM python:3.10 + +WORKDIR /app_pred + +COPY requirements.txt . + +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +# load or predict +# ENV LOAD_MODE="load" + +ENTRYPOINT ["./entrypoint.sh"] \ No newline at end of file diff --git a/containers/predictive_maintenance/anomaly_last10.pickle b/containers/predictive_maintenance/anomaly_last10.pickle new file mode 100644 index 0000000..848683c Binary files /dev/null and b/containers/predictive_maintenance/anomaly_last10.pickle differ diff --git a/containers/predictive_maintenance/config.py b/containers/predictive_maintenance/config.py new file mode 100644 index 0000000..18fa036 --- /dev/null +++ b/containers/predictive_maintenance/config.py @@ -0,0 +1,18 @@ +import os + +# influx +token = os.environ.get("INFLUX_TOKEN") +org = os.environ.get("INFLUX_ORG") or "Starschema" +url_base = os.environ.get("INFLUX_URL") or "http://influxdb2" +url_port = int(os.environ.get("INFLUX_PORT") or 80) +url = url_base + ":" + str(url_port) + +bucket = os.environ.get("INFLUX_BUCKET") or "default" + +# mqtt +broker_address = os.environ.get("MQTT_HOST") +broker_port = int(os.environ.get("MQTT_PORT") or 1883) +wait_time_on_publish = 6 + +raw_data_topic = "/engines/raw" +predictions_topic = "/engines/predictions" diff --git a/containers/predictive_maintenance/data_help_funcs.py b/containers/predictive_maintenance/data_help_funcs.py new file mode 100644 index 0000000..f70427a --- /dev/null +++ b/containers/predictive_maintenance/data_help_funcs.py @@ -0,0 +1,56 @@ +import pandas as pd + + +def get_test_data(): + TEST_DATA_PATH = "test_data_looped.csv" + test_set = pd.read_csv(TEST_DATA_PATH).sort_values("time_in_cycles") + test_set = test_set.sort_values(by=["new_cycle", "engine_no"]) + test_set = test_set.drop("new_cycle", axis=1) + return test_set + + +def rename_sensors(row, pred_feautures, anomaly_features): + sensor_names = [ + "Total temperature at fan inlet", + "Total temperature at LPC outlet", + "Total temperature at HPC outlet", + "Total Temperature LPT outlet", + "Pressure at fan inlet", + "Total pressure in bypass-duct", + "Total pressure at HPC outlet", + "Physical fan speed", + "Physical core speed", + "Engine pressure ratio (P50/P2)", + "Static pressure at HPC outlet", + "Ratio of fuel flow to Ps", + "Corrected fan speed", + "Corrected core speed", + "Bypass Ratio", + "Burner fuel-air ratio", + "Bleed enthalpy", + "Demanded fan speed", + "Demanded corrected fan speed", + "HPT coolant bleed", + "LPT coolant bleed", + ] + + sid_to_fname = {f"sensor_{i+1}": name for i, name in enumerate(sensor_names)} + + col_rename_dict = { + "engine_no": "Engine ID", + "time_in_cycles": "Completed cycles", + "op_setting_1": "Altitude", + "op_setting_2": "Mach number", + **sid_to_fname, + } + + row.index = [col_rename_dict[attr_name] for attr_name in row.index] + top_predicitive_features = { + f"top_{ind+1}_predictive_feature": col_rename_dict[f.replace("_avg", "")] + for ind, f in enumerate(pred_feautures) + } + top_anomalous_features = { + f"anomaly_feature_{ind+1}": col_rename_dict[f] + for ind, f in enumerate(anomaly_features) + } + return row, top_predicitive_features, top_anomalous_features diff --git a/containers/predictive_maintenance/entrypoint.sh b/containers/predictive_maintenance/entrypoint.sh new file mode 100755 index 0000000..8f8f0d7 --- /dev/null +++ b/containers/predictive_maintenance/entrypoint.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# The first argument is assigned to the variable 'input' +input=${LOAD_MODEL:-"predict"} + +# Check the input value and execute the corresponding script +if [[ $input == "predict" ]]; then + echo "Executing main_predict.py" + python main_predict.py +elif [[ $input == "load" ]]; then + echo "Executing main_data_load.py" + python main_data_load.py +else + echo "Invalid input. Please enter either 'load' or 'predict'." +fi diff --git a/containers/predictive_maintenance/first_9_records_test.csv b/containers/predictive_maintenance/first_9_records_test.csv new file mode 100644 index 0000000..073e71a --- /dev/null +++ b/containers/predictive_maintenance/first_9_records_test.csv @@ -0,0 +1,91 @@ +engine_no,time_in_cycles,op_setting_1,op_setting_2,sensor_2,sensor_3,sensor_4,sensor_6,sensor_7,sensor_8,sensor_9,sensor_11,sensor_12,sensor_13,sensor_15,sensor_17,sensor_20,sensor_21 +1,1,0.0017,0.0003,642.39,1586.1,1402.11,21.61,554.1,2388.06,9052.13,47.54,520.94,2388.09,8.4214,394,38.78,23.2348 +1,2,-0.0004,0.0004,642.43,1592.56,1406.54,21.61,553.17,2388.11,9042.55,47.5,521.81,2388.12,8.4005,393,38.95,23.3202 +1,3,-0.0005,-0.0,642.35,1587.14,1403.33,21.61,553.6,2388.1,9033.93,47.44,521.48,2388.11,8.4089,393,38.79,23.2922 +1,4,-0.002,0.0004,642.5,1594.4,1409.25,21.61,552.67,2388.11,9046.28,47.54,521.43,2388.18,8.438,392,38.84,23.4524 +1,5,0.0064,-0.0002,642.81,1584.77,1410.35,21.61,553.07,2388.06,9045.8,47.68,521.47,2388.11,8.4478,393,39.04,23.3366 +1,6,0.0018,-0.0002,642.64,1586.47,1409.04,21.61,553.98,2388.09,9051.29,47.56,521.61,2388.09,8.43,393,38.86,23.2776 +1,7,0.0005,-0.0003,642.54,1585.61,1411.32,21.61,553.46,2388.09,9048.64,47.62,521.57,2388.1,8.4406,392,38.8,23.1772 +1,8,-0.003,0.0002,642.37,1590.47,1410.7,21.61,553.08,2388.12,9049.68,47.42,521.67,2388.12,8.4247,391,38.76,23.3676 +1,9,0.001,-0.0001,641.95,1585.75,1399.4,21.61,553.66,2388.06,9048.35,47.34,521.28,2388.14,8.4223,393,38.81,23.3485 +2,1,-0.001,-0.0002,641.94,1594.32,1405.5,21.61,554.14,2388.07,9051.55,47.46,520.87,2388.11,8.4393,392,38.76,23.3793 +2,2,0.0039,-0.0,642.61,1592.31,1406.78,21.61,553.08,2388.11,9053.39,47.5,521.45,2388.08,8.4325,393,38.97,23.2731 +2,3,-0.0034,-0.0001,642.23,1589.66,1410.36,21.61,553.29,2388.1,9061.71,47.43,521.66,2388.1,8.4642,393,38.67,23.2775 +2,4,-0.0013,0.0002,642.67,1593.12,1408.66,21.61,553.71,2388.12,9047.99,47.65,521.44,2388.16,8.4115,391,38.8,23.3566 +2,5,-0.0018,0.0004,642.77,1589.93,1408.31,21.61,553.21,2388.08,9057.89,47.56,521.32,2388.14,8.3731,393,39.08,23.4748 +2,6,0.001,-0.0002,642.83,1589.25,1406.72,21.61,553.29,2388.15,9053.61,47.58,521.7,2388.1,8.4222,392,38.88,23.2899 +2,7,-0.0011,0.0003,642.69,1591.14,1402.15,21.61,553.16,2388.09,9057.27,47.42,521.31,2388.06,8.43,392,38.92,23.285 +2,8,-0.0031,0.0005,642.41,1590.39,1399.39,21.61,552.75,2388.12,9053.8,47.58,521.46,2388.12,8.4281,393,38.94,23.4308 +2,9,0.0028,0.0004,642.76,1589.31,1416.61,21.61,553.56,2388.1,9053.53,47.54,521.28,2388.1,8.4141,393,38.61,23.2479 +3,1,-0.0037,-0.0004,642.64,1593.48,1402.4,21.61,553.58,2388.07,9049.3,47.41,521.82,2388.08,8.3973,391,38.96,23.3836 +3,2,0.0038,-0.0,641.94,1586.18,1397.07,21.61,553.94,2388.05,9048.85,47.2,521.82,2388.05,8.4227,393,38.94,23.368 +3,3,-0.0014,-0.0004,642.19,1591.6,1407.08,21.61,554.51,2388.11,9049.73,47.43,521.98,2388.06,8.42,393,38.88,23.4072 +3,4,-0.0002,-0.0003,642.66,1588.64,1396.73,21.61,554.21,2388.11,9038.04,47.42,522.19,2388.04,8.446,393,38.97,23.3827 +3,5,-0.0022,0.0004,642.48,1589.61,1408.72,21.61,553.52,2388.09,9046.44,47.47,521.8,2388.07,8.4349,392,38.67,23.3019 +3,6,-0.0017,-0.0004,642.0,1586.4,1397.39,21.61,554.33,2388.03,9060.78,47.45,522.16,2388.06,8.4302,394,39.09,23.4559 +3,7,-0.0011,-0.0005,642.27,1578.13,1407.15,21.61,554.09,2388.04,9052.65,47.26,522.68,2387.99,8.4043,393,38.87,23.3655 +3,8,0.0,-0.0003,642.39,1590.65,1396.75,21.61,553.93,2388.05,9039.78,47.32,522.1,2388.11,8.4106,393,38.95,23.3547 +3,9,-0.0035,-0.0005,642.87,1587.52,1399.3,21.61,554.95,2388.08,9045.12,47.35,522.11,2388.05,8.4274,393,38.88,23.3217 +4,1,-0.0015,0.0003,642.71,1587.27,1405.1,21.61,553.55,2387.99,9063.94,47.4,521.98,2388.0,8.3982,391,39.03,23.4821 +4,2,-0.0004,0.0,642.59,1583.62,1402.26,21.61,555.09,2388.05,9068.08,47.27,521.95,2388.07,8.4185,393,39.14,23.3301 +4,3,-0.0004,0.0003,641.87,1587.99,1412.41,21.61,554.45,2388.02,9064.87,47.44,522.37,2388.06,8.3964,392,38.99,23.3706 +4,4,-0.0,-0.0003,642.2,1590.72,1402.53,21.61,554.32,2388.03,9066.19,47.3,521.94,2388.06,8.3994,392,38.85,23.3627 +4,5,-0.0001,-0.0,642.57,1589.26,1402.45,21.61,554.33,2388.08,9066.68,47.29,521.75,2388.02,8.4047,392,38.89,23.3105 +4,6,-0.0013,0.0003,641.66,1586.94,1403.95,21.61,554.48,2388.02,9067.9,47.37,521.91,2388.03,8.4041,393,39.15,23.3695 +4,7,-0.0011,-0.0002,642.56,1593.65,1406.83,21.61,554.18,2388.06,9064.05,47.41,521.87,2388.04,8.4185,392,38.75,23.3598 +4,8,-0.0019,0.0003,642.74,1594.24,1402.7,21.61,554.19,2388.01,9060.16,47.22,521.81,2388.06,8.4192,392,38.91,23.5189 +4,9,0.0005,0.0002,642.43,1583.03,1398.76,21.61,553.2,2388.05,9056.44,47.42,522.07,2388.03,8.4073,390,38.97,23.3778 +5,1,0.0018,0.0001,642.65,1585.71,1394.7,21.61,554.13,2388.14,9044.2,47.69,521.92,2388.11,8.4409,392,38.89,23.3721 +5,2,-0.0004,0.0003,642.42,1593.58,1400.03,21.61,553.43,2388.08,9057.18,47.44,521.18,2388.1,8.4322,392,38.85,23.2555 +5,3,-0.0021,-0.0005,642.6,1593.09,1410.91,21.61,552.92,2388.09,9055.05,47.45,521.78,2388.09,8.3939,392,38.91,23.3312 +5,4,0.002,0.0,643.16,1589.06,1402.44,21.61,553.71,2388.08,9054.31,47.42,521.86,2388.1,8.4385,394,38.81,23.3245 +5,5,-0.0002,-0.0005,642.07,1585.92,1406.07,21.61,553.36,2388.13,9059.62,47.3,521.3,2388.12,8.4046,394,38.91,23.3379 +5,6,-0.0033,-0.0002,642.55,1593.88,1412.78,21.61,553.5,2388.12,9059.94,47.34,521.6,2388.05,8.45,392,39.04,23.3846 +5,7,-0.003,0.0002,642.35,1587.41,1403.04,21.61,553.45,2388.08,9048.99,47.5,521.76,2388.04,8.4698,392,39.04,23.4062 +5,8,-0.001,0.0002,642.63,1588.18,1407.92,21.61,553.93,2388.08,9050.76,47.49,521.72,2388.05,8.4035,392,38.77,23.4709 +5,9,-0.0025,-0.0,642.71,1572.98,1400.44,21.61,553.78,2388.11,9048.7,47.46,521.76,2388.11,8.4011,392,38.87,23.2853 +6,1,-0.0007,0.0003,642.2,1586.71,1398.93,21.61,554.78,2387.93,9055.53,47.12,522.03,2388.05,8.4242,392,39.12,23.4108 +6,2,-0.0007,0.0001,641.7,1580.85,1403.05,21.61,554.12,2388.0,9067.05,47.22,522.72,2387.97,8.3931,391,39.05,23.4484 +6,3,0.0014,-0.0001,642.05,1577.46,1404.75,21.61,554.38,2387.99,9056.05,47.03,522.66,2388.04,8.4203,392,39.21,23.4586 +6,4,-0.0019,0.0004,642.6,1586.51,1399.61,21.61,553.7,2388.04,9063.07,47.18,522.84,2387.96,8.4187,392,38.94,23.3548 +6,5,-0.0011,0.0002,642.2,1584.74,1401.17,21.61,554.29,2388.04,9069.06,47.15,522.37,2387.99,8.374,394,39.0,23.4887 +6,6,0.0025,0.0005,641.92,1583.24,1399.53,21.61,554.33,2387.96,9056.89,47.21,522.4,2387.97,8.4409,392,39.01,23.4372 +6,7,-0.0003,0.0005,642.34,1586.99,1394.65,21.61,554.63,2388.03,9061.36,47.49,522.45,2388.01,8.3901,392,39.03,23.3065 +6,8,-0.0014,-0.0003,642.14,1583.18,1402.85,21.61,554.72,2387.99,9055.8,47.01,522.85,2387.97,8.4037,393,38.85,23.4653 +6,9,-0.0012,0.0004,642.5,1584.76,1396.58,21.61,554.6,2388.03,9067.66,47.15,522.32,2387.98,8.4054,392,38.88,23.3633 +7,1,0.0021,0.0001,642.26,1588.45,1400.02,21.61,552.94,2388.09,9065.41,47.61,521.18,2388.07,8.43,392,38.81,23.418 +7,2,-0.0009,0.0004,642.59,1590.0,1407.22,21.61,552.5,2388.11,9059.25,47.48,522.08,2388.12,8.4447,394,38.79,23.3135 +7,3,-0.0008,-0.0,642.82,1586.05,1408.64,21.61,553.75,2388.09,9063.08,47.45,521.93,2388.03,8.4202,392,38.87,23.414 +7,4,0.0005,-0.0005,642.24,1591.24,1398.32,21.61,553.56,2388.09,9057.79,47.52,521.85,2388.05,8.4472,393,38.91,23.2512 +7,5,-0.0005,-0.0004,642.32,1580.76,1399.39,21.61,554.21,2388.04,9059.36,47.43,521.6,2388.08,8.4073,391,39.02,23.3361 +7,6,-0.0042,-0.0002,642.43,1582.35,1402.19,21.61,554.3,2388.07,9052.55,47.47,521.32,2388.08,8.4223,392,39.02,23.3396 +7,7,-0.0003,0.0003,642.54,1583.29,1394.98,21.61,553.55,2388.07,9054.04,47.44,521.24,2388.12,8.3992,393,38.75,23.4152 +7,8,0.0046,-0.0004,642.39,1590.11,1400.12,21.61,553.2,2388.03,9058.59,47.39,521.89,2388.05,8.4073,392,38.91,23.2867 +7,9,0.003,-0.0005,642.85,1577.69,1402.84,21.61,553.31,2388.05,9062.32,47.26,521.76,2388.08,8.4612,394,38.9,23.2371 +8,1,-0.0014,0.0004,642.62,1591.75,1411.32,21.61,553.71,2388.07,9052.57,47.55,521.45,2388.1,8.4655,392,38.92,23.2762 +8,2,-0.0004,0.0004,642.46,1591.88,1406.97,21.61,553.44,2388.13,9043.86,47.3,521.67,2388.1,8.4789,392,38.88,23.2764 +8,3,0.0042,0.0,641.78,1585.31,1400.54,21.61,553.67,2388.12,9051.11,47.39,521.46,2388.09,8.435,394,38.82,23.2387 +8,4,0.0027,-0.0003,642.71,1592.71,1410.04,21.61,553.22,2388.13,9050.29,47.38,521.28,2388.14,8.4365,393,38.79,23.4034 +8,5,-0.0001,0.0004,642.09,1587.59,1405.8,21.61,553.73,2388.1,9048.07,47.56,521.67,2388.11,8.4685,391,38.8,23.3085 +8,6,0.0037,0.0001,642.85,1586.86,1405.66,21.61,553.39,2388.11,9051.76,47.5,521.45,2388.12,8.4695,392,38.83,23.2958 +8,7,-0.0003,-0.0001,642.26,1583.78,1417.79,21.61,553.33,2388.06,9047.15,47.54,522.18,2388.11,8.4786,393,38.85,23.3976 +8,8,0.0001,-0.0,642.4,1587.29,1405.13,21.61,553.6,2388.11,9045.31,47.56,522.0,2388.1,8.4239,393,38.93,23.3802 +8,9,0.0044,0.0001,642.72,1589.08,1407.47,21.61,554.43,2388.07,9051.04,47.53,521.41,2388.1,8.4484,392,39.04,23.3733 +9,1,-0.0032,-0.0001,642.51,1579.7,1402.95,21.61,554.54,2388.07,9060.7,47.13,522.42,2388.03,8.4373,391,39.03,23.3501 +9,2,-0.0029,0.0001,642.06,1583.52,1394.46,21.61,553.95,2388.02,9062.06,47.04,521.66,2388.03,8.4357,392,38.99,23.3998 +9,3,-0.0035,-0.0004,641.88,1583.81,1388.81,21.61,554.1,2388.06,9062.63,47.42,522.2,2387.99,8.4127,393,38.94,23.381 +9,4,0.0013,0.0004,641.64,1584.57,1395.56,21.61,554.0,2388.05,9061.06,47.11,522.34,2388.0,8.379,390,39.03,23.4494 +9,5,0.0023,0.0004,642.66,1583.04,1394.77,21.61,554.81,2388.08,9062.0,47.19,522.28,2387.97,8.397,392,38.94,23.31 +9,6,0.0,-0.0004,642.15,1585.54,1398.23,21.61,553.91,2387.99,9066.45,47.53,523.04,2387.98,8.4252,392,38.9,23.2549 +9,7,-0.0007,0.0001,642.17,1592.67,1398.81,21.61,553.88,2388.09,9054.66,47.25,522.31,2388.05,8.3991,393,39.05,23.4584 +9,8,-0.0024,0.0001,641.94,1577.83,1399.59,21.61,554.3,2388.05,9065.07,47.43,522.55,2387.98,8.4123,391,38.99,23.4375 +9,9,-0.0,0.0005,642.07,1590.77,1404.51,21.61,554.58,2387.97,9057.62,47.24,522.33,2388.01,8.4321,395,39.08,23.339 +10,1,0.0019,-0.0002,642.3,1580.93,1404.55,21.61,554.16,2388.0,9073.83,47.25,522.3,2387.97,8.3792,392,39.01,23.4547 +10,2,0.0025,0.0,642.13,1585.29,1394.47,21.61,552.75,2388.03,9070.74,47.03,521.8,2388.03,8.4158,392,38.91,23.3055 +10,3,-0.0011,-0.0005,642.35,1582.27,1396.33,21.61,555.45,2387.94,9068.22,47.22,522.47,2387.99,8.4124,391,39.16,23.3677 +10,4,-0.0009,-0.0004,641.8,1585.23,1398.98,21.61,554.99,2387.98,9068.93,47.07,522.19,2387.99,8.45,391,39.07,23.3832 +10,5,-0.0011,0.0001,641.85,1592.31,1397.87,21.61,554.04,2388.0,9070.44,47.1,521.96,2387.92,8.4068,392,39.03,23.4866 +10,6,0.0019,-0.0005,642.46,1581.0,1400.8,21.61,554.18,2387.99,9070.09,47.26,522.69,2387.95,8.3922,390,39.05,23.5227 +10,7,-0.0042,-0.0003,642.08,1578.64,1405.97,21.61,554.72,2388.09,9066.95,47.21,522.58,2388.05,8.3928,392,38.92,23.3819 +10,8,-0.0018,-0.0005,642.1,1583.29,1402.88,21.61,554.15,2388.0,9074.48,47.08,522.6,2388.04,8.3901,391,38.94,23.4539 +10,9,0.0027,0.0004,642.22,1588.95,1393.89,21.61,554.81,2388.03,9071.66,47.15,522.75,2388.0,8.3943,392,38.94,23.4024 diff --git a/containers/predictive_maintenance/lgbm_last10.pickle b/containers/predictive_maintenance/lgbm_last10.pickle new file mode 100644 index 0000000..348382c Binary files /dev/null and b/containers/predictive_maintenance/lgbm_last10.pickle differ diff --git a/containers/predictive_maintenance/main_data_load.py b/containers/predictive_maintenance/main_data_load.py new file mode 100644 index 0000000..8550075 --- /dev/null +++ b/containers/predictive_maintenance/main_data_load.py @@ -0,0 +1,29 @@ +import time +import traceback +import json +import config +import pandas as pd +from publish import publish_msg +from data_help_funcs import get_test_data +import warnings + +warnings.filterwarnings("ignore") + +test_set = get_test_data() + + +def generate(): + while True: + for idx, row in test_set.iterrows(): + try: + formated_msg = {**row} + formated_msg = json.dumps(formated_msg) + print(formated_msg) + publish_msg(formated_msg, config.raw_data_topic) + except Exception as exc: + print(traceback.format_exc()) + print(f"issue {exc}") + + +if __name__ == "__main__": + generate() diff --git a/containers/predictive_maintenance/main_predict.py b/containers/predictive_maintenance/main_predict.py new file mode 100644 index 0000000..a46e432 --- /dev/null +++ b/containers/predictive_maintenance/main_predict.py @@ -0,0 +1,115 @@ +import time +import traceback +import json +import threading +import paho.mqtt.client as mqtt +import pandas as pd +import influxdb_client, os, time +from influxdb_client import InfluxDBClient, Point, WritePrecision +from influxdb_client.client.write_api import SYNCHRONOUS +from influxdb_client.client.write_api import WriteApi +import config +from pred_maintenance_and_anomaly import get_model_dict +from data_help_funcs import rename_sensors +from publish import publish_msg +import warnings + +warnings.filterwarnings("ignore") + +try: + write_client = influxdb_client.InfluxDBClient( + url=config.url, token=config.token, org=config.org + ) +except: + print("Failed to init influx conn...") + +model_dict = get_model_dict() + + +def predict_on_msg(client, userdata, message): + print(f"Received message: {message.payload.decode('utf-8')}") + row = json.loads(message.payload.decode("utf-8")) + for k, v in row.items(): + row[k] = float(v) + row["engine_no"] = int(row["engine_no"]) + row = pd.Series(row) + + engine_no = row["engine_no"] + data = model_dict[engine_no].get_scores(row) + row, top_predicitive_features, top_anomalous_features = rename_sensors( + row, data[1], data[3] + ) + + formated_msg_orig = { + "Probability of failure within 30 cycles": data[0], + **top_predicitive_features, + "Anomaly score": data[2], + **top_anomalous_features, + **row, + } + formated_msg = json.dumps(formated_msg_orig) + publish_msg(formated_msg, config.predictions_topic) + + print(f"Sent msg: {formated_msg}") + + try: + influx_send_msg(formated_msg_orig, engine_no) + except Exception as exc: + print(f"Failed to send data to influx due to: {exc}") + + +def influx_send_msg(formated_msg_orig, engine_no): + write_api = write_client.write_api(write_options=SYNCHRONOUS) + + for key, value in formated_msg_orig.items(): + point = Point("measurement").tag("engine_no", int(engine_no)).field(key, value) + point2 = Point("measurement2").field(key, value) + write_api.write(bucket=config.bucket, org=config.org, record=point) + write_api.write(bucket=config.bucket, org=config.org, record=point2) + # time.sleep(0.1) # separate points by 1 second + + print("shared") + + +def listen_to_mqtt_topic(): + client = mqtt.Client() + client.connect(config.broker_address, config.broker_port) + client.subscribe(config.raw_data_topic) + + client.on_message = predict_on_msg + + client.loop_start() + time.sleep(30) + client.loop_stop() + return True + + +class MQTTWatcher(threading.Thread): + def __init__(self): + super().__init__() + self._stop_event = threading.Event() + + def run(self): + while not self._stop_event.is_set(): + listen_to_mqtt_topic() + + def stop(self): + self._stop_event.set() + + +def main(): + while True: + mqtt_watcher = MQTTWatcher() + mqtt_watcher.start() + + mqtt_watcher.join(timeout=36) + + if mqtt_watcher.is_alive(): + print("Thread is still running, terminating...") + mqtt_watcher.stop() + else: + print("Thread has finished") + + +if __name__ == "__main__": + main() diff --git a/containers/predictive_maintenance/pred_maintenance_and_anomaly.py b/containers/predictive_maintenance/pred_maintenance_and_anomaly.py new file mode 100644 index 0000000..ce79adb --- /dev/null +++ b/containers/predictive_maintenance/pred_maintenance_and_anomaly.py @@ -0,0 +1,248 @@ +from typing import Protocol +import numpy as np +import pandas as pd +import pickle + +# from typing_extensions import Protocol # for Python <3.8 + + +class ModellObj(Protocol): + def fit(self): + pass + + def predict(self): + pass + + +class ModellHandler: + @staticmethod + def load(path: str) -> ModellObj: + with open(path, "rb") as handle: + model = pickle.load( + handle, + ) + return model + + @staticmethod + def save(path: str): + # don't think we need to save models + pass + + +class PreProcessData: + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + def _calc_rw_stats(self, df_in): + """Calculate mean and std of data buffer + + Args: + df_in (dataframe) : The input dataframe to be proccessed (training or test) + + Reurns: + dataframe: contains the input dataframe with additional rolling mean and std for each sensor + + """ + sensor_cols = [c for c in df_in.columns if "sensor" in c] + + sensor_av_cols = [f + "_avg" for f in sensor_cols] + sensor_sd_cols = [f + "_sd" for f in sensor_cols] + + df_sub = df_in[sensor_cols] + + # get rolling mean for the subset + av = df_sub.mean() + av.index = sensor_av_cols + + # get the rolling standard deviation for the subset + sd = df_sub.std().fillna(0) + sd.index = sensor_sd_cols + + # combine the two new subset dataframes columns to the engine subset + rw_features_added = pd.concat([df_in.iloc[-1], av, sd], axis=0) + + # add percentiles + for i in range(1, 10): + temp_percentiles = df_sub.quantile(i / 10) + temp_percentiles.index = [f + "_quant_" + str(i) + "0" for f in sensor_cols] + rw_features_added = pd.concat([rw_features_added, temp_percentiles], axis=0) + + return rw_features_added + + def process(self, data: pd.DataFrame) -> pd.DataFrame: + # extend last item with rolling window features + rw_features_added = self._calc_rw_stats(data) + return rw_features_added + + +class PredictiveMaintanance: + _base_data_required_shape = None + + def __init__( + self, + base_data_set: pd.DataFrame, + preproc_data_help_variables: dict, + predict_modell: ModellObj, + predictive_features: list, + anomaly_model: ModellObj, + rolling_window_size: int, + ): + self.data_buffer = base_data_set + self.rolling_window_size = rolling_window_size + + self.predict_modell = predict_modell + self.predictive_features = predictive_features + + self.anomaly_model = anomaly_model + + self.data_preprocessor = PreProcessData(**preproc_data_help_variables) + + def get_scores(self, new_record: pd.DataFrame) -> tuple: + self.set_current_work_data(new_record) + pred_percent, top_predictive_feature = self.predict() + anomaly_score, anomaly_feature_name = self.find_anomaly() + return pred_percent, top_predictive_feature, anomaly_score, anomaly_feature_name + + def set_current_work_data(self, new_record: pd.DataFrame) -> None: + self.data_buffer = self.data_buffer.append(new_record, ignore_index=True) + + # remove first record if buffer was full + if len(self.data_buffer) > self.rolling_window_size: + self.data_buffer.drop(index=self.data_buffer.index[0], axis=0, inplace=True) + self.X = self.data_preprocessor.process(self.data_buffer) + + def predict(self) -> (float, str): + # get probabilities for class 1, which is failure + input_data = np.expand_dims(self.X[self.predictive_features], axis=0) + prediction = self.predict_modell.predict_proba(input_data)[0, 0] + + # get explanations for class 1 + shap_values = self.predict_modell.predict_proba(input_data, pred_contrib=True)[ + 0, :-1 + ] + shap_series = pd.Series( + index=self.predictive_features, data=shap_values + ).sort_values(ascending=False) + top3_features = shap_series[:3].index.values + + return prediction, top3_features + + def find_anomaly(self) -> (float, str): + anomaly_feature_columns = [c for c in self.X.index if "sensor" in c] + + isolation_forest_model = self.anomaly_model[0] + telemetry_stat_df = self.anomaly_model[1] + + input_data = pd.DataFrame(self.X[anomaly_feature_columns]).T + + # calculate anomaly scores + # isolation forest + score_isolationforest = isolation_forest_model.decision_function(input_data)[0] + + # mean+-std, percentiles + result_dict = {} + for f in anomaly_feature_columns: + result_dict[(f + "_perc_anom")] = np.where( + (input_data[f] < telemetry_stat_df.loc[1][f + "_percentile_1"]) + | (input_data[f] > telemetry_stat_df.loc[1][f + "_percentile_99"]), + 1, + 0, + ) + result_dict[(f + "_dev")] = abs( + (input_data[f] - telemetry_stat_df.loc[1][(f + "_mean")]) + / telemetry_stat_df.loc[1][(f + "_std")] + ) + + input_data = pd.concat([input_data, pd.DataFrame(result_dict)], axis=1) + + score_percentile = ( + input_data[[x for x in input_data.columns if "_perc_anom" in x]].sum(axis=1) + ).iloc[0] + score_dev = ( + input_data[[x for x in input_data.columns if "_dev" in x]].max(axis=1) + ).iloc[0] + + anomaly_score = ( + 5 * (-score_isolationforest + 0.13) * (100 / 0.30) + + (score_percentile * (100 / 140)) + + (score_dev * (2)) + ) / 7 + + if anomaly_score < 0: + anomaly_score = 0 + elif anomaly_score > 100: + anomaly_score = 100 + + # select anomalous feature + # anom_sensor1 = input_data[[ x for x in input_data.columns if '_dev' in x]].idxmax(axis=1).apply(lambda y: '_'.join(y.split('_')[:2])) + dft = input_data[[x for x in input_data.columns if "_dev" in x]].T + c = (dft.columns)[0] + t3 = list(dft[[c]].sort_values([c], ascending=False).index) + t4 = ["_".join(x.split("_")[:2]) for x in t3] + top_anomalous_features = list(dict.fromkeys(t4))[:3] + return (anomaly_score, top_anomalous_features) + + +PREDICTIVE_MODEL_PATH = "lgbm_last10.pickle" +predicitve_model = ModellHandler.load(PREDICTIVE_MODEL_PATH) + +ANOMALY_MODEL_PATH = "anomaly_last10.pickle" +anomaly_model_cores = ModellHandler.load(ANOMALY_MODEL_PATH) + +BASE_DATA_PATH = "first_9_records_test.csv" +base_data_set = pd.read_csv(BASE_DATA_PATH) + +predictive_feature_list = [ + "sensor_11", + "sensor_11_avg", + "sensor_12", + "sensor_12_avg", + "sensor_15", + "sensor_15_avg", + "sensor_17", + "sensor_17_avg", + "sensor_2", + "sensor_20", + "sensor_20_avg", + "sensor_21", + "sensor_21_avg", + "sensor_2_avg", + "sensor_3_avg", + "sensor_4", + "sensor_4_avg", + "sensor_7", + "sensor_7_avg", + "time_in_cycles", +] + +rolling_window_size = 10 + + +def get_model_dict(): + # for each engine in the test set, initialize model + model_dict = {} + for engine_no, group in base_data_set.groupby("engine_no"): + pred_maintenance_obj = PredictiveMaintanance( + base_data_set=group, + predict_modell=predicitve_model, + predictive_features=predictive_feature_list, + anomaly_model=anomaly_model_cores, + preproc_data_help_variables={}, + rolling_window_size=rolling_window_size, + ) + model_dict[engine_no] = pred_maintenance_obj + return model_dict + + +# TEST_DATA_PATH = "remaining_records_test.csv" +# test_set = pd.read_csv(TEST_DATA_PATH) + + +# row = test_set.loc[0] +# engine_no = row["engine_no"] +# print(model_dict[engine_no].get_scores(row)) + + +# for idx, row in test_set.iterrows(): +# engine_no = row["engine_no"] +# print(model_dict[engine_no].get_scores(row)) diff --git a/containers/predictive_maintenance/publish.py b/containers/predictive_maintenance/publish.py new file mode 100644 index 0000000..650e5bb --- /dev/null +++ b/containers/predictive_maintenance/publish.py @@ -0,0 +1,11 @@ +import time +import paho.mqtt.client as mqtt +import config + + +def publish_msg(message, topic): + client = mqtt.Client() + client.connect(config.broker_address, config.broker_port) + client.publish(topic, message) + time.sleep(config.wait_time_on_publish) + client.disconnect() diff --git a/containers/predictive_maintenance/remaining_records_test.csv b/containers/predictive_maintenance/remaining_records_test.csv new file mode 100644 index 0000000..f6f4f43 --- /dev/null +++ b/containers/predictive_maintenance/remaining_records_test.csv @@ -0,0 +1,10878 @@ +engine_no,time_in_cycles,op_setting_1,op_setting_2,sensor_2,sensor_3,sensor_4,sensor_6,sensor_7,sensor_8,sensor_9,sensor_11,sensor_12,sensor_13,sensor_15,sensor_17,sensor_20,sensor_21 +2,10,-0.0045,0.0002,641.99,1586.37,1394.86,21.6,554.63,2387.99,9058.88,47.21,521.99,2387.97,8.3982,391,39.2,23.6005 +2,11,0.0006,0.0004,642.26,1589.21,1401.29,21.61,554.7,2388.01,9053.21,47.21,522.2,2388.03,8.4188,392,39.23,23.3888 +2,12,0.0002,0.0006,641.64,1579.99,1401.9,21.61,554.57,2387.98,9047.89,47.13,521.94,2387.97,8.3925,392,39.12,23.4201 +2,13,0.0007,0.0005,641.78,1586.77,1401.53,21.61,554.69,2387.94,9053.63,47.03,522.33,2387.99,8.3742,391,38.88,23.4317 +2,14,-0.0024,-0.0004,641.66,1584.04,1395.46,21.61,554.47,2388.01,9047.3,47.12,523.07,2387.98,8.3887,391,38.93,23.4074 +2,15,-0.0012,-0.0003,642.21,1579.84,1402.11,21.61,554.17,2388.02,9049.82,47.17,521.96,2388.02,8.3704,393,38.94,23.4311 +2,16,-0.001,0.0003,641.81,1581.99,1393.46,21.61,554.53,2387.99,9051.79,47.24,522.49,2387.95,8.3805,392,39.01,23.4462 +2,17,0.0003,-0.0001,642.43,1583.58,1390.27,21.61,553.62,2388.04,9052.05,47.13,522.71,2388.08,8.3714,391,39.04,23.5245 +2,18,0.0014,0.0001,641.95,1588.43,1400.25,21.61,554.83,2388.0,9051.35,47.22,522.92,2388.0,8.4053,391,39.0,23.4203 +2,19,0.0025,0.0001,641.75,1576.84,1401.77,21.61,555.25,2388.02,9055.07,47.14,522.38,2387.98,8.4035,392,39.1,23.4102 +2,20,0.0042,-0.0004,642.34,1582.94,1394.38,21.61,554.64,2388.0,9050.27,47.14,522.54,2387.94,8.3698,391,39.02,23.3821 +2,21,-0.0023,0.0001,642.05,1579.51,1392.28,21.61,554.72,2388.03,9055.29,47.04,522.58,2388.01,8.3954,391,39.24,23.5014 +2,22,0.0024,0.0006,642.16,1580.18,1397.67,21.61,554.35,2387.96,9053.31,47.17,521.73,2388.04,8.3792,391,38.98,23.4241 +2,23,-0.0013,0.0003,642.37,1580.89,1387.5,21.61,554.69,2387.96,9051.43,47.21,522.26,2388.07,8.3937,393,39.1,23.2867 +2,24,-0.0019,-0.0,641.99,1580.97,1398.67,21.61,553.5,2387.98,9052.35,47.15,522.25,2387.97,8.3866,391,39.18,23.3981 +2,25,0.0063,0.0001,641.81,1585.38,1396.62,21.61,554.14,2388.0,9055.28,47.19,522.31,2388.03,8.3959,391,38.99,23.4883 +2,26,-0.0011,0.0003,641.87,1575.38,1392.3,21.61,554.03,2387.98,9050.81,47.12,522.8,2388.0,8.3472,391,38.96,23.4691 +2,27,0.0006,0.0005,642.12,1585.44,1402.31,21.61,555.16,2388.03,9058.01,47.03,522.11,2388.06,8.4077,392,38.96,23.4275 +2,28,0.0037,0.0005,642.04,1581.6,1397.45,21.61,554.77,2387.99,9053.78,46.99,522.68,2387.93,8.3734,390,38.95,23.4395 +2,29,-0.0032,-0.0003,642.08,1583.78,1398.08,21.61,554.75,2388.0,9055.84,47.11,522.26,2388.02,8.37,390,38.97,23.4249 +2,30,0.0012,0.0,641.78,1590.32,1395.07,21.61,554.62,2387.98,9050.8,47.2,522.43,2388.0,8.419,391,39.1,23.3985 +2,31,-0.0009,0.0005,641.97,1579.86,1390.94,21.61,554.8,2388.0,9049.93,47.05,522.17,2388.04,8.4393,391,39.17,23.4154 +2,32,0.0013,-0.0001,641.58,1584.52,1391.11,21.61,554.56,2387.98,9045.87,47.12,522.54,2387.98,8.3783,390,38.97,23.4006 +2,33,-0.0032,0.0004,641.79,1585.17,1396.15,21.61,553.62,2388.01,9051.18,47.09,522.26,2387.99,8.4102,392,39.01,23.4434 +2,34,0.0042,0.0003,642.12,1584.08,1394.24,21.61,555.09,2388.0,9059.29,47.22,522.64,2387.96,8.4188,390,38.87,23.4571 +2,35,0.002,0.0002,641.37,1575.73,1392.55,21.61,554.73,2388.02,9057.34,47.25,522.0,2388.0,8.4164,394,39.06,23.5283 +2,36,0.0013,0.0004,641.27,1581.56,1397.13,21.61,554.59,2388.02,9055.79,47.21,522.32,2388.0,8.3709,391,39.12,23.3881 +2,37,0.005,0.0005,642.1,1585.63,1396.29,21.61,555.01,2388.04,9058.16,47.16,522.69,2388.02,8.3609,391,39.08,23.4047 +2,38,0.0013,0.0005,642.22,1585.15,1397.75,21.61,554.21,2388.0,9055.35,47.22,522.13,2388.05,8.4069,390,39.09,23.4191 +2,39,-0.0018,0.0005,642.0,1585.69,1391.49,21.61,554.05,2388.0,9061.16,47.2,522.79,2388.05,8.3755,391,39.02,23.4489 +2,40,0.0005,0.0005,642.02,1582.69,1398.38,21.61,554.07,2388.03,9046.96,47.22,522.3,2388.01,8.401,391,38.84,23.4402 +2,41,0.0015,0.0006,642.41,1578.97,1398.74,21.61,554.34,2388.04,9053.6,47.26,522.22,2388.01,8.3856,392,38.94,23.3071 +2,42,0.0016,0.0005,642.27,1579.21,1392.13,21.61,553.98,2387.97,9046.36,47.14,522.87,2388.0,8.3449,392,39.08,23.4631 +2,43,0.0027,0.0,642.02,1580.59,1391.6,21.61,554.14,2388.04,9053.65,47.08,522.9,2388.02,8.4144,392,38.92,23.4966 +2,44,0.0003,0.0003,642.01,1584.33,1398.69,21.61,554.16,2388.04,9057.05,47.22,522.77,2388.06,8.4087,392,39.03,23.4546 +2,45,-0.0014,-0.0002,642.05,1586.41,1397.6,21.61,554.2,2388.05,9060.38,47.17,522.27,2388.0,8.3847,390,38.99,23.4284 +2,46,0.0002,-0.0003,642.15,1575.45,1392.6,21.61,554.54,2388.0,9053.33,47.19,522.08,2388.05,8.3994,390,38.93,23.5041 +2,47,0.0021,0.0003,642.4,1583.85,1396.46,21.61,554.96,2388.04,9046.52,47.03,522.73,2388.0,8.3756,391,38.89,23.3447 +2,48,0.0006,-0.0001,642.09,1586.71,1397.95,21.61,554.67,2387.99,9057.73,47.18,522.41,2387.98,8.3821,392,39.23,23.4336 +2,49,-0.0006,0.0005,642.85,1583.86,1396.5,21.61,554.04,2388.04,9049.11,47.18,522.83,2387.99,8.4024,390,39.17,23.4871 +2,50,-0.0002,-0.0004,642.02,1577.86,1399.78,21.61,554.73,2388.0,9051.65,47.16,522.16,2388.05,8.4042,391,39.1,23.353 +2,51,0.0008,0.0003,642.03,1585.34,1393.06,21.61,555.02,2388.02,9055.92,47.03,522.34,2388.01,8.3731,392,38.9,23.3239 +2,52,-0.001,-0.0001,641.52,1588.48,1401.66,21.6,554.76,2388.0,9056.25,47.09,522.58,2388.01,8.4064,392,39.08,23.3668 +2,53,-0.0023,-0.0001,642.0,1584.9,1397.09,21.61,554.33,2388.05,9051.78,46.98,522.73,2388.01,8.411,391,38.95,23.5307 +2,54,0.0004,-0.0003,641.58,1583.46,1405.33,21.61,554.42,2388.01,9046.85,47.1,522.48,2387.99,8.4057,392,39.13,23.3626 +2,55,-0.0035,-0.0004,642.33,1585.59,1387.16,21.6,554.54,2388.02,9044.62,47.18,522.7,2388.02,8.4077,392,39.11,23.3779 +2,56,-0.0035,0.0002,641.84,1587.04,1388.97,21.61,554.72,2388.02,9052.27,47.03,522.1,2388.01,8.393,391,39.1,23.3796 +2,57,-0.0003,-0.0001,642.5,1584.13,1389.62,21.61,553.87,2388.05,9052.86,47.17,521.98,2387.96,8.4008,391,39.23,23.4544 +2,58,-0.0,-0.0002,642.3,1582.93,1389.91,21.61,554.46,2388.03,9047.75,47.3,522.24,2387.98,8.3731,391,39.15,23.3861 +2,59,0.0032,-0.0,642.48,1584.24,1397.95,21.61,554.6,2388.08,9053.2,47.17,522.78,2388.0,8.4036,391,39.04,23.4347 +2,60,0.0014,-0.0002,642.09,1584.57,1396.84,21.61,554.06,2388.04,9057.57,47.12,521.93,2388.02,8.4003,393,39.11,23.3928 +2,61,-0.0044,0.0001,642.41,1585.45,1399.71,21.61,555.08,2388.03,9057.02,47.09,522.69,2387.99,8.4006,391,39.04,23.2745 +2,62,-0.0017,-0.0001,641.81,1577.87,1401.66,21.61,554.52,2388.03,9048.8,47.27,521.78,2387.98,8.4193,391,39.23,23.4442 +2,63,-0.0014,0.0005,641.91,1575.83,1395.05,21.61,554.63,2388.0,9061.57,47.17,522.15,2388.01,8.3867,392,38.98,23.325 +2,64,-0.0,0.0001,641.66,1581.65,1401.46,21.61,554.93,2388.02,9048.35,47.11,522.18,2388.05,8.4144,391,39.07,23.398 +2,65,0.0008,0.0,641.7,1582.59,1395.4,21.6,554.28,2388.0,9057.07,47.34,522.52,2387.98,8.4128,391,38.92,23.3455 +2,66,0.0005,-0.0002,642.26,1584.6,1394.01,21.61,554.11,2388.06,9054.62,47.17,522.65,2387.98,8.4121,392,39.0,23.426 +2,67,-0.0036,-0.0001,642.17,1587.63,1395.44,21.61,554.99,2388.1,9048.97,46.96,522.58,2388.0,8.3761,393,39.02,23.3933 +2,68,0.0008,0.0001,642.5,1577.16,1399.27,21.61,554.07,2387.97,9054.61,47.16,522.2,2388.0,8.4141,392,38.97,23.4076 +2,69,-0.0004,0.0,642.73,1586.47,1399.73,21.61,554.35,2388.01,9049.25,47.33,522.21,2387.97,8.4116,392,39.09,23.3783 +2,70,0.0005,-0.0002,641.76,1593.24,1397.3,21.61,554.47,2388.05,9049.78,47.26,522.17,2387.98,8.4118,392,39.06,23.3894 +2,71,-0.0004,0.0002,642.39,1586.68,1403.09,21.61,555.01,2388.0,9053.44,47.24,522.02,2387.94,8.3993,392,38.92,23.317 +2,72,-0.0007,-0.0001,642.48,1583.11,1393.85,21.61,554.54,2388.03,9057.61,47.19,522.4,2388.02,8.4012,392,39.12,23.4393 +2,73,-0.0004,-0.0001,641.73,1586.57,1400.98,21.61,554.41,2388.01,9057.35,47.15,522.95,2388.02,8.3896,390,38.94,23.4567 +2,74,-0.0013,0.0001,642.39,1584.04,1396.13,21.6,555.36,2388.01,9060.56,47.25,521.97,2388.03,8.3932,391,39.07,23.4015 +2,75,0.0025,0.0004,641.64,1578.27,1390.64,21.6,555.45,2387.95,9053.52,47.09,522.54,2388.07,8.3944,392,38.99,23.421 +2,76,-0.0037,0.0001,642.01,1586.91,1399.66,21.61,554.05,2388.05,9052.13,46.99,522.08,2388.07,8.3629,392,38.88,23.4591 +2,77,0.0003,0.0,641.97,1588.54,1395.38,21.61,554.06,2388.02,9052.12,46.95,522.36,2388.02,8.4399,392,39.01,23.4969 +2,78,0.0004,-0.0001,642.44,1587.2,1394.24,21.61,554.83,2387.99,9058.82,47.12,522.57,2387.98,8.4018,391,38.96,23.5367 +2,79,0.0021,0.0004,641.62,1585.59,1398.51,21.61,554.19,2388.0,9057.44,47.23,522.26,2388.09,8.3931,390,39.15,23.2873 +2,80,0.0027,-0.0,641.37,1588.33,1394.0,21.61,554.94,2387.99,9056.41,47.2,523.26,2388.03,8.3889,391,38.95,23.4198 +2,81,0.0006,-0.0001,641.72,1578.31,1390.12,21.61,555.25,2388.02,9053.0,47.25,522.62,2388.07,8.4162,391,39.08,23.4685 +2,82,0.0035,-0.0001,641.86,1587.24,1402.78,21.61,554.17,2388.01,9055.28,47.19,522.3,2388.0,8.3428,391,39.17,23.4491 +2,83,0.0,-0.0004,641.73,1585.18,1398.81,21.61,554.18,2388.07,9047.88,47.13,523.13,2388.04,8.3997,390,39.0,23.4056 +2,84,-0.0037,-0.0004,642.41,1586.46,1402.26,21.61,554.86,2388.06,9050.39,47.29,522.75,2387.92,8.394,392,38.95,23.4055 +2,85,0.0002,0.0004,641.73,1588.31,1398.33,21.6,554.5,2387.97,9049.41,47.19,522.63,2387.96,8.3954,391,39.13,23.4072 +2,86,0.0004,-0.0,641.85,1579.31,1399.12,21.61,554.51,2388.02,9050.83,47.27,522.26,2388.01,8.3958,391,38.87,23.4982 +2,87,0.0019,-0.0002,642.36,1582.64,1399.51,21.61,554.77,2387.95,9056.36,47.26,522.59,2387.96,8.3952,393,39.1,23.2916 +2,88,0.0007,-0.0002,642.23,1587.88,1398.17,21.6,554.71,2388.01,9056.67,47.04,522.62,2388.0,8.3851,391,39.06,23.4173 +2,89,0.0017,0.0005,641.95,1584.62,1394.07,21.61,554.18,2388.0,9054.7,47.18,522.42,2388.08,8.4143,393,39.18,23.4148 +2,90,0.0019,-0.0003,642.06,1580.77,1405.34,21.61,554.1,2387.98,9053.58,47.21,522.04,2388.0,8.3922,390,38.9,23.4878 +2,91,-0.0007,-0.0002,642.09,1583.57,1399.47,21.61,553.79,2388.02,9045.94,47.15,522.48,2388.05,8.4026,391,39.1,23.3972 +2,92,-0.0006,0.0005,642.36,1584.87,1399.17,21.6,554.28,2388.02,9050.92,47.13,522.45,2388.0,8.3919,392,38.81,23.2772 +2,93,0.0019,-0.0004,642.21,1591.68,1392.48,21.61,553.92,2388.05,9049.14,47.24,522.52,2388.0,8.4005,391,38.94,23.3075 +2,94,0.0,0.0005,642.1,1585.62,1395.39,21.61,554.53,2388.03,9054.99,47.38,522.74,2387.99,8.4075,392,39.15,23.4165 +2,95,-0.0022,0.0002,642.56,1579.26,1402.79,21.61,553.99,2388.05,9048.27,47.06,522.37,2388.02,8.3773,392,38.98,23.4318 +2,96,-0.0026,0.0006,642.42,1576.94,1399.59,21.61,554.4,2387.97,9059.0,47.07,521.66,2388.06,8.3698,392,38.92,23.3285 +2,97,0.0008,0.0001,642.04,1586.12,1400.5,21.61,554.42,2388.02,9056.26,47.19,522.22,2388.06,8.4202,391,39.06,23.3578 +2,98,-0.0001,0.0003,641.73,1587.84,1401.08,21.61,554.57,2388.04,9056.94,47.21,522.92,2387.98,8.4115,391,39.08,23.5011 +2,99,-0.0034,-0.0004,642.04,1585.48,1400.97,21.61,554.43,2388.05,9054.46,47.13,522.5,2388.0,8.4179,393,39.15,23.3414 +2,100,0.0076,-0.0001,642.04,1586.01,1402.72,21.61,554.48,2388.0,9056.18,47.21,522.01,2388.05,8.4107,390,38.85,23.331 +2,101,0.0031,-0.0,641.96,1582.66,1397.81,21.61,555.07,2387.98,9051.47,47.37,522.4,2388.01,8.3835,392,38.93,23.4257 +2,102,0.0016,0.0001,642.44,1590.24,1407.05,21.6,554.44,2388.03,9052.38,47.19,522.05,2388.04,8.4052,391,38.92,23.3453 +2,103,-0.0022,0.0002,642.05,1587.75,1392.16,21.61,554.44,2388.11,9050.8,47.23,522.36,2388.02,8.4148,392,39.12,23.4403 +2,104,-0.0034,0.0002,642.41,1582.04,1397.31,21.61,554.91,2388.0,9055.21,47.26,522.18,2388.07,8.4037,390,39.03,23.4053 +2,105,-0.005,0.0004,641.94,1585.65,1397.45,21.61,554.81,2388.02,9058.39,47.32,522.11,2388.05,8.4056,392,39.0,23.3467 +2,106,0.0002,-0.0004,641.87,1584.61,1402.62,21.61,553.96,2388.06,9061.94,47.32,522.11,2387.97,8.3727,393,39.09,23.4154 +2,107,0.0011,-0.0001,642.52,1581.7,1402.93,21.61,554.21,2387.96,9058.97,47.16,522.34,2388.05,8.3723,393,39.13,23.5191 +2,108,0.0014,0.0004,642.24,1578.45,1396.25,21.61,554.29,2388.03,9056.31,47.23,522.27,2388.04,8.3978,391,38.75,23.4441 +2,109,0.0014,0.0,642.12,1590.41,1392.9,21.61,553.72,2388.12,9053.21,47.28,522.0,2387.99,8.4061,391,39.1,23.3497 +2,110,-0.0013,-0.0002,642.29,1583.3,1398.47,21.61,554.5,2388.07,9053.81,47.31,522.27,2388.02,8.3723,391,39.06,23.3997 +2,111,0.0039,0.0,642.24,1576.85,1393.76,21.61,554.42,2387.99,9062.68,47.18,522.32,2387.99,8.4437,392,39.16,23.4703 +2,112,-0.0023,-0.0002,642.49,1588.35,1397.2,21.61,554.33,2388.01,9063.33,47.37,522.23,2388.0,8.4025,392,39.06,23.3444 +2,113,-0.003,0.0,641.95,1584.21,1404.74,21.61,554.07,2388.01,9049.1,47.23,522.1,2387.99,8.3994,391,39.12,23.5029 +2,114,-0.0005,-0.0002,642.13,1576.56,1397.05,21.61,555.1,2388.01,9055.66,47.19,522.13,2388.02,8.4119,391,39.06,23.3784 +2,115,-0.0041,-0.0001,642.16,1583.27,1401.33,21.61,554.37,2388.01,9055.06,47.14,522.1,2388.03,8.395,390,38.89,23.313 +2,116,-0.001,0.0004,642.38,1577.87,1398.39,21.61,554.45,2387.97,9053.87,47.01,522.48,2388.02,8.3895,391,38.96,23.4542 +2,117,-0.0031,-0.0,641.97,1583.84,1395.4,21.61,554.6,2388.02,9056.45,47.23,522.39,2388.03,8.4365,392,39.05,23.432 +2,118,-0.0013,0.0004,641.95,1580.49,1400.99,21.61,553.96,2388.01,9055.61,47.11,522.23,2388.05,8.3735,392,39.04,23.2912 +2,119,0.0,-0.0002,642.67,1585.06,1401.87,21.61,554.32,2388.0,9054.52,47.24,522.21,2388.0,8.4236,392,38.74,23.3731 +2,120,-0.0001,0.0004,642.01,1589.61,1394.39,21.61,554.42,2388.05,9056.54,47.22,521.62,2388.01,8.3666,391,39.18,23.4077 +2,121,0.0027,0.0003,642.04,1580.19,1391.52,21.61,554.51,2387.96,9053.67,47.28,522.31,2387.97,8.4134,392,39.09,23.3381 +2,122,0.0011,0.0003,642.08,1585.52,1405.27,21.61,553.82,2388.01,9051.03,47.23,521.96,2387.97,8.3783,392,38.88,23.3284 +2,123,-0.001,-0.0004,642.11,1588.59,1403.23,21.61,554.31,2388.04,9056.3,47.21,522.14,2388.03,8.3887,391,38.86,23.4492 +2,124,-0.0002,0.0004,642.37,1583.12,1399.26,21.61,554.58,2388.04,9053.57,47.06,522.64,2387.99,8.4049,392,39.03,23.3364 +2,125,-0.0015,0.0001,642.71,1586.32,1397.94,21.61,554.81,2388.01,9060.56,47.31,522.23,2387.98,8.4012,391,39.09,23.3785 +2,126,0.0006,0.0005,642.07,1587.45,1403.41,21.61,554.03,2387.96,9057.08,47.28,521.95,2387.99,8.4243,392,38.91,23.3592 +2,127,-0.0002,-0.0004,642.26,1586.65,1400.81,21.61,554.08,2387.99,9056.25,47.21,522.2,2388.08,8.4476,391,39.08,23.34 +2,128,-0.0008,0.0,641.54,1592.2,1397.34,21.6,554.16,2388.01,9054.43,47.2,522.36,2388.05,8.4098,392,39.05,23.3966 +2,129,0.0007,0.0004,641.66,1590.59,1400.25,21.6,554.6,2388.07,9052.79,47.23,522.19,2387.99,8.3986,392,38.96,23.4331 +2,130,0.0035,-0.0003,642.06,1584.83,1409.98,21.61,554.42,2387.99,9060.71,47.26,522.4,2388.05,8.4145,391,38.92,23.3645 +2,131,-0.0001,0.0001,641.96,1587.61,1394.26,21.61,554.88,2388.01,9055.73,47.36,522.37,2387.98,8.4074,392,39.02,23.4016 +2,132,0.0002,0.0006,642.01,1586.66,1398.78,21.61,554.4,2388.13,9059.84,47.12,522.25,2388.03,8.4102,390,38.91,23.313 +2,133,-0.0016,-0.0004,642.84,1581.22,1393.87,21.61,554.21,2388.04,9060.79,47.18,521.71,2388.05,8.4054,392,38.89,23.2668 +2,134,0.0026,0.0001,642.76,1586.44,1406.2,21.6,553.88,2388.02,9061.2,47.17,521.95,2388.02,8.381,390,38.95,23.3367 +2,135,0.0009,-0.0002,642.02,1580.12,1404.56,21.61,554.52,2388.01,9051.53,47.34,522.13,2388.03,8.4108,392,38.91,23.3992 +2,136,0.001,-0.0003,642.06,1582.91,1402.67,21.61,554.5,2388.05,9056.59,47.09,521.86,2387.99,8.3889,389,39.0,23.4236 +2,137,0.0044,-0.0004,642.46,1585.36,1406.79,21.61,554.42,2388.01,9057.59,47.39,522.21,2388.0,8.369,391,38.98,23.3517 +2,138,0.0012,0.0004,642.34,1585.19,1398.95,21.61,555.03,2387.99,9063.57,47.16,521.73,2388.04,8.4125,392,38.82,23.4346 +2,139,-0.0003,0.0005,642.63,1590.88,1400.87,21.61,554.24,2388.06,9057.55,47.3,522.61,2388.03,8.3919,391,38.94,23.4316 +2,140,0.0014,-0.0001,642.29,1593.7,1403.14,21.61,554.86,2388.09,9051.91,47.32,522.49,2387.95,8.4243,392,39.01,23.474 +2,141,0.0019,0.0003,642.07,1585.09,1403.25,21.61,554.7,2388.05,9057.75,47.43,522.5,2388.05,8.4254,393,39.02,23.4038 +2,142,-0.0007,0.0004,641.91,1586.41,1401.27,21.61,554.18,2388.08,9060.33,47.3,522.18,2388.04,8.3936,391,39.0,23.4716 +2,143,0.0001,0.0004,642.31,1588.88,1400.49,21.61,554.05,2388.03,9057.74,47.3,521.73,2388.05,8.423,393,38.82,23.4197 +2,144,-0.0005,0.0002,642.02,1584.35,1401.21,21.61,553.96,2388.03,9060.12,47.32,522.11,2388.01,8.3836,392,39.19,23.3494 +2,145,-0.0021,0.0001,642.01,1582.72,1403.53,21.61,554.1,2387.97,9059.1,47.33,521.93,2388.08,8.3967,393,38.83,23.5167 +2,146,0.0043,-0.0001,642.52,1590.06,1405.09,21.61,554.25,2388.05,9051.0,47.3,522.0,2388.04,8.4074,391,38.97,23.4017 +2,147,0.0004,-0.0001,642.27,1588.78,1394.58,21.61,554.16,2388.05,9055.27,47.48,521.91,2388.06,8.3896,393,38.89,23.3356 +2,148,0.0018,0.0004,642.65,1584.5,1398.3,21.61,554.32,2388.02,9055.59,47.31,522.57,2388.06,8.4128,393,39.13,23.3971 +2,149,-0.002,-0.0003,642.03,1587.88,1404.41,21.61,553.84,2388.04,9057.81,47.31,521.87,2388.0,8.387,391,38.89,23.4024 +2,150,-0.0021,0.0004,642.62,1585.43,1393.74,21.61,554.13,2388.01,9056.95,47.15,522.22,2388.02,8.4175,391,39.03,23.2996 +2,151,0.0051,-0.0004,642.54,1590.21,1398.31,21.61,553.66,2387.98,9055.31,47.33,522.28,2388.04,8.4173,390,38.92,23.3831 +2,152,-0.0004,0.0003,642.38,1583.49,1400.9,21.61,553.86,2388.06,9052.6,47.25,522.06,2388.07,8.4123,391,38.86,23.3666 +2,153,0.0043,0.0002,641.96,1594.33,1397.52,21.61,553.78,2388.09,9058.68,47.29,521.82,2388.07,8.4262,392,38.71,23.3222 +2,154,0.0012,0.0001,642.34,1591.3,1413.28,21.6,554.45,2388.01,9055.03,47.23,522.21,2388.02,8.4161,391,38.89,23.4216 +2,155,-0.0022,-0.0003,642.17,1580.93,1397.45,21.61,553.84,2388.06,9054.82,47.23,521.91,2388.07,8.4029,392,38.99,23.3634 +2,156,-0.0045,0.0004,642.15,1578.73,1399.13,21.61,554.7,2388.04,9057.22,47.31,522.14,2388.07,8.4075,391,39.07,23.3474 +2,157,-0.0014,-0.0004,642.04,1588.7,1400.63,21.61,553.71,2388.07,9065.16,47.45,522.25,2388.06,8.4137,394,38.97,23.2225 +2,158,0.0014,0.0001,641.99,1586.95,1404.68,21.61,554.67,2388.02,9057.68,47.45,522.32,2388.03,8.4324,392,39.03,23.422 +2,159,-0.0018,-0.0003,641.81,1593.89,1399.71,21.61,553.7,2388.04,9058.8,47.26,522.2,2388.0,8.4138,393,38.89,23.3979 +2,160,0.0033,-0.0003,642.53,1585.65,1409.72,21.61,554.65,2388.07,9059.7,47.46,521.96,2388.05,8.4012,393,38.92,23.4119 +2,161,-0.0031,0.0003,642.08,1586.65,1396.32,21.61,554.18,2388.05,9057.22,47.19,521.96,2388.04,8.4601,393,38.83,23.4036 +2,162,0.0028,0.0003,641.71,1588.83,1401.23,21.61,553.95,2388.06,9062.65,47.42,522.09,2388.01,8.3739,392,39.05,23.4045 +2,163,0.0007,0.0004,642.88,1589.56,1396.2,21.61,553.96,2388.08,9059.47,47.29,521.55,2388.05,8.3904,392,38.94,23.4442 +2,164,0.0043,0.0003,642.82,1588.23,1405.5,21.61,554.31,2387.99,9055.65,47.32,521.74,2388.04,8.4304,391,38.97,23.4381 +2,165,-0.0043,0.0004,642.17,1588.55,1402.96,21.61,553.71,2388.03,9060.97,47.39,522.28,2387.97,8.4068,392,38.93,23.4707 +2,166,-0.0068,0.0002,641.79,1589.09,1394.26,21.61,553.71,2388.03,9060.46,47.43,521.96,2388.01,8.4111,392,38.87,23.4352 +2,167,0.0005,-0.0001,642.25,1588.74,1395.35,21.61,553.62,2388.01,9056.24,47.39,522.11,2388.03,8.4261,393,38.84,23.3977 +2,168,-0.0026,-0.0003,642.55,1593.95,1404.01,21.61,554.32,2388.04,9055.88,47.3,521.89,2388.04,8.4329,391,38.84,23.3787 +2,169,-0.0004,0.0003,642.26,1581.85,1406.06,21.61,553.06,2388.06,9059.37,47.33,521.77,2388.09,8.4214,391,38.93,23.3766 +2,170,0.0025,0.0004,642.14,1577.26,1405.93,21.61,553.84,2388.03,9065.67,47.35,522.36,2388.07,8.4079,394,38.88,23.3532 +2,171,0.0012,0.0005,642.21,1587.94,1410.34,21.61,553.84,2388.03,9060.51,47.34,521.89,2388.02,8.4027,392,38.91,23.287 +2,172,-0.0041,0.0004,642.07,1589.42,1398.26,21.61,553.69,2388.06,9055.7,47.25,521.42,2388.09,8.4109,392,39.09,23.3496 +2,173,0.0003,-0.0002,642.66,1589.0,1403.22,21.61,554.64,2388.04,9058.55,47.27,521.4,2388.05,8.4288,392,38.92,23.3576 +2,174,-0.0009,-0.0003,642.34,1588.01,1403.24,21.61,553.76,2388.08,9066.4,47.31,521.85,2388.04,8.3994,394,39.02,23.3513 +2,175,-0.0005,0.0005,642.46,1584.58,1398.37,21.61,554.01,2388.02,9067.91,47.45,522.2,2388.08,8.417,393,38.88,23.3065 +2,176,-0.001,-0.0004,642.32,1585.73,1405.47,21.61,554.15,2388.04,9058.59,47.22,521.54,2388.07,8.4189,392,39.08,23.4372 +2,177,0.0004,-0.0001,642.35,1586.88,1400.31,21.61,554.59,2388.06,9057.99,47.42,521.95,2388.04,8.4153,393,38.74,23.3538 +2,178,0.0031,0.0003,642.43,1590.29,1404.39,21.61,553.83,2388.04,9056.85,47.56,521.97,2388.07,8.3914,391,38.85,23.353 +2,179,-0.0024,-0.0001,642.33,1584.55,1399.3,21.61,553.86,2388.03,9060.98,47.37,522.48,2388.03,8.4462,394,38.91,23.3329 +2,180,-0.0011,0.0,642.5,1593.51,1402.27,21.61,554.21,2388.11,9058.3,47.52,521.76,2388.05,8.4404,392,39.04,23.3712 +2,181,0.0003,-0.0002,642.01,1585.87,1399.24,21.61,554.29,2388.03,9057.86,47.27,522.19,2388.01,8.4148,393,38.92,23.3777 +2,182,-0.0,-0.0002,642.39,1586.42,1406.61,21.61,553.63,2388.03,9069.4,47.52,522.39,2388.09,8.4072,392,39.04,23.2931 +2,183,-0.0015,-0.0002,642.6,1584.95,1406.15,21.61,554.35,2388.08,9064.12,47.24,521.84,2388.06,8.4225,392,38.85,23.3851 +2,184,0.0037,0.0,642.43,1585.66,1408.13,21.61,554.99,2388.04,9067.28,47.47,521.86,2388.06,8.3996,394,38.85,23.4003 +2,185,-0.002,0.0004,642.66,1581.09,1407.11,21.61,554.53,2388.02,9059.27,47.23,522.22,2388.05,8.42,392,38.94,23.2801 +2,186,-0.0004,0.0002,642.8,1582.46,1404.35,21.61,554.42,2388.05,9063.38,47.47,521.82,2388.16,8.4131,393,38.75,23.3416 +2,187,0.0019,0.0002,642.69,1588.88,1407.54,21.61,553.32,2388.08,9060.97,47.51,521.09,2388.05,8.4101,392,38.93,23.3926 +2,188,0.0024,0.0002,642.64,1582.97,1402.72,21.61,554.26,2388.07,9062.7,47.37,522.34,2388.04,8.4124,392,38.82,23.306 +2,189,0.0003,0.0002,642.81,1583.54,1403.09,21.61,554.03,2388.03,9069.79,47.42,521.7,2388.04,8.4253,393,39.02,23.2923 +2,190,0.0013,0.0004,642.48,1592.5,1405.73,21.61,554.4,2388.06,9059.23,47.2,521.73,2388.03,8.4128,393,39.04,23.2623 +2,191,-0.0009,0.0004,642.23,1584.59,1407.64,21.61,553.42,2388.04,9064.99,47.4,521.92,2388.05,8.4694,393,38.93,23.3507 +2,192,0.0003,0.0002,642.18,1589.95,1404.07,21.6,553.09,2388.03,9071.88,47.49,521.7,2388.09,8.4309,392,38.87,23.3049 +2,193,-0.0021,-0.0003,642.13,1588.28,1399.59,21.61,553.54,2388.09,9063.55,47.3,521.16,2388.08,8.4143,393,38.73,23.2606 +2,194,-0.0003,-0.0003,643.1,1592.38,1404.64,21.61,553.86,2388.05,9065.99,47.69,522.17,2388.1,8.4304,393,38.9,23.3282 +2,195,-0.0026,0.0004,643.24,1591.55,1410.18,21.61,553.22,2388.01,9060.17,47.32,521.92,2388.07,8.4224,393,39.09,23.3326 +2,196,0.0003,0.0004,642.64,1591.39,1408.59,21.61,554.31,2388.15,9054.2,47.43,522.02,2388.06,8.4614,393,39.04,23.3682 +2,197,0.0018,0.0005,642.55,1588.64,1403.29,21.61,554.07,2388.07,9061.28,47.36,521.47,2388.06,8.4387,390,38.79,23.3426 +2,198,-0.0051,0.0003,643.21,1596.17,1402.91,21.61,553.94,2388.05,9059.21,47.14,521.5,2388.05,8.441,392,38.9,23.2813 +2,199,0.0026,0.0001,642.44,1587.17,1409.39,21.61,554.06,2388.09,9061.54,47.49,521.22,2388.08,8.429,394,39.08,23.2433 +2,200,-0.0017,0.0,642.74,1589.73,1406.28,21.61,553.13,2388.08,9065.78,47.44,521.69,2388.07,8.4143,394,38.95,23.4101 +2,201,0.0021,0.0002,642.31,1595.57,1400.92,21.61,554.25,2388.04,9062.65,47.44,521.88,2388.1,8.4458,392,38.93,23.3551 +2,202,-0.0001,0.0003,642.56,1589.47,1408.72,21.61,554.14,2388.14,9070.71,47.45,522.01,2388.03,8.4287,392,38.68,23.1814 +2,203,0.0048,0.0001,641.95,1593.02,1410.33,21.61,553.2,2388.05,9070.42,47.58,521.41,2388.12,8.4197,393,38.7,23.1596 +2,204,0.0012,0.0003,642.46,1591.84,1404.01,21.61,553.94,2388.02,9064.87,47.43,521.33,2388.06,8.4779,393,38.93,23.3788 +2,205,-0.0021,0.0003,642.65,1586.59,1409.11,21.61,552.83,2388.07,9065.07,47.42,521.48,2388.09,8.4298,393,39.01,23.3266 +2,206,-0.0004,-0.0003,642.51,1588.18,1411.14,21.61,553.86,2388.03,9059.13,47.24,521.37,2388.08,8.4086,391,38.8,23.3974 +2,207,-0.0003,-0.0004,642.73,1591.04,1402.94,21.61,553.06,2388.05,9067.79,47.39,521.55,2388.04,8.4175,392,38.87,23.308 +2,208,0.0004,0.0004,642.6,1590.29,1407.93,21.61,553.09,2388.05,9061.96,47.51,521.64,2388.11,8.458,394,38.75,23.2931 +2,209,0.004,0.0002,642.27,1590.92,1409.2,21.61,553.66,2388.09,9065.23,47.43,520.72,2388.11,8.4281,391,38.97,23.3362 +2,210,-0.005,0.0001,642.88,1583.56,1396.99,21.61,553.5,2388.1,9064.68,47.51,521.77,2388.08,8.4317,393,38.92,23.2484 +2,211,-0.0017,-0.0002,642.8,1584.65,1409.23,21.61,552.47,2388.08,9066.43,47.48,521.67,2388.08,8.452,392,38.86,23.2252 +2,212,0.0005,-0.0004,642.54,1586.71,1406.43,21.61,553.32,2388.13,9068.2,47.51,521.74,2388.16,8.461,391,39.03,23.2138 +2,213,-0.0039,-0.0,642.39,1594.64,1407.38,21.61,554.04,2388.09,9066.07,47.56,521.65,2388.05,8.4354,392,38.73,23.3246 +2,214,0.0017,-0.0002,642.39,1588.17,1402.21,21.61,553.86,2388.09,9062.68,47.49,521.81,2388.13,8.4428,390,38.82,23.2857 +2,215,-0.0004,0.0005,642.97,1591.44,1411.63,21.61,553.75,2388.09,9071.14,47.57,521.02,2388.09,8.4192,395,38.72,23.117 +2,216,-0.0021,0.0005,642.46,1583.46,1408.68,21.61,553.01,2388.08,9063.95,47.53,522.19,2388.06,8.452,393,38.97,23.3221 +2,217,0.0023,0.0005,643.3,1585.11,1407.97,21.61,553.22,2388.1,9061.1,47.51,521.29,2388.08,8.4982,392,38.94,23.2658 +2,218,0.0033,-0.0002,642.91,1592.69,1412.7,21.61,553.09,2388.12,9070.12,47.56,521.7,2388.02,8.4763,394,38.87,23.2734 +2,219,0.0029,0.0001,642.88,1592.52,1412.91,21.61,553.28,2388.02,9074.41,47.71,521.74,2388.12,8.46,393,38.78,23.371 +2,220,-0.0036,-0.0002,642.87,1600.76,1406.68,21.61,552.92,2388.09,9068.44,47.54,520.77,2388.11,8.4123,392,38.86,23.3541 +2,221,0.0032,-0.0001,643.09,1586.57,1408.21,21.61,553.77,2388.12,9072.45,47.47,521.46,2388.11,8.4446,394,38.99,23.3309 +2,222,0.001,0.0001,643.16,1590.78,1411.66,21.61,553.56,2388.1,9068.24,47.52,521.46,2388.1,8.4414,393,38.75,23.3147 +2,223,-0.0002,0.0003,643.06,1596.47,1406.28,21.61,553.91,2388.06,9068.95,47.62,520.84,2388.12,8.4348,393,38.84,23.2077 +2,224,-0.001,0.0001,642.86,1592.47,1414.63,21.61,553.17,2388.13,9070.23,47.74,521.16,2388.12,8.4495,394,38.79,23.2336 +2,225,0.0014,-0.0,642.68,1590.59,1409.87,21.61,553.96,2388.12,9069.7,47.67,521.33,2388.15,8.4357,393,38.75,23.209 +2,226,-0.0018,0.0002,643.23,1601.02,1408.9,21.61,553.45,2388.05,9063.54,47.46,521.59,2388.11,8.4744,394,38.83,23.3575 +2,227,0.0014,0.0004,642.8,1587.46,1410.4,21.61,553.73,2388.11,9070.71,47.66,521.28,2388.09,8.4472,393,38.8,23.2895 +2,228,-0.0017,0.0001,642.67,1592.83,1406.88,21.61,553.35,2388.11,9069.67,47.46,521.18,2388.1,8.4493,394,38.72,23.2553 +2,229,0.0008,-0.0001,642.32,1593.83,1407.69,21.61,553.0,2388.13,9071.15,47.65,521.66,2388.11,8.4447,393,38.82,23.1824 +2,230,-0.0002,0.0004,642.68,1593.67,1412.71,21.61,553.43,2388.09,9077.18,47.69,520.94,2388.09,8.4482,394,38.71,23.2213 +2,231,-0.0004,-0.0001,642.99,1593.78,1404.68,21.61,552.61,2388.13,9071.48,47.64,521.73,2388.11,8.462,394,38.81,23.2847 +2,232,0.0027,0.0004,642.98,1590.33,1411.66,21.61,553.53,2388.11,9070.67,47.56,520.9,2388.07,8.4395,394,38.7,23.2459 +2,233,-0.0023,-0.0004,642.96,1599.65,1413.34,21.61,553.49,2388.07,9070.71,47.66,521.63,2388.11,8.448,392,38.63,23.3894 +2,234,-0.0022,-0.0002,643.49,1588.68,1412.07,21.61,553.31,2388.12,9070.14,47.58,521.42,2388.1,8.4341,394,38.87,23.2635 +2,235,0.0019,0.0002,642.63,1594.54,1406.42,21.61,552.42,2388.12,9073.86,47.85,521.66,2388.12,8.4699,394,38.82,23.2137 +2,236,-0.0044,0.0003,643.01,1598.16,1410.66,21.61,553.52,2388.15,9068.9,47.63,521.17,2388.11,8.4679,394,38.63,23.275 +2,237,0.0027,0.0004,643.14,1593.05,1419.76,21.61,552.78,2388.11,9069.61,47.65,520.7,2388.12,8.4742,394,38.57,23.2618 +2,238,-0.0018,-0.0,643.13,1599.64,1413.73,21.61,552.98,2388.11,9072.97,47.52,521.34,2388.12,8.4681,394,38.67,23.1829 +2,239,0.0026,-0.0003,642.73,1598.37,1417.49,21.61,553.05,2388.13,9072.08,47.83,520.66,2388.12,8.4318,394,38.68,23.2728 +2,240,-0.0017,-0.0002,642.61,1599.71,1406.54,21.61,553.18,2388.11,9077.79,47.66,521.18,2388.11,8.482,393,38.76,23.314 +2,241,-0.0026,0.0001,643.14,1598.65,1418.33,21.61,552.36,2388.16,9075.94,47.7,521.1,2388.13,8.4423,396,38.8,23.1703 +2,242,-0.0008,0.0004,643.77,1593.7,1408.71,21.61,553.07,2388.13,9078.67,47.54,521.6,2388.08,8.4377,393,38.78,23.2157 +2,243,0.0042,-0.0002,643.04,1593.98,1411.41,21.61,552.71,2388.09,9078.11,47.55,521.05,2388.06,8.4661,395,38.57,23.2729 +2,244,-0.0013,0.0005,642.88,1595.99,1413.04,21.61,552.68,2388.13,9072.86,47.71,520.6,2388.14,8.4785,393,38.57,23.3427 +2,245,-0.0016,0.0005,642.7,1590.93,1418.05,21.61,552.75,2388.15,9081.05,47.75,521.03,2388.12,8.4748,395,38.73,23.2067 +2,246,0.0001,0.0003,642.85,1589.74,1420.2,21.61,552.57,2388.12,9075.07,47.72,521.27,2388.11,8.4702,396,38.66,23.27 +2,247,-0.0013,-0.0002,642.88,1601.2,1413.56,21.61,552.46,2388.1,9074.98,47.7,520.61,2388.14,8.4745,394,38.58,23.2229 +2,248,0.0048,0.0001,643.06,1599.41,1417.22,21.61,552.52,2388.08,9088.08,47.75,520.49,2388.12,8.5015,392,38.8,23.19 +2,249,0.0013,-0.0004,643.79,1599.77,1419.19,21.61,551.56,2388.17,9076.61,47.66,520.7,2388.13,8.4615,395,38.88,23.2251 +2,250,-0.0029,0.0004,643.15,1598.28,1415.35,21.61,553.0,2388.16,9076.4,47.79,520.37,2388.07,8.4495,394,38.71,23.1868 +2,251,-0.0017,-0.0003,642.47,1598.68,1418.61,21.61,552.01,2388.16,9077.39,47.92,520.99,2388.1,8.467,394,38.54,23.2506 +2,252,-0.004,0.0004,642.83,1596.89,1422.69,21.61,552.51,2388.11,9077.59,47.7,519.98,2388.14,8.4779,394,38.5,23.2033 +2,253,0.0009,-0.0002,643.01,1596.43,1416.12,21.61,553.07,2388.14,9084.1,47.69,520.7,2388.12,8.4662,394,38.72,23.17 +2,254,-0.0009,0.0005,643.31,1593.88,1423.55,21.61,551.99,2388.15,9084.75,47.95,520.83,2388.15,8.4604,393,38.78,23.1766 +2,255,0.0012,0.0006,643.48,1598.25,1412.73,21.61,553.26,2388.15,9082.41,47.67,520.85,2388.12,8.4829,395,38.67,23.2282 +2,256,-0.0044,0.0004,642.92,1598.83,1421.46,21.61,552.68,2388.12,9083.63,47.77,520.67,2388.12,8.5297,395,38.62,23.2518 +2,257,0.0,-0.0002,643.06,1593.17,1426.94,21.61,552.19,2388.14,9086.82,48.02,520.95,2388.14,8.4847,395,38.64,23.2133 +2,258,0.0007,-0.0,642.93,1599.77,1421.07,21.61,552.71,2388.11,9082.16,47.66,520.79,2388.18,8.4796,394,38.49,23.1194 +2,259,0.0006,-0.0003,642.78,1597.65,1416.63,21.61,552.58,2388.12,9088.69,47.91,520.52,2388.13,8.5312,395,38.48,23.1053 +2,260,0.0027,0.0001,642.94,1593.51,1419.41,21.61,552.02,2388.17,9078.61,47.94,520.54,2388.04,8.4766,392,38.44,23.153 +2,261,-0.0009,0.0003,643.69,1594.0,1419.92,21.61,552.31,2388.09,9086.97,48.03,519.98,2388.13,8.4775,393,38.58,23.1426 +2,262,0.0068,-0.0002,643.05,1588.3,1418.2,21.61,553.01,2388.14,9079.59,47.82,520.68,2388.12,8.467,395,38.4,23.1573 +2,263,-0.0023,0.0001,643.16,1592.32,1422.82,21.61,552.81,2388.2,9079.99,47.91,521.04,2388.14,8.5205,395,38.81,23.1446 +2,264,-0.0017,0.0005,643.47,1610.1,1424.48,21.61,552.17,2388.18,9086.82,48.07,520.47,2388.15,8.522,395,38.67,23.2342 +2,265,-0.0035,0.0004,643.03,1593.48,1420.27,21.61,552.45,2388.18,9085.7,47.66,520.27,2388.12,8.5185,395,38.66,23.0402 +2,266,0.002,-0.0001,643.14,1591.54,1422.54,21.61,551.84,2388.1,9083.55,47.84,520.52,2388.16,8.461,397,38.51,23.1815 +2,267,-0.0,0.0003,642.96,1602.23,1422.12,21.61,552.61,2388.11,9091.67,47.8,520.2,2388.15,8.4596,395,38.49,23.1591 +2,268,0.0006,-0.0,643.1,1602.53,1419.61,21.61,552.1,2388.16,9085.07,47.96,520.93,2388.15,8.5129,395,38.55,23.1937 +2,269,-0.0002,-0.0002,643.11,1594.52,1419.23,21.61,551.28,2388.2,9086.7,48.09,519.74,2388.14,8.5043,395,38.71,22.9897 +2,270,0.0005,-0.0002,643.12,1604.32,1424.27,21.61,551.75,2388.2,9083.41,48.04,520.35,2388.12,8.5204,395,38.59,23.1713 +2,271,0.0001,0.0002,643.87,1607.43,1425.06,21.61,551.73,2388.22,9088.84,48.14,519.97,2388.21,8.5014,395,38.49,22.9721 +2,272,-0.0004,0.0001,643.27,1600.02,1426.7,21.61,552.44,2388.22,9085.04,47.96,520.56,2388.2,8.5126,395,38.48,23.1781 +2,273,-0.0036,-0.0003,643.71,1598.88,1418.55,21.61,552.47,2388.15,9094.09,47.88,519.72,2388.2,8.5098,394,38.53,23.1182 +2,274,-0.0,0.0004,643.18,1598.98,1427.83,21.61,551.25,2388.2,9089.3,48.07,519.73,2388.18,8.488,396,38.27,23.1046 +2,275,0.001,0.0001,643.67,1595.3,1421.8,21.61,551.86,2388.21,9094.94,48.02,520.0,2388.17,8.5136,396,38.67,23.198 +2,276,-0.0018,0.0004,643.82,1605.46,1429.66,21.61,551.43,2388.16,9087.19,47.98,520.09,2388.17,8.5177,396,38.41,23.0895 +2,277,0.0017,-0.0004,643.91,1601.47,1424.78,21.61,552.45,2388.22,9092.92,48.03,519.93,2388.17,8.5206,395,38.68,23.0609 +2,278,-0.0,-0.0003,643.44,1597.61,1423.67,21.61,551.49,2388.19,9096.47,47.99,519.72,2388.24,8.5285,396,38.49,23.0702 +2,279,0.0006,0.0005,643.64,1594.8,1426.95,21.61,551.16,2388.19,9096.6,48.13,519.66,2388.26,8.5237,395,38.51,23.046 +2,280,-0.0061,-0.0,643.63,1594.21,1422.89,21.61,551.84,2388.24,9101.42,48.12,519.91,2388.21,8.4889,396,38.56,23.1462 +2,281,-0.0009,-0.0003,643.6,1598.25,1424.36,21.61,551.44,2388.18,9089.18,48.17,519.48,2388.15,8.5377,398,38.52,23.0385 +2,282,0.0012,-0.0,643.94,1598.56,1426.87,21.61,552.29,2388.23,9092.2,48.27,520.05,2388.18,8.5149,397,38.44,23.094 +2,283,0.0046,0.0002,643.78,1602.03,1429.67,21.61,551.46,2388.16,9084.13,48.21,520.07,2388.2,8.5199,398,38.42,23.0358 +2,284,-0.0006,0.0001,643.91,1601.35,1430.04,21.61,551.96,2388.22,9089.87,48.18,519.95,2388.21,8.5291,395,38.23,23.1196 +2,285,-0.0007,0.0004,643.67,1596.84,1431.17,21.61,550.85,2388.2,9098.67,48.27,519.91,2388.22,8.5242,396,38.39,23.1155 +2,286,-0.001,-0.0003,643.44,1603.63,1429.57,21.61,551.61,2388.18,9102.01,48.14,519.51,2388.22,8.4932,395,38.33,23.0169 +2,287,-0.0005,0.0006,643.85,1608.5,1430.84,21.61,551.66,2388.2,9109.36,48.12,519.81,2388.21,8.5365,398,38.43,23.0848 +3,10,-0.0009,0.0003,642.72,1582.2,1400.07,21.61,554.28,2388.0,9053.42,47.22,522.4,2388.05,8.4063,392,38.96,23.3129 +3,11,-0.0009,0.0002,641.94,1591.43,1400.59,21.61,554.88,2388.03,9051.86,47.4,522.02,2388.01,8.4237,391,38.8,23.4161 +3,12,-0.0029,0.0003,642.61,1583.92,1404.93,21.61,553.45,2388.06,9049.23,47.17,522.07,2388.02,8.3779,393,38.9,23.3028 +3,13,0.0002,0.0003,642.63,1583.25,1403.52,21.61,555.25,2388.03,9057.09,47.25,522.26,2388.06,8.3743,390,39.16,23.3372 +3,14,0.0,0.0004,642.16,1591.03,1396.35,21.61,554.31,2388.02,9056.59,47.27,521.69,2387.99,8.4339,391,38.9,23.3506 +3,15,-0.0015,0.0001,641.83,1585.29,1398.77,21.61,554.36,2388.05,9058.29,47.15,522.0,2388.06,8.4311,390,39.02,23.2825 +3,16,-0.0064,-0.0002,642.65,1589.05,1392.15,21.61,554.17,2388.05,9051.12,47.26,522.25,2387.97,8.4147,391,38.94,23.4078 +3,17,-0.0018,-0.0001,642.78,1588.94,1395.76,21.61,553.74,2388.0,9051.79,47.35,522.37,2387.99,8.4018,393,39.13,23.4031 +3,18,-0.0013,-0.0005,642.26,1584.36,1402.3,21.61,554.52,2388.0,9055.82,47.38,521.8,2388.05,8.4244,390,39.0,23.3709 +3,19,0.0029,-0.0004,642.05,1580.67,1402.82,21.61,553.99,2388.03,9051.22,47.23,522.18,2387.99,8.413,391,39.12,23.4505 +3,20,-0.002,-0.0002,642.25,1580.73,1394.57,21.61,554.54,2388.06,9047.08,47.1,522.29,2388.03,8.398,391,38.93,23.3357 +3,21,-0.0006,0.0004,642.18,1586.78,1398.83,21.61,554.32,2388.02,9052.89,47.27,522.67,2387.98,8.4302,392,39.13,23.3923 +3,22,-0.0052,-0.0001,642.34,1589.55,1405.28,21.61,554.71,2388.06,9060.66,47.3,522.53,2388.02,8.432,392,39.09,23.4213 +3,23,-0.0004,-0.0002,642.07,1585.2,1395.59,21.61,554.04,2387.99,9058.17,47.12,522.22,2388.05,8.3839,392,38.94,23.3791 +3,24,-0.0038,-0.0002,642.24,1585.08,1395.73,21.61,554.65,2388.05,9047.82,47.26,521.66,2388.05,8.3768,391,38.81,23.3903 +3,25,-0.0005,-0.0004,642.24,1579.4,1390.93,21.61,554.21,2388.05,9055.08,47.17,522.15,2387.98,8.3845,391,38.9,23.4004 +3,26,-0.0023,-0.0005,641.61,1586.92,1401.63,21.61,553.9,2388.04,9047.81,47.28,521.93,2388.05,8.4062,391,39.01,23.2767 +3,27,0.001,0.0002,642.36,1581.83,1400.85,21.61,554.67,2388.03,9058.62,47.17,521.69,2388.04,8.4095,392,38.97,23.3769 +3,28,0.0001,-0.0,641.48,1590.59,1400.68,21.61,553.51,2388.04,9054.91,47.22,522.27,2388.03,8.3998,392,38.91,23.4092 +3,29,0.0038,0.0004,642.01,1584.71,1396.05,21.61,554.94,2388.03,9056.29,47.24,522.15,2387.99,8.4387,392,39.15,23.3378 +3,30,0.0012,0.0004,642.21,1584.95,1398.1,21.61,554.05,2388.01,9051.75,47.23,522.35,2388.04,8.3927,392,39.01,23.3824 +3,31,0.0039,0.0001,642.33,1588.68,1393.95,21.61,553.06,2388.04,9056.38,47.33,521.92,2388.05,8.393,391,38.98,23.3272 +3,32,0.0018,0.0002,642.55,1583.7,1400.58,21.61,554.32,2388.04,9052.73,47.3,522.11,2388.08,8.392,393,39.1,23.3545 +3,33,0.0004,0.0002,641.82,1583.55,1403.93,21.61,554.27,2388.0,9055.13,47.31,522.1,2387.96,8.4086,392,38.98,23.4537 +3,34,-0.0014,0.0005,642.83,1584.17,1397.47,21.61,554.42,2388.01,9058.0,47.2,522.34,2388.05,8.4035,393,39.0,23.3728 +3,35,-0.0013,0.0001,642.08,1584.57,1396.92,21.61,554.1,2388.04,9058.14,47.26,522.19,2388.0,8.3924,391,39.03,23.343 +3,36,-0.0018,0.0001,642.06,1580.96,1399.12,21.61,554.11,2388.05,9059.15,47.33,522.77,2388.05,8.3794,393,38.84,23.3414 +3,37,0.0058,0.0001,641.68,1582.96,1396.65,21.61,555.28,2388.02,9055.79,47.17,522.14,2388.05,8.4142,394,38.78,23.2711 +3,38,0.0006,0.0001,641.72,1577.99,1401.83,21.61,554.11,2388.09,9062.07,47.44,521.81,2388.05,8.4094,393,38.98,23.3501 +3,39,0.0011,0.0004,641.94,1580.42,1400.8,21.61,554.18,2388.05,9056.99,47.1,522.0,2388.08,8.3738,392,38.79,23.3514 +3,40,-0.0038,0.0001,641.97,1579.38,1403.24,21.61,553.75,2388.03,9056.52,47.09,521.84,2388.05,8.3987,392,39.09,23.4079 +3,41,0.0009,-0.0002,642.79,1586.38,1394.92,21.61,554.68,2388.02,9060.55,47.32,522.69,2388.07,8.3682,392,38.99,23.3774 +3,42,0.0027,-0.0003,642.61,1586.25,1404.49,21.6,554.31,2387.97,9058.97,47.31,522.02,2388.01,8.3828,390,39.11,23.4412 +3,43,0.0044,-0.0003,642.58,1587.9,1401.51,21.61,554.18,2388.0,9061.97,47.35,521.7,2388.06,8.4397,392,39.03,23.3024 +3,44,-0.0022,-0.0005,642.21,1586.83,1395.48,21.61,554.45,2388.0,9060.44,47.17,522.47,2388.03,8.4259,391,39.14,23.448 +3,45,-0.0025,-0.0005,642.15,1582.99,1398.33,21.61,554.43,2388.04,9055.97,47.06,522.17,2388.06,8.4342,392,39.23,23.4284 +3,46,0.0015,0.0004,642.42,1590.25,1401.55,21.61,554.0,2388.05,9067.35,47.38,521.88,2388.03,8.4024,392,38.81,23.3352 +3,47,-0.0013,-0.0004,642.26,1587.55,1395.3,21.61,554.82,2388.04,9055.04,47.29,522.2,2388.02,8.4134,393,39.01,23.4428 +3,48,0.0002,0.0001,642.01,1587.21,1392.94,21.61,554.41,2388.05,9054.47,47.32,521.88,2387.95,8.4199,392,38.92,23.406 +3,49,-0.0002,-0.0,642.16,1583.53,1396.11,21.61,554.28,2388.03,9051.92,47.33,522.28,2388.05,8.3716,392,39.0,23.3813 +3,50,0.0012,-0.0004,642.51,1586.16,1402.64,21.61,553.87,2388.03,9056.79,47.27,522.07,2388.03,8.4054,391,39.02,23.4013 +3,51,0.0022,0.0001,642.39,1592.16,1401.05,21.61,554.15,2387.94,9054.5,47.14,522.18,2388.04,8.4004,392,39.02,23.3874 +3,52,0.0042,-0.0,642.29,1582.66,1404.99,21.61,554.39,2387.99,9061.17,47.36,522.73,2388.07,8.3954,392,39.14,23.4006 +3,53,0.0032,0.0002,642.02,1588.04,1399.78,21.61,554.54,2388.06,9065.15,47.21,522.54,2388.03,8.4046,391,38.99,23.3824 +3,54,0.0003,0.0002,642.03,1585.66,1407.04,21.61,554.28,2388.04,9054.67,47.45,522.19,2388.05,8.3958,391,38.85,23.4086 +3,55,-0.0001,0.0002,642.41,1594.2,1399.08,21.61,554.34,2388.03,9058.13,47.22,522.09,2388.03,8.4135,393,38.9,23.4306 +3,56,-0.0001,-0.0002,642.73,1586.08,1403.97,21.61,554.47,2388.07,9057.83,47.14,522.08,2388.02,8.4042,394,39.1,23.4319 +3,57,0.0004,-0.0005,642.56,1581.97,1398.55,21.61,553.99,2388.06,9058.76,47.28,522.06,2388.09,8.4128,392,38.92,23.366 +3,58,0.004,-0.0005,642.52,1581.31,1403.99,21.61,553.58,2388.06,9055.97,47.35,521.85,2388.04,8.4032,392,38.88,23.3982 +3,59,0.0011,0.0002,642.31,1587.46,1397.56,21.61,553.88,2388.03,9056.23,47.22,522.85,2388.07,8.4039,390,39.15,23.388 +3,60,0.0011,0.0003,641.8,1586.82,1405.66,21.61,553.34,2388.05,9051.65,47.47,522.23,2388.05,8.4616,394,38.94,23.2905 +3,61,-0.0006,0.0002,642.5,1585.5,1392.35,21.61,554.01,2388.07,9063.57,47.26,521.8,2388.06,8.4046,393,38.83,23.3697 +3,62,0.0009,0.0002,642.18,1591.5,1403.57,21.61,553.67,2388.07,9058.94,47.28,522.16,2388.04,8.417,393,38.96,23.4182 +3,63,0.0018,0.0004,642.1,1583.42,1398.98,21.61,554.61,2388.07,9052.2,47.27,522.27,2388.03,8.4241,393,39.01,23.3903 +3,64,0.0004,0.0001,642.53,1590.04,1404.68,21.61,553.9,2388.04,9061.33,47.24,522.24,2388.07,8.4227,393,39.13,23.3791 +3,65,-0.0024,-0.0003,641.69,1586.21,1400.69,21.61,554.63,2388.03,9057.61,47.29,522.25,2387.98,8.4379,392,39.12,23.4958 +3,66,-0.0003,0.0,642.25,1577.22,1397.9,21.61,553.79,2388.01,9059.8,47.31,522.15,2388.03,8.4032,391,38.92,23.432 +3,67,-0.004,-0.0005,642.0,1584.55,1403.87,21.61,553.84,2388.1,9060.7,47.29,521.81,2388.03,8.419,392,39.04,23.4697 +3,68,0.0034,-0.0002,642.94,1587.27,1400.37,21.61,554.43,2388.04,9056.56,47.31,522.14,2387.99,8.4005,392,39.08,23.3725 +3,69,0.0051,-0.0001,642.05,1581.93,1404.2,21.61,555.14,2388.05,9061.76,47.24,521.69,2388.03,8.4404,392,39.07,23.3595 +3,70,-0.0011,0.0004,642.54,1587.02,1397.09,21.61,553.8,2387.99,9067.14,47.44,521.88,2387.97,8.4183,392,39.12,23.4527 +3,71,0.0002,0.0001,642.9,1579.41,1401.19,21.61,554.59,2388.1,9063.98,47.43,522.0,2388.07,8.3895,392,38.89,23.3944 +3,72,-0.0014,-0.0002,642.25,1590.21,1389.86,21.61,554.25,2388.06,9052.95,47.48,521.66,2388.03,8.4042,392,38.88,23.293 +3,73,0.0009,0.0002,642.42,1585.01,1400.06,21.6,554.31,2388.07,9062.66,47.23,523.18,2388.04,8.406,392,38.89,23.4922 +3,74,0.0023,-0.0001,642.75,1589.64,1405.76,21.61,554.4,2388.03,9060.23,47.14,521.78,2388.04,8.4211,392,38.93,23.3845 +3,75,-0.0007,-0.0002,642.25,1592.23,1406.98,21.61,553.73,2388.05,9059.09,47.25,522.24,2387.99,8.4043,392,39.1,23.41 +3,76,-0.0032,-0.0001,642.52,1589.35,1405.34,21.61,553.91,2388.0,9062.69,47.35,522.25,2388.06,8.3813,392,38.95,23.4065 +3,77,-0.0001,0.0001,642.98,1584.13,1405.99,21.61,554.08,2388.02,9069.75,47.16,522.52,2388.06,8.4375,393,38.78,23.4131 +3,78,-0.0003,-0.0005,642.43,1579.52,1400.53,21.61,553.62,2388.06,9064.15,47.38,521.57,2388.09,8.4174,390,38.97,23.3301 +3,79,0.0006,0.0004,642.31,1582.4,1403.49,21.61,553.6,2388.03,9063.54,47.28,522.72,2388.0,8.384,393,38.92,23.3451 +3,80,-0.0003,-0.0003,641.74,1580.95,1405.37,21.61,553.21,2388.03,9062.23,47.34,521.97,2387.99,8.3935,392,39.03,23.5181 +3,81,-0.0007,0.0002,642.55,1581.73,1402.65,21.61,553.88,2388.1,9056.0,47.46,521.34,2387.96,8.4145,391,38.86,23.3728 +3,82,-0.003,-0.0003,642.24,1583.69,1400.4,21.61,553.7,2388.05,9071.16,47.22,522.16,2388.05,8.4089,393,38.87,23.3822 +3,83,-0.0007,-0.0004,642.27,1591.3,1398.73,21.61,553.79,2388.0,9062.92,47.51,522.02,2388.01,8.3789,393,39.0,23.4426 +3,84,-0.0031,0.0004,642.18,1593.32,1400.62,21.61,554.01,2388.03,9062.78,47.51,522.19,2388.06,8.3901,392,38.89,23.3873 +3,85,0.0043,-0.0001,641.95,1587.14,1414.11,21.61,554.09,2388.01,9067.15,47.25,521.84,2388.07,8.3949,391,38.87,23.314 +3,86,-0.0018,0.0003,642.69,1586.09,1401.01,21.61,553.83,2387.99,9067.61,47.37,522.19,2388.06,8.4188,393,39.03,23.3333 +3,87,-0.0005,0.0,642.32,1588.25,1402.17,21.61,554.11,2388.01,9063.48,47.32,522.1,2388.02,8.3939,391,39.01,23.3373 +3,88,0.0031,-0.0,642.27,1585.9,1400.09,21.61,553.59,2388.02,9067.17,47.33,521.9,2388.01,8.4078,393,39.04,23.2656 +3,89,0.0006,0.0004,642.33,1582.29,1404.14,21.61,555.01,2388.05,9066.64,47.39,521.93,2388.02,8.4044,394,38.81,23.3864 +3,90,-0.0008,-0.0002,642.36,1597.84,1406.26,21.61,554.58,2388.06,9068.61,47.4,521.92,2388.08,8.3972,393,38.81,23.2711 +3,91,0.0051,-0.0004,641.99,1582.81,1399.5,21.61,553.72,2388.03,9058.01,47.38,521.83,2388.01,8.4327,393,38.95,23.3909 +3,92,0.0022,-0.0004,642.29,1590.07,1400.27,21.61,553.5,2387.99,9066.58,47.39,521.96,2387.97,8.373,391,38.87,23.4344 +3,93,0.0002,-0.0001,642.1,1593.66,1409.21,21.61,553.83,2387.99,9070.02,47.43,521.6,2388.09,8.4032,392,39.21,23.2352 +3,94,0.0023,0.0005,642.58,1588.9,1401.08,21.6,554.76,2388.0,9069.01,47.48,521.94,2388.01,8.4166,392,39.0,23.4437 +3,95,-0.0006,-0.0001,642.37,1585.69,1406.13,21.61,554.41,2388.09,9063.16,47.32,521.79,2388.05,8.4012,392,38.89,23.4594 +3,96,-0.0003,0.0001,642.89,1582.86,1400.62,21.61,554.08,2388.0,9065.97,47.31,521.48,2388.0,8.4333,393,38.87,23.378 +3,97,0.0008,-0.0005,642.94,1587.51,1408.05,21.61,554.13,2388.05,9066.74,47.41,522.71,2388.05,8.4313,393,38.79,23.3339 +3,98,0.0006,-0.0004,642.4,1586.19,1403.62,21.61,553.85,2388.03,9066.24,47.35,521.93,2388.06,8.4405,392,38.96,23.2921 +3,99,0.0005,-0.0001,642.67,1589.42,1398.72,21.61,553.82,2388.0,9067.95,47.37,522.06,2388.06,8.4388,392,38.91,23.3834 +3,100,0.0008,-0.0004,642.29,1579.98,1404.16,21.61,554.94,2388.01,9071.46,47.3,522.01,2388.05,8.4212,390,38.88,23.3073 +3,101,0.0002,-0.0003,642.24,1587.77,1405.55,21.61,554.34,2388.03,9067.93,47.42,522.6,2388.07,8.4112,392,38.75,23.3883 +3,102,0.0003,0.0,642.63,1579.35,1408.84,21.61,553.87,2388.04,9068.94,47.39,521.95,2388.03,8.3913,392,38.97,23.3669 +3,103,0.0003,-0.0003,642.28,1585.62,1395.4,21.61,553.38,2388.05,9075.57,47.48,522.05,2388.03,8.4025,391,38.96,23.3251 +3,104,0.0051,0.0,642.46,1586.74,1403.37,21.61,554.63,2388.05,9070.59,47.44,521.66,2388.04,8.4345,393,38.93,23.2958 +3,105,-0.0022,0.0004,641.85,1591.89,1397.73,21.61,553.69,2388.08,9062.39,47.32,521.73,2388.04,8.4312,392,38.93,23.321 +3,106,-0.0014,-0.0001,642.51,1586.44,1405.62,21.61,554.31,2388.04,9074.76,47.32,522.11,2388.04,8.4098,392,38.93,23.3755 +3,107,0.0004,0.0003,642.36,1586.96,1410.67,21.61,553.57,2388.07,9071.53,47.45,521.79,2388.04,8.4326,392,38.89,23.3666 +3,108,-0.0005,-0.0002,642.98,1583.29,1405.94,21.61,553.52,2388.08,9068.9,47.25,521.48,2388.05,8.4371,392,38.89,23.4032 +3,109,-0.0006,-0.0003,642.48,1588.21,1402.77,21.6,554.91,2388.05,9073.77,47.32,521.59,2388.05,8.4285,392,38.9,23.2637 +3,110,-0.0008,0.0001,642.92,1592.41,1403.14,21.61,554.15,2388.04,9075.03,47.41,521.46,2388.05,8.4157,393,38.88,23.2577 +3,111,0.001,-0.0005,642.25,1583.83,1401.73,21.61,553.74,2388.04,9070.35,47.41,522.09,2387.99,8.4242,394,38.77,23.3791 +3,112,-0.0007,0.0002,642.65,1584.14,1400.61,21.61,553.64,2388.03,9067.74,47.41,521.35,2388.03,8.4176,393,39.0,23.314 +3,113,0.0029,-0.0,642.5,1590.74,1408.52,21.61,554.0,2388.05,9071.48,47.41,522.28,2388.05,8.4318,393,38.95,23.3993 +3,114,0.0019,-0.0005,642.46,1588.4,1407.81,21.61,554.04,2388.04,9076.18,47.18,521.68,2388.02,8.4222,392,38.78,23.3687 +3,115,-0.001,0.0001,642.22,1588.97,1400.56,21.61,553.54,2388.02,9076.34,47.53,521.6,2388.08,8.4566,393,39.01,23.3428 +3,116,0.0008,0.0002,642.62,1591.56,1407.84,21.61,553.54,2388.06,9068.22,47.36,521.91,2387.99,8.4083,392,38.77,23.4147 +3,117,0.0012,0.0001,642.76,1587.74,1402.28,21.61,553.84,2388.05,9086.93,47.48,521.74,2388.04,8.423,391,38.84,23.4284 +3,118,0.0004,0.0,642.26,1590.05,1408.53,21.61,553.52,2388.03,9076.02,47.44,522.37,2388.05,8.4675,392,38.92,23.2813 +3,119,0.0022,-0.0002,642.0,1588.1,1398.22,21.61,553.47,2388.05,9075.77,47.53,521.72,2388.05,8.4442,393,38.85,23.2826 +3,120,-0.0012,0.0005,642.6,1585.58,1408.79,21.61,553.63,2388.06,9075.42,47.35,521.47,2388.03,8.4458,391,38.83,23.3816 +3,121,-0.0036,-0.0003,642.27,1585.86,1413.79,21.61,553.75,2388.03,9082.5,47.48,521.77,2388.01,8.4103,392,38.92,23.2834 +3,122,0.0011,-0.0002,642.72,1586.83,1406.06,21.61,553.77,2388.02,9084.14,47.43,521.94,2388.05,8.413,393,38.72,23.2005 +3,123,-0.0009,0.0001,642.49,1594.72,1408.04,21.61,554.28,2388.04,9079.55,47.56,522.27,2388.03,8.4506,394,39.0,23.4 +3,124,-0.0048,-0.0003,642.0,1588.41,1405.29,21.61,553.12,2388.04,9083.78,47.31,521.32,2388.1,8.4264,394,39.09,23.3056 +3,125,-0.0007,0.0002,642.82,1580.5,1405.04,21.61,553.25,2388.01,9081.3,47.34,521.86,2388.06,8.464,394,38.8,23.2509 +3,126,0.0013,0.0004,642.76,1583.13,1409.96,21.61,554.41,2388.02,9076.07,47.41,521.56,2388.11,8.4597,394,38.9,23.2845 +3,127,0.0029,0.0001,642.67,1593.61,1395.95,21.61,554.01,2388.05,9088.03,47.54,521.42,2388.09,8.437,392,38.91,23.2823 +3,128,-0.0008,-0.0003,642.22,1592.24,1409.32,21.61,553.67,2388.02,9084.04,47.55,522.15,2388.07,8.4587,394,38.89,23.3247 +3,129,0.0003,0.0005,643.1,1597.5,1405.91,21.61,553.56,2388.07,9091.26,47.33,522.43,2388.04,8.43,393,38.87,23.2454 +3,130,-0.0006,0.0,642.57,1584.08,1410.11,21.61,553.51,2388.1,9089.67,47.53,521.55,2388.09,8.4656,392,38.85,23.322 +3,131,-0.0042,0.0002,642.5,1589.91,1406.13,21.61,553.7,2388.09,9085.91,47.44,521.22,2388.02,8.4311,394,38.77,23.2491 +3,132,-0.0013,-0.0001,642.35,1592.88,1408.51,21.61,553.0,2388.07,9095.25,47.57,521.22,2388.03,8.4631,394,38.82,23.3883 +3,133,-0.001,-0.0003,642.62,1589.14,1409.48,21.61,553.52,2388.01,9089.42,47.47,521.44,2388.0,8.4447,394,38.75,23.3143 +3,134,0.0005,-0.0005,642.45,1586.99,1406.61,21.61,554.21,2388.05,9091.09,47.64,521.6,2388.07,8.4601,393,38.84,23.208 +3,135,0.0012,-0.0,642.52,1588.65,1407.5,21.61,553.69,2387.99,9089.64,47.54,521.63,2388.06,8.4512,393,38.79,23.3407 +3,136,0.0015,-0.0001,642.6,1592.25,1405.41,21.61,553.83,2388.08,9097.15,47.6,521.37,2388.09,8.4234,395,38.66,23.272 +3,137,-0.0039,0.0004,642.75,1589.57,1409.77,21.61,554.36,2388.08,9097.8,47.33,521.66,2388.03,8.4339,394,38.74,23.244 +3,138,0.0013,-0.0,642.3,1599.56,1407.3,21.61,553.57,2388.01,9097.97,47.52,521.91,2388.05,8.4614,393,38.88,23.2957 +3,139,-0.0022,0.0005,643.08,1594.87,1415.14,21.61,553.81,2388.08,9089.36,47.53,521.71,2388.07,8.4823,393,38.86,23.3022 +3,140,-0.0009,0.0002,642.87,1589.67,1414.46,21.61,553.12,2388.04,9089.2,47.39,521.33,2388.0,8.4544,394,38.89,23.2051 +3,141,0.0025,0.0003,643.08,1584.87,1412.02,21.61,553.08,2388.11,9098.7,47.66,521.7,2388.04,8.4394,394,38.77,23.2201 +3,142,-0.0012,0.0003,643.03,1587.35,1413.05,21.61,552.85,2388.02,9098.87,47.69,521.23,2388.06,8.4786,394,38.91,23.3298 +3,143,0.0012,0.0004,642.48,1594.94,1402.45,21.61,553.0,2388.05,9101.3,47.56,521.36,2388.08,8.4217,394,38.73,23.3126 +3,144,0.004,-0.0001,642.48,1593.19,1416.18,21.61,552.94,2388.06,9101.55,47.49,521.33,2388.07,8.4587,391,38.71,23.2089 +3,145,-0.0022,-0.0003,642.65,1591.66,1403.51,21.61,553.55,2388.06,9105.53,47.47,521.27,2388.03,8.4219,394,38.88,23.2711 +3,146,0.0017,0.0004,643.71,1589.2,1413.64,21.61,553.85,2388.07,9109.59,47.43,521.16,2388.03,8.458,393,38.74,23.331 +3,147,0.0023,0.0001,643.07,1590.59,1411.55,21.61,553.79,2388.09,9109.19,47.62,521.37,2388.02,8.4965,396,38.92,23.3225 +3,148,-0.0013,0.0003,642.69,1589.28,1421.05,21.61,553.37,2388.05,9112.94,47.5,521.1,2388.09,8.4426,394,38.77,23.2463 +3,149,0.0014,-0.0,643.26,1594.66,1414.51,21.61,552.71,2388.09,9113.8,47.64,521.18,2388.06,8.4499,394,38.8,23.3094 +3,150,0.0002,-0.0003,643.08,1591.34,1407.58,21.61,553.35,2388.04,9108.76,47.78,521.77,2388.12,8.4995,393,38.84,23.2518 +3,151,0.0009,-0.0,643.04,1594.47,1420.87,21.61,552.82,2388.05,9117.82,47.61,521.26,2388.04,8.442,393,38.74,23.2479 +3,152,-0.002,-0.0003,643.34,1599.53,1411.65,21.61,553.59,2388.06,9116.1,47.66,520.99,2388.02,8.4818,395,38.86,23.3026 +3,153,-0.001,0.0004,642.89,1594.75,1416.95,21.61,553.63,2388.08,9114.32,47.63,521.06,2388.14,8.4479,395,38.72,23.1607 +3,154,0.0021,-0.0001,643.15,1599.04,1414.53,21.61,553.26,2388.03,9123.01,47.63,521.48,2388.0,8.4483,393,38.63,23.1781 +3,155,0.0006,0.0002,642.83,1588.51,1413.92,21.61,553.47,2388.05,9130.48,47.69,521.28,2388.01,8.462,395,38.71,23.2262 +3,156,-0.0002,-0.0003,643.52,1597.3,1411.91,21.61,553.03,2388.09,9121.93,47.67,521.1,2388.04,8.4749,396,38.7,23.1933 +3,157,-0.0006,0.0004,642.84,1599.31,1414.01,21.61,552.54,2388.11,9126.88,47.82,521.11,2388.07,8.4683,395,38.6,23.0792 +3,158,-0.0003,-0.0003,643.19,1593.16,1421.83,21.61,553.21,2388.1,9134.44,47.74,521.26,2388.07,8.4977,394,38.56,23.1803 +3,159,-0.0005,-0.0004,642.71,1597.8,1415.2,21.61,553.19,2388.11,9127.25,47.72,521.08,2388.04,8.4882,394,38.6,23.1906 +3,160,0.0058,0.0002,642.48,1595.61,1415.88,21.61,553.16,2388.1,9131.44,47.76,521.16,2388.13,8.4458,393,38.69,23.2144 +3,161,-0.0015,-0.0001,643.6,1594.41,1416.4,21.61,552.82,2388.06,9146.21,47.68,520.48,2388.09,8.4779,394,38.62,23.19 +3,162,0.0022,0.0002,643.11,1594.78,1420.33,21.61,552.97,2388.12,9134.86,47.89,521.51,2388.04,8.4726,393,38.67,23.0617 +3,163,-0.0016,0.0,643.0,1597.51,1422.22,21.61,553.11,2388.13,9142.78,47.58,521.34,2388.13,8.4766,394,38.64,23.1448 +3,164,0.0007,-0.0003,643.09,1601.99,1416.56,21.61,552.81,2388.09,9143.64,47.81,520.78,2388.06,8.5019,395,38.74,23.0846 +3,165,-0.0005,-0.0001,642.96,1601.94,1416.31,21.61,552.94,2388.09,9150.46,47.97,521.1,2388.09,8.4846,396,38.69,23.123 +3,166,0.003,-0.0002,642.9,1598.82,1419.27,21.61,552.56,2388.04,9153.66,47.79,520.98,2388.08,8.5133,395,38.52,23.1578 +3,167,0.0027,0.0004,643.38,1605.41,1415.96,21.61,551.95,2388.17,9149.93,47.97,520.47,2388.11,8.4815,396,38.68,23.147 +3,168,-0.0012,0.0002,643.46,1593.72,1422.59,21.61,552.04,2388.11,9154.65,47.93,520.75,2388.1,8.5141,395,38.49,23.2036 +3,169,0.0016,-0.0001,643.55,1602.9,1424.39,21.61,552.76,2388.13,9157.05,47.9,520.19,2388.14,8.4936,395,38.52,23.1723 +3,170,-0.0015,-0.0003,643.35,1606.1,1428.52,21.61,553.34,2388.12,9159.3,48.14,520.62,2388.13,8.4758,395,38.48,23.1829 +3,171,-0.0011,-0.0003,643.36,1603.48,1419.33,21.61,551.57,2388.16,9170.51,47.91,520.75,2388.15,8.5011,395,38.7,23.1225 +3,172,-0.0017,-0.0004,643.62,1597.73,1426.38,21.61,552.89,2388.08,9168.78,47.64,520.25,2388.06,8.5219,396,38.85,23.2086 +3,173,0.0028,-0.0002,643.64,1604.78,1417.29,21.61,552.16,2388.14,9174.85,48.16,520.7,2388.11,8.4763,394,38.51,23.1498 +3,174,0.0034,-0.0005,643.46,1602.86,1424.79,21.61,552.29,2388.13,9179.87,47.84,520.02,2388.14,8.5363,396,38.53,23.0144 +3,175,-0.003,0.0004,643.15,1603.74,1424.17,21.61,551.47,2388.06,9172.76,48.12,520.34,2388.14,8.5066,396,38.49,22.9909 +3,176,-0.0008,0.0002,643.93,1595.61,1438.51,21.61,551.93,2388.18,9185.88,47.98,520.91,2388.12,8.5245,396,38.49,23.0656 +3,177,-0.0041,-0.0002,643.68,1601.21,1423.5,21.61,552.17,2388.13,9191.53,48.1,520.19,2388.16,8.5286,397,38.37,23.0336 +3,178,-0.001,0.0001,643.66,1606.5,1430.55,21.61,551.31,2388.19,9193.98,48.38,520.14,2388.12,8.5351,399,38.57,23.1323 +3,179,0.0012,0.0,643.51,1604.8,1428.23,21.61,551.91,2388.14,9197.52,48.09,519.53,2388.2,8.5056,398,38.4,22.9562 +4,10,0.0006,-0.0003,642.78,1586.0,1400.12,21.61,553.54,2388.06,9050.49,47.5,521.54,2388.09,8.4233,392,38.94,23.3154 +4,11,0.0034,0.0003,642.21,1588.75,1395.79,21.61,553.58,2388.07,9049.29,47.31,522.35,2388.06,8.4134,394,39.21,23.4153 +4,12,0.0014,-0.0001,642.63,1584.33,1403.67,21.61,554.39,2388.09,9053.08,47.35,521.77,2388.05,8.4208,394,38.93,23.2962 +4,13,-0.0018,0.0005,642.24,1587.74,1395.23,21.61,553.5,2388.06,9053.94,47.29,521.78,2388.06,8.433,392,38.87,23.3162 +4,14,-0.0019,0.0005,642.62,1583.38,1407.62,21.61,553.65,2388.05,9045.65,47.49,521.91,2388.07,8.4236,393,38.92,23.4073 +4,15,-0.0021,-0.0001,642.47,1592.08,1401.13,21.61,554.7,2388.03,9050.65,47.35,521.98,2388.05,8.4369,392,38.91,23.3439 +4,16,0.0014,-0.0001,642.17,1585.39,1409.84,21.61,554.72,2388.09,9049.49,47.3,521.66,2388.08,8.4203,393,39.04,23.313 +4,17,0.0014,0.0004,642.06,1587.82,1406.43,21.61,553.57,2388.1,9050.63,47.39,522.35,2388.06,8.4309,392,38.95,23.2397 +4,18,0.0002,-0.0002,642.36,1589.62,1403.75,21.61,554.23,2388.08,9047.81,47.52,521.96,2388.09,8.4229,393,39.01,23.2961 +4,19,-0.0029,0.0005,643.02,1589.9,1406.34,21.61,553.62,2388.02,9051.51,47.28,521.95,2388.08,8.4111,392,39.1,23.2799 +4,20,0.0022,-0.0003,642.53,1589.76,1401.19,21.61,553.97,2388.05,9047.8,47.26,521.62,2388.08,8.3897,392,38.91,23.3725 +4,21,-0.0029,-0.0001,642.49,1593.11,1398.49,21.61,554.01,2388.05,9056.58,47.33,521.5,2388.07,8.4263,393,38.97,23.2878 +4,22,0.0025,-0.0003,642.68,1594.65,1405.05,21.61,554.28,2388.09,9047.38,47.7,521.78,2388.05,8.3904,391,39.17,23.2002 +4,23,0.0022,0.0,642.41,1592.74,1401.8,21.61,554.49,2388.14,9049.85,47.44,521.97,2388.03,8.4255,395,39.12,23.3787 +4,24,0.0022,-0.0002,642.51,1589.01,1400.24,21.61,553.74,2388.08,9056.76,47.46,522.11,2388.09,8.4394,390,38.69,23.2943 +4,25,0.0011,-0.0004,642.05,1592.65,1399.14,21.61,554.33,2388.04,9052.67,47.52,521.87,2388.13,8.3954,391,38.81,23.3862 +4,26,0.0031,0.0001,642.35,1589.28,1399.54,21.61,553.62,2388.07,9049.02,47.21,521.71,2388.08,8.4235,393,38.95,23.338 +4,27,0.0022,0.0001,642.08,1582.09,1402.27,21.61,553.71,2388.05,9056.66,47.37,522.37,2388.1,8.4328,392,38.85,23.3876 +4,28,-0.0002,0.0001,642.59,1583.69,1400.85,21.61,553.79,2388.09,9049.03,47.61,521.72,2388.11,8.4004,390,38.84,23.2796 +4,29,-0.0002,0.0,642.34,1585.53,1401.61,21.61,554.14,2388.07,9049.24,47.42,521.56,2388.08,8.418,393,38.91,23.3161 +4,30,-0.0011,-0.0002,642.7,1584.4,1403.21,21.61,554.09,2388.1,9055.69,47.57,521.68,2388.08,8.4294,391,38.79,23.357 +4,31,-0.001,0.0001,642.42,1580.87,1400.49,21.61,554.05,2388.05,9051.85,47.4,521.84,2388.12,8.4268,392,38.96,23.3364 +4,32,-0.0012,0.0004,642.1,1589.33,1406.42,21.61,553.8,2388.08,9047.22,47.3,521.76,2388.1,8.4672,392,38.85,23.4112 +4,33,-0.0002,-0.0004,642.79,1590.98,1405.72,21.61,554.62,2388.11,9052.54,47.34,521.7,2388.02,8.4295,393,38.86,23.349 +4,34,0.0006,-0.0002,642.29,1587.97,1396.73,21.61,553.61,2388.06,9051.75,47.5,521.65,2388.06,8.4369,392,38.88,23.2764 +4,35,0.0003,-0.0002,642.42,1587.89,1398.89,21.61,553.72,2388.05,9054.05,47.38,521.49,2388.09,8.4134,393,38.94,23.3307 +4,36,-0.0004,0.0,642.08,1589.48,1406.77,21.61,552.71,2388.13,9050.82,47.32,522.12,2388.08,8.4194,393,38.87,23.3539 +4,37,0.0011,0.0001,642.62,1582.75,1411.83,21.61,553.92,2388.06,9050.21,47.28,521.23,2388.07,8.4065,391,38.85,23.4505 +4,38,-0.0015,-0.0004,642.69,1591.19,1400.63,21.61,553.4,2388.08,9051.77,47.36,521.87,2388.05,8.4118,393,39.07,23.4142 +4,39,-0.0002,-0.0003,642.14,1581.05,1406.06,21.61,553.06,2388.08,9057.41,47.56,521.81,2388.09,8.4111,393,38.76,23.3571 +4,40,0.0026,0.0003,642.77,1596.22,1407.38,21.61,553.77,2388.04,9053.55,47.38,522.2,2388.09,8.3846,391,38.79,23.3047 +4,41,0.0029,-0.0001,642.44,1588.31,1403.4,21.61,553.44,2388.02,9057.66,47.27,521.95,2388.05,8.3683,393,39.11,23.3804 +4,42,-0.0003,-0.0003,642.62,1587.0,1401.08,21.61,553.94,2388.05,9046.9,47.42,521.83,2388.06,8.4684,390,39.04,23.5074 +4,43,-0.0029,-0.0002,642.12,1589.99,1407.47,21.61,553.71,2388.09,9056.77,47.47,521.67,2388.09,8.4196,393,38.89,23.4416 +4,44,-0.0003,0.0005,641.81,1585.87,1403.08,21.61,553.47,2388.13,9054.81,47.29,522.07,2388.1,8.4386,391,39.03,23.4158 +4,45,-0.0023,0.0001,642.58,1587.46,1403.12,21.61,553.89,2388.08,9050.89,47.3,521.96,2388.08,8.4115,392,38.98,23.3737 +4,46,-0.0007,-0.0003,642.99,1584.18,1415.57,21.6,553.59,2388.03,9052.66,47.54,521.66,2388.06,8.4334,393,38.7,23.3137 +4,47,-0.0035,-0.0003,642.15,1591.57,1409.99,21.61,553.8,2388.02,9057.44,47.51,521.69,2388.08,8.4093,393,38.74,23.2122 +4,48,0.0028,-0.0004,642.33,1586.8,1405.17,21.61,554.54,2388.08,9056.15,47.46,522.02,2388.08,8.3869,392,38.97,23.3181 +4,49,-0.0006,-0.0002,642.82,1590.52,1408.42,21.61,553.87,2388.09,9050.03,47.52,521.75,2388.11,8.3928,392,38.98,23.3336 +4,50,0.004,-0.0002,642.05,1586.99,1403.54,21.61,552.53,2388.12,9058.09,47.35,521.85,2388.1,8.4348,391,38.93,23.2186 +4,51,-0.0007,0.0005,642.3,1584.29,1407.61,21.61,553.63,2388.07,9057.14,47.22,521.8,2388.07,8.3844,392,38.85,23.4029 +4,52,-0.0022,-0.0001,642.82,1593.22,1407.67,21.61,553.9,2388.11,9053.23,47.31,521.99,2388.13,8.4321,394,38.89,23.3655 +4,53,0.0023,-0.0,642.41,1586.77,1407.4,21.61,554.5,2388.1,9055.97,47.38,521.19,2388.07,8.4154,393,39.04,23.4327 +4,54,-0.0002,-0.0001,642.54,1592.6,1405.04,21.61,553.9,2388.06,9053.65,47.28,521.34,2388.11,8.4348,393,38.93,23.2384 +4,55,0.0004,0.0002,642.02,1587.01,1406.46,21.61,554.03,2388.06,9053.51,47.16,521.4,2388.09,8.401,393,38.82,23.3281 +4,56,-0.0035,0.0001,642.8,1594.24,1403.34,21.61,553.93,2388.03,9052.37,47.35,521.47,2388.05,8.42,390,39.01,23.3547 +4,57,0.0018,0.0003,642.3,1585.96,1404.0,21.61,553.5,2388.08,9051.38,47.43,521.84,2388.11,8.4312,392,38.73,23.4221 +4,58,0.0002,0.0003,642.66,1590.94,1405.24,21.61,553.27,2388.07,9047.2,47.39,522.02,2388.09,8.4203,393,38.87,23.2575 +4,59,-0.0002,0.0,642.32,1600.12,1398.12,21.61,554.75,2388.07,9048.52,47.46,522.35,2388.07,8.383,391,38.8,23.3164 +4,60,-0.0024,-0.0003,642.31,1576.64,1404.66,21.61,553.49,2388.08,9050.23,47.29,521.94,2388.08,8.4349,392,38.96,23.3673 +4,61,-0.0012,0.0003,642.56,1587.51,1407.15,21.61,553.77,2388.1,9059.18,47.39,521.79,2388.04,8.4231,392,38.95,23.3748 +4,62,0.0003,0.0004,642.69,1588.08,1407.72,21.61,553.74,2388.06,9045.33,47.16,521.39,2388.07,8.4133,391,38.88,23.2919 +4,63,0.0015,0.0002,642.45,1587.6,1410.95,21.61,553.89,2388.02,9052.34,47.39,522.11,2388.11,8.4424,393,38.86,23.3359 +4,64,-0.003,0.0,642.68,1591.76,1403.8,21.61,554.25,2388.06,9049.6,47.33,521.61,2388.06,8.4002,393,38.84,23.2918 +4,65,0.0002,0.0005,642.8,1590.85,1407.01,21.61,554.03,2388.04,9048.79,47.24,522.14,2388.08,8.4314,392,39.04,23.4812 +4,66,0.0023,0.0,642.9,1583.9,1402.56,21.61,554.13,2388.06,9061.64,47.35,521.43,2388.08,8.405,394,38.89,23.3588 +4,67,0.0029,-0.0003,642.21,1592.37,1395.74,21.61,553.47,2388.08,9051.73,47.43,521.63,2388.0,8.4517,393,38.87,23.4225 +4,68,0.0041,-0.0001,642.44,1587.83,1408.43,21.61,554.03,2388.09,9054.44,47.53,521.92,2388.02,8.433,390,38.85,23.4063 +4,69,-0.0002,-0.0003,642.74,1588.44,1409.93,21.61,553.75,2388.06,9060.71,47.33,521.74,2388.06,8.4094,391,38.97,23.3788 +4,70,0.0002,0.0003,642.42,1590.37,1403.68,21.61,553.6,2388.1,9054.66,47.37,521.9,2388.04,8.4232,392,38.96,23.2755 +4,71,-0.0022,-0.0003,642.63,1585.71,1410.7,21.61,554.23,2388.11,9053.94,47.37,521.71,2388.12,8.417,393,38.8,23.3652 +4,72,-0.0021,0.0002,642.69,1584.72,1408.21,21.61,553.62,2388.07,9052.99,47.27,521.5,2388.09,8.4053,394,38.89,23.3367 +4,73,0.0001,0.0001,642.35,1588.43,1409.32,21.61,554.1,2388.15,9058.6,47.4,521.85,2388.08,8.4666,394,39.17,23.2982 +4,74,0.0044,0.0001,642.6,1588.1,1407.74,21.61,553.31,2388.11,9056.63,47.31,521.67,2388.06,8.431,394,38.74,23.3864 +4,75,-0.0003,-0.0003,642.42,1593.17,1400.47,21.61,554.13,2388.08,9057.3,47.43,521.95,2388.14,8.4095,393,38.85,23.3053 +4,76,0.0055,0.0,641.86,1588.78,1405.44,21.61,553.56,2388.04,9061.17,47.42,521.95,2388.1,8.4142,392,38.82,23.2617 +4,77,0.002,0.0004,642.77,1588.91,1398.16,21.61,553.43,2388.03,9062.96,47.32,521.22,2388.07,8.423,394,38.95,23.2448 +4,78,-0.0014,0.0001,642.66,1587.09,1408.49,21.61,554.03,2388.06,9053.78,47.46,521.53,2388.04,8.4084,392,38.78,23.3512 +4,79,0.0014,0.0004,642.14,1592.26,1407.47,21.61,553.13,2388.1,9056.85,47.39,521.93,2388.1,8.4384,393,39.05,23.4146 +4,80,-0.0,0.0001,642.98,1588.2,1405.22,21.61,554.66,2388.05,9059.21,47.36,521.78,2388.06,8.3982,394,38.92,23.2887 +4,81,-0.0003,0.0,642.26,1582.27,1408.32,21.61,553.51,2388.04,9052.44,47.39,521.35,2388.06,8.4252,392,38.82,23.34 +4,82,-0.0003,0.0004,642.66,1582.04,1404.73,21.61,553.76,2388.05,9053.33,47.3,521.87,2388.1,8.4169,392,38.93,23.2496 +4,83,-0.0002,0.0005,642.13,1588.16,1406.59,21.61,554.25,2388.08,9057.38,47.34,521.82,2388.09,8.4433,393,38.98,23.3686 +4,84,-0.0029,0.0006,642.91,1589.92,1403.9,21.61,553.48,2388.09,9053.78,47.52,521.63,2388.09,8.4081,392,38.72,23.4161 +4,85,-0.0001,0.0001,642.29,1579.9,1399.07,21.61,553.85,2388.05,9063.79,47.27,521.6,2388.09,8.4401,394,38.94,23.3839 +4,86,0.0016,-0.0,642.21,1591.36,1407.58,21.61,553.52,2388.08,9060.26,47.42,521.74,2388.0,8.4306,393,38.8,23.3293 +4,87,-0.0015,0.0005,642.7,1587.37,1406.05,21.61,553.83,2388.09,9053.77,47.5,522.01,2388.1,8.4359,393,38.92,23.3269 +4,88,0.0001,-0.0003,642.68,1584.7,1398.74,21.61,554.23,2388.1,9067.32,47.32,521.36,2388.0,8.4428,394,38.87,23.2128 +4,89,0.0006,-0.0002,641.97,1578.65,1394.77,21.61,553.55,2388.09,9058.52,47.56,522.15,2388.07,8.4233,392,38.74,23.3807 +4,90,0.0001,0.0003,643.32,1586.92,1408.45,21.61,553.98,2388.05,9063.48,47.32,522.22,2388.06,8.4484,393,38.98,23.322 +4,91,0.0018,0.0002,642.79,1589.6,1404.18,21.61,553.48,2388.07,9062.96,47.15,522.23,2388.07,8.4301,393,38.87,23.2897 +4,92,0.0015,0.0004,642.41,1590.17,1403.99,21.61,554.49,2388.08,9055.76,47.55,521.56,2388.12,8.4255,393,38.79,23.284 +4,93,-0.003,0.0005,642.24,1588.28,1398.67,21.61,554.07,2388.09,9054.9,47.58,521.54,2388.1,8.3856,392,38.77,23.3528 +4,94,-0.0036,0.0004,642.5,1588.54,1406.69,21.61,553.76,2388.16,9056.18,47.34,521.82,2388.07,8.4313,392,38.85,23.3703 +4,95,0.0041,0.0004,642.48,1586.25,1398.8,21.61,553.44,2388.08,9060.39,47.5,521.88,2388.02,8.4065,392,39.05,23.3431 +4,96,-0.0015,0.0003,642.18,1578.8,1406.96,21.61,554.08,2388.05,9059.77,47.36,521.8,2388.07,8.4226,392,38.9,23.3729 +4,97,0.0001,0.0006,642.95,1586.68,1411.12,21.61,553.05,2388.03,9065.08,47.5,521.96,2388.06,8.4375,393,38.84,23.2882 +4,98,-0.0011,0.0001,643.06,1583.61,1403.34,21.61,553.68,2388.07,9063.37,47.3,521.65,2388.07,8.4055,392,38.87,23.2429 +4,99,-0.0005,-0.0004,642.79,1592.78,1405.64,21.61,554.62,2388.11,9063.53,47.28,521.35,2388.11,8.4113,392,38.98,23.1897 +4,100,-0.0005,-0.0003,642.67,1588.11,1406.26,21.61,553.72,2388.07,9061.39,47.25,521.77,2388.08,8.4332,392,38.91,23.3289 +4,101,0.0005,0.0003,642.29,1590.1,1412.21,21.61,553.91,2388.08,9065.91,47.42,521.3,2388.08,8.4383,392,38.89,23.3956 +4,102,0.0002,0.0002,642.5,1593.07,1400.79,21.61,553.63,2388.06,9064.33,47.54,521.4,2388.04,8.435,393,38.75,23.2938 +4,103,-0.0024,0.0001,642.83,1596.05,1400.74,21.61,553.62,2388.06,9056.6,47.39,521.69,2388.03,8.4328,393,38.8,23.4523 +4,104,0.0012,0.0005,642.27,1593.03,1403.56,21.61,553.84,2388.09,9058.91,47.39,522.48,2388.04,8.4194,394,38.95,23.3294 +4,105,0.0001,0.0002,642.48,1587.15,1406.58,21.61,553.9,2388.06,9064.82,47.31,521.63,2388.09,8.4449,394,38.93,23.3576 +4,106,-0.0032,-0.0004,642.24,1588.91,1402.75,21.61,553.63,2388.07,9061.75,47.53,521.62,2388.11,8.444,393,38.88,23.2776 +4,107,0.0,-0.0002,642.55,1585.56,1400.45,21.61,553.78,2388.09,9066.51,47.4,521.19,2388.11,8.4383,392,38.93,23.3614 +4,108,-0.0026,0.0,642.13,1585.18,1412.75,21.61,553.97,2388.07,9068.42,47.44,521.99,2388.07,8.4316,394,38.93,23.3725 +4,109,0.0007,-0.0004,642.89,1586.34,1407.61,21.61,553.4,2388.06,9073.67,47.36,522.15,2388.11,8.4531,393,38.87,23.364 +4,110,-0.0009,0.0004,642.47,1581.85,1401.8,21.61,553.86,2388.07,9068.93,47.37,521.74,2388.05,8.428,393,39.06,23.4095 +4,111,-0.0013,-0.0003,642.16,1584.52,1405.22,21.61,554.14,2388.06,9058.48,47.31,521.69,2388.1,8.4456,393,38.81,23.2463 +4,112,0.0016,0.0002,642.15,1597.05,1400.11,21.61,552.93,2388.04,9072.19,47.42,522.25,2388.12,8.4411,394,38.86,23.3104 +4,113,0.0004,0.0,642.41,1592.69,1416.04,21.61,552.71,2388.02,9062.6,47.43,521.8,2388.1,8.4388,393,38.97,23.3268 +4,114,0.0011,0.0001,642.5,1585.29,1404.61,21.61,553.9,2388.03,9070.88,47.61,521.65,2388.0,8.4342,394,38.84,23.3543 +4,115,0.0017,0.0,643.11,1584.82,1399.39,21.61,552.89,2388.04,9064.63,47.61,521.77,2388.05,8.4147,394,38.83,23.3361 +4,116,0.0015,0.0003,642.57,1587.97,1409.77,21.61,553.1,2388.07,9063.99,47.49,521.75,2388.11,8.427,394,38.88,23.2845 +4,117,-0.0047,-0.0,642.97,1588.0,1409.2,21.61,552.71,2388.06,9070.89,47.32,521.82,2388.09,8.4302,394,38.9,23.2139 +4,118,-0.0015,0.0,642.45,1595.31,1404.31,21.61,554.2,2388.06,9065.88,47.6,521.78,2388.04,8.4114,393,39.05,23.3721 +4,119,0.0005,-0.0002,642.81,1587.57,1411.87,21.61,553.91,2388.05,9061.66,47.56,521.37,2388.1,8.4816,393,38.72,23.2425 +4,120,0.0015,0.0001,642.13,1590.46,1405.88,21.61,553.5,2388.07,9069.1,47.52,521.55,2388.1,8.4146,393,39.01,23.1853 +4,121,-0.0022,-0.0003,642.58,1598.61,1403.36,21.61,553.35,2388.09,9070.9,47.59,521.67,2388.03,8.4659,393,38.97,23.341 +4,122,0.0003,-0.0004,643.12,1594.36,1405.56,21.61,553.28,2388.06,9063.29,47.42,521.2,2388.08,8.4275,393,38.73,23.2929 +4,123,0.0007,0.0004,642.56,1586.4,1411.81,21.61,553.42,2388.1,9067.29,47.59,521.67,2388.07,8.4384,393,38.89,23.3391 +4,124,-0.0019,0.0001,642.64,1587.87,1400.87,21.61,552.7,2388.03,9073.32,47.49,521.33,2388.06,8.4403,394,38.99,23.3158 +4,125,0.0002,0.0002,642.59,1580.17,1404.02,21.61,554.55,2388.05,9070.65,47.41,521.68,2388.08,8.4458,395,38.96,23.3211 +4,126,0.0012,-0.0003,642.56,1592.43,1405.07,21.61,553.81,2388.12,9072.48,47.58,521.34,2388.06,8.4565,394,38.91,23.3087 +4,127,0.0027,-0.0001,641.87,1591.59,1410.29,21.61,553.36,2388.05,9074.47,47.49,521.72,2388.07,8.4477,393,38.61,23.309 +4,128,0.0008,0.0001,642.77,1592.21,1417.91,21.61,553.31,2388.04,9078.47,47.79,521.41,2388.07,8.4198,396,38.86,23.3167 +4,129,0.0026,0.0001,642.3,1589.44,1403.6,21.61,553.88,2388.02,9068.1,47.45,521.31,2388.07,8.4495,393,38.74,23.372 +4,130,-0.002,0.0002,642.28,1593.61,1406.21,21.61,553.45,2388.1,9075.76,47.48,521.63,2388.06,8.4323,392,38.92,23.4297 +4,131,-0.0022,-0.0003,642.81,1593.8,1399.75,21.61,553.55,2388.08,9071.08,47.5,521.17,2388.07,8.4256,394,38.79,23.2136 +4,132,0.0007,0.0004,642.41,1591.45,1409.15,21.61,552.95,2388.07,9086.47,47.75,521.67,2388.06,8.4385,394,38.76,23.2413 +4,133,-0.0006,0.0,642.95,1592.11,1412.36,21.61,553.82,2388.09,9072.61,47.62,521.53,2388.11,8.4652,393,38.8,23.1877 +4,134,-0.0001,0.0006,642.82,1590.54,1413.59,21.61,553.25,2388.1,9082.5,47.61,521.45,2388.09,8.43,394,38.77,23.3469 +4,135,-0.0009,-0.0002,642.8,1586.98,1406.54,21.61,553.14,2388.1,9086.62,47.67,521.43,2388.03,8.4922,393,38.62,23.2783 +4,136,-0.0009,0.0001,642.88,1588.88,1410.65,21.61,553.84,2388.1,9080.72,47.76,521.58,2388.11,8.4835,393,38.72,23.2597 +4,137,0.0021,0.0004,642.35,1585.35,1408.59,21.61,553.73,2388.09,9085.86,47.39,521.1,2388.09,8.477,393,38.77,23.2531 +4,138,0.0001,-0.0003,642.62,1589.11,1403.15,21.61,553.42,2388.09,9079.96,47.46,521.47,2388.09,8.4499,394,38.9,23.1688 +4,139,0.002,-0.0001,642.51,1590.51,1411.62,21.61,553.22,2388.06,9084.37,47.45,521.29,2388.1,8.4225,391,38.74,23.3399 +4,140,-0.0014,0.0005,642.43,1589.98,1410.55,21.61,553.09,2388.09,9084.41,47.56,521.39,2388.11,8.4522,393,38.95,23.2221 +4,141,0.0051,0.0004,642.78,1586.02,1408.52,21.61,553.54,2388.1,9082.87,47.65,521.74,2388.06,8.4545,394,38.75,23.2515 +4,142,-0.0003,0.0002,642.15,1595.19,1409.14,21.61,553.18,2388.11,9084.27,47.69,521.28,2388.08,8.4665,394,38.83,23.1726 +4,143,-0.0012,0.0003,642.74,1586.75,1406.34,21.61,553.08,2388.07,9090.71,47.54,520.98,2388.08,8.4173,393,38.79,23.3044 +4,144,-0.0008,0.0003,642.6,1588.23,1411.01,21.61,552.42,2388.06,9091.62,47.69,521.76,2388.02,8.4334,394,38.71,23.2699 +4,145,0.0006,0.0005,643.07,1594.62,1405.43,21.61,553.62,2388.09,9090.55,47.57,521.38,2388.1,8.4518,393,38.74,23.2125 +4,146,0.0005,0.0003,642.72,1595.94,1417.08,21.61,553.21,2388.01,9097.65,47.61,521.18,2388.09,8.4524,394,38.84,23.1458 +4,147,-0.0004,0.0004,642.82,1590.96,1411.57,21.61,552.95,2388.06,9090.6,47.66,520.91,2388.13,8.4496,394,38.71,23.1977 +4,148,-0.0018,-0.0001,643.09,1593.59,1418.28,21.61,553.32,2388.1,9092.25,47.67,521.91,2388.07,8.4355,393,38.88,23.2993 +4,149,-0.0008,0.0004,642.58,1595.24,1414.42,21.61,553.21,2388.09,9094.94,47.76,520.79,2388.03,8.4816,394,38.89,23.2122 +4,150,-0.0007,-0.0003,642.46,1598.82,1407.68,21.61,553.14,2388.03,9096.18,47.64,521.43,2388.03,8.4365,395,38.75,23.1649 +4,151,0.0013,0.0003,643.25,1594.25,1410.11,21.61,552.94,2388.09,9097.14,47.65,521.43,2388.07,8.4765,395,38.66,23.3152 +4,152,-0.0026,-0.0002,642.68,1588.06,1415.81,21.61,552.63,2388.05,9096.41,47.55,521.42,2387.99,8.461,394,38.75,23.2845 +4,153,-0.0003,0.0001,643.02,1589.96,1410.75,21.61,553.13,2388.1,9106.73,47.64,520.97,2388.1,8.43,392,38.79,23.2261 +4,154,0.0038,0.0002,642.87,1596.48,1407.58,21.61,553.0,2388.04,9105.93,47.76,521.02,2388.08,8.4262,395,38.7,23.3318 +4,155,0.0022,0.0001,643.05,1591.94,1406.1,21.61,552.85,2388.11,9109.24,47.84,520.72,2388.07,8.4545,395,38.74,23.2332 +4,156,-0.0002,-0.0001,642.54,1594.01,1414.19,21.61,552.21,2388.08,9100.84,47.65,521.36,2388.07,8.4546,393,38.73,23.2384 +4,157,0.0027,0.0,642.8,1597.71,1413.68,21.61,553.49,2388.09,9112.83,47.6,521.41,2388.05,8.43,394,38.66,23.277 +4,158,-0.003,-0.0004,643.0,1593.74,1420.79,21.61,553.11,2388.12,9114.81,47.63,520.95,2388.11,8.46,393,38.6,23.3178 +4,159,0.002,0.0005,642.82,1590.08,1417.62,21.61,552.63,2388.07,9098.78,47.61,520.9,2388.12,8.475,395,38.57,23.276 +4,160,-0.0004,0.0005,643.24,1597.66,1412.93,21.61,553.83,2388.07,9108.85,47.7,520.75,2388.11,8.4473,393,38.71,23.2558 +4,161,-0.0,0.0004,643.02,1590.53,1413.51,21.61,552.28,2388.08,9116.28,47.64,521.19,2388.11,8.4741,397,38.72,23.1832 +4,162,-0.0028,0.0004,642.91,1589.2,1419.09,21.61,553.87,2388.1,9127.02,47.63,520.91,2388.05,8.4931,394,38.52,23.3013 +4,163,-0.0041,-0.0002,643.32,1596.69,1417.32,21.61,552.17,2388.13,9119.48,47.92,520.94,2388.09,8.4594,395,38.53,23.1648 +4,164,-0.0029,-0.0002,643.2,1588.21,1411.81,21.61,552.75,2388.09,9124.06,47.91,520.75,2388.14,8.4816,394,38.76,23.1351 +4,165,0.0037,0.0003,643.38,1598.42,1413.9,21.61,552.16,2388.08,9125.58,47.56,521.46,2388.1,8.4613,394,38.71,23.2052 +4,166,-0.0043,-0.0003,642.83,1595.07,1410.18,21.61,552.22,2388.15,9127.24,47.82,520.54,2388.08,8.4633,395,38.73,23.1746 +4,167,-0.0006,0.0,642.97,1596.98,1410.22,21.61,552.3,2388.09,9130.81,47.91,521.24,2388.13,8.4678,395,38.72,23.1656 +4,168,-0.0028,0.0002,642.86,1594.46,1416.01,21.61,552.58,2388.06,9124.84,47.83,521.13,2388.12,8.4806,396,38.62,23.2878 +4,169,0.0011,0.0001,643.25,1592.7,1419.62,21.61,552.91,2388.05,9136.79,47.8,521.24,2388.15,8.4926,398,38.63,23.1847 +4,170,0.0023,0.0002,643.6,1595.73,1412.94,21.61,552.45,2388.12,9138.79,47.8,520.77,2388.15,8.492,396,38.68,23.2325 +4,171,0.002,-0.0003,643.69,1594.79,1416.71,21.61,552.21,2388.14,9133.85,47.74,520.85,2388.12,8.49,396,38.66,23.2471 +4,172,0.0015,-0.0002,643.28,1597.1,1417.89,21.61,552.65,2388.14,9129.92,47.88,520.72,2388.06,8.5017,395,38.66,23.0502 +4,173,-0.0033,-0.0,642.87,1598.3,1422.56,21.61,552.08,2388.12,9142.07,47.61,520.53,2388.1,8.4829,396,38.66,23.1664 +4,174,0.0021,-0.0003,643.09,1600.79,1423.58,21.61,552.74,2388.08,9150.69,47.85,520.61,2388.1,8.4928,395,38.52,23.2417 +4,175,0.0027,0.0004,643.17,1598.28,1419.52,21.61,552.39,2388.1,9143.78,47.95,520.47,2388.14,8.4826,396,38.73,23.1571 +4,176,0.0033,0.0003,643.36,1601.11,1427.72,21.61,552.62,2388.12,9149.82,47.83,520.61,2388.11,8.4822,395,38.81,23.1426 +4,177,0.0034,-0.0001,643.15,1603.1,1424.69,21.61,552.77,2388.14,9155.26,47.99,520.82,2388.12,8.5026,396,38.5,23.1635 +4,178,0.0006,0.0003,643.38,1606.48,1431.78,21.61,551.71,2388.17,9164.28,47.86,520.28,2388.11,8.4992,394,38.67,23.1181 +4,179,0.0014,0.0,643.6,1604.11,1424.1,21.61,552.19,2388.18,9156.61,48.0,520.52,2388.15,8.5289,397,38.55,23.0599 +4,180,0.0001,-0.0002,643.58,1610.29,1425.23,21.61,551.7,2388.15,9163.18,47.95,520.33,2388.15,8.4966,398,38.36,23.1739 +4,181,0.0004,-0.0002,643.34,1597.16,1413.99,21.61,551.82,2388.11,9168.97,47.95,520.24,2388.16,8.4821,396,38.57,23.1169 +4,182,0.0007,-0.0,643.42,1603.95,1429.48,21.61,551.77,2388.12,9166.16,47.96,520.55,2388.17,8.5069,395,38.29,23.0709 +4,183,0.0034,0.0002,644.5,1602.97,1426.55,21.61,551.6,2388.12,9175.69,48.08,520.17,2388.12,8.5034,399,38.47,23.0511 +4,184,-0.001,0.0003,643.44,1608.22,1426.27,21.61,552.01,2388.12,9174.67,48.04,520.07,2388.14,8.5011,395,38.39,23.0651 +4,185,-0.0031,0.0005,643.27,1607.57,1429.22,21.61,551.91,2388.1,9184.41,48.19,520.12,2388.12,8.5254,396,38.47,23.118 +4,186,-0.0003,-0.0001,643.45,1608.24,1427.17,21.61,551.9,2388.13,9187.57,48.21,520.26,2388.16,8.4873,396,38.55,23.1353 +4,187,-0.0005,0.0005,643.69,1603.04,1422.74,21.61,552.02,2388.14,9203.22,48.08,519.6,2388.12,8.5283,396,38.49,23.0135 +4,188,0.0006,0.0001,643.48,1602.23,1434.12,21.61,551.81,2388.16,9192.89,48.15,520.12,2388.17,8.5462,398,38.45,23.071 +4,189,-0.0024,-0.0002,644.53,1612.11,1432.55,21.61,551.93,2388.13,9198.32,48.15,519.84,2388.16,8.5246,398,38.44,23.1006 +5,10,0.0001,0.0003,642.18,1583.92,1390.3,21.6,554.84,2388.02,9071.57,47.32,522.67,2388.01,8.4089,390,39.06,23.4213 +5,11,-0.0026,-0.0003,641.9,1585.25,1393.09,21.61,554.2,2387.96,9064.45,47.3,522.0,2388.01,8.4091,391,39.12,23.4847 +5,12,-0.0009,-0.0001,641.97,1583.89,1394.07,21.6,554.27,2388.02,9070.86,47.12,522.96,2388.01,8.4233,391,38.87,23.3806 +5,13,-0.0051,-0.0005,641.9,1579.55,1402.31,21.61,554.75,2388.03,9056.42,47.11,522.42,2387.94,8.386,392,38.96,23.4476 +5,14,-0.0,0.0004,641.93,1578.03,1396.28,21.61,554.52,2387.97,9062.88,47.26,522.19,2388.03,8.4214,393,39.07,23.3733 +5,15,0.0011,-0.0001,641.88,1589.42,1394.11,21.61,554.45,2388.07,9066.3,47.09,522.74,2388.03,8.4073,391,38.96,23.4795 +5,16,-0.0037,0.0004,641.56,1578.43,1390.29,21.61,555.11,2388.0,9065.46,47.08,522.24,2388.02,8.4266,391,39.12,23.4884 +5,17,-0.0008,-0.0001,642.0,1581.87,1400.59,21.61,554.31,2387.98,9066.79,47.11,522.89,2388.02,8.4072,391,39.04,23.4556 +5,18,-0.0027,0.0001,642.05,1584.71,1391.09,21.61,554.25,2388.07,9066.52,46.98,522.64,2387.97,8.4151,392,39.02,23.461 +5,19,-0.0009,-0.0002,642.36,1588.06,1397.43,21.61,554.38,2387.95,9071.5,46.98,522.65,2387.99,8.3674,392,38.97,23.3752 +5,20,0.0019,0.0002,642.27,1582.85,1393.07,21.61,554.69,2387.98,9060.46,47.13,522.0,2387.99,8.3831,391,38.86,23.3702 +5,21,-0.0017,-0.0003,642.05,1581.71,1397.41,21.6,554.37,2387.99,9061.69,47.23,522.4,2388.01,8.4071,391,38.94,23.3812 +5,22,0.0014,-0.0002,642.38,1581.33,1399.59,21.61,554.31,2387.99,9071.71,47.16,522.75,2388.01,8.3886,392,39.05,23.4457 +5,23,0.0052,-0.0001,641.57,1582.59,1399.12,21.6,554.48,2387.97,9067.58,47.18,522.7,2388.03,8.3548,391,39.05,23.3328 +5,24,0.0002,0.0002,642.13,1592.43,1400.89,21.61,554.1,2388.01,9066.39,47.25,522.21,2387.96,8.4095,391,39.14,23.4933 +5,25,0.0026,-0.0005,642.05,1582.82,1397.33,21.61,554.78,2387.98,9067.26,47.19,522.81,2387.97,8.4151,392,39.19,23.4193 +5,26,0.0012,0.0,641.61,1578.77,1398.19,21.61,554.93,2388.03,9065.14,47.17,522.41,2387.99,8.3536,393,39.05,23.5227 +5,27,-0.0001,-0.0002,642.22,1582.69,1394.22,21.6,554.27,2388.01,9070.7,47.01,522.5,2387.98,8.4066,390,38.97,23.3803 +5,28,-0.0015,-0.0005,641.97,1575.77,1402.43,21.61,554.6,2388.05,9069.66,47.3,522.4,2387.95,8.3934,392,39.04,23.3974 +5,29,0.0037,-0.0005,642.48,1576.5,1392.82,21.61,554.63,2387.97,9068.63,46.97,522.78,2387.99,8.3735,390,39.01,23.41 +5,30,0.0007,-0.0004,642.66,1574.8,1397.69,21.6,555.05,2387.96,9059.85,47.24,522.87,2388.02,8.4038,392,38.81,23.4437 +5,31,-0.0014,-0.0003,642.06,1585.84,1402.33,21.61,554.3,2387.97,9064.3,47.08,522.24,2387.99,8.3824,391,39.12,23.5503 +5,32,0.0043,-0.0001,642.41,1582.76,1397.12,21.61,554.32,2387.98,9059.42,47.39,522.4,2387.94,8.3851,390,39.01,23.4547 +5,33,0.0017,-0.0002,641.76,1591.02,1402.42,21.61,554.4,2388.03,9074.12,47.13,522.07,2387.98,8.3967,392,39.0,23.433 +5,34,0.0017,-0.0,641.68,1581.62,1392.22,21.6,554.29,2387.96,9070.3,47.21,522.15,2388.03,8.395,392,38.93,23.3981 +5,35,0.0039,0.0001,642.16,1580.02,1395.31,21.61,553.66,2387.98,9070.45,47.14,522.45,2388.02,8.4074,391,39.18,23.4449 +5,36,-0.0032,0.0001,641.3,1586.91,1394.4,21.61,554.14,2387.98,9067.67,47.09,521.96,2387.96,8.4091,391,38.97,23.4607 +5,37,-0.0011,0.0001,642.04,1585.52,1394.71,21.61,554.97,2387.96,9068.05,47.06,522.39,2388.06,8.397,392,39.0,23.4577 +5,38,0.002,-0.0002,642.38,1584.21,1396.82,21.61,554.48,2388.02,9068.83,47.22,522.25,2387.99,8.3893,392,39.09,23.458 +5,39,-0.0,-0.0002,641.82,1578.77,1396.39,21.61,555.04,2388.0,9066.55,47.2,522.43,2387.98,8.4239,391,39.03,23.5068 +5,40,0.0001,-0.0002,642.76,1583.56,1402.27,21.61,554.38,2387.97,9066.78,47.25,522.25,2387.97,8.4272,390,38.97,23.3585 +5,41,0.0011,-0.0001,642.82,1585.13,1399.13,21.6,554.75,2388.0,9073.97,47.22,522.21,2388.0,8.398,392,38.93,23.4126 +5,42,0.0001,-0.0002,641.92,1589.59,1394.97,21.61,554.13,2387.96,9070.52,47.37,522.62,2387.97,8.3654,392,38.87,23.4851 +5,43,-0.0015,-0.0004,641.78,1587.27,1394.26,21.61,554.64,2387.97,9071.84,47.01,522.37,2388.0,8.3975,392,39.06,23.442 +5,44,-0.0011,-0.0001,641.77,1583.83,1395.7,21.61,555.48,2387.99,9067.4,47.32,522.68,2387.99,8.4219,391,39.06,23.3576 +5,45,0.0028,0.0004,642.32,1584.3,1399.71,21.61,554.7,2387.97,9064.28,47.0,522.54,2387.97,8.3735,393,39.2,23.3398 +5,46,-0.0023,-0.0003,642.24,1586.87,1400.55,21.61,554.49,2388.02,9065.41,47.27,521.62,2387.94,8.4055,392,38.89,23.3304 +5,47,0.0002,-0.0002,641.95,1579.17,1397.44,21.6,554.74,2388.0,9068.21,47.05,522.57,2388.0,8.4182,391,39.06,23.4378 +5,48,0.0037,0.0,641.38,1576.29,1395.62,21.61,554.93,2387.98,9072.03,47.24,522.65,2388.04,8.3869,392,38.89,23.4698 +5,49,0.0004,-0.0004,642.11,1583.18,1394.48,21.61,554.64,2388.03,9069.21,47.07,522.5,2387.94,8.398,392,38.99,23.311 +5,50,-0.0011,-0.0001,642.2,1586.48,1403.06,21.61,554.98,2387.97,9067.24,47.37,522.56,2388.03,8.4228,390,39.13,23.3994 +5,51,-0.0037,0.0,642.32,1580.84,1393.67,21.61,555.05,2388.03,9071.92,47.27,521.92,2387.97,8.4279,390,39.03,23.513 +5,52,0.0006,-0.0,641.86,1585.97,1403.88,21.6,554.94,2387.98,9066.99,47.06,522.03,2387.99,8.431,393,39.04,23.3502 +5,53,0.0008,0.0001,642.2,1582.71,1393.24,21.61,554.25,2388.03,9077.51,47.2,522.72,2388.03,8.3814,392,38.86,23.5408 +5,54,-0.0023,0.0005,642.14,1577.1,1399.58,21.61,554.19,2387.99,9062.69,47.25,522.25,2387.96,8.3797,392,38.99,23.4374 +5,55,-0.0004,-0.0005,641.98,1586.8,1394.57,21.61,555.17,2387.96,9061.38,47.11,522.39,2387.96,8.4043,391,39.1,23.4353 +5,56,-0.0016,0.0003,642.12,1581.49,1397.74,21.61,554.59,2387.98,9069.99,47.2,522.7,2387.92,8.3772,391,39.05,23.4661 +5,57,-0.0002,0.0001,641.95,1578.24,1394.93,21.61,554.47,2388.01,9066.62,47.18,522.61,2387.96,8.4152,393,39.1,23.458 +5,58,-0.0008,0.0004,642.61,1581.9,1399.9,21.61,554.31,2388.01,9066.63,47.18,522.44,2388.0,8.4093,391,39.01,23.3758 +5,59,0.001,0.0005,642.05,1589.45,1400.43,21.6,554.4,2387.96,9066.93,47.24,522.46,2388.0,8.4024,391,38.98,23.4878 +5,60,-0.0008,-0.0005,642.0,1582.34,1396.08,21.61,554.45,2388.06,9058.23,47.0,522.22,2388.04,8.4251,393,39.29,23.3856 +5,61,-0.0024,0.0001,642.36,1586.95,1396.92,21.61,554.64,2388.01,9074.25,47.12,522.82,2388.03,8.3844,391,38.97,23.3773 +5,62,0.0025,-0.0001,641.94,1581.42,1406.63,21.61,554.57,2388.01,9065.88,47.33,522.33,2388.01,8.4145,390,38.98,23.4888 +5,63,0.003,0.0003,642.18,1585.76,1392.17,21.61,554.81,2388.01,9071.42,47.31,522.15,2387.95,8.3846,392,38.93,23.4232 +5,64,0.0001,-0.0002,642.4,1586.2,1396.45,21.61,554.12,2387.98,9065.47,47.15,522.26,2388.0,8.3905,391,39.04,23.4054 +5,65,0.0006,-0.0001,641.96,1578.21,1389.19,21.61,554.64,2388.02,9071.71,47.02,522.18,2387.95,8.4485,392,39.12,23.5078 +5,66,0.005,0.0004,642.16,1582.39,1402.35,21.61,554.21,2387.98,9069.46,47.0,522.25,2388.0,8.3881,391,38.92,23.3782 +5,67,0.0005,-0.0004,641.67,1582.01,1396.82,21.61,555.49,2388.02,9074.04,47.11,522.57,2387.94,8.4105,391,38.91,23.3088 +5,68,-0.0018,0.0001,642.0,1579.94,1395.59,21.6,554.06,2388.05,9069.6,47.27,522.92,2387.99,8.425,393,39.06,23.3948 +5,69,-0.0017,-0.0002,641.9,1589.43,1390.32,21.61,554.63,2388.04,9069.58,47.1,522.89,2388.02,8.4083,391,38.93,23.414 +5,70,0.0009,-0.0004,641.86,1583.3,1389.87,21.61,554.51,2387.97,9071.62,47.1,522.38,2387.99,8.3582,390,39.05,23.3696 +5,71,0.0011,0.0004,642.35,1581.52,1401.7,21.6,554.13,2388.01,9068.96,47.26,521.97,2388.03,8.3996,393,39.21,23.3416 +5,72,0.0036,-0.0003,641.76,1580.74,1399.84,21.61,554.47,2388.04,9073.58,47.06,522.41,2388.03,8.4018,391,39.08,23.4505 +5,73,-0.0012,-0.0002,642.28,1586.66,1396.49,21.61,554.24,2388.01,9067.91,47.45,522.42,2387.95,8.4145,390,38.97,23.5003 +5,74,-0.005,-0.0002,642.05,1576.18,1403.57,21.61,553.43,2388.01,9074.26,47.22,523.04,2387.98,8.3815,393,39.0,23.4514 +5,75,0.0011,-0.0004,642.34,1576.87,1395.05,21.61,554.16,2388.03,9072.57,47.08,522.12,2387.97,8.4485,390,38.8,23.3528 +5,76,0.0014,0.0005,642.29,1585.43,1402.8,21.61,554.33,2388.05,9061.47,47.46,522.81,2387.94,8.3913,392,38.86,23.4149 +5,77,-0.0016,-0.0001,642.99,1582.03,1400.14,21.61,554.69,2388.02,9069.5,47.43,522.21,2387.99,8.3842,391,38.95,23.4504 +5,78,0.0011,-0.0005,642.15,1593.61,1407.48,21.61,554.27,2387.97,9064.12,47.16,521.77,2387.99,8.3796,390,39.02,23.3962 +5,79,-0.0004,-0.0001,642.16,1583.08,1401.35,21.61,554.27,2388.02,9066.15,47.2,522.78,2387.99,8.4122,392,39.1,23.4195 +5,80,-0.0032,0.0003,642.18,1582.73,1396.24,21.61,554.33,2388.01,9067.12,47.34,522.68,2387.95,8.422,391,39.08,23.4154 +5,81,0.0009,-0.0005,642.38,1592.17,1400.48,21.61,554.47,2388.02,9073.63,47.26,522.34,2387.98,8.4031,392,39.08,23.4464 +5,82,-0.0001,-0.0001,642.5,1584.27,1400.08,21.61,555.48,2387.98,9063.76,47.19,522.64,2388.04,8.4127,392,38.86,23.333 +5,83,0.0018,-0.0003,642.19,1588.18,1395.2,21.61,554.3,2388.04,9068.21,47.29,522.79,2387.99,8.3695,392,38.91,23.4349 +5,84,-0.0018,0.0001,642.59,1587.38,1396.86,21.61,554.86,2388.02,9066.3,47.2,522.1,2388.01,8.4186,392,39.02,23.41 +5,85,0.0015,-0.0003,642.42,1582.86,1403.16,21.61,554.41,2388.0,9079.41,47.24,522.75,2387.94,8.425,394,38.83,23.359 +5,86,0.0017,-0.0002,642.21,1585.24,1402.72,21.6,554.86,2388.01,9074.78,47.29,522.21,2388.0,8.4018,393,38.97,23.362 +5,87,-0.0001,-0.0005,642.39,1588.63,1399.65,21.6,554.98,2387.99,9064.05,47.2,522.54,2387.96,8.4232,391,39.01,23.4197 +5,88,0.0014,-0.0005,642.38,1588.61,1400.56,21.61,554.18,2388.02,9065.71,47.09,522.95,2388.0,8.3992,393,38.97,23.3229 +5,89,-0.0028,0.0003,642.54,1580.0,1399.09,21.61,554.3,2387.93,9063.81,47.18,522.33,2388.01,8.3848,393,38.9,23.3537 +5,90,0.0025,0.0001,641.75,1587.26,1398.29,21.61,554.88,2387.98,9074.24,47.18,522.32,2387.98,8.4278,392,39.17,23.4179 +5,91,-0.0052,-0.0001,642.4,1584.88,1397.86,21.61,554.37,2388.0,9066.54,47.3,522.69,2387.98,8.4312,391,38.99,23.476 +5,92,-0.0015,-0.0002,641.96,1584.87,1397.48,21.61,554.48,2387.99,9073.5,47.19,522.91,2388.02,8.3722,392,39.19,23.3706 +5,93,-0.0028,0.0001,642.14,1586.11,1407.84,21.61,554.78,2387.97,9067.04,47.23,522.39,2387.99,8.3897,391,39.08,23.3175 +5,94,0.0021,-0.0003,642.44,1589.66,1402.46,21.61,554.69,2388.04,9071.3,47.26,522.37,2388.0,8.4148,393,39.06,23.4094 +5,95,0.0002,0.0001,642.27,1580.93,1394.89,21.61,554.31,2387.97,9069.86,47.35,522.12,2388.04,8.396,391,39.07,23.3527 +5,96,0.0004,-0.0001,642.62,1580.17,1403.38,21.61,554.06,2388.03,9071.89,47.17,522.42,2387.99,8.4102,391,38.91,23.3657 +5,97,-0.0029,0.0004,641.94,1580.56,1403.69,21.61,554.62,2388.02,9078.81,47.14,522.36,2388.0,8.4089,393,39.13,23.5044 +5,98,0.0028,-0.0002,641.62,1581.93,1395.22,21.61,554.37,2388.02,9063.1,47.2,522.18,2388.01,8.4027,392,39.03,23.4596 +5,99,-0.0012,-0.0002,642.17,1591.08,1391.43,21.61,554.22,2387.95,9078.41,47.18,522.54,2388.0,8.4152,391,39.01,23.4228 +5,100,-0.0027,-0.0003,641.92,1585.75,1397.44,21.6,553.54,2387.94,9071.49,47.17,522.76,2388.0,8.4161,392,38.97,23.3163 +5,101,0.0004,-0.0002,642.7,1579.62,1397.41,21.61,553.76,2387.99,9076.44,47.42,522.09,2388.05,8.4371,393,39.19,23.3793 +5,102,0.0027,-0.0002,642.63,1579.47,1393.14,21.61,554.64,2388.02,9072.16,47.25,521.98,2388.01,8.3718,391,38.92,23.3448 +5,103,0.0027,-0.0003,641.39,1585.05,1397.75,21.61,553.78,2388.03,9072.66,47.18,522.33,2388.02,8.4155,393,38.97,23.3841 +5,104,-0.0001,-0.0002,642.13,1588.35,1405.5,21.61,553.94,2388.04,9073.26,47.32,522.53,2387.96,8.4004,391,38.86,23.4793 +5,105,0.0034,-0.0001,642.52,1582.74,1399.72,21.61,554.3,2387.97,9071.75,47.32,522.66,2388.03,8.4357,391,38.98,23.3791 +5,106,0.0022,-0.0,642.42,1585.81,1399.66,21.61,554.65,2387.97,9072.5,47.33,521.77,2387.98,8.402,390,38.98,23.4664 +5,107,-0.0009,0.0002,642.12,1580.22,1403.27,21.61,554.18,2388.01,9075.77,47.03,521.47,2388.03,8.4003,390,38.92,23.3522 +5,108,-0.0004,0.0002,642.61,1592.57,1406.74,21.61,554.05,2388.01,9077.89,47.16,522.49,2388.01,8.4056,392,39.15,23.3899 +5,109,0.0012,0.0002,642.03,1581.03,1391.38,21.61,554.31,2388.03,9071.55,47.35,521.91,2387.99,8.3903,392,38.93,23.3034 +5,110,0.003,-0.0005,641.57,1580.4,1400.61,21.61,554.33,2388.01,9068.93,47.11,522.08,2387.96,8.4118,392,39.03,23.428 +5,111,0.0008,-0.0001,642.12,1588.25,1399.03,21.61,553.91,2387.97,9067.07,47.31,521.67,2387.96,8.3775,393,39.06,23.3769 +5,112,0.0035,0.0,642.18,1578.36,1398.63,21.61,553.6,2387.98,9077.06,47.22,522.31,2388.02,8.4042,392,38.97,23.472 +5,113,-0.0047,-0.0005,642.47,1581.8,1397.04,21.61,554.59,2387.99,9070.64,47.33,522.01,2387.97,8.4125,392,38.97,23.4274 +5,114,0.0023,-0.0004,642.12,1586.53,1399.95,21.61,554.2,2387.98,9074.92,47.42,522.84,2387.98,8.4299,391,38.97,23.4386 +5,115,-0.0003,0.0,642.77,1582.08,1402.61,21.61,555.09,2388.02,9072.51,47.24,522.32,2388.01,8.3732,390,39.02,23.5323 +5,116,0.0029,-0.0003,641.54,1578.3,1397.36,21.61,554.95,2388.01,9067.42,47.24,522.38,2388.01,8.4089,392,38.95,23.4573 +5,117,0.0002,0.0001,642.57,1585.3,1406.58,21.61,554.4,2388.05,9076.87,47.23,521.54,2388.01,8.3931,391,39.19,23.3632 +5,118,-0.0023,0.0004,642.04,1589.99,1394.96,21.61,554.57,2388.0,9077.8,47.36,522.24,2388.02,8.4122,391,39.1,23.369 +5,119,0.0028,-0.0002,642.25,1585.03,1391.47,21.61,554.5,2388.04,9068.59,47.35,522.22,2387.99,8.4193,392,38.84,23.3717 +5,120,0.0003,-0.0002,641.96,1587.16,1405.61,21.61,554.14,2388.0,9078.96,47.33,521.61,2388.01,8.4223,391,38.97,23.3627 +5,121,0.0007,-0.0004,642.57,1584.87,1402.45,21.61,554.38,2388.05,9069.61,47.31,522.52,2388.04,8.4385,393,39.01,23.4894 +5,122,0.0015,0.0003,641.78,1580.36,1396.67,21.61,554.41,2387.98,9062.8,47.26,522.73,2388.02,8.4298,391,38.97,23.2826 +5,123,0.0015,-0.0004,641.65,1588.78,1401.27,21.61,554.09,2387.99,9076.71,47.19,522.02,2388.01,8.3626,389,38.9,23.3777 +5,124,0.0045,0.0003,642.63,1589.31,1397.74,21.61,554.24,2387.99,9078.22,47.37,522.08,2388.0,8.4326,392,38.81,23.3583 +5,125,-0.0017,0.0001,641.73,1578.0,1406.98,21.61,554.33,2388.01,9074.98,47.3,522.24,2388.0,8.3917,391,38.97,23.355 +5,126,-0.0009,-0.0001,641.86,1582.79,1410.79,21.61,553.99,2388.02,9077.51,47.17,522.12,2388.01,8.4112,392,39.07,23.4284 +5,127,-0.0006,-0.0,642.43,1583.6,1408.51,21.61,554.6,2388.01,9073.53,47.33,522.54,2387.97,8.3721,393,38.9,23.4354 +5,128,-0.005,0.0002,642.35,1589.76,1404.39,21.61,553.89,2388.05,9074.18,47.41,521.77,2388.04,8.3979,394,38.86,23.315 +5,129,0.0023,-0.0003,642.68,1588.84,1397.11,21.61,554.65,2387.97,9069.92,47.19,522.49,2388.02,8.3929,391,39.06,23.3206 +5,130,0.0021,0.0001,643.07,1586.07,1408.21,21.61,553.76,2388.04,9073.87,47.27,522.11,2388.01,8.4067,392,38.96,23.363 +5,131,0.0001,-0.0002,642.21,1586.16,1397.93,21.61,554.12,2387.99,9078.24,47.38,522.6,2387.97,8.4124,393,38.85,23.2558 +5,132,0.0021,-0.0002,642.43,1591.74,1399.12,21.61,554.63,2388.02,9067.58,47.26,522.04,2387.98,8.4106,391,38.97,23.2871 +5,133,-0.0037,-0.0003,642.28,1589.63,1404.86,21.61,553.91,2387.97,9070.01,47.3,521.62,2387.96,8.4125,392,38.9,23.2596 +5,134,-0.0029,-0.0003,641.32,1585.83,1399.74,21.61,554.34,2388.01,9065.89,47.38,521.86,2387.98,8.4053,391,39.09,23.4019 +5,135,0.0007,0.0001,641.98,1587.28,1402.53,21.61,554.09,2388.04,9069.11,47.23,522.34,2388.02,8.4215,391,39.01,23.4529 +5,136,-0.0021,-0.0002,641.52,1578.2,1402.29,21.61,554.81,2388.0,9072.7,47.2,521.98,2388.03,8.4259,391,39.1,23.3288 +5,137,-0.0024,-0.0002,642.24,1584.09,1401.1,21.61,554.89,2388.07,9081.28,47.4,522.14,2387.97,8.4328,392,38.92,23.3137 +5,138,-0.0025,0.0003,641.67,1583.46,1399.78,21.61,554.45,2388.04,9069.11,47.18,521.86,2388.03,8.3749,392,39.0,23.4072 +5,139,-0.0009,0.0003,642.33,1584.72,1401.56,21.61,555.09,2388.0,9082.51,47.27,522.2,2388.07,8.4223,392,38.92,23.3578 +5,140,0.003,0.0,642.83,1585.38,1401.41,21.61,553.73,2388.0,9075.25,47.21,522.32,2388.03,8.4191,394,38.87,23.2958 +5,141,0.0013,0.0004,641.74,1588.78,1399.09,21.61,554.44,2388.01,9070.37,47.33,521.88,2388.02,8.4425,394,38.69,23.4524 +5,142,-0.0006,0.0004,642.36,1585.52,1402.08,21.61,554.61,2388.0,9076.68,47.2,522.07,2388.03,8.4021,392,38.9,23.3333 +5,143,0.0004,-0.0003,642.4,1587.63,1397.69,21.61,554.91,2387.94,9075.83,47.28,522.06,2388.06,8.3784,392,38.92,23.4932 +5,144,0.0006,0.0001,642.35,1580.32,1398.33,21.61,554.21,2388.04,9084.63,47.32,522.06,2387.93,8.3952,392,38.85,23.3937 +5,145,0.0015,-0.0003,642.31,1592.74,1402.0,21.61,554.58,2388.02,9075.61,47.32,522.15,2388.01,8.4079,391,38.77,23.3737 +5,146,0.0009,0.0001,642.77,1593.16,1407.3,21.61,553.9,2388.04,9076.16,47.24,521.91,2388.0,8.396,393,38.95,23.2991 +5,147,0.0022,-0.0004,642.01,1591.29,1400.0,21.61,553.86,2388.0,9073.84,47.33,522.35,2387.96,8.3754,389,38.97,23.3927 +5,148,-0.002,-0.0001,642.24,1583.74,1397.13,21.61,554.64,2388.01,9072.42,47.35,522.37,2388.02,8.4175,390,38.97,23.4523 +5,149,-0.0008,-0.0002,642.53,1585.65,1401.78,21.61,553.95,2388.01,9075.63,47.12,521.78,2388.03,8.4133,392,38.95,23.3417 +5,150,0.0004,0.0001,641.86,1583.1,1410.38,21.61,553.81,2388.01,9082.24,47.44,522.02,2388.05,8.4127,392,38.88,23.3477 +5,151,0.001,-0.0,642.03,1588.2,1406.3,21.61,554.4,2388.03,9070.81,47.28,521.81,2388.01,8.4232,393,38.95,23.3254 +5,152,0.0002,-0.0003,641.87,1583.85,1395.92,21.61,553.55,2388.05,9085.33,47.36,522.37,2388.02,8.4163,392,38.68,23.3302 +5,153,0.0019,0.0002,642.62,1589.26,1406.59,21.61,554.39,2387.99,9073.55,47.44,522.07,2388.03,8.425,391,38.85,23.3812 +5,154,-0.0019,-0.0001,642.24,1581.11,1394.88,21.61,554.47,2387.99,9072.68,47.44,521.91,2388.02,8.4069,394,39.13,23.4176 +5,155,0.0005,-0.0002,642.32,1584.17,1399.99,21.61,554.56,2388.01,9079.84,47.32,521.83,2387.99,8.4703,393,38.76,23.3817 +5,156,-0.0012,-0.0003,642.24,1590.06,1401.26,21.61,553.05,2388.05,9077.82,47.37,522.19,2388.03,8.4005,393,38.99,23.2654 +5,157,0.0006,0.0001,642.13,1589.32,1404.11,21.61,554.02,2388.02,9076.39,47.44,521.76,2388.0,8.412,393,39.05,23.3554 +5,158,-0.0001,-0.0005,641.88,1592.3,1400.2,21.61,553.82,2388.06,9078.0,47.23,521.6,2388.0,8.4106,393,38.96,23.2331 +5,159,-0.0007,-0.0001,642.42,1585.25,1410.83,21.61,553.99,2387.99,9079.84,47.45,521.64,2388.04,8.3972,392,39.09,23.3098 +5,160,0.0022,0.0004,642.28,1589.77,1407.02,21.61,553.84,2388.02,9082.33,47.11,521.65,2388.01,8.4285,394,38.7,23.3987 +5,161,0.0019,-0.0005,642.04,1587.84,1408.28,21.61,553.85,2387.97,9076.65,47.47,522.19,2388.04,8.4065,392,38.94,23.3001 +5,162,-0.0017,0.0004,642.07,1586.84,1401.45,21.61,554.61,2388.05,9078.05,47.29,522.25,2388.0,8.4047,392,38.9,23.3782 +5,163,-0.001,0.0004,642.63,1594.42,1403.54,21.61,553.72,2388.03,9072.23,47.49,521.72,2388.0,8.4168,392,38.94,23.2216 +5,164,-0.0019,-0.0001,642.56,1591.76,1397.82,21.61,554.5,2388.05,9081.97,47.55,521.95,2388.06,8.431,392,38.9,23.3994 +5,165,0.0007,0.0003,642.53,1592.1,1405.58,21.61,553.89,2388.1,9086.9,47.38,522.03,2388.04,8.3896,392,38.99,23.2691 +5,166,-0.0021,-0.0004,642.7,1587.64,1398.78,21.61,554.41,2388.05,9079.54,47.41,522.02,2388.03,8.4194,392,38.94,23.3141 +5,167,-0.0004,0.0003,642.54,1585.36,1398.88,21.61,554.44,2388.02,9076.45,47.3,522.33,2388.01,8.4001,393,38.97,23.3531 +5,168,-0.0004,-0.0004,642.22,1584.33,1406.51,21.61,553.71,2388.04,9085.1,47.22,521.54,2388.05,8.4284,395,39.02,23.3666 +5,169,-0.003,0.0001,642.61,1584.53,1404.83,21.61,553.94,2388.01,9087.43,47.51,521.47,2387.99,8.4577,393,38.89,23.3704 +5,170,0.0009,-0.0004,642.8,1590.51,1406.09,21.61,553.83,2388.06,9088.19,47.57,521.96,2388.01,8.3779,392,39.03,23.4814 +5,171,-0.0032,0.0003,642.41,1585.41,1405.3,21.61,553.62,2387.99,9079.76,47.53,521.62,2388.07,8.4307,391,38.85,23.3103 +5,172,0.0019,0.0001,642.05,1581.11,1409.15,21.61,554.47,2388.03,9079.47,47.48,521.97,2388.0,8.4525,393,38.98,23.2871 +5,173,0.0055,0.0,642.61,1578.99,1399.72,21.61,554.43,2388.02,9077.68,47.38,522.11,2388.01,8.4031,394,38.81,23.3066 +5,174,0.001,0.0,642.28,1585.0,1405.4,21.61,553.46,2388.04,9080.43,47.37,521.69,2387.98,8.3928,391,38.91,23.4187 +5,175,-0.0002,0.0004,642.07,1591.64,1407.55,21.61,553.65,2388.06,9078.61,47.45,521.74,2388.02,8.4409,391,38.73,23.263 +5,176,-0.0029,-0.0,642.25,1587.02,1406.02,21.61,553.7,2388.05,9080.61,47.39,521.87,2388.06,8.4462,394,39.01,23.2718 +5,177,-0.0043,-0.0002,642.32,1593.2,1404.8,21.61,554.05,2388.04,9078.66,47.49,522.42,2388.07,8.4426,392,38.91,23.4318 +5,178,-0.0022,-0.0004,642.19,1584.35,1400.44,21.61,553.8,2388.05,9088.18,47.28,521.81,2388.05,8.4278,392,38.89,23.3663 +5,179,0.001,0.0002,642.66,1585.57,1404.91,21.61,553.92,2388.03,9083.4,47.33,521.72,2388.06,8.4047,393,38.94,23.3704 +5,180,-0.0023,0.0003,642.93,1589.16,1401.28,21.61,554.39,2387.99,9087.2,47.3,521.83,2387.98,8.4082,392,38.83,23.3568 +5,181,0.0012,-0.0,642.13,1585.09,1406.41,21.6,553.92,2388.05,9090.1,47.24,521.95,2388.0,8.4198,392,38.63,23.37 +5,182,-0.0015,0.0001,641.97,1587.0,1410.72,21.61,553.43,2388.04,9085.98,47.5,522.09,2388.01,8.4283,393,38.84,23.3856 +5,183,0.0004,-0.0003,642.35,1587.85,1414.51,21.61,554.04,2388.03,9082.04,47.57,521.88,2388.05,8.446,392,38.86,23.2491 +5,184,0.0018,-0.0005,642.56,1590.2,1405.85,21.61,553.53,2388.11,9079.23,47.45,522.23,2388.04,8.4128,393,38.74,23.3167 +5,185,-0.0014,-0.0004,642.49,1589.31,1409.3,21.61,553.25,2387.98,9090.79,47.38,521.81,2388.02,8.4278,393,38.89,23.3935 +5,186,0.0002,-0.0004,641.84,1589.4,1403.46,21.61,554.15,2388.08,9081.96,47.47,521.63,2388.03,8.4043,392,38.9,23.3886 +5,187,-0.0003,0.0004,642.99,1586.12,1401.97,21.61,553.8,2388.09,9081.99,47.52,521.82,2388.02,8.4362,392,38.71,23.322 +5,188,0.0004,-0.0004,642.91,1587.14,1406.65,21.61,553.35,2388.06,9093.76,47.32,521.95,2388.03,8.4366,393,38.87,23.2728 +5,189,0.0005,-0.0004,643.18,1582.91,1411.05,21.61,553.77,2387.99,9082.07,47.32,521.53,2387.96,8.4415,394,38.79,23.3599 +5,190,-0.0063,-0.0005,641.95,1592.58,1405.86,21.61,552.91,2388.09,9090.69,47.41,521.8,2388.03,8.44,394,38.91,23.3148 +5,191,-0.0042,0.0002,642.4,1580.79,1401.97,21.61,553.1,2388.06,9083.96,47.46,521.68,2388.03,8.4429,394,38.95,23.4181 +5,192,-0.0008,0.0004,643.06,1589.78,1408.25,21.61,553.33,2388.04,9085.64,47.43,521.74,2388.03,8.4332,394,38.96,23.3124 +5,193,-0.0003,0.0001,642.55,1589.42,1414.49,21.61,552.88,2388.09,9088.74,47.57,521.71,2388.02,8.4162,393,38.72,23.2404 +5,194,0.0003,0.0004,642.47,1592.41,1405.27,21.61,553.82,2387.99,9091.05,47.53,521.62,2388.03,8.4461,392,38.83,23.2218 +5,195,-0.0005,-0.0,642.4,1590.34,1421.88,21.61,553.55,2388.08,9084.23,47.36,521.68,2388.04,8.4053,394,38.77,23.215 +5,196,0.0025,0.0,642.36,1596.19,1412.29,21.61,553.47,2388.05,9088.43,47.57,521.4,2388.03,8.4615,394,38.74,23.3996 +5,197,0.0021,-0.0003,642.43,1590.01,1403.3,21.61,553.4,2388.04,9081.19,47.33,521.47,2388.04,8.4338,394,38.7,23.3149 +5,198,0.0039,-0.0004,642.75,1591.13,1409.6,21.61,553.37,2388.07,9084.44,47.49,521.25,2388.06,8.434,393,38.95,23.3705 +5,199,0.0001,-0.0005,642.77,1595.73,1399.32,21.61,553.35,2388.07,9083.02,47.66,521.76,2388.06,8.4662,395,38.82,23.1856 +5,200,0.0028,0.0,642.45,1585.8,1404.94,21.61,553.35,2388.0,9088.92,47.43,521.18,2388.02,8.4308,392,38.99,23.1455 +5,201,-0.0025,0.0003,642.26,1589.08,1407.48,21.61,553.72,2388.05,9093.9,47.51,521.6,2388.07,8.4336,393,38.87,23.1862 +5,202,-0.0019,-0.0,642.63,1592.03,1418.05,21.61,553.57,2388.07,9088.82,47.53,521.42,2388.1,8.4207,392,38.83,23.281 +5,203,0.0015,0.0004,643.22,1589.02,1406.81,21.61,552.99,2388.06,9092.01,47.52,521.88,2388.07,8.4343,395,38.89,23.2729 +5,204,-0.0005,-0.0,642.67,1595.31,1414.63,21.61,553.85,2388.08,9094.49,47.5,520.88,2388.07,8.4085,394,38.72,23.354 +5,205,-0.001,-0.0005,642.58,1584.22,1402.8,21.61,553.92,2388.1,9087.74,47.47,521.79,2388.03,8.4667,393,38.66,23.3226 +5,206,0.0012,-0.0004,642.6,1589.26,1412.15,21.61,553.33,2388.07,9091.94,47.53,521.6,2388.1,8.4329,393,38.81,23.2004 +5,207,0.0008,-0.0003,642.59,1585.09,1418.64,21.61,553.19,2388.05,9089.76,47.69,521.33,2388.08,8.4453,394,38.84,23.3964 +5,208,-0.0006,-0.0001,643.29,1598.96,1410.31,21.61,553.17,2388.09,9099.3,47.42,521.75,2388.03,8.4586,393,38.92,23.2974 +5,209,-0.0002,0.0001,642.75,1588.4,1407.83,21.61,552.95,2388.02,9094.19,47.79,521.94,2388.03,8.4047,394,38.83,23.3604 +5,210,0.0015,0.0004,643.25,1601.16,1414.9,21.61,553.48,2388.01,9097.87,47.56,521.56,2388.02,8.4438,394,38.75,23.3408 +5,211,0.0004,-0.0001,642.81,1593.96,1410.44,21.61,553.41,2388.05,9102.5,47.45,520.91,2388.05,8.4713,394,38.66,23.2832 +5,212,-0.0026,-0.0001,643.46,1588.53,1407.63,21.61,553.14,2388.04,9092.25,47.74,521.0,2388.08,8.4559,394,38.65,23.17 +5,213,-0.0027,0.0001,642.61,1592.49,1411.76,21.61,553.11,2388.01,9101.41,47.64,521.22,2388.03,8.4424,394,38.81,23.2581 +5,214,-0.0007,-0.0,642.41,1590.22,1415.59,21.61,553.06,2388.04,9100.18,47.56,521.9,2388.02,8.41,394,38.75,23.2393 +5,215,0.003,-0.0,643.25,1598.9,1414.35,21.61,552.63,2388.01,9095.98,47.58,521.17,2388.02,8.4817,393,38.81,23.1971 +5,216,0.0014,-0.0004,642.33,1597.02,1419.51,21.61,553.25,2388.04,9099.24,47.6,520.88,2388.08,8.4257,394,38.67,23.2079 +5,217,-0.001,0.0004,642.69,1590.44,1411.58,21.61,553.41,2388.09,9103.2,47.58,521.49,2388.1,8.4691,395,38.59,23.2088 +5,218,-0.0014,0.0001,643.14,1593.78,1412.19,21.61,553.2,2388.04,9096.54,47.55,521.84,2388.12,8.4446,393,38.77,23.0964 +5,219,-0.0027,-0.0002,642.85,1591.7,1410.72,21.61,552.88,2388.11,9100.47,47.71,521.26,2388.11,8.4295,394,38.49,23.2752 +5,220,-0.0011,-0.0,642.63,1591.54,1412.16,21.61,553.48,2388.13,9102.11,47.59,521.68,2388.11,8.4664,395,38.78,23.1496 +5,221,0.0034,0.0001,642.84,1599.89,1411.56,21.61,553.3,2388.04,9102.51,47.68,520.67,2388.1,8.4499,393,38.75,23.2008 +5,222,-0.0009,0.0003,642.6,1593.52,1413.57,21.61,553.17,2388.09,9103.0,47.7,520.92,2388.09,8.4755,396,38.81,23.253 +5,223,0.0015,-0.0003,642.33,1598.78,1414.61,21.61,553.29,2388.06,9101.35,47.72,520.86,2388.06,8.4987,394,38.82,23.2127 +5,224,0.0017,0.0005,642.94,1594.2,1409.75,21.61,553.0,2388.03,9105.9,47.47,521.18,2388.08,8.4638,396,38.88,23.3276 +5,225,0.0009,-0.0004,642.92,1592.04,1420.41,21.61,553.01,2388.08,9102.44,47.71,520.41,2388.1,8.4576,394,38.7,23.1596 +5,226,-0.0031,-0.0001,642.71,1595.56,1410.58,21.61,553.43,2388.07,9107.22,47.59,521.33,2388.07,8.4653,395,38.8,23.3102 +5,227,0.0013,-0.0001,642.72,1597.53,1409.96,21.61,552.61,2388.09,9111.64,47.85,521.23,2388.05,8.4805,394,38.66,23.2685 +5,228,0.0011,-0.0001,642.73,1595.91,1416.9,21.61,553.26,2388.14,9097.12,47.75,520.64,2388.12,8.4462,395,38.91,23.2278 +5,229,-0.0018,-0.0004,643.36,1599.17,1410.49,21.61,552.54,2388.07,9102.33,47.64,521.14,2388.05,8.4722,395,38.76,23.245 +5,230,-0.0011,0.0003,643.4,1595.61,1422.13,21.61,552.73,2388.15,9107.89,47.69,521.21,2388.09,8.4637,393,38.6,23.2551 +5,231,0.0022,0.0003,642.73,1585.5,1418.89,21.61,552.79,2388.1,9097.5,47.82,521.18,2388.04,8.4484,395,38.68,23.2363 +5,232,-0.0011,-0.0001,642.72,1599.3,1412.06,21.61,552.8,2388.1,9103.71,47.8,520.94,2388.16,8.4974,392,38.56,23.2672 +5,233,0.0002,-0.0004,643.7,1596.32,1410.89,21.61,553.12,2388.15,9110.31,47.78,521.04,2388.09,8.4873,393,38.55,23.2345 +5,234,0.0019,0.0002,642.34,1603.24,1414.62,21.61,552.73,2388.14,9118.34,47.67,521.07,2388.12,8.4239,393,38.78,23.1835 +5,235,-0.0026,-0.0002,643.17,1597.63,1414.36,21.61,552.8,2388.11,9117.65,47.73,520.52,2388.13,8.4749,394,38.75,23.2203 +5,236,0.0016,-0.0002,643.25,1593.6,1413.45,21.61,553.3,2388.09,9114.68,47.78,521.03,2388.09,8.4957,394,38.67,23.1579 +5,237,0.0003,-0.0002,643.68,1589.94,1416.89,21.61,553.0,2388.06,9117.53,47.98,521.55,2388.06,8.4604,396,38.71,23.17 +5,238,0.0011,-0.0004,643.14,1595.09,1420.25,21.61,553.35,2388.08,9114.28,47.77,520.63,2388.06,8.4438,395,38.67,23.0958 +5,239,-0.0038,0.0002,643.05,1601.15,1418.73,21.61,553.54,2388.16,9120.67,47.85,521.51,2388.09,8.4813,394,38.72,23.192 +5,240,0.001,0.0001,643.41,1587.88,1420.74,21.61,552.8,2388.06,9125.04,47.84,521.47,2388.15,8.4942,395,38.67,23.1828 +5,241,0.0007,0.0,642.99,1592.89,1428.4,21.61,552.57,2388.1,9117.35,47.57,521.03,2388.07,8.487,395,38.66,23.2378 +5,242,0.0021,-0.0005,643.07,1603.83,1416.36,21.61,552.37,2388.13,9116.12,47.91,521.5,2388.06,8.5047,395,38.47,23.2526 +5,243,0.0029,0.0001,643.25,1599.63,1418.14,21.61,552.95,2388.12,9125.43,47.95,520.69,2388.18,8.4759,395,38.78,23.0681 +5,244,0.0002,-0.0001,642.95,1591.37,1422.41,21.61,553.16,2388.11,9123.41,47.83,520.75,2388.13,8.481,396,38.46,23.0463 +5,245,0.001,0.0001,643.13,1599.31,1421.8,21.61,552.46,2388.13,9114.21,47.96,520.54,2388.18,8.4866,393,38.68,23.2506 +5,246,-0.0003,-0.0001,643.49,1600.21,1422.59,21.61,552.52,2388.15,9130.35,47.79,520.38,2388.12,8.4931,396,38.58,23.2279 +5,247,0.0005,0.0,643.4,1601.11,1416.75,21.61,551.86,2388.12,9124.41,47.87,520.01,2388.11,8.482,395,38.76,23.1255 +5,248,0.0001,0.0001,643.45,1594.09,1422.62,21.61,552.66,2388.07,9122.01,48.03,520.51,2388.1,8.4656,395,38.6,23.196 +5,249,-0.0041,0.0002,643.56,1597.93,1423.94,21.61,551.98,2388.16,9127.54,47.9,520.36,2388.13,8.5371,395,38.57,23.2299 +5,250,0.0004,0.0004,643.14,1596.58,1425.52,21.61,552.79,2388.14,9121.08,47.85,520.57,2388.12,8.4391,396,38.55,23.0257 +5,251,-0.0031,0.0002,643.59,1599.58,1423.26,21.61,551.47,2388.13,9130.2,47.72,520.49,2388.16,8.4868,396,38.67,23.125 +5,252,-0.0013,-0.0001,643.71,1598.85,1419.15,21.61,551.81,2388.12,9128.7,47.82,520.42,2388.1,8.4737,396,38.61,23.239 +5,253,0.0032,-0.0004,643.59,1602.52,1423.22,21.61,551.61,2388.11,9129.89,48.08,520.82,2388.16,8.509,396,38.48,23.1336 +5,254,0.0043,-0.0005,643.3,1591.58,1424.36,21.61,551.48,2388.11,9133.91,47.85,520.07,2388.18,8.516,396,38.38,23.0446 +5,255,-0.0015,-0.0003,643.46,1594.11,1428.03,21.61,551.73,2388.18,9134.42,48.19,520.38,2388.16,8.4968,396,38.67,23.2145 +5,256,0.0007,0.0005,643.66,1602.29,1431.89,21.61,551.4,2388.12,9129.24,47.82,520.46,2388.09,8.5036,396,38.49,23.0656 +5,257,0.0011,0.0004,643.22,1604.25,1424.27,21.61,552.21,2388.05,9122.22,48.27,519.88,2388.16,8.5263,395,38.61,23.2326 +5,258,0.0007,-0.0002,643.44,1596.35,1427.69,21.61,552.5,2388.16,9137.48,48.06,520.59,2388.11,8.5105,396,38.4,23.1169 +5,259,-0.0018,-0.0003,643.78,1608.65,1420.14,21.61,551.42,2388.21,9136.26,48.05,520.12,2388.15,8.539,397,38.34,23.0195 +5,260,0.0046,-0.0004,643.25,1607.39,1425.28,21.61,552.24,2388.17,9129.69,47.96,520.06,2388.11,8.4948,396,38.74,23.1449 +5,261,0.0014,0.0005,643.27,1600.6,1421.13,21.61,552.07,2388.16,9133.37,48.13,520.63,2388.14,8.495,396,38.52,23.1152 +5,262,-0.001,0.0001,643.56,1601.82,1424.81,21.61,552.49,2388.16,9134.01,47.86,519.95,2388.23,8.4983,395,38.54,23.0929 +5,263,-0.0013,-0.0003,643.95,1608.2,1421.15,21.61,551.57,2388.14,9140.04,48.04,520.05,2388.15,8.5201,397,38.42,23.1361 +5,264,0.004,-0.0005,643.77,1606.55,1425.39,21.61,551.7,2388.17,9149.72,48.26,519.83,2388.19,8.5297,397,38.37,23.1132 +5,265,0.0028,-0.0003,643.8,1605.53,1424.57,21.61,551.37,2388.16,9148.96,48.03,519.8,2388.1,8.541,395,38.35,23.0857 +5,266,0.0,-0.0002,643.38,1609.33,1434.4,21.61,552.35,2388.2,9147.43,48.24,519.57,2388.14,8.5254,398,38.55,23.1621 +5,267,0.0018,0.0001,643.73,1609.41,1430.25,21.61,551.55,2388.1,9147.65,48.26,519.66,2388.17,8.5292,397,38.49,23.0566 +5,268,0.0033,-0.0002,644.02,1608.65,1434.59,21.61,552.22,2388.15,9146.01,48.15,520.1,2388.14,8.5196,397,38.52,23.118 +5,269,0.0022,0.0003,643.46,1597.28,1430.74,21.61,550.77,2388.18,9157.05,48.26,519.86,2388.16,8.5209,397,38.45,23.0296 +7,10,0.0019,-0.0002,642.29,1588.96,1393.25,21.61,554.14,2387.96,9065.28,47.14,522.09,2388.02,8.4222,392,38.96,23.3398 +7,11,0.0026,-0.0002,642.74,1585.25,1393.96,21.61,554.11,2388.01,9074.91,47.39,522.12,2387.98,8.3948,392,39.14,23.3074 +7,12,-0.0036,-0.0004,642.08,1590.55,1397.36,21.61,554.21,2387.99,9071.72,47.28,522.13,2387.99,8.3766,393,38.92,23.3777 +7,13,-0.0011,0.0001,642.47,1584.88,1392.15,21.61,554.61,2387.95,9065.52,47.17,522.55,2388.01,8.4199,391,39.01,23.4383 +7,14,0.0009,0.0001,641.76,1579.88,1390.48,21.61,554.47,2388.05,9067.42,47.18,521.98,2388.01,8.4196,391,39.02,23.4888 +7,15,-0.005,0.0004,642.29,1582.42,1398.41,21.61,554.02,2388.08,9068.28,47.24,521.89,2388.0,8.3901,393,39.07,23.3772 +7,16,0.0024,0.0003,642.3,1588.69,1405.02,21.61,554.14,2387.97,9073.41,47.04,522.54,2388.02,8.4122,391,39.08,23.3613 +7,17,-0.0019,0.0001,642.08,1588.75,1397.63,21.61,554.94,2387.94,9071.39,47.34,522.02,2387.99,8.419,390,38.93,23.404 +7,18,-0.0036,0.0002,642.47,1583.49,1394.65,21.61,553.92,2387.98,9073.12,47.21,522.31,2388.04,8.388,392,38.87,23.4165 +7,19,-0.001,-0.0,642.01,1586.11,1397.51,21.61,554.2,2388.0,9065.77,47.16,522.26,2388.0,8.4216,392,39.02,23.4083 +7,20,-0.0028,0.0004,641.99,1585.03,1395.92,21.61,554.26,2388.02,9068.68,47.22,522.61,2388.02,8.4111,392,38.87,23.3776 +7,21,0.0001,-0.0002,641.77,1589.77,1404.33,21.61,554.69,2388.03,9071.68,47.23,521.78,2387.97,8.3926,393,38.79,23.3863 +7,22,0.0011,0.0004,641.44,1578.03,1394.58,21.61,554.63,2388.0,9071.1,47.25,522.02,2388.0,8.3609,393,39.01,23.2512 +7,23,-0.0057,-0.0001,641.76,1586.41,1398.09,21.61,554.38,2388.01,9067.09,47.21,522.48,2388.01,8.4143,391,39.06,23.3937 +7,24,0.0057,0.0002,642.44,1583.32,1398.75,21.61,553.84,2387.99,9066.23,47.3,522.65,2388.02,8.4022,391,39.03,23.4204 +7,25,-0.0009,-0.0004,641.79,1578.13,1397.07,21.61,554.2,2388.07,9072.66,47.26,522.27,2387.97,8.4361,392,39.05,23.3838 +7,26,0.0009,-0.0001,641.87,1585.88,1401.19,21.6,554.88,2388.0,9071.55,47.12,522.7,2388.01,8.3712,393,39.01,23.3981 +7,27,0.0005,-0.0001,642.68,1585.5,1397.39,21.61,553.65,2388.05,9069.54,47.27,522.38,2387.95,8.4167,391,38.85,23.4148 +7,28,-0.0006,0.0004,642.68,1586.11,1405.38,21.61,553.65,2388.02,9071.83,47.21,521.65,2388.02,8.4114,392,39.07,23.376 +7,29,-0.0012,-0.0001,641.9,1589.95,1396.71,21.61,555.01,2388.01,9073.64,47.13,522.52,2388.01,8.3806,393,39.08,23.4833 +7,30,-0.0016,-0.0004,642.18,1585.13,1396.49,21.6,554.78,2388.03,9069.39,47.19,522.06,2387.98,8.4228,391,39.01,23.4269 +7,31,-0.0004,0.0001,641.99,1589.16,1402.76,21.61,554.51,2387.98,9071.21,47.14,522.51,2388.01,8.4266,393,38.97,23.3568 +7,32,0.0018,-0.0005,642.15,1589.46,1397.4,21.61,554.74,2387.97,9075.17,47.18,522.37,2388.01,8.3815,393,38.84,23.359 +7,33,0.0026,-0.0003,642.19,1585.17,1399.12,21.61,554.47,2387.98,9065.57,47.28,522.75,2388.01,8.387,392,38.97,23.2902 +7,34,-0.0024,-0.0002,642.09,1583.36,1402.93,21.61,554.36,2388.02,9054.44,47.19,521.87,2388.02,8.4168,392,39.21,23.4113 +7,35,-0.0055,0.0003,642.67,1591.02,1409.12,21.61,554.6,2387.99,9065.34,47.3,522.72,2387.96,8.4014,392,39.14,23.3942 +7,36,0.0012,-0.0004,642.54,1581.96,1393.49,21.61,554.98,2387.96,9066.31,47.32,522.31,2388.06,8.4154,394,38.9,23.4273 +7,37,-0.004,-0.0001,642.4,1584.97,1400.55,21.61,554.36,2387.95,9062.36,47.12,522.42,2387.99,8.4042,394,39.12,23.4181 +7,38,0.004,-0.0004,642.41,1590.3,1393.57,21.61,554.52,2388.0,9068.9,47.13,522.53,2388.03,8.4168,391,38.99,23.4189 +7,39,0.0065,-0.0,642.39,1582.33,1403.52,21.61,554.04,2387.96,9076.57,47.35,522.05,2388.01,8.4314,392,39.15,23.3436 +7,40,0.0007,-0.0002,642.14,1587.0,1393.32,21.61,554.96,2387.99,9063.64,47.32,522.63,2387.95,8.3988,390,39.11,23.4054 +7,41,-0.0014,-0.0002,642.39,1590.4,1406.12,21.61,554.64,2387.99,9063.5,47.08,522.49,2388.05,8.401,392,39.06,23.3194 +7,42,0.0018,-0.0002,642.7,1580.26,1398.14,21.61,554.05,2387.98,9078.32,47.21,522.68,2388.01,8.4047,393,39.05,23.3355 +7,43,0.0009,0.0004,642.32,1582.93,1397.5,21.61,555.01,2388.01,9066.91,47.2,521.93,2388.0,8.4454,391,39.21,23.3467 +7,44,0.002,0.0001,642.64,1587.5,1398.15,21.61,554.95,2388.0,9073.91,47.31,522.52,2387.98,8.4042,392,38.87,23.4205 +7,45,0.0019,0.0001,642.25,1587.23,1399.97,21.61,554.07,2388.0,9071.53,47.17,522.39,2387.99,8.3894,392,39.13,23.4295 +7,46,-0.0037,0.0003,642.37,1586.17,1405.02,21.61,554.9,2387.98,9067.1,47.42,522.22,2387.97,8.3882,392,39.02,23.4833 +7,47,-0.0019,0.0003,641.94,1587.72,1401.47,21.61,553.74,2387.99,9058.35,47.2,522.02,2387.98,8.407,391,38.98,23.2798 +7,48,0.0003,0.0,641.94,1585.35,1398.81,21.61,554.05,2387.99,9066.88,47.11,522.33,2388.05,8.4164,391,38.93,23.3583 +7,49,0.003,-0.0004,642.43,1586.42,1396.88,21.61,554.21,2387.98,9063.5,47.33,522.03,2387.99,8.4129,391,38.93,23.4089 +7,50,-0.0008,0.0004,642.41,1590.47,1400.31,21.61,553.68,2388.04,9073.14,47.22,522.43,2387.98,8.4159,393,38.86,23.5133 +7,51,-0.0012,-0.0,642.17,1580.05,1397.42,21.61,553.66,2388.01,9075.92,47.41,522.55,2388.03,8.4323,392,38.81,23.3101 +7,52,0.0002,0.0003,641.91,1585.51,1402.13,21.6,555.14,2388.0,9071.36,47.18,522.42,2387.95,8.414,392,39.18,23.4335 +7,53,0.0006,-0.0002,642.38,1582.33,1395.45,21.61,553.87,2388.06,9068.45,47.31,522.3,2388.05,8.4169,393,39.11,23.3092 +7,54,0.0007,-0.0004,641.8,1590.77,1400.98,21.61,553.78,2387.99,9073.05,47.41,522.21,2387.98,8.4129,392,39.01,23.4177 +7,55,0.0002,0.0004,642.19,1585.93,1399.74,21.61,554.13,2387.98,9069.34,47.09,522.02,2387.94,8.3869,392,38.99,23.42 +7,56,0.0008,0.0,642.53,1584.43,1395.08,21.61,554.66,2388.02,9064.3,47.37,522.45,2388.01,8.4122,391,38.94,23.2743 +7,57,-0.0024,-0.0003,643.02,1585.71,1398.43,21.61,553.87,2387.99,9069.75,47.25,522.5,2388.08,8.41,392,39.12,23.3419 +7,58,-0.0043,-0.0001,642.09,1587.14,1400.97,21.6,555.14,2387.99,9066.81,47.19,523.0,2388.0,8.383,392,39.06,23.2486 +7,59,0.0002,-0.0,642.29,1585.96,1397.92,21.61,554.73,2388.0,9070.86,47.29,521.81,2387.99,8.433,390,39.22,23.4702 +7,60,-0.0001,-0.0003,642.19,1581.21,1396.21,21.61,554.44,2388.01,9074.64,47.24,521.99,2388.0,8.3696,390,39.11,23.2723 +7,61,0.003,-0.0004,642.08,1586.13,1402.82,21.61,553.9,2387.98,9068.88,47.26,522.32,2388.02,8.4018,392,39.06,23.4476 +7,62,0.0031,-0.0004,642.15,1585.67,1390.39,21.61,553.81,2388.0,9073.22,47.29,522.74,2387.97,8.4175,391,38.99,23.3247 +7,63,0.0008,-0.0002,642.36,1578.24,1400.55,21.6,554.64,2388.03,9062.13,47.17,521.82,2388.01,8.4172,391,39.21,23.3449 +7,64,-0.0006,0.0002,642.54,1589.13,1399.36,21.61,554.43,2388.03,9065.16,47.28,521.96,2387.98,8.4112,392,39.1,23.4167 +7,65,-0.0035,-0.0003,642.31,1578.07,1396.6,21.61,554.11,2388.01,9071.37,47.28,522.18,2387.98,8.4259,390,39.0,23.5043 +7,66,0.0,-0.0002,642.54,1586.72,1399.23,21.61,554.53,2387.98,9062.81,47.42,522.88,2387.94,8.4027,393,39.05,23.3637 +7,67,0.0005,0.0,642.61,1582.7,1402.68,21.61,554.02,2388.0,9070.66,47.35,522.2,2388.01,8.3811,391,38.94,23.2758 +7,68,0.0006,-0.0005,641.8,1586.66,1395.57,21.61,554.02,2388.03,9072.02,47.17,521.64,2388.05,8.393,391,39.09,23.4418 +7,69,0.0002,0.0001,642.22,1593.46,1403.5,21.6,554.47,2388.04,9070.6,47.36,522.14,2387.97,8.4268,392,38.96,23.3819 +7,70,-0.002,-0.0005,642.09,1583.19,1399.04,21.61,554.01,2388.05,9063.46,47.25,521.82,2388.05,8.363,391,39.01,23.447 +7,71,0.0032,0.0004,641.53,1584.6,1398.9,21.61,554.66,2387.95,9068.88,47.37,522.31,2388.01,8.3882,391,39.03,23.406 +7,72,0.0012,0.0002,641.78,1582.54,1406.47,21.61,554.88,2387.98,9066.14,47.1,522.54,2388.01,8.4404,391,38.98,23.3463 +7,73,-0.0004,-0.0004,642.12,1588.4,1401.72,21.61,554.39,2388.03,9066.59,47.12,521.77,2388.06,8.4095,392,39.15,23.4238 +7,74,-0.0004,-0.0001,642.1,1587.52,1407.77,21.61,553.65,2388.01,9073.81,47.28,522.51,2388.01,8.41,394,39.07,23.4331 +7,75,-0.001,0.0004,642.29,1582.94,1402.11,21.61,554.73,2388.05,9068.74,47.52,522.01,2388.01,8.3808,392,38.93,23.372 +7,76,0.0017,-0.0,642.11,1585.7,1407.16,21.61,554.14,2387.98,9075.29,47.36,522.26,2388.01,8.3883,390,39.02,23.4115 +7,77,-0.0072,-0.0001,642.36,1588.83,1400.6,21.61,554.47,2388.06,9072.36,47.29,522.27,2387.99,8.4149,392,38.91,23.3784 +7,78,-0.0,0.0001,642.14,1583.3,1399.64,21.61,554.86,2388.07,9065.49,47.33,522.03,2388.05,8.4278,392,38.94,23.501 +7,79,0.0008,0.0003,642.48,1588.28,1404.99,21.61,553.91,2388.02,9070.11,47.2,521.78,2388.01,8.45,392,38.97,23.3182 +7,80,0.0028,0.0003,642.07,1585.35,1402.29,21.61,553.99,2388.02,9067.14,47.28,522.23,2388.05,8.4374,392,39.01,23.4108 +7,81,0.0021,0.0,641.57,1585.23,1408.11,21.61,554.77,2387.98,9072.96,47.3,522.41,2388.01,8.402,392,38.91,23.4851 +7,82,-0.0018,-0.0005,642.13,1588.93,1398.88,21.61,554.92,2388.05,9072.86,47.27,522.36,2388.02,8.4272,392,38.88,23.3642 +7,83,-0.0053,-0.0004,641.94,1588.35,1406.01,21.61,554.04,2388.02,9062.67,47.32,522.3,2388.01,8.4268,392,38.82,23.3892 +7,84,0.0035,0.0001,642.9,1586.44,1400.85,21.61,553.75,2388.02,9072.09,47.13,522.25,2388.03,8.4321,392,39.07,23.3648 +7,85,0.0003,-0.0004,642.75,1583.4,1402.17,21.61,554.85,2388.0,9068.09,47.22,522.29,2388.05,8.3837,393,38.98,23.3774 +7,86,-0.0012,0.0003,641.85,1590.03,1397.76,21.6,555.11,2388.0,9070.16,47.34,522.19,2388.04,8.3789,392,39.07,23.2998 +7,87,-0.004,0.0001,642.23,1578.42,1404.01,21.61,554.16,2387.99,9074.03,47.37,522.15,2388.0,8.404,392,38.83,23.43 +7,88,0.0006,0.0004,642.9,1593.15,1402.65,21.61,553.25,2387.99,9073.29,47.31,522.26,2388.02,8.4294,392,38.78,23.2949 +7,89,0.0001,-0.0002,642.34,1593.84,1397.17,21.61,554.59,2387.97,9066.73,47.4,521.95,2388.03,8.4486,392,38.92,23.416 +7,90,-0.0011,-0.0002,641.88,1580.81,1402.41,21.61,554.92,2388.01,9067.93,47.22,522.44,2388.05,8.4045,393,38.96,23.3656 +7,91,-0.002,-0.0004,641.75,1592.03,1396.28,21.61,553.72,2388.04,9072.14,47.22,521.88,2387.94,8.3933,393,39.02,23.2491 +7,92,0.0016,-0.0004,642.45,1587.27,1397.32,21.61,554.28,2388.02,9067.38,47.35,521.89,2388.02,8.3913,392,39.07,23.4673 +7,93,0.0019,-0.0001,642.7,1587.11,1402.29,21.61,554.17,2388.02,9076.52,47.43,522.23,2388.05,8.4343,393,38.93,23.3579 +7,94,0.0029,0.0002,642.43,1588.87,1401.99,21.61,554.2,2387.96,9067.34,47.31,522.37,2388.0,8.4131,393,39.0,23.2955 +7,95,0.0027,-0.0001,642.19,1583.66,1400.37,21.61,554.65,2388.03,9066.23,47.31,522.32,2388.0,8.4025,391,38.95,23.4575 +7,96,-0.0028,0.0003,641.78,1582.22,1392.46,21.61,554.1,2388.04,9072.33,47.39,522.64,2388.04,8.4236,392,38.99,23.4586 +7,97,0.0007,-0.0004,641.91,1584.35,1401.32,21.61,553.96,2388.03,9070.45,47.2,522.02,2388.05,8.4003,392,39.03,23.3957 +7,98,-0.0009,0.0003,642.46,1587.27,1400.02,21.61,553.65,2388.05,9069.65,47.14,522.52,2387.98,8.4259,392,38.73,23.2952 +7,99,0.0012,0.0003,642.55,1586.95,1402.16,21.61,554.15,2388.0,9074.67,47.51,521.81,2388.0,8.4309,392,38.74,23.4321 +7,100,0.0011,0.0,642.15,1582.66,1402.89,21.61,554.86,2388.02,9070.04,47.32,521.84,2387.98,8.4359,391,39.08,23.3657 +7,101,-0.0026,0.0005,642.05,1593.77,1400.18,21.61,553.94,2388.04,9070.62,47.31,522.53,2388.04,8.4318,392,38.8,23.3621 +7,102,0.0019,-0.0002,642.78,1592.88,1395.88,21.61,554.68,2388.04,9071.56,47.34,522.4,2388.03,8.4509,392,38.96,23.3109 +7,103,0.0023,-0.0004,642.7,1583.74,1405.56,21.61,554.22,2388.01,9068.31,47.31,521.74,2388.09,8.3895,392,39.03,23.4005 +7,104,-0.0005,0.0005,642.23,1582.98,1394.15,21.61,553.65,2388.0,9063.86,47.27,522.0,2388.02,8.43,392,38.94,23.2999 +7,105,0.0001,0.0004,642.35,1583.76,1401.92,21.61,554.37,2388.01,9079.02,47.3,522.04,2388.06,8.3575,393,38.92,23.3385 +7,106,0.0043,0.0001,642.63,1583.08,1409.0,21.61,554.22,2387.97,9068.99,47.19,522.88,2388.01,8.4244,392,38.82,23.4925 +7,107,0.0048,-0.0001,642.16,1587.77,1402.69,21.61,554.15,2388.07,9072.66,47.26,522.24,2388.01,8.4425,393,38.93,23.3755 +7,108,-0.0006,-0.0005,642.39,1587.75,1401.06,21.61,554.13,2388.01,9075.56,47.34,522.64,2387.96,8.3605,391,38.93,23.1841 +7,109,0.0014,0.0003,642.71,1586.93,1395.74,21.61,554.65,2387.97,9072.98,47.27,522.46,2388.03,8.3714,392,39.04,23.3796 +7,110,-0.0066,-0.0004,642.65,1592.97,1414.46,21.61,554.33,2388.07,9072.55,47.27,522.15,2388.06,8.4191,391,38.92,23.3376 +7,111,-0.0028,-0.0005,642.1,1590.37,1402.57,21.61,554.17,2387.98,9070.54,47.07,522.13,2388.04,8.4636,392,38.72,23.4173 +7,112,0.0017,-0.0001,642.28,1578.72,1399.47,21.61,554.46,2388.05,9070.71,47.08,521.74,2387.98,8.3952,392,38.95,23.2612 +7,113,0.001,-0.0005,642.56,1580.83,1402.84,21.61,554.2,2388.09,9071.13,47.41,521.62,2388.08,8.4005,392,38.92,23.402 +7,114,0.0005,0.0002,642.44,1588.32,1405.78,21.61,554.95,2388.01,9074.17,47.27,522.17,2388.02,8.4296,393,39.05,23.3857 +7,115,-0.0006,-0.0004,642.14,1579.89,1405.25,21.61,553.3,2387.98,9065.46,47.49,521.37,2388.02,8.4168,394,38.97,23.3281 +7,116,-0.001,0.0,642.18,1590.92,1400.08,21.61,554.0,2388.03,9069.41,47.36,522.25,2388.03,8.3865,394,38.81,23.348 +7,117,-0.0015,0.0003,642.51,1595.71,1396.29,21.61,554.1,2388.01,9065.86,47.41,522.23,2388.1,8.3981,394,38.87,23.3375 +7,118,0.0029,-0.0004,642.33,1589.6,1396.89,21.61,554.32,2388.03,9072.27,47.38,521.46,2388.09,8.416,391,38.89,23.2085 +7,119,0.0007,-0.0005,641.84,1579.78,1400.87,21.61,553.82,2388.04,9068.05,47.27,522.02,2388.02,8.4061,392,38.65,23.3169 +7,120,0.0017,0.0003,642.02,1588.45,1397.46,21.61,553.51,2388.03,9071.64,47.26,522.0,2388.02,8.4042,390,38.95,23.3628 +7,121,-0.006,-0.0004,642.21,1587.33,1408.25,21.61,554.3,2387.99,9067.31,47.27,522.07,2388.06,8.4364,393,38.87,23.4142 +7,122,0.0028,-0.0004,642.58,1592.39,1403.24,21.61,554.64,2388.02,9063.65,47.46,521.76,2388.05,8.4226,393,38.82,23.4416 +7,123,-0.0018,0.0,642.56,1582.1,1400.06,21.61,553.78,2388.03,9067.19,47.33,522.12,2388.05,8.411,391,39.02,23.3709 +7,124,-0.0007,-0.0,642.25,1592.99,1408.2,21.61,553.23,2388.04,9072.88,47.42,521.63,2388.02,8.4018,392,38.92,23.3578 +7,125,0.0019,-0.0003,642.62,1584.19,1402.5,21.61,553.96,2387.94,9067.53,47.43,521.7,2388.08,8.3899,392,38.78,23.3456 +7,126,0.0053,0.0002,642.37,1582.3,1397.52,21.61,553.59,2388.02,9070.67,47.42,522.16,2388.02,8.3736,393,38.87,23.34 +7,127,-0.0009,0.0001,642.6,1581.37,1402.39,21.61,553.71,2388.04,9069.47,47.41,521.89,2388.03,8.4232,392,39.05,23.4135 +7,128,-0.0007,0.0001,642.51,1588.19,1396.92,21.61,553.9,2388.04,9072.15,47.39,521.6,2388.01,8.4411,391,38.96,23.3882 +7,129,-0.0018,0.0001,642.42,1584.1,1400.77,21.61,553.95,2388.01,9069.0,47.26,521.83,2388.01,8.4104,391,39.02,23.2436 +7,130,0.0008,-0.0,642.08,1580.49,1406.97,21.61,554.12,2387.96,9070.22,47.24,521.91,2388.01,8.3917,392,38.93,23.3635 +7,131,0.0021,-0.0001,642.88,1591.82,1403.05,21.61,554.21,2388.03,9070.12,47.31,522.42,2388.03,8.3861,392,38.95,23.3784 +7,132,0.0011,0.0004,642.89,1582.94,1408.8,21.61,553.78,2388.04,9066.72,47.43,521.71,2388.06,8.401,393,38.67,23.3978 +7,133,-0.0005,0.0002,642.69,1591.77,1398.76,21.61,554.34,2388.03,9069.62,47.37,521.91,2388.05,8.4459,393,39.08,23.2516 +7,134,-0.0033,0.0003,642.76,1587.73,1406.99,21.61,554.34,2388.07,9077.65,47.14,521.67,2388.09,8.443,393,39.0,23.3091 +7,135,0.0035,-0.0004,642.28,1584.28,1405.56,21.61,553.93,2388.04,9077.44,47.39,521.74,2388.03,8.3877,392,38.95,23.3403 +7,136,0.0002,-0.0005,642.34,1586.39,1405.32,21.61,553.76,2388.1,9076.53,47.46,521.98,2388.02,8.4344,393,38.9,23.4535 +7,137,0.0024,0.0004,642.02,1587.49,1399.57,21.61,553.59,2388.03,9070.37,47.44,521.78,2388.06,8.3974,393,38.87,23.3354 +7,138,0.0012,-0.0002,642.54,1586.83,1410.62,21.61,553.56,2388.07,9088.71,47.28,521.56,2388.06,8.4162,393,38.81,23.3105 +7,139,0.0026,-0.0004,642.07,1582.49,1407.34,21.61,554.32,2388.0,9069.66,47.38,521.52,2388.03,8.3992,392,38.91,23.3539 +7,140,-0.0002,-0.0002,641.71,1588.01,1397.47,21.61,554.19,2388.09,9071.97,47.53,521.99,2387.99,8.4104,392,38.72,23.3992 +7,141,0.0026,0.0004,642.56,1584.06,1405.95,21.61,554.37,2387.99,9062.63,47.49,522.03,2388.08,8.4209,392,38.88,23.3839 +7,142,0.0026,0.0004,642.22,1589.54,1408.17,21.61,554.43,2388.03,9067.92,47.5,522.12,2388.02,8.4346,393,38.76,23.2755 +7,143,-0.0008,-0.0002,642.17,1591.24,1411.66,21.61,553.98,2388.08,9062.89,47.41,521.4,2388.04,8.4113,393,39.01,23.3028 +7,144,-0.0006,-0.0003,642.63,1586.99,1401.53,21.61,553.87,2388.04,9072.82,47.51,521.75,2388.09,8.4157,394,38.87,23.3975 +7,145,0.0034,-0.0001,642.17,1584.67,1398.66,21.61,554.4,2388.07,9068.35,47.44,521.96,2388.08,8.3993,393,39.0,23.2129 +7,146,-0.0003,0.0,642.78,1586.7,1404.55,21.61,554.03,2388.04,9072.51,47.38,521.78,2388.05,8.419,394,38.87,23.2878 +7,147,-0.0013,-0.0002,642.68,1589.94,1408.84,21.61,553.91,2388.11,9073.7,47.38,521.46,2388.06,8.4228,392,38.91,23.3109 +7,148,0.0017,-0.0005,642.4,1587.34,1405.2,21.61,552.93,2388.02,9074.11,47.45,522.17,2388.07,8.4309,393,38.9,23.3841 +7,149,0.0001,0.0001,642.77,1589.04,1406.22,21.61,553.88,2388.07,9073.7,47.46,521.6,2388.07,8.4117,393,38.77,23.3419 +7,150,0.0018,0.0004,642.53,1586.93,1408.45,21.61,553.38,2388.1,9067.38,47.46,521.91,2388.05,8.4593,393,38.81,23.3603 +7,151,0.0001,-0.0001,642.46,1587.8,1399.54,21.61,553.87,2388.06,9076.04,47.61,521.64,2388.01,8.4323,392,38.86,23.3556 +7,152,-0.0002,-0.0005,642.56,1586.09,1397.99,21.61,553.85,2388.09,9072.73,47.36,521.89,2388.01,8.4056,392,38.93,23.3601 +7,153,-0.0003,-0.0002,642.4,1587.05,1402.57,21.61,554.08,2388.05,9069.91,47.54,521.54,2388.0,8.4617,394,38.82,23.3405 +7,154,0.0001,-0.0004,642.29,1592.89,1415.0,21.61,553.96,2388.11,9067.68,47.41,522.12,2388.04,8.4617,393,38.86,23.4095 +7,155,-0.0034,0.0002,642.76,1587.23,1405.93,21.61,554.02,2388.01,9074.46,47.42,521.87,2388.04,8.438,393,39.0,23.3537 +7,156,-0.0006,0.0001,642.48,1583.91,1401.34,21.61,553.66,2388.06,9072.19,47.59,521.92,2388.04,8.4213,395,38.96,23.2509 +7,157,-0.0032,-0.0005,642.3,1589.61,1404.74,21.61,553.46,2388.04,9071.29,47.54,521.3,2388.06,8.4561,393,38.96,23.3419 +7,158,-0.0,0.0001,642.44,1588.62,1403.17,21.61,553.79,2388.09,9070.42,47.59,521.71,2388.07,8.4214,392,38.97,23.2451 +7,159,0.0025,0.0,642.88,1587.63,1405.59,21.61,553.68,2388.08,9062.7,47.62,521.97,2388.04,8.4538,393,38.86,23.2677 +7,160,0.0002,0.0001,642.12,1587.0,1408.8,21.61,553.73,2388.06,9076.13,47.27,521.81,2388.03,8.4317,393,39.0,23.2458 +7,161,0.0001,0.0004,642.2,1592.83,1407.45,21.61,554.02,2388.05,9068.22,47.45,521.95,2388.02,8.4413,393,39.02,23.3433 +7,162,-0.0016,0.0001,642.17,1585.91,1416.62,21.61,554.24,2388.09,9072.74,47.64,522.26,2388.08,8.4535,393,38.67,23.3432 +7,163,0.0001,0.0002,642.44,1594.92,1410.41,21.61,553.87,2388.06,9074.77,47.56,521.35,2388.04,8.4294,393,38.89,23.3671 +7,164,0.0008,-0.0003,642.3,1581.71,1413.34,21.61,553.68,2388.06,9074.82,47.59,521.42,2388.1,8.4141,395,39.16,23.3462 +7,165,-0.0034,0.0002,642.48,1586.57,1408.63,21.61,553.88,2388.05,9067.5,47.34,521.74,2388.11,8.4178,393,39.01,23.3804 +7,166,-0.0024,0.0004,643.11,1585.7,1408.71,21.61,553.31,2388.06,9070.34,47.3,521.61,2388.04,8.4383,393,38.74,23.3879 +7,167,0.0017,-0.0005,642.65,1583.62,1401.69,21.61,554.11,2388.11,9072.18,47.67,521.65,2388.08,8.4419,393,38.9,23.2703 +7,168,-0.0013,0.0,642.23,1591.62,1406.7,21.61,553.21,2388.03,9068.51,47.43,521.35,2388.05,8.4295,393,38.78,23.2428 +7,169,0.0036,-0.0003,642.73,1591.4,1405.6,21.61,554.35,2388.07,9078.0,47.63,522.64,2388.02,8.4133,390,38.93,23.3726 +7,170,0.0011,-0.0003,642.52,1585.68,1410.37,21.61,553.16,2388.08,9067.29,47.26,521.78,2388.05,8.4452,393,38.87,23.3247 +7,171,0.0032,-0.0004,642.58,1589.16,1405.96,21.61,553.5,2388.13,9067.28,47.35,521.78,2388.13,8.4461,393,38.73,23.3403 +7,172,-0.0019,-0.0003,642.92,1595.4,1406.01,21.61,553.69,2388.06,9081.88,47.62,521.78,2388.1,8.445,393,38.76,23.3599 +7,173,0.0008,-0.0005,643.01,1587.73,1414.03,21.61,552.99,2388.07,9076.38,47.5,521.48,2388.08,8.4491,393,38.87,23.2075 +7,174,-0.004,-0.0001,642.49,1586.42,1397.74,21.61,553.78,2388.07,9067.96,47.57,521.19,2388.03,8.4332,391,38.72,23.2779 +7,175,-0.0017,-0.0004,642.68,1595.55,1412.11,21.61,553.42,2388.08,9077.87,47.66,521.59,2388.13,8.4237,394,38.62,23.1631 +7,176,-0.0036,0.0001,642.28,1597.97,1415.24,21.61,553.17,2388.13,9072.06,47.48,521.06,2388.04,8.428,393,38.91,23.2682 +7,177,0.0015,0.0003,642.84,1591.36,1410.93,21.61,553.6,2388.06,9071.16,47.38,521.66,2388.07,8.4442,394,38.81,23.3785 +7,178,-0.0012,0.0002,642.67,1588.09,1411.27,21.61,553.2,2388.09,9076.86,47.49,521.47,2388.09,8.3954,391,38.66,23.3998 +7,179,0.0035,-0.0003,643.0,1591.3,1400.94,21.61,553.07,2388.04,9072.62,47.7,521.34,2388.1,8.4465,393,38.7,23.3864 +7,180,0.0038,0.0,642.74,1591.0,1405.0,21.61,553.18,2388.06,9068.39,47.45,522.0,2388.05,8.4947,393,39.0,23.2174 +7,181,0.0001,-0.0001,642.36,1588.42,1412.01,21.61,553.78,2388.08,9074.8,47.54,521.47,2388.12,8.47,394,38.77,23.2754 +7,182,0.002,0.0001,642.8,1587.9,1408.38,21.61,553.55,2388.07,9063.63,47.54,521.48,2388.08,8.4141,394,38.94,23.2421 +7,183,0.0005,0.0003,642.8,1593.35,1410.52,21.61,552.82,2388.07,9075.35,47.54,521.5,2388.05,8.4391,392,38.92,23.2958 +7,184,-0.0,-0.0001,642.51,1598.98,1411.6,21.61,553.19,2388.1,9068.83,47.31,521.22,2388.08,8.4299,393,38.88,23.2048 +7,185,0.0009,-0.0002,642.78,1592.49,1404.86,21.61,553.48,2388.04,9072.38,47.61,521.51,2388.05,8.4591,394,38.89,23.3153 +7,186,-0.0005,0.0002,642.48,1590.97,1403.32,21.61,553.17,2388.08,9076.96,47.7,521.22,2388.07,8.4367,393,38.76,23.2934 +7,187,0.0012,0.0004,642.86,1592.09,1411.99,21.61,553.52,2388.08,9069.43,47.7,521.34,2388.11,8.4262,393,38.84,23.2253 +7,188,0.0014,0.0,642.9,1595.07,1412.29,21.61,553.51,2388.13,9070.92,47.67,521.14,2388.1,8.4576,394,38.8,23.2395 +7,189,-0.0054,-0.0003,642.8,1591.28,1412.55,21.61,553.24,2388.07,9077.06,47.42,521.13,2388.08,8.4633,393,38.63,23.1979 +7,190,0.0006,-0.0003,642.69,1587.13,1415.28,21.61,553.74,2388.1,9068.88,47.58,521.61,2388.07,8.4669,394,38.96,23.257 +7,191,0.0036,0.0004,642.46,1591.4,1411.57,21.61,553.03,2388.12,9076.52,47.58,520.54,2388.07,8.4436,394,38.7,23.2104 +7,192,0.0011,0.0003,642.86,1591.21,1410.83,21.61,552.67,2388.06,9071.04,47.47,521.58,2388.05,8.436,393,38.69,23.3127 +7,193,-0.0024,-0.0004,642.13,1588.41,1409.17,21.61,553.42,2388.13,9067.94,47.81,521.3,2388.06,8.4052,394,38.75,23.2723 +7,194,-0.0,-0.0002,642.53,1596.68,1405.47,21.61,552.63,2388.07,9076.56,47.47,521.59,2388.13,8.4198,395,38.86,23.2208 +7,195,-0.0003,-0.0004,642.42,1590.85,1412.3,21.61,552.33,2388.06,9072.35,47.66,521.07,2388.09,8.4353,395,38.8,23.2506 +7,196,0.0005,0.0003,642.89,1592.59,1414.59,21.61,553.03,2388.12,9069.95,47.64,520.89,2388.07,8.5004,394,38.67,23.2805 +7,197,0.002,-0.0002,642.72,1596.21,1411.61,21.61,553.37,2388.06,9070.76,47.54,521.09,2388.1,8.4694,395,38.77,23.2351 +7,198,0.0023,-0.0002,642.67,1593.2,1407.03,21.61,552.71,2388.15,9074.19,47.59,521.46,2388.13,8.4257,395,38.63,23.2046 +7,199,0.0023,0.0002,642.5,1595.0,1406.95,21.61,553.53,2388.16,9069.99,47.62,521.57,2388.11,8.4145,395,38.72,23.3473 +7,200,-0.0036,0.0002,642.33,1595.56,1415.32,21.61,553.4,2388.1,9079.46,47.71,520.7,2388.09,8.4652,394,38.85,23.317 +7,201,-0.0036,-0.0004,642.44,1596.61,1410.91,21.61,553.07,2388.08,9073.47,47.44,521.37,2388.11,8.4671,393,38.85,23.1116 +7,202,-0.0043,0.0003,642.91,1598.4,1417.06,21.61,553.13,2388.06,9072.36,47.55,521.1,2388.11,8.4857,393,38.72,23.3375 +7,203,0.0033,-0.0004,642.88,1596.16,1411.74,21.61,552.47,2388.1,9079.01,47.66,521.47,2388.07,8.4414,393,38.89,23.288 +7,204,0.0007,-0.0004,642.8,1597.85,1417.15,21.61,552.96,2388.14,9080.23,47.59,521.02,2388.14,8.5011,394,38.65,23.3043 +7,205,-0.0022,-0.0001,642.78,1590.98,1415.44,21.61,552.95,2388.11,9076.54,47.58,521.62,2388.1,8.4619,393,38.79,23.2074 +7,206,0.0009,-0.0002,643.48,1586.96,1403.14,21.61,553.47,2388.1,9077.9,47.42,520.93,2388.16,8.4322,395,38.8,23.2442 +7,207,-0.0003,0.0001,642.98,1593.97,1413.89,21.61,552.98,2388.1,9075.3,47.81,521.11,2388.08,8.4815,395,38.88,23.3537 +7,208,-0.0007,0.0002,642.81,1590.43,1407.37,21.61,553.58,2388.13,9074.26,47.65,520.94,2388.09,8.4694,395,38.92,23.2286 +7,209,0.002,-0.0005,642.67,1595.73,1418.83,21.61,552.4,2388.13,9074.58,47.72,520.96,2388.09,8.4664,396,38.65,23.3284 +7,210,0.0021,-0.0003,643.04,1595.21,1418.31,21.61,553.14,2388.11,9077.56,47.76,521.08,2388.17,8.461,394,38.77,23.2624 +7,211,-0.0006,0.0002,642.97,1593.87,1419.64,21.61,553.14,2388.08,9070.89,47.58,521.24,2388.14,8.4667,394,38.49,23.2027 +7,212,0.0019,-0.0001,642.93,1594.26,1411.21,21.61,552.58,2388.08,9081.14,47.84,521.24,2388.09,8.4574,395,38.73,23.2246 +7,213,0.0008,-0.0001,642.51,1599.51,1414.91,21.61,553.05,2388.12,9068.6,47.96,521.05,2388.11,8.4807,395,38.56,23.1737 +7,214,0.0022,0.0002,642.87,1586.43,1415.25,21.61,553.41,2388.14,9070.02,47.74,521.44,2388.13,8.4723,395,38.66,23.2265 +7,215,-0.0012,0.0002,642.23,1594.07,1417.42,21.61,552.95,2388.1,9079.45,47.94,521.17,2388.07,8.4582,394,38.66,23.2131 +7,216,-0.0029,0.0004,642.94,1592.54,1418.23,21.61,553.47,2388.14,9070.43,47.78,520.7,2388.15,8.4858,396,38.6,23.2425 +7,217,-0.0024,-0.0004,643.26,1600.79,1418.59,21.61,552.24,2388.18,9070.89,47.71,521.18,2388.13,8.4958,396,38.65,23.1888 +7,218,0.0021,-0.0002,642.93,1583.14,1418.41,21.61,552.67,2388.16,9076.18,47.76,521.2,2388.07,8.4701,395,38.61,23.0657 +7,219,0.0022,0.0003,642.92,1593.78,1417.93,21.61,552.44,2388.16,9067.62,47.83,520.96,2388.13,8.4666,395,38.66,23.182 +7,220,-0.0037,-0.0,642.89,1596.6,1416.42,21.61,553.2,2388.14,9073.62,47.75,520.9,2388.16,8.4495,395,38.72,23.1952 +7,221,-0.0018,-0.0004,643.21,1590.76,1416.66,21.61,552.35,2388.18,9074.2,47.76,521.51,2388.16,8.4509,397,38.72,23.2386 +7,222,0.0023,-0.0005,643.44,1593.45,1416.17,21.61,552.45,2388.12,9078.43,47.89,521.0,2388.14,8.485,395,38.53,23.2318 +7,223,0.0031,0.0004,642.46,1592.69,1411.45,21.61,553.06,2388.14,9079.03,47.95,520.98,2388.1,8.4877,395,38.88,23.1761 +7,224,-0.0021,0.0004,643.34,1599.27,1423.7,21.61,552.49,2388.17,9073.05,47.79,521.02,2388.17,8.4729,395,38.38,23.2119 +7,225,0.0013,-0.0002,643.1,1601.64,1404.63,21.61,552.11,2388.16,9072.91,47.58,520.3,2388.15,8.4919,395,38.67,23.1872 +7,226,-0.0015,-0.0001,642.85,1594.71,1417.37,21.61,552.49,2388.16,9076.72,47.77,520.7,2388.17,8.4716,395,38.57,23.1233 +7,227,0.0004,-0.0001,643.3,1600.96,1416.6,21.61,551.9,2388.17,9080.86,47.98,520.73,2388.17,8.4869,395,38.7,23.2282 +7,228,-0.0016,0.0003,643.59,1592.29,1423.21,21.61,552.01,2388.1,9068.85,47.69,520.44,2388.14,8.4711,393,38.77,23.275 +7,229,-0.0024,-0.0001,643.53,1593.53,1418.82,21.61,552.58,2388.16,9073.5,47.76,520.43,2388.17,8.5182,395,38.69,23.0911 +7,230,-0.001,-0.0004,643.66,1594.24,1418.61,21.61,551.88,2388.12,9077.31,47.86,520.55,2388.12,8.4526,395,38.53,23.1294 +7,231,0.0068,0.0003,643.03,1597.7,1415.67,21.61,553.04,2388.19,9065.62,47.8,520.54,2388.17,8.477,395,38.7,23.1564 +7,232,-0.002,-0.0001,643.48,1596.72,1412.12,21.61,552.42,2388.21,9076.22,47.92,520.45,2388.19,8.4756,396,38.58,23.0741 +7,233,0.0045,0.0002,642.87,1597.06,1420.78,21.61,551.64,2388.11,9072.86,47.88,519.43,2388.16,8.5079,394,38.62,23.2648 +7,234,-0.0021,-0.0002,643.51,1601.02,1424.95,21.61,552.84,2388.16,9080.03,47.83,520.55,2388.22,8.46,396,38.61,23.1713 +7,235,0.0016,-0.0001,643.06,1594.95,1419.33,21.61,552.44,2388.15,9075.23,47.84,520.6,2388.19,8.4973,395,38.68,23.1397 +7,236,0.0011,-0.0003,643.14,1595.7,1417.66,21.61,552.6,2388.16,9079.14,47.91,520.92,2388.18,8.4736,395,38.6,23.1665 +7,237,0.0006,0.0004,643.45,1596.98,1414.51,21.61,551.59,2388.16,9076.52,48.03,520.6,2388.15,8.5253,392,38.47,23.1135 +7,238,0.0022,-0.0005,643.21,1593.11,1419.91,21.61,552.25,2388.19,9076.16,47.89,520.49,2388.12,8.4559,395,38.46,23.1676 +7,239,-0.0016,-0.0001,643.13,1597.49,1427.17,21.61,552.56,2388.21,9073.46,47.94,519.61,2388.17,8.4994,396,38.68,23.2434 +7,240,-0.0017,-0.0,643.32,1597.45,1432.67,21.61,551.48,2388.22,9067.35,47.95,520.18,2388.18,8.4763,395,38.64,23.071 +7,241,0.0013,-0.0002,643.14,1603.37,1431.51,21.61,552.52,2388.18,9075.25,47.95,520.26,2388.24,8.5086,396,38.46,23.1039 +7,242,-0.0007,-0.0005,643.45,1598.75,1420.94,21.61,551.63,2388.18,9069.47,47.82,520.3,2388.23,8.4831,394,38.52,23.1649 +7,243,0.0016,0.0004,643.5,1607.7,1417.37,21.61,551.88,2388.16,9070.96,48.05,520.17,2388.16,8.517,396,38.51,22.9398 +7,244,-0.0012,-0.0001,643.11,1601.18,1428.04,21.61,551.49,2388.19,9075.06,47.94,520.26,2388.17,8.5106,397,38.55,23.1399 +7,245,0.0027,-0.0001,644.0,1596.94,1426.25,21.61,551.82,2388.2,9080.51,47.92,519.86,2388.16,8.5085,396,38.6,23.1415 +7,246,0.0005,0.0002,643.41,1596.23,1433.13,21.61,552.23,2388.22,9075.19,48.16,519.97,2388.2,8.4742,395,38.58,23.0662 +7,247,0.0012,0.0002,643.47,1600.74,1424.71,21.61,551.26,2388.23,9084.92,48.13,520.15,2388.21,8.5149,396,38.62,23.1767 +7,248,-0.0043,-0.0001,643.87,1591.09,1427.14,21.61,552.06,2388.18,9080.02,47.9,519.58,2388.24,8.5117,397,38.38,23.0795 +7,249,0.0017,0.0004,643.13,1598.89,1422.5,21.61,552.73,2388.21,9082.19,48.02,520.01,2388.23,8.4859,396,38.51,23.073 +7,250,0.0036,0.0001,643.94,1598.33,1421.79,21.61,551.2,2388.21,9071.1,48.07,519.54,2388.22,8.4925,397,38.7,23.1371 +7,251,0.0021,-0.0,643.83,1601.42,1427.83,21.61,551.43,2388.25,9081.49,48.03,520.21,2388.23,8.5101,396,38.5,23.0912 +7,252,-0.0005,-0.0003,643.91,1601.87,1436.55,21.61,551.21,2388.24,9074.07,48.3,519.47,2388.22,8.5229,396,38.45,23.1259 +7,253,0.0012,-0.0004,643.53,1596.44,1421.13,21.61,551.61,2388.2,9070.56,48.26,519.5,2388.23,8.5007,397,38.52,23.0652 +7,254,-0.001,-0.0004,643.56,1590.69,1423.7,21.61,551.12,2388.25,9075.33,47.98,519.48,2388.27,8.5627,398,38.63,23.0196 +7,255,0.005,-0.0004,643.45,1606.52,1422.76,21.61,551.17,2388.21,9076.94,48.15,519.88,2388.2,8.5001,395,38.55,23.0458 +7,256,0.0019,0.0001,643.35,1597.88,1428.37,21.61,551.31,2388.22,9074.79,47.96,520.21,2388.23,8.5104,395,38.53,23.126 +7,257,-0.0032,-0.0002,644.27,1602.83,1421.92,21.61,551.28,2388.24,9077.77,48.35,519.65,2388.23,8.5367,396,38.4,23.0286 +7,258,-0.0005,0.0001,643.56,1598.95,1425.91,21.61,551.59,2388.27,9075.18,48.05,519.06,2388.23,8.5369,396,38.5,22.9854 +7,259,0.0043,-0.0001,644.15,1599.33,1435.04,21.61,551.97,2388.19,9075.94,47.97,519.1,2388.24,8.5162,396,38.46,23.0596 +9,10,0.0009,-0.0002,641.77,1580.84,1391.62,21.61,554.37,2388.02,9068.09,47.21,522.48,2388.03,8.4069,391,38.9,23.4672 +9,11,-0.0012,-0.0004,642.33,1581.8,1400.58,21.61,553.61,2388.0,9067.61,47.16,522.75,2387.99,8.3929,391,39.08,23.4228 +9,12,-0.0001,-0.0001,641.63,1584.2,1402.16,21.61,554.36,2387.98,9066.29,47.0,522.56,2388.04,8.4091,392,38.99,23.4246 +9,13,0.003,-0.0003,641.97,1589.32,1399.58,21.61,553.84,2387.99,9062.77,47.11,522.67,2388.01,8.3998,392,38.87,23.516 +9,14,-0.0022,0.0003,642.44,1584.43,1398.28,21.61,554.68,2387.98,9064.45,47.26,522.4,2387.97,8.4069,392,39.01,23.445 +9,15,-0.0048,-0.0001,641.89,1587.29,1394.71,21.61,555.01,2388.01,9069.84,47.11,522.55,2387.94,8.376,392,39.12,23.4519 +9,16,0.0001,0.0005,642.18,1587.42,1400.74,21.61,554.3,2388.04,9066.31,47.16,523.12,2387.97,8.3869,390,38.95,23.393 +9,17,-0.0043,0.0,641.63,1587.14,1395.4,21.61,554.68,2387.96,9062.97,47.15,522.69,2387.97,8.3998,392,39.06,23.3596 +9,18,-0.0013,-0.0001,641.7,1592.2,1396.41,21.61,553.78,2388.03,9063.77,47.06,522.48,2388.0,8.4065,391,39.04,23.3688 +9,19,0.0012,-0.0001,641.73,1579.41,1398.7,21.61,554.76,2388.02,9065.94,47.2,522.09,2387.96,8.4425,391,38.95,23.3515 +9,20,-0.0023,0.0003,642.11,1577.05,1389.2,21.61,555.07,2387.98,9063.07,47.31,522.41,2387.96,8.4309,392,39.09,23.3684 +9,21,-0.0016,-0.0004,642.03,1579.94,1394.42,21.61,554.75,2388.08,9065.62,47.29,522.86,2387.95,8.3922,392,39.06,23.4057 +9,22,-0.0001,-0.0005,642.25,1579.87,1399.51,21.61,554.39,2387.95,9067.21,47.12,522.11,2388.0,8.404,391,38.97,23.4904 +9,23,0.0015,0.0004,641.41,1585.55,1402.96,21.61,554.57,2388.0,9064.76,47.24,522.27,2387.98,8.3777,390,38.89,23.3659 +9,24,0.0035,0.0003,642.04,1585.23,1394.39,21.61,553.95,2388.0,9051.59,47.17,522.36,2388.03,8.3681,389,39.03,23.3478 +9,25,0.0003,0.0001,642.2,1585.38,1397.22,21.61,554.44,2387.96,9067.31,47.14,522.29,2388.0,8.3869,390,39.03,23.4795 +9,26,0.0021,0.0002,642.72,1584.85,1396.74,21.61,555.45,2388.0,9068.74,47.15,522.82,2388.07,8.3875,392,38.94,23.4496 +9,27,0.0022,0.0004,642.55,1593.03,1395.38,21.61,554.34,2387.97,9073.71,47.08,522.77,2387.95,8.3595,392,39.03,23.4669 +9,28,0.001,-0.0001,641.88,1582.39,1396.46,21.61,555.12,2387.95,9064.43,47.35,522.24,2388.02,8.3847,390,39.19,23.494 +9,29,-0.0009,-0.0005,642.17,1578.06,1398.25,21.61,554.2,2387.99,9067.72,47.06,522.32,2387.98,8.3925,392,39.02,23.4314 +9,30,0.0022,0.0004,641.96,1584.82,1396.4,21.61,554.62,2387.97,9069.3,47.17,522.49,2388.01,8.4135,391,39.08,23.4083 +9,31,-0.0001,0.0001,642.33,1589.31,1393.67,21.61,554.49,2387.99,9067.82,47.08,522.58,2388.01,8.4265,391,39.13,23.4235 +9,32,-0.0018,0.0,641.89,1588.4,1390.48,21.61,554.32,2388.05,9064.15,47.44,522.74,2387.98,8.3919,391,38.96,23.4849 +9,33,0.0019,0.0004,642.02,1585.92,1395.64,21.6,554.07,2387.98,9067.78,47.19,522.74,2387.97,8.3858,392,38.84,23.3714 +9,34,-0.0024,0.0004,642.09,1588.32,1405.48,21.61,553.88,2387.98,9053.45,47.1,522.59,2387.98,8.4059,391,39.03,23.4291 +9,35,0.0016,-0.0001,642.02,1589.52,1400.73,21.61,554.69,2387.98,9066.53,47.02,522.59,2388.0,8.4298,391,39.09,23.4587 +9,36,-0.0022,-0.0,641.85,1582.88,1396.31,21.61,553.95,2387.98,9068.19,47.12,522.53,2387.96,8.4095,390,38.94,23.4388 +9,37,-0.0009,-0.0003,642.35,1579.77,1397.08,21.61,553.84,2388.0,9069.05,47.26,522.19,2388.01,8.392,391,38.88,23.3842 +9,38,-0.0012,0.0002,641.74,1590.18,1393.55,21.61,555.04,2387.96,9061.91,47.03,521.87,2387.97,8.3881,392,38.84,23.4311 +9,39,0.0009,0.0003,642.51,1588.38,1400.47,21.61,554.35,2387.99,9061.31,47.2,522.19,2387.96,8.3689,391,39.09,23.425 +9,40,-0.0049,0.0004,642.38,1592.26,1393.79,21.61,554.12,2388.0,9065.3,47.05,522.1,2387.94,8.3714,391,39.07,23.4292 +9,41,0.0009,-0.0002,642.23,1582.98,1392.08,21.61,554.44,2388.0,9060.49,47.13,522.4,2388.01,8.4108,392,39.1,23.3787 +9,42,0.0029,0.0003,642.19,1582.46,1397.76,21.61,554.15,2388.03,9065.46,47.45,521.99,2387.98,8.4152,392,39.14,23.3315 +9,43,-0.0013,-0.0,642.21,1583.62,1395.74,21.6,554.44,2388.0,9062.97,47.16,522.39,2388.01,8.4003,392,39.04,23.4445 +9,44,0.0008,-0.0005,642.03,1576.57,1397.21,21.61,554.0,2387.97,9065.45,47.19,522.58,2387.96,8.4301,391,38.92,23.4561 +9,45,-0.0017,0.0002,641.91,1578.31,1395.2,21.61,554.05,2388.01,9064.45,47.09,522.02,2387.93,8.3795,392,38.99,23.4097 +9,46,0.0003,0.0002,642.02,1576.37,1403.72,21.61,554.78,2387.96,9062.07,47.24,523.04,2388.03,8.4083,392,38.85,23.4921 +9,47,-0.001,0.0001,642.14,1583.6,1401.14,21.61,554.72,2387.97,9064.76,47.17,522.58,2388.02,8.3744,390,38.99,23.4631 +9,48,0.0009,0.0001,642.36,1586.08,1394.15,21.61,554.9,2388.01,9070.4,46.88,523.07,2388.0,8.3843,391,38.92,23.4633 +9,49,0.0016,0.0004,642.42,1580.82,1393.84,21.61,554.33,2388.05,9058.33,47.23,522.77,2388.0,8.3966,393,38.98,23.4048 +9,50,0.0029,0.0,641.95,1585.84,1396.96,21.61,554.37,2388.02,9066.64,47.31,523.02,2388.01,8.421,393,38.99,23.2776 +9,51,-0.001,0.0005,641.85,1590.61,1394.64,21.61,554.39,2388.0,9068.63,47.22,521.79,2387.95,8.4122,391,39.12,23.3401 +9,52,-0.0016,-0.0005,641.79,1586.48,1390.75,21.6,554.92,2388.02,9072.79,47.26,522.06,2388.01,8.3951,391,39.09,23.427 +9,53,-0.0004,-0.0002,641.9,1588.27,1394.15,21.61,554.88,2387.97,9068.24,47.09,522.0,2387.99,8.3714,392,38.99,23.4471 +9,54,-0.0022,0.0004,642.36,1582.51,1389.74,21.61,554.28,2388.01,9072.89,47.23,522.81,2387.98,8.3968,391,39.09,23.4496 +9,55,0.0024,0.0002,642.27,1583.8,1400.69,21.61,554.74,2387.99,9063.78,47.15,522.81,2388.02,8.4109,391,39.02,23.3817 +9,56,-0.0011,-0.0002,642.01,1582.0,1397.74,21.61,554.13,2388.03,9062.3,47.18,522.78,2388.0,8.4563,393,38.92,23.4822 +9,57,-0.0016,0.0001,642.44,1577.63,1398.72,21.61,554.86,2388.06,9068.03,47.12,522.45,2387.99,8.3993,392,39.05,23.3403 +9,58,-0.0028,-0.0005,642.62,1585.2,1402.6,21.61,554.52,2388.05,9060.94,47.27,522.41,2388.01,8.4227,392,38.92,23.4016 +9,59,-0.003,0.0004,642.14,1589.48,1401.5,21.61,554.46,2388.02,9068.72,47.06,522.63,2388.04,8.4091,391,39.11,23.4678 +9,60,-0.0024,0.0001,642.54,1584.68,1398.98,21.61,553.98,2388.01,9068.77,47.33,522.21,2388.0,8.4107,391,38.93,23.4029 +9,61,-0.001,-0.0004,642.27,1582.62,1389.95,21.61,555.0,2388.03,9060.32,47.18,522.54,2388.01,8.4093,392,39.01,23.3036 +9,62,0.0044,-0.0005,642.3,1586.22,1396.13,21.61,554.45,2388.02,9068.29,47.34,521.74,2388.04,8.3948,392,39.05,23.4236 +9,63,0.0005,-0.0002,642.62,1582.67,1393.77,21.61,554.42,2388.03,9068.46,47.19,522.27,2387.89,8.4121,391,38.95,23.3899 +9,64,-0.001,-0.0003,641.99,1584.05,1398.39,21.61,554.98,2387.95,9069.14,47.18,521.97,2388.02,8.3769,391,38.96,23.3703 +9,65,0.0016,0.0003,642.64,1582.06,1400.38,21.61,554.36,2387.98,9070.65,47.31,522.63,2387.95,8.4003,391,39.06,23.3906 +9,66,0.0003,-0.0001,642.2,1585.41,1394.61,21.61,554.37,2388.02,9068.65,47.08,522.31,2388.0,8.4314,392,39.05,23.387 +9,67,0.0017,0.0002,641.9,1586.88,1403.17,21.61,554.07,2388.04,9068.95,47.2,522.56,2387.95,8.4011,393,39.05,23.4275 +9,68,0.0007,0.0003,642.07,1584.94,1399.61,21.61,554.41,2387.99,9065.31,47.19,521.7,2387.97,8.3892,391,38.93,23.4194 +9,69,-0.0003,0.0003,642.04,1584.82,1392.73,21.61,554.73,2388.02,9066.51,47.36,521.99,2387.99,8.4043,392,38.96,23.3616 +9,70,0.0009,-0.0005,641.94,1585.09,1398.8,21.61,553.79,2388.07,9070.96,47.34,522.29,2387.98,8.3855,391,39.17,23.4468 +9,71,-0.0014,0.0003,641.82,1590.96,1407.83,21.61,554.27,2388.03,9065.51,47.39,522.06,2388.01,8.3736,391,38.94,23.3084 +9,72,0.0022,-0.0,641.85,1577.38,1406.79,21.6,554.34,2387.98,9071.52,47.17,522.22,2387.98,8.4274,392,38.9,23.4287 +9,73,0.0,-0.0,641.8,1582.66,1399.71,21.61,554.45,2388.02,9071.69,47.27,521.68,2387.98,8.3972,392,38.96,23.3687 +9,74,-0.0035,0.0003,642.33,1583.15,1400.1,21.6,554.15,2388.0,9067.25,47.14,522.13,2387.98,8.3887,392,38.86,23.5318 +9,75,0.0,0.0001,642.81,1587.78,1406.51,21.6,554.04,2388.03,9065.02,47.26,522.57,2387.94,8.3924,391,39.01,23.3706 +9,76,-0.0018,-0.0003,642.01,1574.3,1400.42,21.61,554.23,2388.03,9068.44,47.24,522.24,2388.04,8.403,391,38.77,23.3159 +9,77,0.0008,-0.0005,642.03,1585.42,1404.25,21.61,554.24,2387.96,9073.93,47.2,522.74,2388.03,8.4063,392,39.03,23.3879 +9,78,-0.0005,-0.0001,641.81,1586.47,1406.3,21.61,554.52,2387.99,9068.45,47.18,522.23,2388.08,8.3749,391,39.09,23.4532 +9,79,-0.0027,-0.0005,642.22,1587.87,1392.83,21.61,554.18,2388.01,9066.73,47.25,522.58,2387.95,8.4097,390,39.0,23.4879 +9,80,-0.0046,-0.0002,641.88,1584.25,1400.68,21.61,554.89,2387.96,9073.04,47.33,522.78,2388.01,8.4186,392,38.99,23.4188 +9,81,0.0001,0.0004,642.16,1586.42,1399.24,21.61,554.03,2388.02,9072.77,47.23,522.25,2388.0,8.4188,392,38.84,23.4484 +9,82,0.001,0.0003,642.17,1585.45,1402.04,21.61,554.26,2387.96,9069.07,47.26,522.01,2388.0,8.4205,392,39.13,23.3747 +9,83,-0.0021,0.0003,641.76,1585.4,1397.5,21.61,554.15,2387.98,9069.92,47.17,521.97,2388.0,8.4005,392,38.83,23.4324 +9,84,-0.0008,-0.0002,642.1,1583.96,1398.43,21.6,555.01,2388.01,9065.65,47.34,522.16,2387.99,8.3936,394,38.87,23.3995 +9,85,-0.0015,-0.0002,641.95,1586.76,1400.9,21.6,553.89,2388.03,9072.14,47.21,522.73,2387.98,8.4401,393,39.02,23.3644 +9,86,-0.0009,0.0003,641.67,1588.86,1403.43,21.6,553.78,2387.98,9066.2,47.31,522.22,2387.96,8.4162,392,39.16,23.4124 +9,87,0.0005,0.0004,642.34,1591.24,1392.08,21.61,553.78,2388.03,9067.77,47.24,522.91,2388.02,8.3987,391,38.99,23.3438 +9,88,-0.0001,-0.0003,641.71,1580.37,1398.54,21.61,553.98,2387.95,9078.18,47.36,522.2,2387.93,8.3972,392,38.97,23.4347 +9,89,-0.0007,0.0003,642.21,1592.17,1399.66,21.61,554.21,2387.99,9071.3,47.15,522.37,2387.99,8.3678,392,39.03,23.3618 +9,90,0.0024,0.0003,642.44,1584.42,1401.57,21.61,554.56,2388.04,9073.48,47.13,522.23,2388.03,8.3955,392,39.06,23.2989 +9,91,0.0008,-0.0003,642.05,1579.7,1405.67,21.61,554.48,2388.04,9074.45,47.26,522.54,2388.03,8.3967,391,38.91,23.3828 +9,92,-0.0007,0.0,642.02,1585.64,1399.92,21.6,554.41,2387.96,9080.53,47.36,522.54,2388.03,8.3487,392,38.97,23.4963 +9,93,0.0005,0.0003,642.08,1591.47,1405.21,21.61,553.49,2388.03,9077.37,47.26,522.51,2387.98,8.3908,390,38.97,23.4075 +9,94,-0.0027,-0.0003,642.05,1593.45,1401.46,21.61,554.6,2387.99,9075.05,47.41,522.31,2387.98,8.3753,392,39.13,23.4523 +9,95,-0.0017,-0.0003,642.38,1585.12,1395.08,21.61,553.67,2388.02,9074.81,47.18,522.39,2388.03,8.4258,392,39.13,23.3849 +9,96,0.001,-0.0001,642.41,1584.72,1397.68,21.61,554.18,2387.96,9068.23,47.35,521.87,2388.01,8.4256,391,39.03,23.4274 +9,97,-0.0021,0.0003,642.41,1586.47,1404.15,21.61,554.51,2387.99,9069.02,47.3,521.99,2388.03,8.387,391,39.09,23.3229 +9,98,-0.001,0.0005,642.75,1586.33,1400.38,21.61,553.98,2388.02,9069.2,47.28,522.05,2387.97,8.4246,393,38.99,23.4708 +9,99,-0.0041,0.0002,642.39,1583.53,1400.32,21.61,554.47,2388.04,9082.33,47.19,522.45,2388.01,8.4133,391,38.79,23.3398 +9,100,-0.0021,0.0003,642.24,1589.51,1394.51,21.61,553.9,2388.01,9079.17,47.12,522.18,2387.98,8.4205,393,38.99,23.4565 +9,101,0.0033,0.0005,642.47,1587.89,1401.94,21.61,554.71,2388.04,9077.43,47.33,521.98,2388.06,8.4567,394,38.99,23.3922 +9,102,0.0002,-0.0001,642.33,1586.42,1396.58,21.61,554.31,2387.98,9076.51,47.3,522.19,2387.96,8.3901,391,38.94,23.3951 +9,103,-0.0011,0.0004,641.93,1590.3,1403.32,21.61,554.04,2387.99,9068.58,47.2,521.86,2387.99,8.4505,390,39.06,23.3906 +9,104,-0.0008,-0.0003,642.35,1588.74,1403.04,21.61,554.32,2387.99,9076.04,47.35,522.2,2388.0,8.397,391,38.9,23.3719 +9,105,0.0037,0.0001,641.81,1590.74,1399.4,21.61,554.71,2388.05,9077.35,47.2,522.21,2387.96,8.4489,393,39.01,23.4281 +9,106,0.0045,0.0003,642.68,1590.52,1401.0,21.61,554.37,2388.02,9078.93,47.33,522.04,2388.0,8.3934,393,38.99,23.5181 +9,107,-0.0014,0.0002,641.9,1582.4,1405.78,21.61,554.79,2387.98,9065.64,47.14,522.06,2387.98,8.4203,391,38.98,23.3048 +9,108,-0.0028,0.0002,642.46,1582.5,1396.02,21.6,554.53,2388.02,9082.82,47.18,522.43,2387.97,8.444,394,38.83,23.5016 +9,109,0.0024,0.0004,642.18,1583.91,1406.15,21.61,554.2,2388.03,9074.04,47.51,522.14,2388.0,8.4282,392,38.88,23.4369 +9,110,-0.0002,-0.0002,642.03,1588.57,1394.19,21.61,553.57,2387.99,9082.4,47.19,522.4,2388.01,8.3732,392,38.88,23.3791 +9,111,-0.0005,0.0002,642.9,1584.82,1398.69,21.6,554.72,2388.0,9075.53,47.03,522.63,2388.03,8.3941,391,38.94,23.3019 +9,112,0.0029,0.0001,642.69,1588.48,1403.69,21.61,554.19,2388.06,9075.18,47.36,522.39,2387.98,8.3856,393,38.85,23.3845 +9,113,-0.0001,-0.0003,642.0,1578.0,1401.6,21.61,554.66,2388.04,9083.15,47.18,521.89,2387.96,8.4436,391,39.0,23.3882 +9,114,0.005,-0.0003,642.03,1588.62,1399.35,21.61,554.06,2388.02,9077.51,47.28,522.36,2388.0,8.4107,393,38.86,23.3366 +9,115,-0.0024,0.0,642.6,1584.83,1400.65,21.61,554.71,2388.01,9079.4,47.24,521.72,2387.99,8.4247,391,38.81,23.4275 +9,116,0.0025,0.0,642.53,1584.24,1386.43,21.61,553.94,2388.0,9084.13,47.24,521.82,2388.03,8.4003,394,38.98,23.3225 +9,117,-0.0024,0.0002,641.76,1588.65,1402.37,21.61,554.35,2388.02,9076.57,47.49,521.9,2387.99,8.3758,393,39.07,23.3912 +9,118,0.0017,-0.0,642.31,1588.73,1412.17,21.61,554.0,2387.97,9086.7,47.16,522.19,2388.0,8.4304,393,38.86,23.3916 +9,119,-0.0034,-0.0002,642.37,1586.73,1397.87,21.61,554.56,2388.02,9079.72,47.12,521.91,2388.0,8.4293,393,38.95,23.4278 +9,120,-0.0011,0.0001,642.01,1580.71,1394.99,21.6,554.4,2388.02,9087.44,47.18,521.88,2388.0,8.4111,394,38.89,23.4211 +9,121,-0.0012,0.0003,642.21,1587.72,1398.53,21.61,554.55,2387.99,9073.08,47.48,521.92,2388.03,8.4736,393,39.03,23.2865 +9,122,-0.0003,-0.0002,642.55,1596.55,1404.44,21.61,553.64,2388.04,9085.01,47.22,522.22,2387.99,8.4564,395,38.92,23.3283 +9,123,-0.0013,-0.0002,642.56,1597.71,1398.36,21.61,553.52,2387.98,9082.43,47.41,522.51,2387.98,8.3994,394,38.93,23.4026 +9,124,-0.0029,0.0003,642.42,1588.05,1396.84,21.61,553.83,2388.02,9086.53,47.52,521.79,2387.98,8.4077,392,38.86,23.3782 +9,125,-0.0037,-0.0005,642.74,1586.93,1402.64,21.6,554.35,2388.05,9081.28,47.31,522.01,2388.0,8.4323,392,38.77,23.4928 +9,126,-0.0015,0.0,642.68,1583.34,1398.03,21.61,553.9,2387.98,9080.82,47.28,521.66,2387.96,8.4223,392,38.99,23.2663 +9,127,-0.0057,0.0004,642.36,1588.29,1403.56,21.61,554.1,2388.04,9084.48,47.25,522.3,2387.96,8.4028,393,39.09,23.3348 +9,128,-0.0057,0.0001,642.43,1589.84,1406.91,21.61,554.93,2388.03,9086.47,47.36,521.64,2388.05,8.4079,392,38.97,23.3642 +9,129,-0.0049,0.0,642.77,1588.02,1399.03,21.61,553.8,2387.99,9082.14,47.4,522.08,2388.02,8.4154,393,38.85,23.4363 +9,130,-0.0014,0.0002,642.6,1589.58,1399.16,21.61,554.4,2387.98,9089.94,47.37,522.07,2387.98,8.408,393,39.02,23.4145 +9,131,-0.0023,0.0003,642.25,1589.06,1395.46,21.61,553.95,2387.98,9086.07,47.43,522.04,2388.01,8.375,394,38.84,23.3274 +9,132,0.0034,-0.0004,642.15,1593.99,1397.84,21.61,553.57,2388.04,9082.92,47.38,522.34,2388.04,8.416,392,38.87,23.306 +9,133,-0.0001,0.0004,642.73,1587.86,1406.84,21.61,554.48,2387.97,9088.3,47.28,521.8,2387.97,8.4072,392,39.06,23.2638 +9,134,0.0033,-0.0004,642.61,1593.65,1408.87,21.61,553.87,2388.01,9091.7,47.26,522.42,2388.02,8.4193,391,38.97,23.3152 +9,135,0.0006,-0.0,642.26,1594.48,1397.92,21.61,553.79,2388.05,9093.5,47.49,522.14,2387.98,8.3921,393,38.95,23.3671 +9,136,-0.0003,0.0003,642.57,1588.21,1405.17,21.61,554.32,2388.03,9093.1,47.44,521.96,2388.06,8.4226,392,38.75,23.3723 +9,137,-0.0048,-0.0001,642.63,1594.85,1404.57,21.61,554.2,2388.02,9092.35,47.26,521.37,2387.97,8.4244,392,38.99,23.3045 +9,138,-0.0023,0.0005,642.6,1590.0,1401.97,21.61,554.07,2387.94,9096.42,47.29,521.83,2387.88,8.4119,391,38.85,23.4244 +9,139,-0.0045,-0.0003,642.67,1593.77,1405.55,21.61,554.29,2388.04,9100.05,47.16,522.16,2387.96,8.4192,393,38.8,23.3646 +9,140,0.0005,-0.0005,642.9,1595.5,1399.53,21.61,553.82,2388.02,9091.95,47.37,521.92,2388.03,8.4102,393,39.06,23.4891 +9,141,-0.002,-0.0001,642.57,1589.27,1402.76,21.61,554.32,2387.98,9094.64,47.29,522.24,2387.96,8.4445,394,38.95,23.2601 +9,142,0.001,-0.0002,642.15,1582.78,1403.63,21.61,554.09,2388.03,9102.75,47.31,521.54,2388.03,8.4111,394,38.87,23.2932 +9,143,-0.0009,-0.0002,642.16,1591.78,1405.24,21.61,554.33,2388.04,9099.46,47.43,522.49,2388.03,8.4191,393,38.86,23.412 +9,144,0.0003,-0.0005,642.58,1593.66,1405.62,21.61,553.87,2387.99,9091.19,47.38,521.85,2388.02,8.4566,391,38.78,23.2728 +9,145,0.0024,-0.0004,642.16,1591.9,1399.45,21.61,554.12,2387.96,9091.96,47.35,521.85,2388.03,8.4392,392,38.86,23.2554 +9,146,0.0006,-0.0005,642.96,1582.97,1405.57,21.61,553.96,2387.99,9095.13,47.5,522.19,2387.98,8.438,392,38.91,23.3391 +9,147,0.002,0.0003,642.18,1588.5,1404.5,21.61,554.07,2387.96,9100.27,47.37,522.08,2387.99,8.4109,394,38.78,23.3047 +9,148,0.0029,-0.0003,641.94,1591.11,1400.75,21.61,553.62,2388.07,9099.55,47.47,521.9,2388.04,8.3997,393,38.77,23.3213 +9,149,-0.0019,0.0004,642.6,1589.07,1401.45,21.61,554.24,2387.99,9106.83,47.05,522.38,2388.03,8.4184,392,38.86,23.3484 +9,150,0.0008,0.0004,642.32,1594.79,1406.44,21.61,553.97,2388.04,9102.61,47.33,521.78,2387.99,8.4054,392,38.98,23.2999 +9,151,-0.0042,-0.0003,641.94,1583.76,1407.19,21.61,553.95,2388.03,9110.49,47.41,522.21,2387.94,8.4205,393,39.1,23.3506 +9,152,-0.0007,-0.0002,642.65,1586.94,1419.46,21.61,554.41,2388.0,9105.06,47.56,522.89,2388.0,8.4164,394,38.89,23.172 +9,153,0.0016,0.0001,642.2,1589.11,1410.85,21.61,553.88,2388.01,9109.33,47.48,521.62,2388.02,8.418,394,38.86,23.2934 +9,154,-0.0013,-0.0004,642.66,1593.14,1405.96,21.61,554.24,2388.02,9102.94,47.37,521.6,2388.03,8.4437,395,38.71,23.2834 +9,155,0.0008,0.0001,642.86,1588.68,1411.51,21.61,553.61,2388.04,9105.08,47.46,522.01,2388.03,8.4114,393,38.89,23.2729 +9,156,-0.0,0.0002,642.68,1585.05,1404.54,21.61,554.5,2388.07,9106.52,47.45,521.33,2388.01,8.4406,394,38.8,23.3428 +9,157,-0.0005,-0.0,642.82,1591.95,1401.39,21.61,554.36,2388.05,9117.58,47.5,522.01,2388.01,8.4341,393,38.86,23.2617 +9,158,0.003,-0.0004,642.61,1594.78,1399.17,21.6,553.56,2387.97,9116.11,47.44,521.89,2388.02,8.4119,392,38.89,23.2962 +9,159,0.0005,0.0003,642.67,1585.67,1401.96,21.61,554.01,2388.04,9115.42,47.41,521.28,2388.01,8.4398,394,38.72,23.4176 +9,160,-0.0026,-0.0003,642.47,1588.7,1407.75,21.61,555.05,2388.02,9116.9,47.49,521.52,2387.99,8.39,394,38.64,23.2255 +9,161,0.0006,0.0001,642.96,1584.58,1412.27,21.61,554.44,2388.01,9111.74,47.44,521.51,2388.01,8.4236,393,38.76,23.2392 +9,162,-0.0019,-0.0003,642.76,1592.35,1411.12,21.61,553.91,2388.02,9115.02,47.65,521.97,2388.02,8.4316,394,39.0,23.2257 +9,163,0.0012,0.0001,642.64,1589.33,1411.84,21.61,553.2,2388.02,9120.72,47.48,522.05,2388.04,8.4667,393,38.75,23.282 +9,164,0.0041,-0.0001,643.05,1596.45,1402.53,21.61,553.77,2388.08,9122.91,47.35,522.3,2387.98,8.4182,392,38.76,23.3422 +9,165,-0.0004,0.0001,642.56,1595.52,1411.15,21.61,553.75,2388.03,9131.26,47.65,521.93,2388.06,8.4529,394,38.9,23.3964 +9,166,0.0015,0.0003,642.96,1592.6,1411.1,21.61,553.73,2387.99,9123.34,47.58,521.47,2387.99,8.4258,393,38.89,23.3474 +9,167,0.0025,-0.0001,642.81,1589.01,1403.24,21.61,554.35,2388.04,9122.81,47.51,520.92,2388.09,8.4609,393,38.8,23.1219 +9,168,0.0015,-0.0003,642.77,1590.97,1411.1,21.61,553.62,2387.98,9131.74,47.51,521.1,2388.05,8.4335,395,38.8,23.3069 +9,169,-0.0033,-0.0002,642.83,1594.76,1404.33,21.61,554.16,2388.03,9128.49,47.39,521.84,2388.01,8.4545,395,38.66,23.2603 +9,170,0.001,-0.0003,642.61,1588.33,1410.55,21.61,553.2,2388.07,9135.12,47.69,521.8,2388.14,8.4699,394,38.8,23.2649 +9,171,0.0024,0.0002,642.34,1587.08,1418.0,21.61,552.79,2388.1,9142.03,47.83,521.36,2388.06,8.4846,393,39.06,23.2852 +9,172,0.0041,0.0004,643.07,1593.98,1410.93,21.61,553.53,2388.01,9133.2,47.58,521.37,2388.08,8.4565,393,38.78,23.2069 +9,173,-0.0029,-0.0004,642.57,1589.82,1403.42,21.61,553.84,2388.04,9131.44,47.51,521.43,2388.07,8.4393,394,38.75,23.2196 +9,174,0.0002,0.0001,642.57,1595.3,1417.95,21.61,553.52,2388.05,9143.61,47.57,520.99,2388.03,8.4596,393,38.73,23.2271 +9,175,0.0023,0.0001,642.89,1595.01,1412.09,21.61,552.79,2388.02,9137.19,47.45,521.28,2388.05,8.4407,393,38.79,23.2424 +9,176,0.001,-0.0001,643.16,1591.56,1408.48,21.61,553.89,2388.01,9139.98,47.6,521.38,2388.01,8.4672,395,38.78,23.2337 +9,177,-0.0047,0.0003,642.83,1595.84,1408.22,21.61,553.54,2388.07,9147.59,47.43,521.46,2388.08,8.4358,396,38.89,23.186 +9,178,-0.0013,-0.0002,643.3,1594.77,1407.18,21.61,552.79,2388.09,9151.39,47.72,521.66,2388.05,8.4521,394,38.72,23.3195 +9,179,0.0007,0.0003,643.01,1600.05,1412.2,21.61,553.9,2388.09,9156.95,47.66,521.22,2388.04,8.4385,394,38.73,23.2207 +9,180,-0.0008,0.0002,643.05,1594.96,1406.19,21.61,553.86,2388.05,9155.81,47.5,521.24,2388.1,8.4948,394,38.48,23.1341 +9,181,-0.0008,-0.0004,643.23,1602.99,1417.63,21.61,553.83,2388.0,9144.98,47.59,520.87,2388.08,8.4468,395,38.91,23.1923 +9,182,0.0002,-0.0004,643.01,1596.98,1416.51,21.61,552.95,2388.11,9162.89,47.59,520.88,2388.1,8.4763,395,38.66,23.1898 +9,183,0.0015,0.0004,643.07,1590.68,1410.37,21.61,552.94,2388.09,9167.16,47.68,521.63,2388.09,8.4718,394,38.61,23.2067 +9,184,-0.0024,-0.0001,643.55,1602.59,1415.55,21.61,553.87,2388.08,9163.47,47.76,521.04,2388.08,8.4605,395,38.62,23.1689 +9,185,0.002,-0.0004,643.2,1601.8,1420.83,21.61,552.81,2388.07,9162.66,47.78,521.04,2388.08,8.5005,393,38.63,23.1598 +9,186,-0.0004,0.0,643.16,1593.59,1415.44,21.61,552.4,2388.06,9171.18,47.66,521.29,2388.05,8.4461,395,38.71,23.1954 +9,187,-0.0022,-0.0,643.55,1607.04,1421.69,21.61,552.45,2388.07,9164.94,47.67,520.93,2388.08,8.4938,395,38.79,23.168 +9,188,-0.006,0.0003,642.83,1601.88,1417.4,21.61,552.83,2388.13,9171.99,47.85,520.79,2388.07,8.4992,395,38.46,23.2898 +9,189,0.0025,-0.0002,642.84,1596.03,1418.62,21.61,552.84,2388.04,9178.37,47.9,521.39,2388.11,8.4522,396,38.64,23.0994 +9,190,-0.0016,0.0002,643.73,1595.56,1417.78,21.61,553.36,2388.12,9188.49,47.92,520.98,2388.1,8.4987,396,38.52,23.1614 +9,191,-0.0001,-0.0001,643.38,1602.92,1423.1,21.61,552.52,2388.12,9183.92,47.89,520.79,2388.1,8.4932,395,38.68,23.2104 +9,192,0.0015,0.0004,643.23,1598.22,1420.21,21.61,552.31,2388.15,9189.49,47.91,520.11,2388.08,8.5037,396,38.68,23.1819 +9,193,-0.0011,-0.0004,643.32,1602.15,1427.4,21.61,552.36,2388.12,9191.59,47.91,520.78,2388.17,8.498,396,38.67,23.0226 +9,194,-0.0001,-0.0,643.13,1599.34,1418.42,21.61,552.36,2388.16,9207.36,48.08,521.07,2388.07,8.4414,396,38.39,23.2319 +9,195,0.0007,0.0001,642.7,1602.99,1431.01,21.61,552.15,2388.09,9205.71,48.04,520.71,2388.13,8.4908,396,38.54,23.1513 +9,196,-0.0018,-0.0001,643.24,1597.81,1424.02,21.61,551.75,2388.12,9199.59,47.85,520.59,2388.07,8.4898,396,38.55,23.0542 +9,197,0.0006,0.0005,643.42,1596.7,1417.01,21.61,552.63,2388.15,9206.31,47.94,520.35,2388.09,8.5095,396,38.51,23.181 +9,198,0.0022,-0.0002,643.46,1599.45,1433.83,21.61,552.86,2388.15,9214.62,47.85,519.86,2388.13,8.5206,397,38.49,23.1286 +9,199,-0.0026,0.0002,643.69,1603.7,1429.19,21.61,551.71,2388.09,9220.88,47.82,520.5,2388.1,8.5282,396,38.4,23.0677 +9,200,-0.0014,-0.0004,643.4,1602.89,1431.95,21.61,552.29,2388.44,9224.87,47.98,520.35,2388.44,8.4968,397,38.43,23.1008 +9,201,-0.0016,0.0004,644.04,1595.36,1428.43,21.61,552.3,2388.5,9239.76,48.11,520.28,2388.56,8.5156,399,38.45,23.0284 +10,10,-0.0025,-0.0001,642.02,1581.9,1398.55,21.61,555.23,2388.0,9052.61,47.12,522.25,2388.0,8.3644,392,38.93,23.3787 +10,11,0.0002,0.0005,642.48,1585.62,1400.69,21.61,553.8,2388.02,9047.32,47.16,522.62,2387.97,8.3862,391,38.86,23.4401 +10,12,0.0017,0.0001,642.2,1591.59,1396.26,21.61,554.67,2388.0,9049.4,46.99,522.68,2387.99,8.3809,392,39.03,23.4179 +10,13,0.0022,0.0,641.98,1578.1,1395.18,21.6,554.77,2387.99,9048.49,47.18,522.03,2387.99,8.3773,391,38.89,23.3528 +10,14,0.0013,0.0005,642.03,1583.94,1400.37,21.61,553.95,2388.06,9043.1,47.09,522.28,2388.02,8.3997,393,39.12,23.3564 +10,15,-0.0074,0.0001,642.3,1586.21,1393.99,21.61,554.72,2388.02,9050.98,47.18,522.69,2388.02,8.4346,393,39.0,23.4487 +10,16,0.0027,-0.0003,641.87,1589.94,1397.33,21.6,554.65,2388.01,9052.18,47.06,522.35,2388.02,8.3577,392,39.0,23.4001 +10,17,-0.0014,0.0003,641.79,1585.44,1400.99,21.61,554.62,2387.99,9053.78,47.03,522.61,2388.03,8.4136,392,39.05,23.403 +10,18,-0.002,0.0001,641.87,1580.13,1395.47,21.61,554.67,2388.03,9053.77,47.32,522.07,2388.0,8.3947,392,39.12,23.3682 +10,19,0.001,0.0002,642.29,1589.25,1396.14,21.6,554.48,2387.99,9058.24,47.11,522.27,2388.01,8.3858,391,39.14,23.4496 +10,20,0.0009,0.0002,641.88,1583.88,1397.1,21.61,554.12,2387.98,9047.22,47.23,522.42,2388.05,8.3966,392,39.04,23.4002 +10,21,0.0047,-0.0004,642.14,1580.79,1399.2,21.61,554.68,2388.01,9050.5,47.17,522.0,2388.0,8.4168,391,38.88,23.4053 +10,22,0.001,-0.0001,642.28,1588.92,1397.3,21.61,554.96,2387.99,9048.1,47.14,522.04,2388.01,8.3823,393,39.07,23.5493 +10,23,-0.0035,0.0003,642.36,1589.48,1395.85,21.61,554.58,2388.0,9047.9,47.18,522.35,2387.98,8.4085,392,38.87,23.4251 +10,24,-0.0047,-0.0004,642.0,1583.85,1393.75,21.61,554.92,2388.06,9062.47,47.33,522.84,2387.99,8.3758,391,39.11,23.4183 +10,25,-0.0036,0.0003,642.76,1581.08,1406.96,21.61,555.22,2388.01,9060.43,47.13,522.04,2387.96,8.4141,391,39.05,23.4275 +10,26,0.0008,0.0002,642.48,1590.13,1392.6,21.6,555.23,2388.06,9065.05,47.12,522.41,2388.03,8.4004,392,39.05,23.4433 +10,27,0.0013,0.0004,642.17,1582.59,1396.89,21.61,553.83,2388.05,9057.19,47.19,522.54,2387.99,8.4325,392,38.84,23.3362 +10,28,0.0007,0.0001,641.74,1585.77,1392.56,21.61,555.02,2387.98,9062.96,47.13,522.41,2387.99,8.3943,391,39.43,23.4076 +10,29,-0.0002,0.0003,641.47,1583.06,1396.87,21.61,555.42,2388.03,9056.01,47.01,521.41,2388.03,8.3982,391,39.19,23.4753 +10,30,0.0052,-0.0002,641.9,1587.36,1402.48,21.61,554.46,2388.02,9050.98,47.31,522.49,2388.0,8.3667,390,38.96,23.4173 +10,31,0.0024,0.0003,642.2,1586.25,1398.36,21.61,554.78,2388.0,9060.45,47.07,522.6,2387.98,8.4126,391,38.94,23.53 +10,32,-0.0016,-0.0002,641.84,1586.55,1392.5,21.61,554.77,2388.04,9052.01,47.09,522.38,2388.04,8.3925,391,38.87,23.3929 +10,33,0.0013,0.0001,642.55,1582.9,1396.54,21.61,554.63,2387.97,9057.24,47.16,522.44,2388.06,8.3916,392,39.13,23.4095 +10,34,0.0028,0.0002,642.52,1582.14,1397.64,21.61,554.21,2388.02,9049.47,47.3,522.3,2388.06,8.4214,390,39.0,23.5233 +10,35,-0.0017,0.0001,642.0,1585.28,1399.6,21.6,554.18,2388.0,9050.98,47.01,522.79,2388.03,8.404,392,38.89,23.4587 +10,36,-0.0021,0.0001,641.46,1580.69,1396.29,21.61,554.43,2388.01,9055.77,47.12,521.94,2388.01,8.3686,392,38.99,23.4019 +10,37,0.0026,0.0002,641.97,1575.6,1398.36,21.61,554.34,2388.0,9050.57,47.19,522.0,2387.99,8.3769,392,39.08,23.4904 +10,38,-0.0003,0.0004,642.2,1589.84,1397.83,21.61,555.12,2388.01,9054.18,47.29,522.7,2388.02,8.4265,390,39.13,23.3119 +10,39,-0.0019,-0.0002,642.78,1586.67,1390.9,21.61,554.76,2388.04,9051.09,47.09,522.74,2388.01,8.434,390,39.11,23.4868 +10,40,-0.0009,-0.0002,642.12,1583.04,1393.76,21.61,554.21,2388.07,9057.71,47.15,522.46,2388.02,8.4005,391,39.24,23.4566 +10,41,-0.0044,0.0003,641.64,1589.84,1393.32,21.61,554.62,2387.99,9060.44,47.2,522.13,2388.04,8.3954,392,39.02,23.4643 +10,42,0.0001,0.0002,641.48,1579.48,1398.05,21.61,554.76,2388.04,9053.26,47.11,522.59,2387.99,8.4149,392,39.09,23.4383 +10,43,0.002,-0.0,642.67,1571.04,1401.83,21.6,554.0,2388.06,9058.96,47.1,522.41,2388.0,8.3808,390,39.08,23.4559 +10,44,-0.0003,0.0003,642.14,1580.44,1399.42,21.61,554.22,2388.01,9048.6,47.16,522.19,2388.02,8.4043,391,39.08,23.4762 +10,45,-0.0002,0.0005,642.03,1580.26,1398.18,21.61,554.73,2388.01,9051.45,47.21,522.61,2388.06,8.4005,391,38.87,23.5226 +10,46,-0.0035,-0.0002,642.03,1587.64,1398.27,21.61,555.18,2387.99,9058.83,47.15,522.55,2388.0,8.4128,393,38.9,23.4497 +10,47,0.0018,-0.0004,642.08,1577.61,1393.94,21.61,554.03,2388.06,9056.99,47.08,522.52,2388.0,8.3769,390,38.87,23.4684 +10,48,0.0016,-0.0003,641.97,1583.8,1402.0,21.61,554.64,2387.98,9056.79,47.05,522.61,2387.99,8.3727,391,39.04,23.3365 +10,49,0.0035,0.0,642.24,1580.77,1398.39,21.6,554.84,2387.97,9054.18,47.22,522.46,2387.98,8.4097,392,38.99,23.4203 +10,50,0.001,0.0005,641.87,1585.37,1400.5,21.61,554.45,2388.0,9053.16,46.96,521.95,2388.04,8.4012,392,39.08,23.284 +10,51,0.0009,0.0004,642.2,1581.49,1395.73,21.61,554.68,2388.05,9054.29,47.21,521.94,2387.99,8.3834,392,38.95,23.4952 +10,52,0.0004,-0.0002,641.76,1588.52,1401.12,21.61,554.26,2387.99,9051.13,47.19,522.62,2388.04,8.4213,392,38.97,23.3672 +10,53,-0.002,0.0,641.76,1590.49,1397.38,21.61,554.83,2387.99,9051.82,47.37,521.88,2388.01,8.4318,391,39.04,23.4324 +10,54,0.0014,0.0004,641.84,1584.1,1402.76,21.61,554.51,2388.02,9051.83,47.08,522.11,2388.04,8.4085,393,39.02,23.5017 +10,55,-0.0007,0.0003,641.76,1577.97,1398.77,21.61,553.48,2388.0,9057.54,47.19,522.52,2388.07,8.4008,390,39.15,23.411 +10,56,-0.0013,0.0003,642.21,1586.45,1396.86,21.61,555.25,2388.01,9053.77,47.34,522.74,2388.02,8.3742,391,39.01,23.4886 +10,57,-0.0006,0.0004,641.82,1586.01,1400.77,21.61,554.07,2388.01,9054.63,47.37,522.27,2387.97,8.3279,391,38.99,23.5059 +10,58,-0.0009,-0.0001,642.15,1582.48,1398.42,21.61,554.3,2387.96,9062.29,47.11,521.66,2388.05,8.4264,391,39.06,23.4623 +10,59,0.0005,0.0002,642.3,1592.5,1401.01,21.6,553.85,2388.02,9058.17,47.16,522.12,2388.04,8.4061,392,38.96,23.3828 +10,60,-0.0003,0.0004,642.04,1584.0,1402.06,21.61,554.41,2388.09,9055.46,47.16,521.63,2387.94,8.3983,391,39.11,23.3808 +10,61,-0.0019,0.0004,642.28,1581.82,1393.03,21.6,554.39,2388.03,9057.65,47.17,522.37,2387.98,8.3614,391,38.96,23.4592 +10,62,0.0008,-0.0002,642.52,1584.46,1400.1,21.61,554.15,2388.05,9057.31,47.1,522.29,2388.03,8.4175,392,39.14,23.3774 +10,63,0.0009,-0.0,641.54,1584.86,1397.06,21.61,554.3,2388.01,9054.67,47.18,521.81,2388.0,8.3939,393,38.96,23.347 +10,64,-0.0012,0.0004,642.17,1588.3,1398.52,21.61,554.38,2388.06,9057.56,47.14,522.32,2387.99,8.3747,389,39.0,23.3957 +10,65,-0.0004,-0.0003,642.34,1583.08,1400.65,21.61,554.44,2388.05,9055.08,47.22,522.2,2388.09,8.4073,390,39.11,23.4998 +10,66,0.0009,0.0002,641.95,1588.58,1399.24,21.61,554.45,2388.03,9049.55,47.35,522.43,2388.01,8.3896,391,39.08,23.2852 +10,67,-0.002,0.0002,642.04,1589.24,1407.4,21.6,555.01,2388.03,9053.21,47.15,522.4,2388.03,8.3763,390,39.15,23.3072 +10,68,0.0005,0.0005,641.8,1589.24,1404.08,21.61,554.6,2388.04,9057.53,47.15,522.45,2388.04,8.4128,393,39.07,23.4226 +10,69,0.001,-0.0002,642.21,1580.5,1393.64,21.61,554.58,2388.01,9062.67,47.35,522.4,2387.99,8.3909,392,38.98,23.3893 +10,70,0.0005,0.0004,642.01,1581.0,1395.29,21.61,554.21,2388.01,9051.08,47.36,522.16,2388.08,8.4323,391,38.95,23.4108 +10,71,0.0033,0.0005,641.76,1583.8,1394.25,21.61,554.25,2388.04,9056.84,47.32,522.16,2388.05,8.3968,392,38.95,23.4043 +10,72,-0.0035,0.0005,642.18,1589.95,1404.12,21.61,554.18,2388.07,9051.96,47.28,522.41,2388.02,8.4125,391,39.03,23.4884 +10,73,-0.0012,0.0004,641.96,1587.22,1401.15,21.61,554.78,2387.99,9059.35,47.13,522.0,2388.07,8.4101,392,39.03,23.3465 +10,74,0.0023,-0.0004,642.17,1588.49,1399.61,21.61,553.9,2387.99,9051.02,47.29,522.39,2388.01,8.3907,391,39.15,23.4227 +10,75,-0.0034,0.0005,642.01,1583.19,1394.16,21.6,554.36,2388.06,9052.84,47.4,522.1,2388.05,8.3964,391,39.04,23.4063 +10,76,-0.0016,-0.0004,641.99,1584.28,1397.09,21.61,554.1,2388.03,9059.45,47.22,522.23,2388.02,8.3948,392,38.92,23.3491 +10,77,-0.0023,0.0,642.4,1582.58,1405.17,21.61,553.99,2388.06,9056.4,47.11,522.27,2388.04,8.4383,390,39.21,23.4455 +10,78,-0.001,0.0001,642.24,1581.58,1398.63,21.61,554.52,2388.01,9056.86,47.08,522.11,2388.0,8.3686,393,38.96,23.3141 +10,79,-0.0022,-0.0002,642.02,1580.75,1400.71,21.61,554.43,2388.02,9058.64,47.15,522.25,2388.09,8.3921,393,39.06,23.402 +10,80,0.0005,0.0003,642.1,1582.28,1398.55,21.61,554.4,2387.96,9060.09,47.25,522.65,2388.01,8.3808,392,38.99,23.4124 +10,81,-0.0001,0.0003,641.88,1586.24,1398.36,21.61,555.04,2388.01,9051.93,47.37,522.78,2388.03,8.4191,392,39.12,23.3725 +10,82,-0.0012,-0.0003,642.19,1585.16,1397.04,21.61,554.45,2388.01,9054.58,47.37,522.23,2388.09,8.3831,393,38.91,23.4507 +10,83,0.0049,-0.0,641.98,1589.84,1406.27,21.61,554.32,2388.04,9064.59,47.25,521.43,2388.01,8.405,393,39.13,23.3634 +10,84,0.0062,-0.0001,642.27,1585.49,1397.59,21.61,554.37,2388.02,9049.35,47.2,522.24,2388.13,8.4156,391,39.02,23.4405 +10,85,0.0022,0.0003,642.01,1590.1,1391.74,21.61,553.68,2388.05,9059.52,47.07,521.95,2388.0,8.4053,393,38.85,23.3716 +10,86,-0.0007,0.0004,641.96,1583.55,1404.97,21.61,554.5,2388.05,9057.59,47.28,522.32,2388.06,8.4102,391,39.02,23.4268 +10,87,0.0002,-0.0002,642.37,1586.85,1403.75,21.61,554.47,2388.01,9057.13,47.34,521.97,2388.06,8.3795,393,39.08,23.4142 +10,88,-0.003,0.0001,642.71,1585.21,1400.55,21.61,554.17,2388.12,9055.67,47.41,521.89,2388.11,8.4272,391,39.1,23.438 +10,89,0.0001,0.0005,641.38,1590.93,1390.62,21.61,554.48,2388.05,9063.21,47.38,522.2,2388.04,8.4068,391,38.97,23.3878 +10,90,-0.0011,-0.0003,641.95,1592.95,1397.14,21.6,554.19,2388.02,9061.75,47.18,522.03,2388.0,8.3906,390,39.15,23.3961 +10,91,0.0005,-0.0001,642.52,1586.78,1400.69,21.61,554.7,2388.08,9060.54,47.34,521.86,2387.99,8.3872,391,38.87,23.482 +10,92,0.0041,0.0,641.98,1577.63,1399.88,21.61,554.59,2388.01,9054.93,47.11,522.0,2388.04,8.4008,390,38.97,23.3861 +10,93,-0.0028,0.0005,641.98,1584.79,1397.2,21.61,553.9,2388.07,9054.82,47.28,521.96,2388.03,8.4436,391,38.87,23.3703 +10,94,0.003,-0.0003,642.06,1582.08,1393.72,21.61,554.45,2387.99,9057.54,47.38,522.49,2387.99,8.4245,391,39.16,23.3878 +10,95,0.0016,0.0,642.2,1584.36,1403.99,21.61,554.39,2388.05,9052.77,47.33,522.26,2388.0,8.401,391,39.02,23.3446 +10,96,0.0004,0.0003,642.09,1585.58,1411.03,21.61,554.38,2388.0,9059.49,47.23,522.21,2388.05,8.4467,393,39.12,23.4229 +10,97,0.0013,0.0003,641.85,1577.04,1401.74,21.61,553.86,2388.03,9064.75,47.31,522.13,2388.08,8.3906,391,38.97,23.3372 +10,98,0.0028,0.0003,642.17,1584.95,1396.65,21.61,554.22,2387.97,9058.61,47.35,522.03,2388.08,8.43,392,39.03,23.3509 +10,99,0.0006,-0.0004,641.76,1591.08,1396.87,21.61,554.62,2388.02,9057.57,47.2,522.05,2388.06,8.3935,390,38.99,23.4015 +10,100,-0.004,0.0002,641.88,1584.72,1400.67,21.61,554.61,2388.02,9059.06,47.33,522.25,2388.05,8.4226,392,39.0,23.3896 +10,101,-0.0027,0.0002,641.86,1589.45,1400.21,21.61,554.57,2388.02,9063.24,47.08,522.56,2388.05,8.3962,391,39.02,23.3689 +10,102,0.001,-0.0001,642.25,1583.63,1394.62,21.61,553.74,2387.99,9055.62,47.27,522.74,2388.07,8.4215,391,39.13,23.3827 +10,103,0.0024,0.0005,642.16,1582.72,1396.52,21.61,552.98,2387.96,9059.71,47.3,522.45,2387.99,8.3673,393,39.24,23.3669 +10,104,-0.0011,-0.0003,642.3,1580.41,1404.78,21.61,554.25,2388.02,9059.65,47.33,521.71,2388.1,8.399,391,38.99,23.3468 +10,105,0.002,-0.0003,642.75,1586.26,1401.84,21.61,554.06,2388.01,9045.99,47.28,522.03,2388.02,8.417,390,38.92,23.4241 +10,106,-0.0018,-0.0,642.16,1590.2,1402.81,21.61,554.91,2388.03,9060.78,47.27,522.21,2388.03,8.3985,393,38.98,23.434 +10,107,0.0036,0.0001,642.02,1581.22,1397.62,21.61,554.11,2388.03,9057.01,47.34,522.07,2388.05,8.3942,393,38.86,23.4195 +10,108,-0.0014,-0.0004,642.3,1583.84,1401.12,21.61,554.92,2388.08,9053.29,47.21,521.88,2388.04,8.4003,392,38.9,23.3515 +10,109,-0.0007,0.0004,642.28,1587.71,1394.11,21.61,554.48,2388.08,9061.51,47.24,521.9,2388.02,8.4071,391,39.11,23.4203 +10,110,0.001,0.0001,642.12,1579.01,1391.63,21.61,553.8,2388.02,9064.12,47.28,522.01,2388.05,8.3784,392,38.77,23.2628 +10,111,-0.0064,-0.0001,642.72,1587.53,1401.29,21.61,554.4,2388.06,9053.74,47.32,521.85,2388.02,8.4018,393,38.85,23.3332 +10,112,0.0038,-0.0,642.31,1584.42,1395.02,21.61,554.35,2388.06,9069.51,47.47,522.16,2388.04,8.4453,391,38.84,23.3309 +10,113,-0.0009,0.0004,642.25,1583.11,1405.91,21.61,554.39,2388.08,9061.95,47.12,522.21,2388.02,8.4206,392,38.94,23.4222 +10,114,-0.0017,-0.0002,642.21,1584.86,1404.12,21.61,553.97,2388.02,9056.34,47.5,521.97,2388.05,8.3965,390,39.12,23.4305 +10,115,-0.0029,-0.0001,642.38,1581.62,1398.42,21.61,553.87,2388.08,9057.92,47.36,521.82,2388.07,8.4124,393,39.02,23.3331 +10,116,-0.0045,-0.0004,641.97,1590.32,1395.43,21.61,554.09,2388.04,9065.54,47.29,522.37,2388.06,8.4065,392,39.01,23.4308 +10,117,-0.0005,0.0004,642.24,1582.51,1400.54,21.61,554.26,2388.03,9063.34,47.41,521.92,2388.06,8.3974,393,39.02,23.4015 +10,118,0.0028,-0.0003,642.43,1592.63,1398.75,21.61,554.21,2388.04,9059.45,47.26,521.83,2388.04,8.4064,394,38.95,23.3918 +10,119,0.0006,-0.0001,641.95,1582.24,1407.73,21.61,554.16,2388.05,9062.56,47.25,522.14,2388.05,8.4205,393,39.05,23.405 +10,120,-0.0013,-0.0002,641.49,1587.93,1407.15,21.61,553.94,2388.07,9058.97,47.33,522.05,2388.07,8.4094,392,38.78,23.3621 +10,121,-0.0018,-0.0003,642.33,1585.48,1400.88,21.61,554.63,2388.06,9060.65,47.23,522.2,2388.05,8.3756,393,39.07,23.3001 +10,122,-0.0018,-0.0001,642.23,1589.03,1401.57,21.61,553.27,2388.1,9064.84,47.39,521.7,2388.05,8.4063,393,39.04,23.4073 +10,123,-0.002,-0.0003,642.45,1585.48,1398.32,21.61,553.6,2387.98,9057.61,47.22,522.01,2388.06,8.4217,392,38.97,23.349 +10,124,0.002,-0.0004,642.8,1586.84,1398.1,21.61,553.94,2388.02,9060.64,47.35,521.85,2388.07,8.3927,394,39.03,23.4573 +10,125,-0.0006,-0.0003,642.14,1583.06,1403.73,21.61,554.05,2388.02,9058.95,47.25,521.14,2388.03,8.4294,392,39.0,23.4689 +10,126,0.0009,0.0005,642.36,1590.39,1403.2,21.61,553.62,2388.07,9061.52,47.29,522.07,2388.08,8.4022,392,39.05,23.2746 +10,127,-0.0015,0.0002,642.5,1586.52,1407.6,21.61,553.69,2388.09,9061.29,47.28,521.77,2388.04,8.4408,391,38.86,23.4063 +10,128,-0.0022,0.0003,642.54,1590.45,1406.54,21.61,554.34,2388.08,9062.44,47.32,522.52,2388.06,8.4381,393,38.83,23.278 +10,129,-0.001,-0.0,642.4,1588.18,1409.07,21.61,553.97,2388.0,9064.53,47.53,522.08,2388.03,8.447,394,38.77,23.42 +10,130,0.0033,-0.0003,642.68,1593.28,1402.57,21.61,553.71,2388.02,9060.81,47.36,521.67,2388.09,8.4216,393,38.98,23.2849 +10,131,-0.0038,-0.0,642.33,1587.08,1406.11,21.61,554.29,2388.05,9056.51,47.31,522.2,2388.04,8.4148,393,38.91,23.3875 +10,132,-0.0006,-0.0002,642.24,1592.85,1399.05,21.61,554.65,2388.04,9062.62,47.28,521.88,2388.03,8.4272,392,38.91,23.2849 +10,133,-0.0004,0.0005,642.29,1587.36,1401.1,21.61,554.14,2388.06,9068.2,47.34,521.5,2388.04,8.426,391,38.87,23.2754 +10,134,0.001,0.0002,642.39,1579.75,1405.37,21.61,554.64,2388.03,9068.78,47.33,521.93,2388.09,8.4142,391,38.79,23.3171 +10,135,0.0017,-0.0004,643.1,1592.83,1404.34,21.61,554.09,2388.02,9061.98,47.25,521.72,2388.04,8.4204,392,38.94,23.4018 +10,136,0.0017,-0.0001,642.33,1582.1,1406.33,21.61,554.32,2388.05,9070.58,47.37,521.64,2388.02,8.4042,392,38.83,23.2836 +10,137,0.0005,-0.0003,641.63,1586.88,1401.27,21.61,553.34,2388.08,9064.47,47.36,522.03,2388.03,8.4356,393,38.79,23.3492 +10,138,-0.0005,0.0003,642.49,1592.4,1398.91,21.61,553.86,2388.07,9062.47,47.39,522.14,2388.06,8.4093,393,38.97,23.2848 +10,139,-0.0039,0.0002,642.13,1588.71,1398.62,21.61,553.22,2388.07,9064.67,47.23,521.7,2388.08,8.4271,393,39.03,23.365 +10,140,0.0012,0.0004,642.77,1587.24,1404.24,21.61,554.18,2388.06,9061.54,47.5,522.31,2388.07,8.4322,392,38.83,23.2991 +10,141,-0.0026,-0.0003,642.71,1581.51,1403.74,21.61,554.28,2388.07,9066.81,47.36,521.84,2388.1,8.4452,393,38.93,23.2287 +10,142,0.0023,0.0003,642.73,1585.04,1409.85,21.61,553.99,2388.04,9066.22,47.42,521.59,2388.09,8.4151,392,39.19,23.3992 +10,143,-0.0042,0.0003,642.7,1589.44,1396.72,21.61,553.46,2388.06,9066.46,47.33,521.63,2388.06,8.3714,392,38.92,23.3964 +10,144,-0.0021,-0.0002,642.06,1588.22,1408.86,21.61,553.87,2388.13,9064.7,47.24,521.68,2388.07,8.4367,393,38.9,23.3516 +10,145,0.0013,0.0005,641.86,1594.02,1405.49,21.61,553.08,2388.02,9061.74,47.25,521.86,2388.08,8.4073,394,38.86,23.3025 +10,146,0.0033,0.0003,642.52,1590.73,1402.77,21.61,554.35,2388.1,9063.19,47.48,521.82,2388.07,8.4293,393,39.0,23.2802 +10,147,0.0021,0.0002,642.2,1587.83,1406.56,21.61,553.66,2388.16,9061.32,47.34,521.91,2388.1,8.3949,393,38.87,23.272 +10,148,0.0007,-0.0003,642.71,1589.59,1405.34,21.61,553.95,2388.06,9060.62,47.5,521.46,2388.07,8.4193,394,39.01,23.2474 +10,149,0.0018,-0.0004,642.25,1583.78,1412.16,21.61,553.25,2388.04,9072.53,47.4,521.75,2388.03,8.4226,392,39.01,23.3276 +10,150,0.0006,-0.0,642.04,1585.1,1404.69,21.61,553.27,2388.09,9062.79,47.14,521.96,2388.01,8.4132,392,38.9,23.3295 +10,151,0.0035,-0.0,642.24,1585.86,1404.88,21.61,553.78,2388.06,9069.16,47.44,521.09,2388.07,8.4209,393,38.79,23.4082 +10,152,0.0008,0.0004,643.25,1588.78,1405.32,21.61,553.65,2388.06,9067.22,47.46,521.32,2388.06,8.4394,391,38.76,23.3469 +10,153,0.0035,-0.0,641.89,1582.1,1405.5,21.61,553.75,2388.11,9072.54,47.39,521.59,2388.01,8.4277,393,38.74,23.2773 +10,154,-0.0026,0.0,642.02,1581.45,1402.71,21.61,554.41,2388.03,9076.69,47.52,521.92,2388.07,8.413,391,38.94,23.2698 +10,155,-0.0059,-0.0003,642.79,1583.61,1408.72,21.61,553.47,2388.04,9065.61,47.54,521.11,2388.05,8.3938,395,38.79,23.3395 +10,156,-0.0024,0.0005,642.78,1595.17,1407.74,21.61,552.67,2388.04,9064.99,47.42,521.56,2388.07,8.4413,392,38.73,23.317 +10,157,0.0023,0.0003,642.53,1589.43,1416.64,21.61,553.41,2388.09,9076.68,47.46,521.88,2388.03,8.469,394,38.95,23.359 +10,158,-0.0018,0.0002,643.13,1588.54,1408.22,21.61,552.72,2388.06,9071.61,47.72,521.22,2388.09,8.38,395,38.72,23.3428 +10,159,-0.002,0.0001,642.89,1583.15,1402.67,21.61,553.4,2388.09,9069.98,47.58,521.42,2388.08,8.4525,394,38.94,23.2766 +10,160,0.003,-0.0004,642.65,1590.58,1413.52,21.61,553.69,2388.11,9071.7,47.64,521.65,2388.05,8.4452,392,38.75,23.341 +10,161,-0.0,0.0001,642.56,1589.92,1407.85,21.61,553.41,2388.1,9072.86,47.49,521.38,2388.08,8.4318,393,38.93,23.4176 +10,162,-0.0023,-0.0001,642.9,1592.33,1402.84,21.61,553.92,2388.08,9069.79,47.65,521.46,2388.11,8.4198,394,38.89,23.3038 +10,163,-0.0005,0.0003,642.9,1588.41,1408.02,21.61,553.58,2388.09,9071.34,47.59,521.69,2388.14,8.4272,394,38.67,23.2768 +10,164,0.0009,-0.0003,643.22,1590.27,1410.26,21.61,553.41,2388.12,9074.86,47.58,521.06,2388.06,8.472,394,38.66,23.3359 +10,165,-0.0033,-0.0004,642.72,1577.39,1404.07,21.61,553.15,2388.07,9070.38,47.75,521.27,2388.07,8.4232,392,38.93,23.3933 +10,166,0.0033,0.0,643.41,1589.38,1414.65,21.61,553.55,2388.09,9074.8,47.52,521.37,2388.09,8.4905,394,38.89,23.2987 +10,167,-0.0005,-0.0004,642.85,1593.63,1407.49,21.61,553.53,2388.05,9076.41,47.69,521.16,2388.11,8.449,392,38.82,23.1952 +10,168,0.0011,0.0004,642.85,1593.11,1405.85,21.61,553.0,2388.06,9070.01,47.63,521.56,2388.02,8.4502,392,38.83,23.2959 +10,169,0.0018,-0.0001,642.54,1600.91,1414.28,21.61,553.93,2388.09,9078.46,47.54,521.03,2388.07,8.4788,393,38.91,23.2665 +10,170,0.0004,0.0002,642.53,1592.71,1415.82,21.61,553.9,2388.11,9071.54,47.68,521.41,2388.07,8.4789,394,38.79,23.3488 +10,171,0.002,-0.0004,642.5,1597.58,1413.44,21.61,553.7,2388.01,9067.38,47.58,521.55,2388.11,8.4055,392,38.88,23.3681 +10,172,0.0001,-0.0002,642.9,1592.19,1414.09,21.61,553.12,2388.08,9083.27,47.49,521.11,2388.11,8.4514,393,38.8,23.2291 +10,173,-0.0016,0.0005,642.74,1583.96,1414.52,21.61,552.65,2388.05,9072.45,47.55,520.94,2388.07,8.4217,396,38.8,23.3128 +10,174,0.0019,0.0002,642.68,1586.97,1409.5,21.61,553.71,2388.09,9082.58,47.63,521.22,2388.1,8.4412,394,38.78,23.2552 +10,175,0.0029,0.0001,642.78,1593.26,1412.11,21.61,552.42,2388.13,9075.74,47.74,521.01,2388.1,8.4548,393,38.67,23.2985 +10,176,0.0013,-0.0001,643.27,1596.38,1406.76,21.61,553.49,2388.11,9087.33,47.36,520.98,2388.11,8.4562,394,38.67,23.2596 +10,177,0.0019,-0.0002,642.98,1586.66,1414.12,21.61,552.47,2388.11,9075.33,47.5,521.37,2388.01,8.4152,395,38.78,23.1925 +10,178,0.0018,-0.0003,642.93,1581.95,1415.57,21.61,553.46,2388.09,9075.51,47.63,520.9,2388.11,8.4147,393,38.72,23.3584 +10,179,-0.0018,0.0001,643.05,1589.76,1409.71,21.61,552.67,2388.11,9070.59,47.58,521.16,2388.06,8.4452,393,38.74,23.2796 +10,180,-0.0021,0.0003,643.12,1583.34,1407.59,21.61,553.65,2388.11,9072.54,47.6,521.3,2388.16,8.4777,394,38.92,23.2615 +10,181,0.0027,0.0,642.46,1594.21,1416.42,21.61,553.87,2388.14,9075.92,47.67,520.66,2388.13,8.4533,394,38.79,23.2998 +10,182,-0.0046,-0.0004,642.52,1590.76,1402.63,21.61,551.64,2388.12,9080.27,47.6,521.46,2388.09,8.4713,394,38.56,23.2454 +10,183,-0.0027,-0.0004,642.42,1594.6,1413.84,21.61,553.31,2388.11,9075.68,47.7,521.23,2388.15,8.4669,393,38.87,23.2024 +10,184,-0.0022,-0.0002,643.28,1590.97,1411.88,21.61,552.38,2388.12,9082.15,47.64,520.96,2388.1,8.4488,392,38.71,23.1587 +10,185,0.0026,-0.0003,643.29,1588.29,1409.21,21.61,553.49,2388.04,9076.04,47.76,521.26,2388.14,8.4546,395,38.82,23.1941 +10,186,-0.0026,-0.0001,642.89,1591.9,1418.86,21.61,553.36,2388.07,9078.33,47.67,521.33,2388.11,8.4693,394,38.66,23.2836 +10,187,0.0004,-0.0004,643.45,1596.16,1411.57,21.61,552.18,2388.06,9086.87,47.66,520.92,2388.13,8.4521,395,38.68,23.1507 +10,188,0.0005,0.0001,642.95,1590.16,1415.61,21.61,553.15,2388.1,9079.27,47.76,520.76,2388.14,8.4842,395,38.71,23.2227 +10,189,-0.0032,0.0003,643.62,1587.92,1409.61,21.61,552.27,2388.07,9080.7,47.55,520.55,2388.11,8.4361,394,38.69,23.2579 +10,190,-0.0,-0.0003,643.61,1589.45,1422.12,21.61,552.72,2388.14,9086.03,47.66,520.36,2388.1,8.4489,393,38.66,23.2405 +10,191,-0.001,0.0,642.89,1584.8,1413.63,21.61,553.26,2388.14,9082.74,47.89,520.82,2388.06,8.4584,395,38.78,23.2666 +10,192,0.0005,-0.0003,642.54,1598.01,1413.05,21.61,552.89,2388.12,9089.05,47.87,520.77,2388.11,8.4334,394,38.51,23.221 +10,193,-0.0026,0.0002,643.83,1597.95,1416.85,21.61,552.75,2388.16,9081.41,47.95,520.99,2388.12,8.4283,394,38.76,23.1036 +10,194,0.0007,0.0005,643.56,1601.8,1415.76,21.61,552.45,2388.1,9090.98,47.75,520.46,2388.16,8.4773,396,38.74,23.1346 +10,195,-0.0006,-0.0004,642.87,1591.89,1418.29,21.61,552.44,2388.15,9099.4,47.82,520.46,2388.11,8.4724,394,38.9,23.2763 +10,196,0.0002,-0.0002,643.37,1595.69,1415.41,21.61,552.72,2388.12,9087.8,47.88,520.1,2388.07,8.4474,395,38.64,23.2171 +10,197,-0.0002,0.0002,642.87,1598.65,1416.91,21.61,553.45,2388.08,9096.61,47.86,520.62,2388.12,8.4712,394,38.64,23.2308 +10,198,-0.0028,0.0003,642.91,1597.97,1413.88,21.61,552.9,2388.18,9090.02,47.95,520.96,2388.16,8.4608,395,38.65,23.1398 +10,199,-0.0024,-0.0004,642.94,1592.83,1418.63,21.61,552.79,2388.09,9090.05,47.67,520.35,2388.11,8.454,394,38.53,23.1722 +10,200,-0.0003,0.0001,642.72,1600.86,1424.28,21.61,552.86,2388.16,9090.0,47.91,520.68,2388.17,8.4866,397,38.66,23.1687 +10,201,0.0014,-0.0004,643.42,1593.06,1417.62,21.61,552.7,2388.14,9090.43,47.71,520.55,2388.18,8.4804,394,38.8,23.1797 +10,202,0.0033,0.0003,643.03,1597.33,1419.0,21.61,551.74,2388.14,9087.48,47.89,520.89,2388.14,8.4989,394,38.56,23.2298 +10,203,0.0028,-0.0001,643.63,1599.49,1422.41,21.61,551.85,2388.15,9093.21,48.13,520.72,2388.17,8.4695,394,38.65,23.2638 +10,204,0.0007,-0.0003,643.35,1590.73,1420.54,21.61,552.39,2388.16,9096.36,47.86,520.35,2388.17,8.5224,396,38.68,23.0884 +10,205,0.0012,-0.0,643.31,1594.27,1421.8,21.61,552.2,2388.17,9097.7,47.88,520.63,2388.18,8.4756,394,38.68,23.2222 +10,206,0.0028,-0.0001,643.71,1594.82,1417.02,21.61,552.09,2388.14,9096.83,47.88,520.3,2388.21,8.5098,394,38.7,23.1211 +10,207,-0.0003,0.0004,643.78,1594.05,1422.45,21.61,552.49,2388.15,9098.55,47.86,520.3,2388.11,8.4876,395,38.63,23.2049 +10,208,0.0063,-0.0001,643.28,1593.1,1418.13,21.61,552.12,2388.21,9100.1,47.98,520.09,2388.2,8.485,396,38.54,23.3365 +10,209,-0.0012,0.0,643.61,1597.31,1413.32,21.61,552.65,2388.11,9102.72,47.71,520.71,2388.12,8.499,395,38.57,23.148 +10,210,-0.0007,0.0001,643.65,1595.0,1415.11,21.61,551.86,2388.09,9103.86,47.89,520.18,2388.14,8.502,396,38.45,23.0745 +10,211,-0.0016,0.0002,643.47,1597.16,1419.52,21.61,552.1,2388.19,9105.75,48.06,520.81,2388.12,8.453,395,38.42,23.2101 +10,212,0.0017,-0.0001,643.39,1601.69,1417.97,21.61,552.7,2388.17,9101.86,47.85,520.66,2388.13,8.5234,397,38.48,23.1374 +10,213,-0.0012,-0.0002,643.87,1613.62,1422.53,21.61,552.14,2388.18,9108.91,48.1,520.09,2388.14,8.4907,396,38.4,23.1233 +10,214,-0.0021,-0.0002,643.4,1599.62,1427.82,21.61,552.02,2388.14,9109.36,47.89,519.95,2388.16,8.4933,394,38.41,22.9937 +10,215,-0.0037,0.0002,643.01,1600.31,1429.1,21.61,552.17,2388.17,9102.92,47.9,519.6,2388.16,8.5234,395,38.68,23.0892 +10,216,-0.0008,-0.0002,643.36,1602.14,1424.69,21.61,552.12,2388.2,9104.77,47.91,520.33,2388.18,8.5054,397,38.59,23.1391 +10,217,0.0016,-0.0001,644.35,1603.77,1423.45,21.61,551.76,2388.23,9114.19,48.03,520.15,2388.16,8.526,395,38.42,23.1359 +10,218,-0.0029,0.0004,643.7,1598.64,1426.21,21.61,551.45,2388.16,9108.3,48.09,520.23,2388.22,8.4954,395,38.47,23.1209 +10,219,-0.0018,0.0004,643.46,1603.54,1424.54,21.61,552.03,2388.15,9113.4,48.06,519.83,2388.23,8.523,396,38.48,23.234 +10,220,-0.0013,0.0002,643.46,1604.91,1422.76,21.61,551.73,2388.25,9115.15,47.95,520.23,2388.25,8.5182,396,38.53,23.2187 +10,221,0.0005,-0.0001,644.09,1604.4,1432.13,21.61,551.77,2388.23,9110.37,48.08,519.22,2388.19,8.5312,395,38.22,23.1596 +10,222,0.0002,-0.0003,643.66,1599.18,1436.29,21.61,552.7,2388.22,9115.44,48.09,520.02,2388.16,8.5159,398,38.51,23.1434 +12,10,-0.0007,-0.0003,642.37,1592.2,1402.29,21.61,553.36,2388.12,9048.97,47.6,521.14,2388.07,8.4531,392,38.8,23.2907 +12,11,-0.001,0.0003,642.47,1592.71,1412.44,21.61,554.14,2388.16,9051.27,47.69,520.8,2388.07,8.4125,394,38.82,23.4365 +12,12,-0.0026,-0.0001,643.0,1581.29,1407.38,21.61,553.55,2388.18,9045.24,47.57,521.06,2388.15,8.4162,394,38.87,23.3298 +12,13,-0.0018,0.0003,643.31,1592.33,1405.14,21.61,553.8,2388.12,9046.7,47.49,521.54,2388.12,8.4265,393,38.86,23.2345 +12,14,-0.0014,-0.0004,642.94,1589.91,1408.12,21.61,553.06,2388.09,9048.72,47.35,521.11,2388.11,8.4531,393,38.82,23.3559 +12,15,0.0013,-0.0001,642.22,1592.95,1404.86,21.61,554.61,2388.18,9050.76,47.59,521.63,2388.1,8.4178,393,38.99,23.1797 +12,16,-0.0021,0.0002,642.41,1585.13,1403.71,21.61,553.97,2388.07,9046.65,47.58,521.41,2388.15,8.4331,394,38.67,23.3922 +12,17,-0.0008,-0.0004,642.62,1590.64,1409.69,21.61,553.95,2388.11,9045.23,47.49,521.49,2388.13,8.4058,393,38.94,23.3341 +12,18,-0.0049,-0.0002,642.27,1588.16,1412.6,21.61,553.81,2388.13,9044.59,47.52,521.2,2388.13,8.4239,391,38.78,23.327 +12,19,0.0007,0.0005,642.68,1596.79,1408.97,21.61,553.24,2388.1,9046.96,47.55,521.24,2388.14,8.4224,393,38.9,23.2769 +12,20,0.0002,-0.0001,642.89,1586.86,1407.65,21.61,553.67,2388.13,9046.24,47.43,521.67,2388.08,8.4372,394,39.04,23.2657 +12,21,0.0016,-0.0004,642.86,1594.72,1404.49,21.61,553.76,2388.13,9049.54,47.55,521.72,2388.07,8.4298,392,38.96,23.3372 +12,22,0.0006,-0.0003,642.81,1588.36,1409.01,21.61,554.01,2388.17,9038.25,47.54,521.84,2388.09,8.4275,391,38.87,23.253 +12,23,0.0012,-0.0003,642.64,1593.21,1403.92,21.61,553.35,2388.08,9045.89,47.17,521.56,2388.05,8.4223,392,39.04,23.2086 +12,24,0.0016,0.0003,642.74,1588.51,1407.22,21.61,553.65,2388.09,9054.16,47.48,521.38,2388.1,8.4551,391,38.84,23.3228 +12,25,-0.0017,0.0005,642.37,1589.24,1409.74,21.61,553.19,2388.14,9047.34,47.31,521.55,2388.12,8.4276,392,38.74,23.2553 +12,26,0.0001,0.0002,642.76,1581.49,1410.57,21.61,553.19,2388.13,9051.64,47.59,521.54,2388.13,8.4273,394,38.84,23.3767 +12,27,0.0004,0.0005,642.41,1582.28,1410.61,21.61,553.87,2388.12,9047.26,47.51,521.32,2388.1,8.449,393,39.02,23.3578 +12,28,-0.0007,0.0005,642.12,1590.92,1409.23,21.61,554.27,2388.1,9056.44,47.58,521.61,2388.1,8.4467,393,38.96,23.283 +12,29,0.0034,-0.0,642.79,1583.54,1409.43,21.61,553.21,2388.11,9047.45,47.6,521.29,2388.13,8.4204,393,38.63,23.2957 +12,30,-0.0016,-0.0003,642.86,1594.49,1400.58,21.61,553.52,2388.15,9048.31,47.4,521.62,2388.12,8.4577,393,38.9,23.2759 +12,31,-0.0004,-0.0001,642.62,1585.54,1404.71,21.61,553.64,2388.09,9043.46,47.59,521.44,2388.14,8.4193,392,38.72,23.2314 +12,32,0.0015,-0.0001,642.79,1596.75,1408.2,21.61,552.8,2388.06,9048.38,47.52,521.3,2388.1,8.4478,393,38.7,23.1458 +12,33,-0.0009,-0.0,642.41,1589.35,1406.3,21.61,553.1,2388.06,9044.7,47.51,521.33,2388.08,8.4577,393,38.94,23.3029 +12,34,0.0015,-0.0004,642.57,1591.88,1409.24,21.61,553.1,2388.1,9036.32,47.64,521.64,2388.14,8.4652,394,38.6,23.3334 +12,35,0.0021,0.0,642.79,1588.11,1407.2,21.61,553.78,2388.14,9048.56,47.46,521.68,2388.17,8.4219,392,38.79,23.2092 +12,36,0.003,-0.0004,642.91,1592.47,1400.78,21.61,553.33,2388.15,9045.66,47.49,521.59,2388.16,8.4437,392,38.8,23.1813 +12,37,0.0013,0.0003,642.41,1592.1,1410.24,21.61,553.22,2388.09,9042.92,47.62,521.66,2388.11,8.461,393,38.78,23.2468 +12,38,-0.0001,0.0005,642.73,1595.43,1405.1,21.61,553.41,2388.09,9048.6,47.45,521.18,2388.06,8.4427,394,38.91,23.3641 +12,39,-0.0002,0.0001,642.3,1590.38,1412.85,21.61,552.59,2388.1,9044.67,47.39,521.82,2388.13,8.4596,393,38.8,23.3236 +12,40,-0.0014,-0.0001,642.16,1587.52,1411.14,21.61,553.14,2388.15,9043.68,47.63,521.37,2388.18,8.4713,394,38.89,23.3179 +12,41,-0.0016,0.0004,642.17,1588.32,1412.07,21.61,553.12,2388.09,9044.54,47.52,521.75,2388.14,8.4289,393,38.82,23.2325 +12,42,-0.0042,0.0005,642.97,1594.0,1407.56,21.61,553.09,2388.09,9044.59,47.33,521.09,2388.1,8.4573,394,38.92,23.2672 +12,43,-0.0009,-0.0001,642.35,1590.12,1412.04,21.61,553.17,2388.12,9042.53,47.5,521.67,2388.16,8.4322,393,38.81,23.2876 +12,44,-0.0031,-0.0,642.5,1591.36,1405.39,21.61,552.98,2388.09,9042.02,47.36,521.47,2388.08,8.4792,392,38.98,23.2084 +12,45,-0.0018,0.0001,642.76,1598.73,1409.85,21.61,553.38,2388.13,9052.92,47.64,521.07,2388.13,8.4452,395,38.84,23.2244 +12,46,-0.0003,-0.0003,642.39,1595.76,1407.58,21.61,553.34,2388.14,9047.42,47.52,521.51,2388.14,8.4562,392,38.96,23.2746 +12,47,0.001,-0.0004,642.27,1588.92,1406.25,21.61,553.29,2388.12,9046.58,47.4,521.62,2388.11,8.4674,392,38.7,23.2926 +12,48,0.0001,-0.0,642.47,1588.91,1412.42,21.61,553.53,2388.13,9041.32,47.59,522.13,2388.13,8.4539,393,38.79,23.3173 +12,49,0.0013,0.0003,642.84,1587.07,1400.39,21.61,553.4,2388.14,9044.57,47.51,521.8,2388.16,8.453,394,38.78,23.3632 +12,50,0.0009,0.0004,642.19,1591.98,1409.02,21.61,554.09,2388.15,9045.83,47.45,521.52,2388.14,8.4323,391,39.0,23.3382 +12,51,-0.0025,0.0004,643.1,1587.83,1413.22,21.61,553.77,2388.14,9046.08,47.49,521.4,2388.13,8.4547,392,38.83,23.3548 +12,52,0.0014,-0.0,642.6,1583.57,1408.59,21.61,553.85,2388.12,9045.76,47.36,521.26,2388.1,8.4275,394,38.96,23.3101 +12,53,0.0019,-0.0004,642.66,1592.1,1404.21,21.61,552.16,2388.16,9044.63,47.55,521.59,2388.18,8.4391,393,38.62,23.2922 +12,54,0.0063,-0.0,642.59,1588.31,1411.94,21.61,554.08,2388.13,9059.27,47.49,521.4,2388.15,8.446,394,38.88,23.4037 +12,55,-0.0005,0.0002,642.8,1594.84,1414.35,21.61,553.39,2388.15,9045.65,47.8,521.48,2388.11,8.4466,392,38.72,23.3149 +12,56,-0.0001,0.0004,642.47,1588.91,1408.46,21.61,552.87,2388.12,9047.98,47.55,521.49,2388.15,8.4174,394,38.86,23.3335 +12,57,0.0027,0.0001,643.42,1596.13,1407.61,21.61,553.22,2388.12,9045.76,47.59,520.99,2388.12,8.4594,394,38.91,23.2622 +12,58,0.0011,0.0005,642.18,1592.85,1406.46,21.61,553.62,2388.07,9046.5,47.6,521.79,2388.13,8.4689,393,38.8,23.2417 +12,59,-0.0032,0.0003,643.05,1595.21,1402.56,21.61,552.63,2388.16,9049.77,47.45,521.31,2388.11,8.4334,393,38.82,23.3714 +12,60,-0.0017,-0.0004,642.25,1596.61,1413.02,21.61,553.21,2388.14,9052.12,47.72,521.49,2388.12,8.4115,394,38.75,23.3122 +12,61,-0.0017,-0.0004,642.85,1589.81,1406.41,21.61,552.96,2388.11,9039.47,47.65,520.76,2388.15,8.4192,394,38.69,23.3281 +12,62,-0.004,-0.0003,642.21,1590.03,1409.63,21.61,552.86,2388.16,9048.09,47.57,521.38,2388.14,8.4393,392,38.68,23.3127 +12,63,-0.001,0.0001,642.57,1592.3,1409.09,21.61,553.21,2388.17,9044.16,47.54,521.54,2388.16,8.4358,392,38.83,23.312 +12,64,0.0025,-0.0001,642.72,1592.81,1411.9,21.61,553.6,2388.17,9053.41,47.42,521.79,2388.16,8.4087,393,38.79,23.3106 +12,65,0.0023,-0.0002,642.97,1596.75,1414.56,21.61,553.78,2388.12,9046.88,47.59,521.9,2388.09,8.4337,392,38.83,23.2463 +12,66,-0.0021,-0.0,642.61,1589.21,1406.22,21.61,553.39,2388.16,9045.86,47.64,521.41,2388.07,8.4691,394,38.8,23.222 +12,67,0.0027,-0.0001,642.81,1586.58,1406.37,21.61,553.17,2388.14,9049.52,47.58,521.19,2388.14,8.4348,392,38.63,23.2567 +12,68,0.002,-0.0004,642.62,1590.13,1411.87,21.61,552.82,2388.21,9047.7,47.52,521.51,2388.12,8.4531,392,38.9,23.2913 +12,69,-0.0002,0.0002,642.78,1588.31,1420.36,21.61,553.19,2388.12,9043.71,47.52,520.98,2388.11,8.4554,394,38.88,23.2297 +12,70,0.0034,0.0001,642.93,1588.41,1406.66,21.61,553.53,2388.14,9046.07,47.58,521.52,2388.16,8.4116,392,38.82,23.3584 +12,71,0.002,0.0001,642.3,1587.35,1405.68,21.61,553.75,2388.08,9051.01,47.53,521.34,2388.15,8.4173,394,38.75,23.4068 +12,72,0.0024,-0.0002,642.41,1590.65,1414.47,21.61,553.17,2388.12,9056.26,47.52,520.84,2388.17,8.4585,394,38.72,23.2232 +12,73,0.0027,-0.0002,642.62,1591.9,1405.42,21.61,553.24,2388.13,9051.4,47.66,522.18,2388.15,8.4597,395,38.78,23.328 +12,74,-0.0021,0.0,642.62,1584.62,1406.39,21.61,553.31,2388.15,9047.56,47.79,521.47,2388.14,8.4208,393,38.84,23.3163 +12,75,-0.0005,-0.0002,642.64,1588.03,1406.82,21.61,553.07,2388.14,9043.55,47.66,520.75,2388.07,8.4235,394,38.72,23.2164 +12,76,0.0024,0.0002,642.56,1588.67,1405.95,21.61,553.32,2388.15,9051.14,47.69,521.27,2388.11,8.4552,395,38.75,23.2364 +12,77,0.0007,-0.0003,643.27,1591.27,1406.28,21.61,554.03,2388.11,9045.54,47.41,521.33,2388.08,8.4669,391,38.81,23.2573 +12,78,-0.0005,0.0001,643.25,1591.94,1413.68,21.61,553.33,2388.1,9044.5,47.65,521.46,2388.15,8.4515,392,38.86,23.3066 +12,79,0.0012,-0.0002,642.64,1590.61,1408.29,21.61,552.69,2388.16,9046.43,47.47,520.79,2388.13,8.4181,393,38.87,23.2958 +12,80,0.0012,0.0004,643.14,1586.51,1415.59,21.61,553.56,2388.16,9040.82,47.39,521.12,2388.13,8.4599,392,38.73,23.3178 +12,81,-0.002,0.0003,643.02,1584.68,1412.22,21.61,553.27,2388.13,9054.63,47.66,521.53,2388.15,8.4732,393,38.74,23.284 +12,82,0.0053,0.0005,643.25,1589.34,1404.4,21.61,553.66,2388.14,9049.13,47.47,520.85,2388.2,8.449,392,38.81,23.3187 +12,83,-0.0018,0.0001,642.02,1594.89,1408.9,21.61,552.5,2388.19,9035.95,47.69,520.65,2388.11,8.4449,392,38.98,23.2296 +12,84,0.0016,0.0004,642.47,1594.14,1407.82,21.61,552.3,2388.09,9051.21,47.58,521.19,2388.13,8.4478,394,38.73,23.1737 +12,85,-0.0009,-0.0002,642.6,1585.73,1413.71,21.61,553.42,2388.13,9045.67,47.81,521.4,2388.12,8.4884,393,38.8,23.3388 +12,86,0.0072,0.0002,642.37,1591.1,1415.28,21.61,552.38,2388.12,9046.37,47.55,520.79,2388.18,8.455,393,38.88,23.2544 +12,87,0.0011,-0.0001,642.98,1586.54,1403.94,21.61,552.21,2388.09,9046.31,47.43,521.32,2388.15,8.4327,394,38.84,23.301 +12,88,0.0017,-0.0004,642.96,1592.5,1407.16,21.61,553.42,2388.18,9043.53,47.67,521.34,2388.17,8.4723,392,38.69,23.2846 +12,89,-0.0039,0.0005,642.46,1590.54,1414.97,21.61,552.86,2388.12,9045.73,47.48,520.65,2388.12,8.4149,391,38.9,23.292 +12,90,0.0004,0.0005,642.65,1591.09,1410.93,21.61,553.61,2388.16,9047.9,47.75,521.46,2388.15,8.4813,394,38.81,23.2101 +12,91,0.0005,-0.0002,643.09,1591.52,1412.95,21.61,553.74,2388.11,9045.83,47.5,521.12,2388.15,8.4604,393,38.6,23.1479 +12,92,0.0021,0.0001,643.14,1593.57,1405.97,21.61,552.31,2388.17,9045.81,47.87,520.6,2388.12,8.4352,393,38.6,23.2152 +12,93,0.0009,-0.0003,643.15,1587.64,1414.14,21.61,553.53,2388.16,9050.01,47.83,521.57,2388.13,8.4402,393,38.76,23.2344 +12,94,-0.0041,0.0,642.48,1596.66,1409.75,21.61,552.98,2388.16,9039.46,47.65,521.53,2388.18,8.4628,394,38.85,23.2269 +12,95,0.0006,0.0003,642.9,1590.23,1408.66,21.61,552.31,2388.11,9042.87,47.73,521.45,2388.16,8.4852,394,38.83,23.2761 +12,96,-0.0021,-0.0004,642.54,1584.94,1412.03,21.61,552.85,2388.14,9050.54,47.7,521.06,2388.18,8.4466,392,38.82,23.1321 +12,97,0.0017,0.0004,643.01,1592.11,1409.96,21.61,552.77,2388.18,9046.68,47.59,521.21,2388.16,8.4595,394,38.72,23.3156 +12,98,-0.0007,0.0,642.89,1590.63,1407.46,21.61,553.0,2388.15,9038.1,47.49,521.48,2388.09,8.4301,395,38.92,23.239 +12,99,0.0027,-0.0001,642.65,1592.47,1414.0,21.61,552.84,2388.12,9046.59,47.67,521.24,2388.14,8.4132,393,38.64,23.2527 +12,100,-0.0032,0.0005,642.93,1592.94,1409.98,21.61,553.38,2388.14,9050.24,47.65,521.07,2388.13,8.448,392,38.76,23.3091 +12,101,0.0014,0.0002,641.86,1592.94,1405.95,21.61,552.88,2388.15,9047.32,47.66,521.56,2388.09,8.4421,393,38.91,23.2826 +12,102,0.0016,-0.0003,643.08,1596.33,1416.0,21.61,553.38,2388.11,9046.83,47.69,520.93,2388.13,8.4379,393,38.88,23.2423 +12,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156 +12,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177 +12,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808 +12,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442 +12,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876 +12,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949 +12,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645 +12,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781 +12,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852 +12,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082 +12,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764 +12,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929 +12,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19 +12,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242 +12,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807 +12,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145 +12,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239 +12,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242 +12,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929 +12,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837 +12,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708 +12,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292 +12,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558 +12,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132 +12,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237 +12,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346 +12,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877 +12,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302 +12,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653 +12,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266 +12,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403 +12,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283 +12,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279 +12,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964 +12,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929 +12,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407 +12,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714 +12,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876 +12,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154 +12,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021 +12,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289 +12,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626 +12,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901 +12,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257 +12,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366 +12,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506 +12,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166 +12,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088 +12,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561 +12,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074 +12,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636 +12,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146 +12,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194 +12,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739 +12,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203 +12,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512 +12,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175 +12,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07 +12,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629 +12,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593 +12,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024 +12,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511 +12,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516 +12,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312 +12,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371 +12,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209 +12,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444 +12,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102 +13,10,-0.0027,-0.0004,642.31,1594.02,1410.1,21.61,552.65,2388.08,9055.86,47.45,521.86,2388.14,8.4321,391,38.75,23.272 +13,11,-0.0014,0.0003,642.81,1590.74,1403.72,21.61,553.43,2388.08,9057.06,47.57,522.2,2388.1,8.4001,394,38.86,23.3338 +13,12,-0.0027,-0.0001,641.91,1585.92,1407.15,21.61,553.28,2388.07,9057.66,47.55,521.58,2388.09,8.4438,394,38.77,23.3329 +13,13,-0.001,-0.0,643.25,1599.99,1409.62,21.61,553.27,2388.13,9055.24,47.43,521.66,2388.1,8.4336,394,38.83,23.2979 +13,14,-0.0002,0.0004,642.22,1591.18,1409.34,21.61,553.57,2388.08,9059.89,47.5,520.85,2388.07,8.4295,392,38.9,23.2906 +13,15,0.0004,-0.0003,642.79,1594.09,1406.2,21.61,552.9,2388.12,9055.37,47.68,522.15,2388.06,8.3932,391,38.91,23.3631 +13,16,0.0028,-0.0004,642.59,1595.91,1409.0,21.61,553.08,2388.07,9052.1,47.42,521.74,2388.05,8.4156,394,38.97,23.3014 +13,17,0.0029,-0.0001,643.01,1593.27,1404.03,21.61,553.22,2388.09,9050.42,47.37,521.73,2388.1,8.4232,393,38.86,23.3667 +13,18,-0.0016,0.0005,642.08,1589.14,1405.87,21.61,553.54,2388.1,9054.2,47.4,521.54,2388.14,8.4075,392,38.77,23.3347 +13,19,-0.0024,-0.0002,642.47,1584.56,1408.11,21.61,553.13,2388.09,9061.64,47.48,521.39,2388.06,8.4485,394,38.82,23.3526 +13,20,-0.0007,0.0001,642.77,1595.46,1407.4,21.61,553.28,2388.06,9054.38,47.51,522.05,2388.11,8.4264,392,38.57,23.2427 +13,21,0.0007,0.0003,642.25,1581.62,1407.08,21.61,553.16,2388.06,9054.83,47.62,521.26,2388.08,8.4389,393,38.83,23.4299 +13,22,-0.0015,0.0001,643.02,1586.2,1407.41,21.61,553.48,2388.1,9056.62,47.46,521.56,2388.08,8.428,392,38.84,23.2634 +13,23,-0.0014,-0.0004,642.6,1586.29,1405.63,21.61,553.12,2388.12,9056.01,47.57,522.07,2388.14,8.4311,392,38.98,23.3116 +13,24,-0.0002,0.0005,642.95,1587.31,1406.29,21.61,553.75,2388.14,9051.44,47.64,521.89,2388.05,8.4215,393,38.85,23.2426 +13,25,0.0025,0.0003,642.1,1594.3,1407.62,21.61,553.55,2388.1,9062.26,47.51,522.5,2388.14,8.4366,393,38.86,23.3473 +13,26,-0.001,0.0003,642.19,1586.42,1402.94,21.61,553.7,2388.1,9063.15,47.58,521.49,2388.11,8.4346,391,38.83,23.3003 +13,27,0.0006,-0.0001,643.01,1590.15,1407.03,21.61,553.15,2388.07,9056.15,47.47,521.32,2388.08,8.4475,393,38.71,23.4061 +13,28,0.0012,-0.0003,642.56,1590.55,1406.48,21.61,553.34,2388.07,9059.63,47.6,521.73,2388.07,8.4191,393,38.84,23.2284 +13,29,-0.0003,0.0002,642.89,1588.97,1408.82,21.61,553.25,2388.09,9047.99,47.48,521.67,2388.08,8.4534,394,38.85,23.2946 +13,30,-0.0032,0.0001,642.7,1588.36,1409.6,21.61,554.31,2388.16,9057.73,47.36,521.31,2388.11,8.4743,393,38.87,23.3169 +13,31,-0.0015,0.0002,642.3,1590.98,1404.89,21.61,553.89,2388.05,9058.44,47.44,521.85,2388.11,8.4644,393,38.82,23.2797 +13,32,-0.001,0.0002,642.75,1589.12,1405.37,21.61,553.72,2388.09,9053.01,47.44,521.54,2388.08,8.4316,393,38.93,23.2791 +13,33,-0.0,0.0002,642.48,1588.69,1406.37,21.61,552.64,2388.1,9057.65,47.49,521.57,2388.11,8.4294,394,38.82,23.349 +13,34,-0.0007,0.0003,642.35,1590.06,1409.85,21.61,553.9,2388.09,9061.24,47.5,521.78,2388.1,8.4597,393,38.92,23.3717 +13,35,-0.0013,-0.0004,642.61,1589.91,1401.64,21.61,553.08,2388.09,9051.13,47.38,521.19,2388.08,8.4422,393,38.84,23.3348 +13,36,-0.0034,-0.0,642.58,1586.23,1403.92,21.61,553.5,2388.1,9047.89,47.58,521.44,2388.15,8.4509,393,38.92,23.383 +13,37,-0.0041,0.0002,642.68,1582.58,1412.44,21.61,553.58,2388.06,9050.5,47.48,521.86,2388.07,8.4326,392,38.74,23.1862 +13,38,0.0001,0.0004,642.69,1593.33,1406.92,21.61,553.62,2388.13,9049.92,47.7,521.55,2388.09,8.4576,393,39.07,23.2141 +13,39,-0.0005,-0.0003,642.63,1581.24,1403.8,21.61,553.23,2388.03,9053.6,47.5,521.63,2388.05,8.4236,392,38.94,23.343 +13,40,0.0013,0.0004,641.99,1585.55,1411.86,21.61,553.69,2388.13,9062.62,47.41,521.68,2388.12,8.4448,393,38.55,23.3491 +13,41,-0.0007,0.0002,642.23,1588.43,1403.07,21.61,553.26,2388.1,9057.22,47.58,521.82,2388.1,8.4804,393,38.92,23.3163 +13,42,0.0023,-0.0004,642.86,1588.03,1407.81,21.61,553.52,2388.11,9061.57,47.52,521.91,2388.09,8.4216,393,38.8,23.2903 +13,43,-0.0017,-0.0,642.66,1590.78,1407.9,21.61,553.64,2388.1,9056.2,47.39,521.26,2388.1,8.4378,394,38.81,23.3655 +13,44,0.0024,0.0001,642.45,1590.56,1412.61,21.61,553.88,2388.07,9055.21,47.59,521.3,2388.04,8.4059,394,38.94,23.3218 +13,45,0.0016,0.0001,642.77,1588.23,1410.44,21.61,553.99,2388.1,9057.0,47.51,521.42,2388.12,8.4185,391,38.7,23.3342 +13,46,0.0041,-0.0004,642.86,1584.07,1409.85,21.61,553.12,2388.09,9045.6,47.58,521.3,2388.07,8.418,393,38.9,23.305 +13,47,-0.0019,0.0004,642.14,1594.3,1402.37,21.61,553.34,2388.07,9057.28,47.35,521.81,2388.11,8.4108,394,38.74,23.3972 +13,48,-0.0026,-0.0,642.85,1594.55,1406.57,21.61,553.8,2388.09,9063.15,47.57,521.28,2388.13,8.4592,393,38.96,23.3012 +13,49,-0.0027,-0.0004,642.91,1584.16,1409.84,21.61,553.06,2388.1,9062.76,47.65,521.3,2388.14,8.4155,395,38.65,23.2812 +13,50,-0.0013,0.0,642.89,1592.76,1409.34,21.61,553.74,2388.11,9053.83,47.61,521.04,2388.09,8.436,394,38.67,23.2642 +13,51,0.0011,-0.0003,641.96,1590.8,1405.96,21.61,553.51,2388.09,9052.06,47.6,521.78,2388.11,8.413,393,38.95,23.2755 +13,52,0.0064,-0.0004,642.56,1594.44,1411.13,21.61,553.26,2388.1,9055.29,47.52,521.75,2388.12,8.4222,393,38.86,23.267 +13,53,-0.0011,0.0004,642.62,1587.86,1405.82,21.61,553.02,2388.09,9059.33,47.4,522.18,2388.08,8.4513,392,39.02,23.3445 +13,54,0.0023,-0.0001,642.37,1590.53,1410.93,21.61,553.4,2388.1,9060.14,47.45,520.99,2388.08,8.404,392,39.04,23.226 +13,55,-0.0031,-0.0002,642.92,1594.46,1406.72,21.61,553.33,2388.05,9058.09,47.37,521.62,2388.08,8.4436,392,38.67,23.3543 +13,56,0.0002,0.0005,642.21,1592.74,1404.01,21.61,553.15,2388.11,9062.98,47.5,521.87,2388.06,8.4322,393,38.94,23.3912 +13,57,0.0008,0.0004,642.78,1594.82,1403.8,21.61,554.07,2388.04,9061.05,47.45,521.46,2388.12,8.4077,394,38.82,23.2318 +13,58,0.0023,0.0004,642.37,1594.12,1413.32,21.61,553.05,2388.14,9049.98,47.45,521.47,2388.11,8.4612,394,38.87,23.3108 +13,59,-0.0021,-0.0001,642.61,1584.02,1413.87,21.61,552.84,2388.1,9058.18,47.56,521.97,2388.14,8.4369,394,38.8,23.3658 +13,60,0.0033,0.0004,642.51,1589.07,1404.27,21.61,553.74,2388.08,9063.64,47.42,521.64,2388.1,8.4227,394,38.69,23.3591 +13,61,-0.0015,-0.0005,642.63,1585.86,1411.08,21.61,553.26,2388.12,9061.46,47.54,521.36,2388.14,8.4149,393,39.0,23.293 +13,62,0.0034,-0.0003,642.23,1596.03,1406.18,21.61,553.4,2388.11,9057.73,47.61,521.47,2388.08,8.4358,394,38.9,23.2968 +13,63,0.001,-0.0003,642.61,1582.69,1399.34,21.61,553.22,2388.09,9060.4,47.48,522.14,2388.06,8.4244,392,38.91,23.2965 +13,64,0.0022,0.0002,642.8,1592.07,1402.07,21.61,553.46,2388.08,9053.94,47.53,521.86,2388.1,8.4536,394,38.78,23.2062 +13,65,0.0019,0.0005,642.6,1594.17,1410.38,21.61,553.04,2388.12,9062.3,47.59,521.59,2388.12,8.439,393,38.99,23.1712 +13,66,0.0034,-0.0002,642.68,1586.39,1403.29,21.61,553.59,2388.13,9057.5,47.58,521.86,2388.07,8.4566,395,38.83,23.2897 +13,67,0.0008,-0.0004,642.85,1587.87,1411.71,21.61,553.67,2388.1,9052.26,47.62,521.59,2388.07,8.477,390,38.62,23.3134 +13,68,0.0002,-0.0002,643.05,1593.84,1410.46,21.61,554.39,2388.1,9056.67,47.46,521.06,2388.09,8.4091,393,38.94,23.2666 +13,69,0.0012,-0.0003,642.94,1590.66,1408.67,21.61,553.61,2388.09,9058.86,47.62,521.68,2388.09,8.4165,393,38.73,23.229 +13,70,-0.0005,0.0002,642.22,1591.39,1406.78,21.61,553.3,2388.09,9056.85,47.62,521.14,2388.06,8.4562,390,38.78,23.2932 +13,71,-0.0033,0.0002,642.73,1591.12,1414.31,21.61,554.25,2388.13,9062.22,47.51,521.21,2388.08,8.4381,392,38.76,23.2452 +13,72,0.0041,-0.0004,642.54,1591.82,1409.41,21.61,553.82,2388.11,9060.47,47.61,521.39,2388.17,8.4537,394,38.93,23.3227 +13,73,0.0002,0.0004,642.93,1589.96,1411.79,21.61,553.77,2388.09,9058.23,47.49,521.38,2388.05,8.4445,395,38.72,23.2954 +13,74,-0.0,-0.0002,642.87,1586.46,1415.71,21.61,553.38,2388.06,9056.09,47.37,521.54,2388.12,8.4046,392,38.89,23.2266 +13,75,0.0012,0.0002,642.72,1584.67,1410.41,21.61,553.18,2388.14,9064.07,47.58,521.23,2388.1,8.4548,393,38.82,23.2683 +13,76,0.0013,-0.0003,642.76,1588.78,1409.33,21.61,553.19,2388.12,9057.88,47.65,521.72,2388.11,8.477,394,38.76,23.3218 +13,77,0.0022,-0.0005,642.98,1592.44,1407.09,21.61,553.44,2388.12,9059.92,47.44,520.77,2388.03,8.4119,394,39.0,23.2637 +13,78,0.0007,-0.0003,643.34,1588.31,1407.96,21.61,553.59,2388.1,9056.17,47.49,520.7,2388.08,8.4692,393,38.87,23.2975 +13,79,-0.0002,-0.0004,642.88,1589.69,1406.53,21.61,553.71,2388.14,9067.65,47.56,521.63,2388.09,8.4337,392,38.96,23.2119 +13,80,-0.0012,-0.0002,642.75,1590.85,1412.63,21.61,553.27,2388.05,9066.09,47.59,521.37,2388.13,8.4287,394,38.98,23.299 +13,81,-0.0033,-0.0002,642.13,1588.28,1412.8,21.61,553.35,2388.11,9055.69,47.79,521.23,2388.11,8.4056,393,38.82,23.2447 +13,82,-0.0022,-0.0003,642.9,1593.79,1402.78,21.61,553.04,2388.09,9060.44,47.52,521.21,2388.05,8.4112,392,38.76,23.175 +13,83,0.0009,0.0002,642.47,1587.71,1406.15,21.61,553.21,2388.1,9062.17,47.66,521.02,2388.09,8.4517,392,38.77,23.3331 +13,84,0.0013,-0.0001,642.74,1586.75,1407.51,21.61,553.4,2388.07,9062.51,47.37,521.42,2388.07,8.4447,393,38.61,23.2227 +13,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566 +13,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206 +13,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149 +13,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396 +13,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306 +13,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462 +13,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589 +13,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359 +13,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29 +13,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104 +13,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496 +13,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385 +13,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132 +13,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199 +13,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136 +13,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333 +13,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955 +13,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309 +13,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003 +13,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497 +13,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431 +13,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403 +13,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927 +13,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752 +13,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462 +13,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126 +13,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012 +13,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348 +13,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802 +13,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653 +13,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051 +13,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549 +13,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676 +13,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317 +13,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929 +13,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578 +13,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251 +13,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467 +13,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694 +13,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281 +13,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732 +13,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933 +13,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438 +13,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494 +13,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775 +13,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092 +13,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022 +13,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766 +13,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046 +13,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138 +13,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608 +13,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211 +13,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517 +13,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389 +13,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284 +13,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497 +13,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761 +13,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678 +13,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542 +13,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509 +13,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809 +13,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287 +13,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254 +13,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753 +13,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922 +13,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275 +13,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447 +13,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13 +13,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185 +13,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418 +13,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528 +13,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585 +13,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453 +13,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415 +13,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357 +13,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209 +13,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185 +13,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104 +13,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291 +15,10,-0.0006,-0.0002,642.26,1584.19,1396.7,21.61,554.77,2387.94,9061.57,47.11,522.44,2388.03,8.4223,391,38.9,23.371 +15,11,-0.0023,-0.0002,641.9,1585.36,1390.35,21.61,554.74,2388.0,9055.34,47.11,522.54,2388.01,8.3967,390,39.19,23.4066 +15,12,-0.0016,-0.0005,642.11,1582.54,1402.78,21.6,555.21,2388.01,9049.29,47.1,522.38,2387.95,8.3678,392,39.1,23.3218 +15,13,0.0015,-0.0003,642.21,1581.36,1395.44,21.6,555.21,2388.03,9056.72,47.23,522.53,2388.01,8.4029,392,39.01,23.4324 +15,14,0.0015,-0.0002,641.66,1581.98,1400.45,21.61,554.01,2387.96,9058.73,47.22,522.08,2388.04,8.3826,391,39.03,23.5056 +15,15,-0.002,-0.0001,642.01,1585.44,1401.33,21.61,554.81,2387.98,9057.64,47.06,522.39,2387.99,8.3603,392,38.86,23.3726 +15,16,0.0011,0.0004,641.71,1579.91,1406.45,21.61,554.47,2387.95,9056.07,47.16,522.54,2388.04,8.3792,391,39.01,23.5067 +15,17,0.0009,0.0001,641.81,1581.88,1392.92,21.61,555.16,2387.97,9057.4,47.12,522.21,2388.03,8.3948,390,39.01,23.4125 +15,18,-0.0042,0.0005,641.86,1579.26,1390.03,21.61,554.27,2387.98,9060.55,47.14,522.77,2387.98,8.3908,392,39.11,23.4096 +15,19,-0.0029,0.0,642.2,1590.89,1391.23,21.61,555.09,2387.96,9054.19,47.2,521.77,2387.98,8.3592,392,38.94,23.4053 +15,20,-0.0027,0.0003,641.73,1583.08,1392.71,21.61,554.48,2388.0,9063.05,47.17,522.94,2388.02,8.4075,391,39.02,23.4697 +15,21,0.0002,0.0003,642.51,1576.58,1395.29,21.6,554.48,2387.98,9056.38,47.14,522.62,2388.01,8.3991,392,39.0,23.4136 +15,22,-0.0012,0.0001,641.84,1578.51,1396.75,21.61,554.36,2388.0,9063.28,47.2,522.28,2388.0,8.4158,391,39.0,23.3403 +15,23,-0.0007,0.0004,641.96,1577.75,1395.0,21.61,554.54,2388.03,9058.67,47.19,522.05,2388.01,8.3967,392,39.0,23.4621 +15,24,0.0016,0.0002,642.45,1589.29,1397.04,21.6,555.26,2387.97,9045.91,47.11,522.87,2388.0,8.3978,392,39.03,23.4335 +15,25,-0.0006,-0.0002,642.4,1587.75,1398.65,21.61,555.19,2388.03,9056.4,47.17,522.68,2388.04,8.4046,391,39.13,23.4505 +15,26,0.0015,-0.0,642.17,1582.05,1397.76,21.61,554.7,2388.01,9058.25,46.99,522.62,2387.99,8.3955,392,39.12,23.3932 +15,27,-0.0011,-0.0001,642.07,1588.41,1406.57,21.61,554.82,2388.07,9052.26,47.19,522.23,2388.01,8.417,390,38.99,23.3395 +15,28,-0.0028,0.0,641.91,1589.8,1392.82,21.61,555.27,2388.02,9059.8,47.13,523.05,2387.99,8.3697,391,39.11,23.4034 +15,29,0.0052,0.0003,641.79,1582.38,1389.69,21.61,554.7,2387.98,9054.31,47.29,522.58,2387.99,8.3781,392,38.86,23.3724 +15,30,-0.0004,-0.0003,642.24,1574.15,1396.49,21.61,555.14,2388.0,9054.65,47.06,523.06,2388.03,8.3799,392,39.27,23.3407 +15,31,0.0004,-0.0004,641.99,1580.38,1402.78,21.61,554.33,2388.02,9061.92,47.37,522.74,2388.04,8.406,392,39.03,23.4515 +15,32,0.0006,0.0,642.14,1584.56,1396.39,21.61,553.74,2388.01,9059.11,47.29,522.27,2388.03,8.3852,391,39.0,23.4328 +15,33,-0.0003,-0.0,642.11,1584.96,1397.69,21.61,553.97,2388.03,9063.17,47.16,522.4,2388.04,8.3959,393,39.09,23.4391 +15,34,0.0013,-0.0002,641.85,1590.39,1392.99,21.6,554.58,2388.01,9065.45,47.25,522.48,2387.98,8.3996,392,38.94,23.3261 +15,35,-0.0011,0.0001,642.41,1583.28,1402.65,21.61,554.62,2388.0,9061.89,47.11,522.24,2388.02,8.3939,392,39.09,23.4322 +15,36,0.0039,-0.0001,642.56,1591.33,1396.09,21.61,554.41,2388.0,9047.42,47.05,522.92,2387.98,8.3603,391,38.97,23.454 +15,37,0.0018,0.0,641.95,1589.69,1394.87,21.61,555.23,2388.06,9057.95,47.27,522.26,2388.05,8.3612,392,38.92,23.4714 +15,38,0.0055,-0.0,641.98,1580.82,1397.0,21.61,555.54,2387.96,9062.02,47.09,522.98,2388.03,8.3884,392,39.22,23.4945 +15,39,0.0006,0.0003,642.01,1587.69,1393.64,21.61,554.4,2388.02,9060.02,47.16,522.43,2387.96,8.4369,391,38.98,23.3673 +15,40,0.0004,-0.0002,642.5,1584.58,1398.07,21.61,554.13,2387.97,9058.56,47.13,522.12,2387.98,8.4109,391,39.07,23.369 +15,41,-0.0017,0.0002,641.96,1583.84,1393.26,21.61,554.32,2387.99,9056.63,47.23,522.11,2387.96,8.4012,392,39.0,23.4862 +15,42,0.0022,-0.0002,642.57,1584.18,1393.0,21.61,554.81,2388.0,9058.1,47.01,522.99,2388.01,8.3769,391,38.98,23.3555 +15,43,-0.0041,-0.0001,642.51,1585.4,1395.43,21.61,554.85,2388.08,9056.86,47.23,522.39,2387.96,8.4141,392,39.1,23.445 +15,44,-0.003,0.0003,642.18,1581.48,1393.57,21.61,555.01,2387.99,9055.16,47.04,521.99,2388.04,8.4089,392,39.08,23.4563 +15,45,-0.0002,0.0,642.26,1580.47,1395.59,21.61,554.99,2388.01,9057.82,47.03,521.96,2387.99,8.4198,391,38.95,23.3652 +15,46,0.0002,0.0002,642.15,1580.58,1407.34,21.61,554.3,2388.01,9051.12,47.0,521.84,2388.01,8.4182,391,39.16,23.4855 +15,47,-0.0007,0.0004,641.74,1593.18,1396.56,21.61,553.37,2388.01,9059.45,47.48,522.16,2388.01,8.3926,390,39.06,23.3375 +15,48,0.0013,-0.0003,642.23,1581.61,1395.42,21.6,554.36,2387.98,9054.29,47.17,522.12,2387.99,8.4052,391,39.09,23.4105 +15,49,0.0007,-0.0005,641.74,1584.85,1395.15,21.61,555.46,2388.0,9062.59,47.34,521.98,2388.02,8.4285,392,38.87,23.4577 +15,50,-0.0021,-0.0002,642.26,1583.47,1403.78,21.61,554.72,2388.0,9059.06,47.22,522.39,2388.02,8.3897,393,39.07,23.4351 +15,51,0.0015,-0.0,641.74,1584.66,1397.29,21.6,554.48,2388.03,9061.45,47.36,522.27,2388.03,8.3835,392,38.93,23.4525 +15,52,-0.0003,0.0004,642.26,1587.69,1399.54,21.61,554.23,2388.02,9065.86,47.14,522.1,2388.04,8.394,392,39.23,23.3558 +15,53,0.0047,-0.0004,641.76,1584.18,1394.35,21.61,554.78,2388.01,9055.39,47.14,522.27,2388.03,8.3804,392,39.08,23.4221 +15,54,-0.0,0.0004,642.05,1581.83,1398.56,21.61,554.9,2388.01,9058.2,47.24,522.54,2388.03,8.4064,392,39.11,23.4045 +15,55,0.0015,0.0005,642.57,1582.97,1393.88,21.61,555.23,2388.04,9056.47,47.29,521.62,2388.04,8.4138,392,38.95,23.392 +15,56,0.0025,-0.0001,642.66,1584.24,1399.54,21.61,554.9,2387.99,9057.96,47.08,522.39,2387.99,8.3877,393,39.07,23.5732 +15,57,-0.001,-0.0002,642.11,1587.81,1393.48,21.61,554.95,2388.01,9061.19,47.23,522.17,2387.99,8.3816,392,39.08,23.4629 +15,58,-0.0005,-0.0003,641.89,1584.11,1397.73,21.61,554.5,2388.02,9058.0,47.23,522.44,2387.98,8.3711,392,38.99,23.4157 +15,59,0.0037,-0.0003,641.81,1577.52,1399.53,21.61,554.44,2388.02,9060.41,47.43,522.59,2388.04,8.3715,392,38.67,23.4619 +15,60,0.0038,0.0004,642.0,1578.56,1400.34,21.61,554.39,2388.02,9061.22,47.21,521.89,2388.02,8.3925,391,38.92,23.3673 +15,61,-0.0024,0.0003,642.29,1588.69,1389.96,21.61,554.75,2388.01,9062.09,47.23,522.65,2388.04,8.4208,392,39.14,23.3634 +15,62,0.0007,0.0001,642.21,1578.29,1398.03,21.61,554.54,2388.02,9057.61,47.09,522.46,2388.01,8.4105,391,39.01,23.3912 +15,63,0.0008,0.0003,642.53,1581.64,1399.61,21.61,554.07,2388.0,9054.87,47.27,521.83,2388.06,8.4021,392,38.96,23.4058 +15,64,-0.0012,-0.0002,642.4,1584.95,1402.52,21.61,554.62,2388.02,9061.88,47.11,522.47,2388.07,8.419,392,38.87,23.4125 +15,65,-0.0037,0.0003,642.44,1591.69,1397.08,21.61,554.48,2388.04,9057.69,47.37,522.11,2387.98,8.3409,391,38.95,23.3545 +15,66,-0.0013,-0.0002,643.13,1586.26,1398.34,21.61,554.67,2388.01,9064.83,47.18,522.36,2387.99,8.4068,391,38.93,23.4124 +15,67,-0.0054,0.0003,642.86,1582.86,1399.6,21.61,554.45,2388.02,9056.82,47.25,522.43,2388.07,8.4007,393,38.95,23.4194 +15,68,-0.0011,-0.0,642.01,1591.15,1399.59,21.61,554.29,2388.0,9058.44,47.23,521.51,2388.04,8.4166,391,38.97,23.5508 +15,69,-0.0033,0.0004,642.63,1584.83,1389.68,21.61,554.68,2388.01,9061.91,47.18,522.91,2388.04,8.3951,392,39.1,23.357 +15,70,0.0009,0.0,642.18,1590.23,1398.83,21.61,555.08,2388.03,9051.66,47.29,522.29,2388.04,8.4326,392,39.05,23.4105 +15,71,-0.0005,-0.0002,642.6,1586.84,1396.53,21.61,554.75,2388.04,9055.77,47.37,522.84,2388.04,8.3923,392,38.83,23.3468 +15,72,0.0039,-0.0002,642.24,1583.64,1403.24,21.61,555.1,2388.03,9056.8,47.26,522.32,2387.99,8.419,391,39.03,23.377 +15,73,-0.0041,-0.0001,641.75,1586.52,1404.62,21.61,554.55,2388.0,9056.72,47.14,522.59,2388.02,8.3891,393,39.1,23.4947 +15,74,-0.0014,0.0001,642.33,1587.38,1403.28,21.61,553.86,2387.98,9054.13,47.17,522.83,2388.01,8.3914,392,38.9,23.3666 +15,75,0.0006,-0.0002,641.85,1585.44,1390.22,21.61,554.45,2388.07,9061.94,47.26,522.41,2388.06,8.4125,392,39.08,23.5043 +15,76,0.0011,-0.0,642.21,1595.24,1397.85,21.61,554.71,2387.99,9061.51,47.3,522.07,2388.01,8.378,392,39.0,23.3428 +15,77,-0.0019,0.0002,642.36,1584.32,1393.14,21.61,554.33,2388.03,9059.02,47.45,521.96,2388.0,8.4374,393,38.96,23.2786 +15,78,0.0036,0.0005,642.51,1586.82,1399.83,21.61,554.15,2387.97,9059.75,46.99,522.31,2387.96,8.3634,391,39.03,23.4495 +15,79,0.0025,0.0003,641.82,1587.74,1396.19,21.61,554.26,2388.06,9055.67,47.35,521.75,2387.99,8.4457,393,38.93,23.3939 +15,80,-0.0012,-0.0003,641.95,1590.36,1399.08,21.61,554.77,2387.98,9064.74,47.37,522.02,2388.01,8.3893,390,39.03,23.4507 +15,81,0.0037,0.0005,642.24,1583.1,1393.56,21.61,554.13,2388.07,9066.89,47.14,522.06,2387.99,8.3818,392,39.08,23.3683 +15,82,-0.0005,0.0004,641.96,1583.45,1403.43,21.61,554.33,2388.06,9058.22,47.23,522.48,2387.99,8.3999,391,38.86,23.4031 +15,83,0.0006,-0.0001,642.28,1583.51,1397.4,21.61,554.55,2387.99,9057.93,47.19,521.82,2388.01,8.413,393,38.89,23.2544 +15,84,-0.0003,-0.0005,642.17,1585.11,1396.87,21.61,554.38,2388.01,9054.89,47.36,522.62,2388.0,8.3981,391,38.86,23.3906 +15,85,-0.0001,-0.0002,642.12,1578.89,1394.12,21.61,554.02,2388.01,9053.48,47.26,522.16,2388.01,8.4396,391,39.17,23.4975 +15,86,-0.0005,-0.0002,641.94,1581.75,1406.17,21.6,554.1,2388.0,9066.57,47.33,522.45,2388.03,8.3758,392,39.17,23.3478 +15,87,-0.0021,-0.0002,641.92,1589.06,1399.81,21.61,553.91,2388.01,9062.61,47.27,522.2,2388.03,8.395,392,39.09,23.349 +15,88,-0.001,-0.0004,642.06,1587.41,1401.08,21.61,554.05,2388.03,9059.2,47.15,522.61,2388.02,8.4119,392,39.05,23.4703 +15,89,-0.0007,0.0004,642.02,1585.47,1402.98,21.61,554.73,2388.03,9058.62,47.15,521.86,2388.04,8.4252,392,39.0,23.4427 +15,90,0.0011,-0.0002,642.35,1592.35,1402.51,21.61,553.83,2388.03,9063.47,47.43,522.01,2388.0,8.3963,390,39.04,23.4098 +15,91,0.0011,0.0001,642.46,1581.34,1405.34,21.61,554.14,2388.09,9057.17,47.31,522.65,2388.02,8.4111,393,38.96,23.2973 +15,92,0.0012,0.0001,641.62,1588.91,1406.95,21.61,553.74,2388.04,9058.78,47.22,521.72,2388.03,8.4418,393,38.97,23.3102 +15,93,-0.0021,0.0003,641.89,1583.71,1398.49,21.61,553.67,2388.04,9058.26,47.33,521.9,2388.0,8.3862,393,39.07,23.4829 +15,94,0.0003,0.0005,642.33,1585.91,1402.22,21.61,554.23,2388.01,9060.76,47.37,522.53,2387.99,8.3945,392,39.04,23.2893 +15,95,0.0006,-0.0,642.57,1582.79,1402.67,21.61,553.66,2388.02,9054.59,47.23,522.2,2388.02,8.3953,392,39.22,23.3732 +15,96,-0.0008,0.0001,642.3,1587.8,1393.12,21.61,554.17,2388.0,9057.18,47.22,522.03,2388.0,8.4367,393,39.07,23.4881 +15,97,-0.0004,-0.0002,642.0,1594.93,1396.41,21.61,554.14,2388.06,9056.45,47.43,522.1,2388.02,8.3998,394,39.03,23.366 +15,98,-0.001,0.0003,641.97,1586.38,1405.04,21.61,553.26,2388.02,9050.51,47.28,522.18,2388.05,8.3754,393,39.05,23.4135 +15,99,0.0018,-0.0,642.8,1589.94,1402.19,21.61,554.51,2388.04,9050.98,47.38,522.22,2388.05,8.4147,393,38.97,23.4945 +15,100,0.0019,-0.0004,642.08,1588.67,1396.26,21.61,554.1,2388.02,9054.88,47.32,522.65,2388.0,8.4117,393,39.21,23.3159 +15,101,-0.002,-0.0001,642.38,1578.98,1396.3,21.61,554.36,2388.04,9056.89,47.23,522.49,2388.0,8.4371,392,39.1,23.4591 +15,102,0.0007,0.0002,641.9,1581.1,1402.09,21.61,553.56,2388.03,9060.87,47.24,521.94,2388.02,8.4293,394,39.1,23.3745 +15,103,-0.0012,-0.0001,642.57,1586.84,1403.11,21.61,553.29,2388.06,9057.6,47.37,521.86,2388.04,8.429,393,38.98,23.4535 +15,104,0.0029,-0.0001,642.43,1587.78,1401.92,21.61,554.12,2388.02,9056.53,47.43,522.09,2388.03,8.3723,391,39.08,23.4065 +15,105,-0.0002,0.0003,642.18,1588.27,1398.2,21.61,554.79,2388.02,9058.06,47.41,522.34,2388.0,8.4073,391,39.0,23.385 +15,106,0.0013,-0.0002,642.68,1589.72,1400.98,21.61,553.99,2388.01,9058.73,47.18,522.13,2388.03,8.4173,391,38.88,23.348 +15,107,0.0015,0.0001,642.74,1591.35,1395.01,21.61,554.07,2388.04,9048.54,47.15,521.74,2388.1,8.3911,391,39.03,23.3286 +15,108,0.0013,0.0002,642.06,1583.94,1399.22,21.61,554.39,2388.05,9055.59,47.22,521.83,2388.07,8.4221,393,38.95,23.387 +15,109,0.0042,0.0001,642.51,1589.15,1395.3,21.61,553.68,2388.07,9060.95,47.35,522.01,2388.09,8.4054,392,38.79,23.4098 +15,110,0.0017,-0.0,642.22,1589.73,1393.1,21.61,554.46,2388.07,9059.81,47.42,522.17,2387.99,8.3995,392,39.06,23.348 +15,111,-0.0006,0.0002,642.39,1581.07,1400.61,21.61,553.78,2388.02,9056.73,47.38,521.86,2388.03,8.3951,393,38.84,23.3774 +15,112,-0.002,-0.0003,641.71,1582.81,1405.7,21.61,553.56,2388.0,9058.0,47.42,521.56,2388.01,8.4127,393,39.06,23.321 +15,113,0.0011,0.0005,642.05,1579.46,1402.68,21.61,553.78,2388.03,9056.79,47.28,521.95,2388.07,8.4212,392,39.06,23.4102 +15,114,-0.0064,-0.0001,642.37,1591.91,1404.17,21.61,554.3,2388.02,9053.94,47.27,521.64,2388.08,8.4124,393,38.79,23.42 +15,115,0.002,-0.0002,642.63,1589.26,1404.83,21.61,553.59,2388.03,9054.0,47.31,521.65,2387.99,8.4103,393,38.93,23.4324 +15,116,-0.0001,-0.0003,642.49,1588.93,1402.16,21.61,553.74,2388.05,9061.98,47.32,522.28,2388.03,8.393,391,38.93,23.3816 +15,117,-0.0024,0.0002,642.44,1588.01,1399.93,21.61,553.94,2388.02,9065.49,47.29,521.79,2388.02,8.4195,393,38.99,23.2936 +15,118,0.0024,0.0001,641.45,1590.8,1402.87,21.61,553.84,2388.04,9052.23,47.14,521.86,2388.03,8.4226,392,38.77,23.3585 +15,119,-0.0006,0.0005,642.26,1580.44,1395.59,21.61,554.33,2388.04,9061.9,47.35,521.7,2388.02,8.3684,392,38.91,23.3598 +15,120,0.0009,0.0002,641.7,1587.63,1398.3,21.61,554.06,2388.08,9055.32,47.45,521.81,2388.05,8.3796,393,39.05,23.3618 +15,121,0.0,0.0002,643.1,1594.17,1394.78,21.61,554.38,2388.04,9056.31,47.5,521.85,2388.04,8.4313,393,39.08,23.3346 +15,122,0.0018,-0.0004,642.11,1584.97,1398.55,21.61,554.97,2388.0,9056.93,47.52,522.16,2388.07,8.3882,392,38.96,23.3643 +15,123,0.0002,-0.0002,642.17,1582.85,1408.4,21.61,554.05,2388.08,9063.35,47.27,521.77,2388.02,8.4253,393,38.85,23.3931 +15,124,0.002,0.0003,642.5,1588.45,1405.57,21.6,553.43,2388.06,9060.27,47.34,521.6,2388.06,8.4107,392,38.79,23.3535 +15,125,-0.002,-0.0004,642.84,1588.86,1404.73,21.61,553.02,2388.03,9057.14,47.35,521.95,2388.12,8.4329,393,38.97,23.4524 +15,126,-0.0005,-0.0003,641.95,1593.68,1401.22,21.61,553.51,2388.1,9054.76,47.5,522.23,2388.02,8.4258,394,38.93,23.2533 +15,127,0.0011,0.0005,642.1,1589.3,1397.59,21.61,553.7,2388.09,9052.79,47.54,521.8,2388.07,8.4339,392,39.12,23.2636 +15,128,-0.0023,0.0004,642.66,1587.07,1410.27,21.61,554.08,2388.11,9056.2,47.35,522.37,2388.05,8.4279,391,38.79,23.298 +15,129,0.0007,0.0005,641.54,1583.6,1404.57,21.61,553.76,2388.12,9050.54,47.45,521.66,2388.1,8.4285,392,38.76,23.3012 +15,130,-0.0021,-0.0003,642.34,1589.19,1402.03,21.61,553.8,2388.07,9059.1,47.35,521.79,2388.08,8.4502,392,38.83,23.3836 +15,131,-0.0,0.0004,642.26,1585.34,1404.06,21.61,553.87,2388.06,9061.06,47.56,521.83,2388.08,8.4413,393,38.78,23.41 +15,132,0.0013,0.0004,642.74,1579.91,1406.23,21.61,554.04,2388.09,9052.19,47.58,521.72,2388.07,8.4236,393,38.94,23.3697 +15,133,-0.0022,-0.0002,642.19,1577.58,1405.78,21.61,553.86,2388.07,9056.16,47.47,521.34,2388.07,8.4078,394,39.05,23.2832 +15,134,-0.0012,0.0003,642.69,1592.02,1405.44,21.61,553.16,2388.06,9054.08,47.46,521.62,2388.08,8.4609,393,39.01,23.3382 +15,135,0.0018,0.0001,642.18,1588.62,1408.15,21.61,553.85,2388.1,9056.87,47.43,522.03,2388.06,8.4478,392,39.18,23.4428 +15,136,-0.0043,-0.0001,642.59,1581.14,1403.22,21.61,553.41,2388.07,9058.83,47.41,522.26,2388.01,8.4545,392,38.75,23.3093 +15,137,0.0034,0.0003,642.82,1585.75,1398.79,21.61,553.84,2388.08,9052.73,47.35,521.84,2388.05,8.4433,393,38.92,23.3069 +15,138,0.0029,0.0001,642.05,1585.88,1406.24,21.61,553.76,2388.09,9057.57,47.48,521.69,2388.08,8.4561,393,38.78,23.3039 +15,139,-0.0003,0.0003,642.45,1592.16,1410.66,21.61,553.94,2388.04,9056.43,47.44,521.49,2388.1,8.4328,393,38.77,23.3034 +15,140,-0.002,0.0005,642.96,1589.89,1404.6,21.61,552.94,2388.08,9059.53,47.46,522.09,2388.05,8.4463,393,38.88,23.3203 +15,141,-0.0001,0.0001,642.37,1592.65,1403.51,21.61,553.55,2388.09,9056.08,47.43,521.7,2388.1,8.4352,392,38.94,23.2308 +15,142,0.0006,-0.0002,642.49,1588.19,1403.8,21.61,553.41,2388.09,9059.44,47.44,521.69,2388.05,8.3975,393,38.88,23.2852 +15,143,0.0022,0.0002,642.32,1582.47,1406.21,21.61,553.83,2388.09,9057.94,47.44,521.46,2388.1,8.4468,392,38.92,23.3247 +15,144,-0.0055,-0.0004,643.21,1588.64,1401.59,21.61,553.06,2388.13,9054.78,47.49,521.51,2388.1,8.4551,392,38.88,23.3139 +15,145,0.0028,0.0004,642.44,1586.94,1398.81,21.61,553.79,2388.12,9057.66,47.54,521.41,2388.08,8.4322,394,38.89,23.3343 +15,146,-0.0019,0.0003,643.2,1590.01,1405.95,21.61,553.59,2388.11,9058.19,47.63,521.81,2388.06,8.4268,393,39.01,23.3157 +15,147,0.0022,0.0003,642.52,1589.85,1411.7,21.61,554.21,2388.16,9050.0,47.55,521.09,2388.08,8.4442,393,38.82,23.2988 +15,148,-0.0006,0.0003,642.89,1585.94,1405.24,21.61,553.17,2388.11,9057.22,47.49,521.8,2388.11,8.4288,392,38.82,23.3257 +15,149,-0.0025,0.0002,642.43,1586.98,1401.05,21.61,554.26,2388.04,9057.26,47.45,521.55,2388.08,8.4384,393,38.85,23.3283 +15,150,0.0006,0.0002,642.44,1586.08,1410.5,21.61,553.07,2388.09,9051.36,47.56,520.85,2388.11,8.4335,395,38.89,23.249 +15,151,-0.0002,-0.0004,642.47,1588.62,1409.6,21.61,553.32,2388.05,9057.43,47.43,521.43,2388.14,8.4453,392,38.86,23.2729 +15,152,0.0033,0.0004,642.21,1595.25,1408.89,21.61,553.74,2388.11,9057.49,47.42,521.89,2388.06,8.457,392,38.82,23.3143 +15,153,0.0042,-0.0004,642.81,1590.55,1405.44,21.61,553.88,2388.13,9059.01,47.49,521.52,2388.15,8.4141,393,38.79,23.1558 +15,154,0.0027,-0.0005,642.9,1584.03,1410.34,21.61,552.86,2388.09,9056.95,47.49,521.33,2388.07,8.4523,393,38.8,23.3389 +15,155,-0.004,0.0003,642.36,1583.3,1409.17,21.61,553.51,2388.15,9055.03,47.71,521.0,2388.12,8.4334,393,38.83,23.2392 +15,156,-0.0014,-0.0003,643.24,1590.1,1407.82,21.61,553.63,2388.11,9054.23,47.42,521.48,2388.15,8.4387,392,38.82,23.267 +15,157,-0.0005,0.0002,642.82,1593.53,1406.36,21.61,553.83,2388.12,9051.35,47.56,521.42,2388.1,8.4453,395,38.89,23.2984 +15,158,-0.0014,0.0004,642.93,1592.39,1407.61,21.61,553.5,2388.12,9059.72,47.65,521.36,2388.08,8.4613,393,38.6,23.3778 +15,159,-0.001,-0.0003,642.72,1588.38,1414.99,21.61,553.03,2388.08,9047.23,47.86,521.06,2388.13,8.4476,393,38.81,23.2503 +15,160,0.0008,-0.0001,642.71,1585.84,1401.76,21.61,552.92,2388.09,9054.88,47.47,521.13,2388.1,8.426,392,38.86,23.3554 +15,161,-0.0056,0.0003,642.93,1591.03,1409.9,21.61,553.71,2388.13,9056.73,47.76,521.07,2388.1,8.468,393,38.86,23.2804 +15,162,0.0021,-0.0,642.85,1593.57,1409.35,21.61,553.6,2388.1,9065.83,47.59,521.24,2388.07,8.4355,393,38.85,23.352 +15,163,0.0007,0.0001,643.4,1587.45,1411.16,21.61,552.8,2388.15,9057.81,47.6,521.73,2388.09,8.4678,394,38.86,23.317 +15,164,-0.0023,-0.0001,643.12,1589.35,1408.98,21.61,552.68,2388.12,9060.78,47.71,521.17,2388.07,8.4362,395,38.55,23.2515 +15,165,-0.0009,0.0,643.15,1592.59,1413.07,21.61,552.4,2388.12,9056.26,47.77,521.18,2388.09,8.4613,394,38.71,23.2397 +15,166,-0.0023,-0.0002,642.77,1590.17,1415.43,21.61,552.73,2388.18,9053.75,47.68,520.92,2388.13,8.4733,394,38.8,23.1769 +15,167,0.0007,0.0003,643.03,1589.24,1406.28,21.61,553.16,2388.09,9055.57,47.69,521.06,2388.15,8.4414,394,38.58,23.1966 +15,168,0.0055,-0.0003,642.56,1589.81,1404.76,21.61,553.17,2388.13,9054.93,47.6,521.5,2388.2,8.4642,394,38.85,23.2577 +15,169,0.0017,0.0001,642.8,1592.88,1409.42,21.61,553.0,2388.16,9052.15,47.58,521.1,2388.18,8.442,392,38.75,23.226 +15,170,0.005,-0.0001,642.76,1601.76,1411.39,21.61,553.18,2388.22,9054.07,47.63,521.12,2388.2,8.494,392,38.7,23.2024 +15,171,-0.0035,0.0005,643.06,1595.83,1416.74,21.61,552.41,2388.11,9063.75,47.67,521.53,2388.14,8.4464,392,38.68,23.2776 +15,172,0.0009,0.0002,642.88,1595.04,1410.23,21.61,552.74,2388.14,9051.1,47.61,520.88,2388.16,8.4838,393,38.79,23.2144 +15,173,-0.0011,0.0005,643.35,1589.53,1419.42,21.61,553.26,2388.09,9058.99,47.77,520.48,2388.14,8.452,394,38.8,23.2054 +15,174,-0.0004,-0.0002,643.38,1593.92,1407.39,21.61,552.69,2388.15,9051.8,47.7,522.07,2388.16,8.462,394,38.73,23.2705 +15,175,-0.0008,0.0003,643.07,1603.56,1415.76,21.61,552.35,2388.17,9052.03,47.64,520.06,2388.2,8.4539,394,38.62,23.1327 +15,176,0.0004,0.0002,642.57,1592.48,1418.25,21.61,552.66,2388.16,9052.9,47.66,521.0,2388.13,8.4904,393,38.72,23.2662 +15,177,0.0005,-0.0,642.68,1592.29,1411.65,21.61,552.32,2388.18,9056.11,47.65,520.69,2388.19,8.4307,396,38.85,23.2184 +15,178,0.0021,-0.0003,643.29,1589.52,1414.35,21.61,553.14,2388.24,9046.51,47.81,521.11,2388.2,8.4944,394,38.75,23.2851 +15,179,-0.0044,0.0004,643.14,1595.76,1417.69,21.61,552.38,2388.15,9054.13,47.66,520.88,2388.12,8.4928,395,38.6,23.2347 +15,180,0.0026,0.0005,643.68,1589.14,1411.81,21.61,552.33,2388.14,9050.87,47.79,521.01,2388.17,8.4932,394,38.6,23.2513 +15,181,0.0033,-0.0003,642.86,1596.76,1415.11,21.61,552.3,2388.17,9053.01,47.73,520.83,2388.18,8.4666,394,38.62,23.2802 +15,182,0.0017,-0.0003,643.18,1598.66,1411.34,21.61,552.36,2388.19,9051.03,47.91,520.65,2388.22,8.4688,395,38.63,23.2362 +15,183,-0.0036,0.0004,643.12,1599.11,1416.83,21.61,552.09,2388.17,9050.35,47.95,520.94,2388.18,8.4597,396,38.68,23.1345 +15,184,-0.0025,-0.0003,643.18,1590.86,1423.28,21.61,552.36,2388.13,9051.45,47.85,521.3,2388.2,8.4563,395,38.7,23.1749 +15,185,0.0033,-0.0001,643.66,1594.37,1418.4,21.61,552.46,2388.22,9047.88,48.05,520.79,2388.15,8.4975,394,38.81,23.162 +15,186,0.0017,-0.0004,642.89,1593.82,1421.59,21.61,552.97,2388.2,9051.04,47.9,520.49,2388.18,8.4862,395,38.65,23.2497 +15,187,0.0008,-0.0001,642.59,1596.53,1419.27,21.61,552.39,2388.2,9046.77,47.9,520.74,2388.22,8.4711,395,38.69,23.1392 +15,188,0.0002,0.0003,643.64,1595.04,1425.28,21.61,552.7,2388.21,9051.46,47.62,520.57,2388.24,8.485,395,38.6,23.2026 +15,189,0.0004,0.0005,643.48,1593.45,1421.73,21.61,553.09,2388.23,9057.75,47.91,520.12,2388.24,8.4673,394,38.43,23.1478 +15,190,-0.002,0.0002,643.25,1598.19,1417.33,21.61,552.08,2388.24,9056.28,47.89,520.78,2388.23,8.5213,395,38.38,23.2012 +15,191,0.0031,0.0004,642.88,1597.57,1426.05,21.61,551.77,2388.22,9046.65,47.89,519.81,2388.18,8.4902,395,38.69,23.0837 +15,192,-0.0024,-0.0002,643.57,1596.63,1414.34,21.61,551.87,2388.24,9050.2,47.99,520.11,2388.26,8.5037,395,38.59,23.1643 +15,193,0.0023,-0.0002,643.67,1602.89,1422.12,21.61,552.12,2388.28,9052.03,48.03,520.0,2388.28,8.4999,395,38.37,23.1007 +15,194,-0.0001,0.0002,643.24,1606.09,1425.55,21.61,551.95,2388.23,9052.6,48.04,520.44,2388.27,8.5292,395,38.71,23.2484 +15,195,-0.0006,0.0002,643.3,1599.35,1417.88,21.61,551.58,2388.22,9051.29,47.9,520.24,2388.24,8.4762,395,38.73,23.1122 +15,196,-0.0034,0.0001,643.75,1602.92,1427.19,21.61,551.63,2388.17,9045.38,48.05,519.96,2388.18,8.5007,395,38.47,23.1263 +15,197,-0.0022,0.0005,643.48,1595.69,1425.4,21.61,551.6,2388.22,9043.98,47.91,519.86,2388.25,8.5073,395,38.65,23.0755 +15,198,-0.0004,-0.0004,643.57,1595.22,1426.08,21.61,551.3,2388.24,9047.73,48.06,520.19,2388.23,8.4904,395,38.57,23.0543 +15,199,-0.0009,0.0002,643.68,1597.76,1418.77,21.61,551.23,2388.25,9051.72,48.0,519.71,2388.28,8.5103,396,38.63,23.1097 +15,200,-0.0037,0.0003,643.74,1594.8,1419.29,21.61,552.1,2388.23,9043.79,47.93,520.54,2388.3,8.5169,396,38.53,23.1659 +15,201,-0.0033,0.0002,643.54,1603.41,1418.86,21.61,552.23,2388.25,9045.46,48.12,520.04,2388.23,8.4931,395,38.56,23.2137 +15,202,-0.0009,0.0004,643.6,1602.94,1428.07,21.61,551.46,2388.25,9047.82,47.87,519.64,2388.26,8.5078,398,38.37,23.0895 +15,203,0.0024,-0.0003,643.93,1604.48,1433.98,21.61,551.88,2388.29,9047.38,48.1,519.6,2388.32,8.4912,396,38.44,23.0578 +15,204,0.0031,-0.0003,643.38,1604.93,1435.38,21.61,551.59,2388.24,9046.98,48.04,519.92,2388.28,8.4576,396,38.51,23.064 +15,205,-0.0027,0.0004,643.46,1599.75,1425.96,21.61,550.98,2388.33,9042.81,48.3,519.67,2388.27,8.5154,397,38.55,23.1362 +15,206,0.0004,0.0001,643.84,1608.43,1429.5,21.61,550.77,2388.32,9047.2,48.19,520.13,2388.33,8.5487,396,38.42,23.104 +15,207,-0.0002,0.0001,643.65,1599.27,1433.72,21.61,551.59,2388.33,9039.93,48.3,519.67,2388.31,8.5381,396,38.43,23.0375 +16,10,0.0001,0.0003,643.01,1585.19,1407.4,21.61,552.65,2388.14,9053.19,47.65,521.45,2388.07,8.4403,394,38.95,23.3457 +16,11,0.004,-0.0,642.96,1597.12,1412.89,21.61,553.38,2388.11,9053.03,47.48,521.39,2388.14,8.457,394,38.86,23.235 +16,12,0.0005,0.0003,642.84,1596.1,1412.87,21.61,553.18,2388.15,9057.77,47.64,521.0,2388.1,8.4553,393,38.8,23.3143 +16,13,-0.0027,-0.0003,642.3,1580.59,1415.69,21.61,553.06,2388.09,9056.35,47.58,521.7,2388.09,8.4589,394,38.95,23.2962 +16,14,-0.0021,0.0004,642.56,1593.9,1412.3,21.61,552.49,2388.19,9063.48,47.59,521.43,2388.12,8.4581,394,38.82,23.2913 +16,15,-0.0007,0.0004,642.81,1583.74,1407.76,21.61,552.7,2388.15,9050.72,47.4,521.23,2388.11,8.4731,393,38.82,23.3314 +16,16,0.0024,-0.0003,642.92,1597.45,1408.44,21.61,552.94,2388.09,9058.68,47.48,521.19,2388.09,8.439,393,38.92,23.3045 +16,17,0.0025,-0.0003,642.3,1592.55,1413.17,21.61,552.88,2388.07,9053.55,47.68,521.64,2388.06,8.5058,394,38.97,23.2584 +16,18,-0.0007,0.0004,642.74,1588.24,1415.16,21.61,553.3,2388.15,9056.49,47.62,521.17,2388.08,8.4163,393,38.68,23.2525 +16,19,0.0,0.0002,643.25,1589.64,1406.94,21.61,552.23,2388.1,9059.19,47.72,521.37,2388.12,8.4503,393,38.82,23.2175 +16,20,-0.0015,0.0002,642.82,1586.98,1409.82,21.61,553.22,2388.16,9057.93,47.64,521.25,2388.14,8.4321,393,38.77,23.2288 +16,21,-0.0026,-0.0005,643.06,1590.99,1407.12,21.61,553.11,2388.13,9053.02,47.57,521.17,2388.12,8.4729,394,38.77,23.2845 +16,22,-0.0019,-0.0003,642.3,1593.29,1403.39,21.61,553.51,2388.15,9063.97,47.77,521.33,2388.15,8.4692,393,38.75,23.2237 +16,23,0.0005,-0.0004,642.5,1593.21,1406.08,21.61,552.83,2388.14,9059.4,47.61,521.73,2388.14,8.446,392,38.94,23.3972 +16,24,-0.0006,0.0001,643.0,1589.47,1406.95,21.61,553.2,2388.14,9055.99,47.59,521.06,2388.06,8.4398,392,38.96,23.2359 +16,25,-0.0006,-0.0002,642.86,1585.77,1404.33,21.61,553.88,2388.13,9058.03,47.49,521.5,2388.08,8.4417,393,38.9,23.2828 +16,26,0.0,-0.0002,642.59,1588.57,1406.58,21.61,552.3,2388.13,9060.53,47.7,521.03,2388.13,8.4755,394,38.89,23.2548 +16,27,0.002,0.0003,642.36,1588.9,1412.82,21.61,553.85,2388.15,9059.48,47.75,521.57,2388.13,8.4393,394,38.87,23.1782 +16,28,0.005,0.0005,642.9,1594.26,1404.36,21.61,553.51,2388.09,9062.02,47.68,520.82,2388.13,8.4846,395,38.82,23.2941 +16,29,0.0021,-0.0001,642.83,1593.36,1409.8,21.61,552.79,2388.1,9057.95,47.58,521.33,2388.17,8.453,394,38.86,23.2945 +16,30,-0.0019,-0.0004,642.57,1587.58,1406.71,21.61,552.76,2388.08,9054.98,47.47,521.13,2388.1,8.4607,393,38.61,23.4158 +16,31,-0.0016,-0.0003,642.79,1593.29,1414.7,21.61,553.23,2388.14,9066.42,47.61,521.67,2388.12,8.4621,392,38.7,23.3235 +16,32,-0.0007,0.0003,643.11,1594.51,1413.42,21.61,553.43,2388.09,9056.62,47.5,521.08,2388.11,8.449,393,38.84,23.2429 +16,33,-0.0017,0.0003,643.07,1592.58,1406.42,21.61,553.21,2388.13,9049.33,47.53,521.53,2388.14,8.4564,392,38.72,23.3263 +16,34,-0.001,0.0003,642.77,1581.93,1409.91,21.61,552.9,2388.08,9050.52,47.46,520.83,2388.13,8.4642,393,38.83,23.2277 +16,35,0.0013,0.0005,642.68,1589.19,1412.25,21.61,553.02,2388.13,9059.36,47.7,521.54,2388.09,8.4688,393,38.84,23.1409 +16,36,-0.0016,0.0003,642.58,1586.21,1401.84,21.61,553.18,2388.13,9063.89,47.62,521.88,2388.12,8.445,394,38.86,23.3335 +16,37,-0.0006,-0.0001,642.43,1588.54,1407.45,21.61,552.95,2388.12,9058.36,47.39,521.35,2388.11,8.4644,393,38.82,23.2639 +16,38,-0.0021,0.0005,642.33,1590.72,1410.52,21.61,553.39,2388.15,9053.72,47.53,521.3,2388.11,8.4214,394,38.96,23.2394 +16,39,0.0027,0.0005,642.7,1593.41,1412.23,21.61,553.12,2388.1,9056.38,47.56,521.29,2388.13,8.4446,392,38.73,23.194 +16,40,0.0025,0.0002,642.7,1593.39,1411.15,21.61,553.16,2388.11,9065.01,47.77,521.0,2388.13,8.4425,394,38.77,23.1897 +16,41,-0.0012,-0.0004,642.46,1595.11,1415.71,21.61,552.83,2388.11,9061.42,47.61,520.8,2388.17,8.4615,393,38.78,23.3384 +16,42,-0.0017,0.0001,642.88,1593.16,1408.39,21.61,553.84,2388.15,9060.87,47.71,521.48,2388.12,8.4789,395,38.95,23.2211 +16,43,-0.0001,0.0003,642.4,1589.08,1421.17,21.61,552.74,2388.17,9063.53,47.59,520.99,2388.1,8.4489,394,38.61,23.2488 +16,44,-0.0002,0.0003,642.38,1593.16,1409.48,21.61,553.47,2388.08,9056.7,47.71,521.43,2388.14,8.4648,393,38.78,23.3499 +16,45,0.0005,0.0003,642.7,1585.66,1409.55,21.61,553.34,2388.12,9056.01,47.52,521.62,2388.14,8.5035,392,38.85,23.3491 +16,46,0.0029,-0.0004,643.02,1588.24,1420.29,21.61,552.87,2388.11,9058.02,47.51,521.65,2388.16,8.4147,394,38.75,23.2987 +16,47,0.0011,-0.0003,642.62,1598.58,1411.15,21.61,552.68,2388.12,9063.96,47.68,521.12,2388.15,8.4197,394,38.71,23.2019 +16,48,0.0006,-0.0003,642.81,1585.74,1412.69,21.61,553.58,2388.12,9063.81,47.58,520.84,2388.13,8.4429,392,38.66,23.1808 +16,49,0.0016,-0.0005,643.45,1595.47,1408.92,21.61,553.42,2388.13,9064.13,47.68,521.33,2388.16,8.4647,394,38.79,23.3091 +16,50,-0.0016,0.0001,643.28,1589.08,1413.15,21.61,553.95,2388.14,9065.99,47.72,521.03,2388.1,8.4537,394,38.69,23.2716 +16,51,-0.0008,-0.0001,642.97,1591.0,1413.93,21.61,553.55,2388.11,9058.77,47.75,521.66,2388.14,8.4525,394,38.83,23.1686 +16,52,-0.0037,0.0002,642.61,1588.21,1412.73,21.61,553.95,2388.09,9069.53,47.51,521.45,2388.13,8.4815,392,38.81,23.2392 +16,53,0.0029,0.0005,642.97,1593.84,1410.74,21.61,552.95,2388.15,9056.34,47.58,521.53,2388.06,8.4462,394,38.55,23.2367 +16,54,-0.0005,0.0,642.92,1593.78,1406.44,21.61,553.42,2388.13,9061.53,47.71,521.6,2388.07,8.4479,393,38.76,23.2507 +16,55,-0.0028,0.0003,642.54,1594.83,1412.91,21.61,552.74,2388.16,9065.35,47.53,521.11,2388.08,8.4316,394,38.62,23.2167 +16,56,-0.0042,0.0001,642.41,1594.51,1411.32,21.61,552.96,2388.12,9057.69,47.57,520.59,2388.15,8.4334,395,38.7,23.1823 +16,57,-0.0006,0.0,642.56,1599.43,1413.91,21.61,553.07,2388.16,9056.72,47.66,521.08,2388.08,8.4564,392,38.84,23.2099 +16,58,-0.0005,0.0001,642.95,1593.98,1409.17,21.61,553.11,2388.13,9050.88,47.46,520.87,2388.12,8.4683,391,38.7,23.1916 +16,59,-0.0043,-0.0004,643.24,1588.15,1413.43,21.61,553.95,2388.09,9059.17,47.75,521.16,2388.11,8.4508,393,38.72,23.2897 +16,60,-0.002,0.0001,642.92,1593.79,1405.9,21.61,553.03,2388.1,9056.95,47.5,521.4,2388.11,8.4544,394,38.89,23.3153 +16,61,0.0002,-0.0002,642.57,1590.32,1413.95,21.61,552.69,2388.15,9054.49,47.58,521.42,2388.07,8.4194,393,38.65,23.2367 +16,62,0.0,0.0001,642.98,1590.73,1405.39,21.61,554.17,2388.19,9054.46,47.67,520.64,2388.1,8.4783,392,38.78,23.1966 +16,63,0.0025,0.0,643.44,1591.58,1409.86,21.61,552.92,2388.14,9063.42,47.77,521.11,2388.13,8.4807,394,38.65,23.3293 +16,64,0.0013,-0.0004,642.8,1588.99,1406.18,21.61,552.86,2388.13,9060.2,47.85,521.01,2388.14,8.4095,393,38.84,23.2971 +16,65,0.0001,-0.0001,642.87,1583.82,1410.34,21.61,553.69,2388.12,9052.15,47.59,521.2,2388.13,8.4666,393,38.9,23.1628 +16,66,0.0045,0.0,642.45,1591.03,1407.18,21.61,552.76,2388.1,9063.34,47.51,520.71,2388.08,8.4223,393,38.78,23.282 +16,67,0.0028,-0.0001,642.45,1596.45,1408.07,21.61,552.55,2388.15,9055.59,47.67,521.25,2388.17,8.458,393,38.77,23.3148 +16,68,0.0055,-0.0002,642.52,1588.58,1409.1,21.61,553.05,2388.13,9058.84,47.63,521.32,2388.11,8.4646,393,38.85,23.2195 +16,69,-0.0018,-0.0004,642.38,1592.82,1412.95,21.61,553.75,2388.17,9060.87,47.6,521.03,2388.13,8.448,394,38.75,23.216 +16,70,-0.0039,0.0004,643.23,1596.7,1406.13,21.61,552.81,2388.12,9063.47,47.63,521.14,2388.13,8.4366,393,38.79,23.1273 +16,71,-0.001,0.0001,643.26,1585.02,1416.64,21.61,552.63,2388.14,9059.56,47.77,520.96,2388.15,8.4372,393,38.61,23.2862 +16,72,0.0038,0.0003,642.33,1593.48,1415.99,21.61,552.76,2388.11,9057.39,47.68,521.25,2388.09,8.4321,395,38.86,23.3846 +16,73,0.004,-0.0002,642.8,1600.42,1408.34,21.61,552.88,2388.13,9067.12,47.8,520.82,2388.14,8.4652,393,38.92,23.2089 +16,74,-0.0002,0.0001,643.01,1597.17,1411.47,21.61,553.88,2388.13,9056.2,47.58,521.18,2388.11,8.4609,393,38.81,23.2078 +16,75,-0.0024,-0.0,642.9,1589.31,1419.33,21.61,552.72,2388.11,9058.88,47.5,520.98,2388.11,8.4814,394,38.75,23.3 +16,76,-0.0029,0.0003,642.65,1581.23,1408.91,21.61,552.37,2388.12,9062.53,47.42,521.31,2388.12,8.4229,393,38.83,23.1664 +16,77,0.0014,-0.0003,642.8,1585.48,1414.18,21.61,553.81,2388.11,9059.94,47.76,521.66,2388.13,8.4657,394,38.74,23.2181 +16,78,0.001,-0.0004,642.67,1597.02,1408.81,21.61,552.97,2388.16,9060.59,47.74,521.43,2388.13,8.46,395,38.51,23.354 +16,79,0.0023,0.0002,643.05,1586.18,1406.98,21.61,552.85,2388.07,9066.66,47.76,520.87,2388.12,8.442,393,38.85,23.2532 +16,80,-0.0026,-0.0001,642.98,1591.03,1411.3,21.61,553.03,2388.13,9054.28,47.74,521.23,2388.16,8.4759,394,38.88,23.149 +16,81,0.0011,-0.0004,642.94,1593.73,1415.33,21.61,552.62,2388.13,9057.52,47.52,521.6,2388.08,8.4867,394,38.75,23.2928 +16,82,0.0003,-0.0,642.93,1596.55,1411.06,21.61,552.69,2388.16,9068.15,47.62,521.31,2388.13,8.4476,393,38.85,23.277 +16,83,-0.0002,0.0004,643.31,1584.59,1405.56,21.61,552.56,2388.06,9061.19,47.7,520.53,2388.13,8.468,395,38.64,23.3159 +16,84,-0.0013,-0.0004,643.29,1583.45,1415.67,21.61,553.32,2388.13,9060.52,47.62,521.39,2388.08,8.451,394,38.71,23.3055 +16,85,0.0007,0.0,643.08,1591.41,1414.65,21.61,553.47,2388.07,9053.18,47.58,521.36,2388.13,8.4863,394,38.78,23.3782 +16,86,-0.0032,-0.0001,641.92,1593.65,1412.29,21.61,553.54,2388.09,9057.6,47.53,520.92,2388.08,8.4355,393,38.78,23.23 +16,87,0.0004,-0.0001,643.21,1587.6,1411.5,21.61,553.25,2388.15,9048.83,47.69,521.53,2388.11,8.4371,394,38.62,23.1597 +16,88,-0.0029,-0.0001,642.59,1594.85,1410.67,21.61,553.63,2388.13,9064.84,47.64,520.87,2388.15,8.5126,394,38.61,23.1654 +16,89,0.001,0.0001,642.89,1599.98,1408.2,21.61,553.06,2388.14,9059.83,47.67,521.28,2388.15,8.4332,394,38.78,23.1367 +16,90,0.0003,0.0003,642.59,1587.37,1412.83,21.61,552.69,2388.1,9059.96,47.61,521.48,2388.15,8.4431,394,38.62,23.2418 +16,91,-0.0005,-0.0,643.52,1593.09,1414.17,21.61,553.02,2388.14,9062.46,47.75,520.48,2388.1,8.4609,395,38.66,23.1894 +16,92,0.0029,-0.0004,642.96,1587.5,1414.23,21.61,552.85,2388.11,9057.02,47.63,521.24,2388.15,8.457,393,38.82,23.2015 +16,93,-0.0007,0.0001,642.82,1592.23,1418.45,21.61,553.62,2388.19,9053.61,47.73,520.73,2388.1,8.4922,393,38.79,23.3257 +16,94,0.0028,0.0005,642.41,1592.92,1419.74,21.61,552.87,2388.1,9064.32,47.6,521.18,2388.16,8.4541,394,38.6,23.2774 +16,95,0.0011,0.0,643.0,1592.48,1407.14,21.61,553.13,2388.11,9064.33,47.73,520.57,2388.15,8.4568,395,38.74,23.2439 +16,96,0.0019,-0.0002,643.05,1593.1,1410.54,21.61,552.88,2388.14,9051.29,47.74,521.31,2388.14,8.453,394,38.86,23.2392 +16,97,-0.001,0.0001,642.71,1599.12,1418.57,21.61,553.12,2388.14,9055.92,47.63,520.68,2388.14,8.5005,394,38.6,23.1971 +16,98,0.001,0.0001,642.93,1592.37,1414.69,21.61,553.23,2388.18,9054.5,47.82,520.94,2388.17,8.4657,394,38.7,23.378 +16,99,-0.0002,0.0001,643.25,1591.29,1415.57,21.61,552.79,2388.16,9060.37,47.71,520.66,2388.12,8.4287,394,38.68,23.3497 +16,100,-0.0015,0.0005,642.65,1590.7,1410.57,21.61,552.33,2388.14,9056.13,47.69,520.61,2388.16,8.4577,393,38.83,23.1303 +16,101,-0.0002,-0.0004,642.89,1591.8,1418.99,21.61,552.61,2388.16,9062.15,47.69,521.22,2388.17,8.4631,392,38.72,23.1727 +16,102,-0.0007,0.0001,643.45,1589.85,1412.94,21.61,553.29,2388.16,9058.72,47.52,520.97,2388.19,8.4442,394,38.77,23.376 +16,103,-0.0021,0.0002,642.55,1584.1,1412.21,21.61,552.29,2388.15,9061.82,47.44,520.55,2388.13,8.4536,394,38.78,23.2093 +16,104,0.0029,0.0005,643.35,1589.07,1417.67,21.61,552.78,2388.12,9059.68,47.8,521.48,2388.08,8.4632,393,38.57,23.2788 +16,105,-0.0029,-0.0004,642.76,1582.45,1421.16,21.61,553.17,2388.15,9070.98,47.88,521.27,2388.16,8.467,394,38.69,23.1896 +16,106,-0.001,-0.0004,642.84,1595.24,1411.36,21.61,553.04,2388.1,9059.27,47.74,520.99,2388.17,8.4627,394,38.77,23.2293 +16,107,0.0005,-0.0002,643.18,1590.92,1420.14,21.61,552.95,2388.14,9057.02,47.73,522.03,2388.15,8.4507,393,38.9,23.1632 +16,108,0.0018,0.0003,642.63,1584.85,1407.4,21.61,552.65,2388.17,9059.61,47.63,521.75,2388.19,8.4681,393,38.87,23.1732 +16,109,-0.0021,0.0002,642.96,1585.75,1414.67,21.61,552.38,2388.14,9060.51,47.73,520.68,2388.18,8.4534,393,38.77,23.3081 +16,110,0.0001,0.0003,642.44,1586.72,1417.56,21.61,552.25,2388.17,9058.23,47.57,521.19,2388.13,8.4772,394,38.59,23.2462 +16,111,0.0028,-0.0001,642.65,1597.52,1405.98,21.61,552.56,2388.11,9063.86,47.83,521.12,2388.09,8.4897,394,38.86,23.2308 +16,112,0.0014,-0.0002,643.48,1588.27,1415.87,21.61,552.81,2388.17,9061.73,47.89,521.35,2388.13,8.4529,394,38.82,23.1502 +16,113,-0.0023,0.0003,643.11,1591.08,1409.14,21.61,552.85,2388.1,9055.06,47.77,521.68,2388.12,8.4547,394,38.71,23.2357 +16,114,0.0029,-0.0003,643.27,1590.16,1416.38,21.61,552.93,2388.12,9056.34,47.69,521.11,2388.12,8.4561,394,38.76,23.2964 +16,115,0.0011,-0.0,642.73,1581.93,1410.58,21.61,552.68,2388.19,9048.77,47.63,520.97,2388.14,8.4493,394,38.73,23.2831 +16,116,-0.0052,-0.0003,643.41,1590.38,1409.98,21.61,552.88,2388.12,9070.22,47.75,520.64,2388.13,8.4426,394,38.78,23.1645 +16,117,-0.0016,0.0001,643.36,1594.09,1415.27,21.61,552.32,2388.17,9059.25,47.64,520.12,2388.16,8.4135,395,38.55,23.2922 +16,118,-0.002,0.0004,642.67,1590.93,1419.59,21.61,552.65,2388.14,9055.67,47.6,520.83,2388.13,8.4561,393,38.63,23.2876 +16,119,-0.0017,0.0004,642.54,1596.43,1410.05,21.61,553.03,2388.13,9054.77,47.71,521.31,2388.13,8.4822,393,38.81,23.3002 +16,120,0.0011,-0.0002,642.97,1591.26,1409.54,21.61,551.68,2388.11,9063.63,47.5,520.3,2388.17,8.48,395,38.76,23.1471 +16,121,-0.0011,0.0001,643.25,1595.08,1418.02,21.61,552.41,2388.17,9056.1,47.78,520.78,2388.19,8.4823,395,38.74,23.1478 +16,122,-0.0001,-0.0003,643.45,1597.02,1418.2,21.61,552.56,2388.19,9050.26,47.93,520.5,2388.15,8.4643,391,38.76,23.2109 +16,123,-0.0039,-0.0003,643.01,1590.1,1412.0,21.61,551.9,2388.11,9057.35,47.67,521.01,2388.1,8.4611,394,38.87,23.3199 +16,124,0.0021,0.0001,643.44,1589.6,1420.38,21.61,552.86,2388.13,9066.43,47.74,521.39,2388.14,8.461,394,38.73,23.1425 +16,125,-0.0012,-0.0002,643.28,1592.44,1415.76,21.61,552.88,2388.1,9065.09,47.73,521.23,2388.19,8.4819,394,38.66,23.1904 +16,126,0.0014,-0.0005,642.91,1592.84,1416.83,21.61,553.63,2388.12,9056.23,47.56,520.71,2388.14,8.4878,393,38.57,23.3927 +16,127,0.0013,-0.0002,643.0,1584.07,1411.71,21.61,553.09,2388.14,9056.27,47.61,520.55,2388.16,8.4492,393,38.68,23.3055 +16,128,-0.0016,-0.0004,643.4,1595.63,1415.95,21.61,553.38,2388.12,9065.53,47.89,520.44,2388.13,8.4715,395,38.66,23.3204 +16,129,0.0007,0.0004,643.52,1592.05,1417.44,21.61,552.45,2388.14,9057.55,47.64,520.62,2388.13,8.4584,395,38.81,23.1813 +16,130,0.0019,-0.0001,642.94,1599.63,1417.16,21.61,552.5,2388.19,9055.78,47.63,520.84,2388.17,8.4631,394,38.69,23.2245 +16,131,0.0074,0.0004,642.7,1589.22,1416.08,21.61,552.23,2388.2,9054.63,47.76,521.01,2388.15,8.4678,393,38.73,23.1324 +16,132,-0.0028,0.0004,643.02,1598.03,1418.77,21.61,552.71,2388.1,9057.3,47.63,520.64,2388.18,8.4498,395,38.47,23.2 +16,133,0.0026,-0.0004,643.15,1594.41,1420.01,21.61,552.25,2388.21,9061.73,47.81,520.57,2388.08,8.4492,394,38.51,23.1736 +16,134,-0.0008,0.0004,642.84,1599.78,1416.75,21.61,552.45,2388.19,9056.64,47.7,520.99,2388.16,8.4787,394,38.72,23.2487 +16,135,0.0026,-0.0004,642.72,1583.72,1409.0,21.61,552.91,2388.2,9064.96,47.67,520.56,2388.15,8.4627,394,38.49,23.2941 +16,136,-0.0024,0.0004,642.89,1597.35,1418.89,21.61,552.35,2388.16,9061.14,47.73,520.87,2388.18,8.4655,395,38.78,23.2248 +16,137,0.003,-0.0,643.26,1592.81,1417.33,21.61,552.2,2388.11,9057.79,47.93,520.62,2388.15,8.4569,395,38.53,23.1461 +16,138,0.0018,-0.0001,642.84,1596.23,1409.83,21.61,552.69,2388.19,9054.72,47.92,520.45,2388.19,8.4553,395,38.46,23.0984 +16,139,-0.0017,0.0003,643.47,1591.84,1417.93,21.61,553.02,2388.16,9066.68,47.8,520.51,2388.17,8.471,393,38.74,23.2702 +16,140,-0.0036,-0.0005,643.41,1598.06,1409.19,21.61,552.52,2388.17,9056.98,47.76,520.55,2388.19,8.456,393,38.69,23.1676 +16,141,0.001,0.0003,643.02,1598.25,1411.63,21.61,552.66,2388.17,9061.21,47.81,520.7,2388.18,8.4793,396,38.75,23.2379 +16,142,-0.001,-0.0001,643.07,1601.02,1419.96,21.61,551.91,2388.19,9059.96,47.84,520.86,2388.18,8.4725,394,38.71,23.2524 +16,143,0.0033,0.0001,643.09,1602.86,1415.38,21.61,552.8,2388.18,9059.77,47.85,521.06,2388.19,8.4614,393,38.79,23.2587 +16,144,-0.0018,-0.0002,642.85,1594.73,1421.52,21.61,552.66,2388.1,9058.67,47.72,520.9,2388.17,8.4684,394,38.63,23.2351 +16,145,0.0006,-0.0001,643.2,1598.17,1414.55,21.61,552.37,2388.18,9054.48,47.69,521.23,2388.16,8.4758,394,38.71,23.2071 +16,146,-0.0057,-0.0001,643.26,1593.02,1418.12,21.61,552.73,2388.16,9053.1,47.88,520.11,2388.18,8.4816,394,38.65,23.2294 +16,147,0.0022,-0.0002,643.4,1588.66,1420.49,21.61,552.67,2388.2,9062.94,47.73,521.02,2388.2,8.5224,396,38.55,23.2177 +16,148,-0.0038,-0.0004,642.6,1600.22,1415.16,21.61,552.62,2388.13,9056.76,47.94,520.71,2388.17,8.4889,395,38.83,23.2746 +16,149,-0.0012,-0.0001,643.24,1595.36,1413.59,21.61,552.34,2388.16,9061.82,47.82,520.63,2388.18,8.4534,393,38.62,23.2283 +16,150,0.0031,0.0003,643.62,1596.08,1416.16,21.61,552.78,2388.22,9060.24,47.85,520.7,2388.17,8.4826,394,38.55,23.1849 +16,151,0.0009,-0.0001,642.96,1595.32,1422.85,21.61,552.42,2388.18,9059.24,47.91,520.62,2388.14,8.4916,395,38.64,23.0985 +16,152,-0.0021,-0.0001,642.75,1593.67,1408.97,21.61,551.92,2388.19,9061.55,47.73,521.49,2388.13,8.4466,395,38.62,23.2125 +16,153,0.002,-0.0004,642.97,1589.41,1416.37,21.61,553.14,2388.13,9059.3,47.86,521.15,2388.2,8.4849,394,38.88,23.2593 +16,154,0.0001,-0.0004,642.83,1593.63,1414.51,21.61,552.76,2388.17,9063.87,47.76,519.86,2388.21,8.4811,395,38.52,23.1699 +16,155,0.0032,-0.0001,643.31,1589.79,1417.87,21.61,552.75,2388.13,9053.38,47.82,520.81,2388.13,8.4638,395,38.66,23.2593 +16,156,0.0037,-0.0002,643.06,1587.11,1416.88,21.61,552.72,2388.24,9056.64,47.93,520.49,2388.18,8.4723,393,38.76,23.1481 +16,157,0.0019,0.0005,643.4,1591.78,1411.02,21.61,552.52,2388.2,9059.84,47.78,520.51,2388.13,8.518,395,38.65,23.1859 +16,158,-0.0011,-0.0001,643.07,1595.38,1413.62,21.61,552.47,2388.17,9057.97,47.88,520.5,2388.13,8.5021,395,38.69,23.2693 +16,159,-0.0005,-0.0003,643.07,1600.76,1410.04,21.61,552.61,2388.17,9059.11,47.93,520.71,2388.16,8.4992,393,38.56,23.1548 +16,160,0.0007,0.0005,643.24,1592.09,1419.9,21.61,552.69,2388.16,9062.07,47.85,520.45,2388.17,8.4707,396,38.5,23.1367 +16,161,0.0004,-0.0003,643.13,1597.31,1420.55,21.61,552.7,2388.17,9061.47,47.93,520.08,2388.24,8.498,397,38.49,23.2068 +16,162,0.0003,-0.0002,642.75,1593.25,1417.47,21.61,552.6,2388.16,9055.88,47.76,520.53,2388.17,8.4649,393,38.59,23.1313 +16,163,0.0005,-0.0003,642.78,1592.48,1421.62,21.61,552.15,2388.18,9059.26,47.88,520.19,2388.18,8.4795,396,38.72,23.0346 +16,164,-0.003,0.0003,642.88,1583.97,1416.46,21.61,551.63,2388.18,9062.0,47.67,520.14,2388.19,8.4728,394,38.68,23.2151 +16,165,0.0041,-0.0002,642.97,1594.52,1406.3,21.61,551.74,2388.17,9063.14,47.87,520.46,2388.18,8.4423,395,38.62,23.1345 +16,166,0.0022,-0.0001,643.59,1605.55,1416.63,21.61,552.13,2388.17,9060.69,47.86,519.96,2388.22,8.4766,395,38.78,23.0732 +16,167,-0.0006,0.0003,643.05,1599.2,1415.55,21.61,552.5,2388.23,9057.43,47.89,520.11,2388.16,8.4811,395,38.51,23.1939 +16,168,0.0006,0.0,643.64,1595.22,1419.24,21.61,552.03,2388.24,9057.4,47.77,520.6,2388.19,8.4834,394,38.6,23.1782 +16,169,0.0016,0.0002,642.66,1588.48,1422.83,21.61,552.7,2388.14,9068.1,48.04,520.0,2388.19,8.503,394,38.51,23.0166 +16,170,0.0015,0.0002,643.08,1601.22,1423.57,21.61,552.35,2388.26,9052.46,48.01,520.61,2388.23,8.502,394,38.53,23.2044 +16,171,0.0013,0.0005,643.49,1593.14,1425.53,21.61,552.16,2388.18,9061.37,48.09,520.46,2388.16,8.438,394,38.71,23.1953 +16,172,-0.003,0.0002,643.23,1593.09,1420.7,21.61,552.28,2388.12,9062.75,48.01,520.96,2388.21,8.5053,394,38.62,23.1909 +16,173,0.0,-0.0001,643.2,1597.34,1418.31,21.61,552.04,2388.19,9062.75,47.76,520.3,2388.22,8.4968,395,38.64,23.0991 +16,174,0.0013,-0.0002,643.59,1604.53,1416.51,21.61,552.69,2388.17,9060.6,47.95,520.79,2388.2,8.4877,395,38.72,23.1996 +16,175,-0.0,-0.0004,643.33,1598.74,1426.64,21.61,552.27,2388.26,9057.75,47.92,520.56,2388.22,8.4757,394,38.52,23.2217 +16,176,-0.0022,0.0001,643.16,1597.14,1421.84,21.61,551.6,2388.16,9056.35,47.85,520.59,2388.18,8.455,396,38.56,23.1382 +16,177,0.001,0.0001,643.3,1597.68,1419.99,21.61,551.87,2388.17,9057.45,47.9,520.59,2388.23,8.5108,396,38.58,23.1236 +16,178,0.0002,0.0004,643.56,1594.89,1417.45,21.61,551.95,2388.23,9061.71,47.79,520.4,2388.19,8.4805,395,38.46,23.0919 +16,179,-0.0012,0.0,643.6,1599.17,1417.4,21.61,551.89,2388.22,9062.53,47.74,519.54,2388.21,8.5156,394,38.53,23.1488 +16,180,0.0045,-0.0003,643.52,1593.85,1424.52,21.61,552.16,2388.2,9057.94,47.96,519.83,2388.19,8.4879,395,38.59,23.0862 +16,181,0.0015,0.0,642.78,1596.41,1428.06,21.61,551.72,2388.14,9056.92,47.96,520.23,2388.17,8.5157,395,38.54,23.1118 +16,182,-0.0021,-0.0005,643.4,1592.7,1421.49,21.61,551.67,2388.19,9071.25,47.92,520.38,2388.19,8.4881,396,38.55,23.1526 +16,183,-0.0,0.0002,643.51,1606.45,1419.12,21.61,551.41,2388.22,9049.31,48.11,520.35,2388.19,8.4686,395,38.4,23.1246 +16,184,-0.0001,0.0,643.15,1598.35,1417.83,21.61,551.88,2388.21,9063.52,47.81,520.3,2388.23,8.4978,396,38.6,23.2105 +16,185,-0.0002,-0.0005,643.5,1592.92,1423.93,21.61,550.96,2388.2,9062.78,48.07,520.08,2388.24,8.5089,395,38.78,23.0247 +16,186,0.0013,0.0004,643.73,1594.87,1427.07,21.61,550.85,2388.17,9055.77,48.1,519.99,2388.2,8.4415,395,38.49,23.1274 +16,187,-0.0022,-0.0003,642.9,1595.84,1423.67,21.61,552.53,2388.19,9067.04,47.91,520.64,2388.23,8.5249,395,38.4,23.1017 +16,188,0.0034,-0.0001,643.18,1600.43,1425.79,21.61,551.45,2388.24,9054.81,47.99,520.26,2388.18,8.4923,396,38.47,23.0293 +16,189,-0.0033,-0.0003,643.69,1599.54,1418.5,21.61,551.1,2388.24,9057.21,48.03,520.03,2388.27,8.4897,394,38.5,23.164 +16,190,-0.0031,0.0002,643.79,1603.14,1422.67,21.61,551.78,2388.25,9060.28,47.97,520.18,2388.24,8.5204,395,38.56,23.11 +16,191,-0.0002,0.0003,643.75,1597.74,1426.81,21.61,551.47,2388.21,9051.11,47.97,519.92,2388.22,8.5027,396,38.6,23.0648 +16,192,0.0008,0.0005,643.38,1597.73,1430.31,21.61,552.03,2388.28,9060.24,48.04,519.66,2388.32,8.4965,397,38.43,23.1404 +16,193,-0.0007,0.0001,643.1,1599.46,1426.24,21.61,551.57,2388.28,9054.04,47.94,519.45,2388.32,8.4697,395,38.46,23.0865 +16,194,0.0002,-0.0001,643.74,1602.99,1425.86,21.61,551.42,2388.27,9063.27,48.08,519.58,2388.24,8.549,395,38.58,23.0638 +16,195,0.0032,0.0004,643.47,1608.02,1428.85,21.61,551.68,2388.24,9057.1,48.08,520.26,2388.26,8.5333,395,38.57,23.1536 +16,196,-0.0049,0.0005,643.36,1594.72,1423.16,21.61,552.22,2388.23,9069.26,47.92,519.6,2388.2,8.5304,395,38.4,23.044 +16,197,0.0011,0.0,643.76,1595.45,1428.81,21.61,551.56,2388.27,9069.19,47.98,519.79,2388.18,8.5345,397,38.38,23.0969 +16,198,0.0038,0.0004,643.5,1600.59,1429.68,21.61,551.33,2388.23,9061.56,48.16,519.88,2388.31,8.5094,397,38.23,22.9774 +16,199,0.0006,-0.0004,643.67,1601.82,1424.25,21.61,551.06,2388.25,9058.02,47.97,519.41,2388.23,8.5258,395,38.38,23.108 +16,200,0.0035,0.0002,644.27,1597.45,1425.06,21.61,551.36,2388.23,9062.27,48.1,519.48,2388.27,8.5314,396,38.33,23.1342 +16,201,-0.0061,0.0005,643.45,1597.43,1429.67,21.61,551.8,2388.23,9064.92,47.93,519.96,2388.23,8.4904,395,38.41,23.0557 +16,202,-0.0006,-0.0001,643.2,1600.99,1426.59,21.61,551.42,2388.29,9059.92,48.11,519.4,2388.27,8.5369,397,38.47,23.1639 +16,203,0.0002,-0.0004,644.18,1607.21,1423.13,21.61,551.23,2388.28,9057.79,47.87,519.65,2388.25,8.5495,395,38.39,23.1279 +16,204,-0.0006,-0.0001,643.86,1598.86,1427.74,21.61,551.12,2388.24,9059.76,47.99,519.63,2388.31,8.4722,396,38.41,23.0637 +16,205,0.0035,0.0001,643.88,1608.26,1426.2,21.61,551.01,2388.26,9063.13,48.08,519.8,2388.22,8.5213,397,38.6,23.2392 +16,206,0.0025,0.0001,643.6,1601.98,1419.63,21.61,551.42,2388.28,9067.79,47.92,519.5,2388.29,8.5139,396,38.44,23.0701 +16,207,0.0001,0.0001,643.86,1605.94,1434.58,21.61,551.2,2388.29,9058.27,48.2,519.29,2388.27,8.5595,397,38.31,23.0348 +16,208,0.0024,-0.0002,644.47,1595.68,1437.53,21.61,550.51,2388.26,9060.44,48.2,519.64,2388.25,8.5419,396,38.44,23.0087 +16,209,0.0012,-0.0002,643.61,1601.47,1429.68,21.61,551.17,2388.25,9060.94,48.28,519.44,2388.26,8.5258,397,38.35,23.1505 +18,10,-0.0034,0.0002,642.23,1584.24,1399.28,21.61,554.08,2388.01,9062.26,47.29,521.92,2387.96,8.3727,391,38.73,23.426 +18,11,-0.0001,-0.0001,642.42,1579.74,1401.23,21.61,554.04,2388.06,9053.06,47.37,522.23,2387.98,8.415,392,39.05,23.3028 +18,12,0.0005,-0.0003,642.28,1583.42,1397.06,21.61,553.72,2388.03,9063.68,47.21,522.25,2387.95,8.3509,393,39.0,23.4172 +18,13,-0.0025,0.0004,642.49,1590.54,1399.01,21.61,554.54,2387.95,9060.16,47.15,522.16,2388.01,8.3868,391,38.93,23.3905 +18,14,0.0003,-0.0001,641.74,1582.73,1395.77,21.61,554.42,2388.03,9056.56,47.24,522.19,2388.03,8.4477,392,39.18,23.4389 +18,15,-0.0021,-0.0004,642.25,1579.36,1393.54,21.61,554.83,2387.96,9058.21,47.18,521.83,2388.02,8.3826,392,39.08,23.4616 +18,16,0.0003,0.0002,641.9,1581.77,1402.19,21.61,554.45,2388.02,9061.22,47.38,522.01,2388.04,8.4036,392,39.04,23.3818 +18,17,-0.0034,-0.0002,641.87,1578.41,1405.99,21.61,554.0,2387.98,9064.13,47.3,522.51,2388.0,8.3841,391,39.12,23.4297 +18,18,-0.0005,0.0005,642.14,1583.75,1397.2,21.61,554.01,2387.96,9063.58,47.26,522.31,2387.99,8.3987,392,38.77,23.3747 +18,19,0.0003,-0.0004,641.89,1579.43,1394.13,21.61,555.27,2388.0,9060.08,47.3,522.19,2388.02,8.4198,392,39.18,23.3372 +18,20,0.0027,-0.0001,642.12,1587.86,1400.58,21.61,554.46,2388.07,9062.96,47.2,521.79,2388.01,8.4425,392,38.99,23.2882 +18,21,0.0024,-0.0002,642.08,1580.09,1400.02,21.61,554.87,2387.98,9061.76,47.17,522.17,2388.06,8.3911,392,39.14,23.437 +18,22,0.0022,0.0004,641.98,1586.02,1398.5,21.61,554.14,2387.98,9054.75,47.25,522.53,2388.03,8.3932,392,39.23,23.3562 +18,23,0.0022,-0.0,642.73,1583.22,1405.06,21.61,554.78,2388.01,9062.06,47.2,522.26,2388.01,8.4113,394,38.96,23.4336 +18,24,0.0013,0.0005,642.08,1580.53,1397.51,21.61,554.78,2388.04,9058.98,47.28,522.47,2388.07,8.3805,392,39.0,23.4425 +18,25,0.0,0.0003,642.23,1589.57,1398.44,21.61,554.62,2388.05,9054.33,47.16,522.5,2388.03,8.3688,392,39.14,23.3008 +18,26,0.0015,0.0002,642.57,1585.89,1394.98,21.61,555.0,2387.99,9054.42,47.23,522.54,2388.05,8.3995,392,39.07,23.4793 +18,27,0.0036,-0.0004,642.25,1594.33,1400.33,21.61,554.76,2388.07,9066.59,47.13,521.93,2388.0,8.3913,392,38.99,23.3715 +18,28,-0.0007,0.0003,642.16,1580.08,1399.53,21.61,554.54,2388.02,9057.5,47.21,522.04,2387.96,8.3794,390,38.83,23.4025 +18,29,-0.0018,-0.0003,642.41,1585.02,1394.96,21.61,554.63,2388.06,9058.31,47.16,522.43,2387.97,8.3925,392,38.87,23.3274 +18,30,0.0014,-0.0001,642.0,1588.57,1395.56,21.61,554.9,2388.04,9056.76,47.2,522.37,2388.01,8.3905,392,39.18,23.3546 +18,31,0.0004,-0.0001,642.1,1592.26,1404.1,21.61,554.16,2387.99,9052.97,47.17,522.32,2388.03,8.4052,391,39.1,23.4109 +18,32,0.0035,-0.0002,641.98,1580.23,1394.26,21.61,554.44,2388.04,9059.76,47.18,522.64,2388.0,8.409,392,39.0,23.4597 +18,33,0.0002,-0.0001,642.31,1580.6,1401.18,21.61,554.88,2388.01,9055.06,47.3,522.68,2388.03,8.3906,391,39.02,23.3475 +18,34,0.0001,0.0004,642.33,1583.0,1399.97,21.61,554.43,2388.0,9060.25,47.05,521.79,2388.02,8.3703,392,39.11,23.3317 +18,35,-0.002,0.0004,642.47,1584.89,1394.36,21.61,554.48,2387.99,9060.66,47.18,522.44,2387.98,8.4074,391,38.84,23.398 +18,36,0.0004,0.0005,642.06,1590.71,1399.61,21.61,553.99,2387.98,9065.7,47.23,522.56,2388.01,8.4054,393,39.09,23.2457 +18,37,-0.0033,0.0005,642.28,1587.03,1392.82,21.61,554.76,2388.01,9058.88,47.29,522.06,2388.03,8.4062,392,38.94,23.486 +18,38,-0.0006,-0.0004,642.4,1584.49,1407.5,21.6,554.47,2388.08,9055.89,47.17,522.46,2388.0,8.3683,390,39.13,23.4201 +18,39,0.0009,-0.0002,642.73,1586.56,1404.8,21.61,554.24,2388.03,9068.33,47.36,521.72,2388.03,8.401,391,39.13,23.4609 +18,40,-0.0007,0.0003,642.39,1586.54,1402.17,21.61,554.34,2388.04,9052.82,47.24,522.56,2387.98,8.4039,392,39.04,23.5294 +18,41,-0.0006,-0.0003,642.56,1582.41,1403.69,21.61,553.68,2388.01,9057.96,47.36,522.55,2388.06,8.3846,392,39.04,23.3992 +18,42,0.0033,-0.0005,642.02,1580.17,1391.59,21.61,554.32,2388.02,9061.08,47.29,522.36,2388.09,8.3874,392,39.13,23.4594 +18,43,-0.0016,0.0002,641.34,1584.5,1396.26,21.61,553.72,2388.03,9055.69,47.02,522.43,2388.08,8.4054,393,39.09,23.3709 +18,44,0.0008,0.0004,642.36,1589.34,1399.81,21.61,554.45,2388.01,9058.83,47.32,523.2,2387.99,8.4213,394,38.95,23.3803 +18,45,0.0017,-0.0003,642.12,1581.15,1397.54,21.61,554.12,2388.07,9060.09,47.26,522.77,2388.0,8.4157,394,38.96,23.3931 +18,46,0.0027,0.0001,642.28,1582.73,1404.38,21.61,554.6,2388.0,9065.97,47.38,522.16,2388.01,8.4102,392,39.03,23.4673 +18,47,0.0017,0.0001,642.38,1586.87,1395.33,21.61,553.6,2388.06,9059.82,47.32,522.54,2387.96,8.4264,392,39.02,23.486 +18,48,0.0009,0.0001,642.44,1587.51,1406.53,21.61,554.48,2388.06,9063.21,47.08,522.56,2388.0,8.3754,393,39.01,23.3508 +18,49,0.0023,-0.0002,642.13,1582.46,1406.51,21.61,554.26,2388.01,9052.81,47.09,522.01,2388.02,8.42,392,38.95,23.4727 +18,50,0.0006,0.0,642.01,1586.29,1389.54,21.61,554.24,2387.97,9062.96,47.15,522.14,2388.0,8.3921,392,39.12,23.4438 +18,51,0.0017,-0.0,642.62,1579.97,1394.35,21.61,554.7,2388.02,9061.0,47.21,522.25,2388.0,8.4246,392,38.98,23.4403 +18,52,-0.0006,-0.0002,641.76,1585.96,1395.27,21.61,554.05,2388.01,9051.44,47.22,522.25,2387.93,8.4201,391,38.95,23.4214 +18,53,0.0,0.0001,642.21,1584.77,1397.47,21.61,553.82,2388.0,9066.81,47.36,522.72,2388.03,8.4039,391,39.06,23.4062 +18,54,-0.0024,0.0005,642.22,1585.77,1395.13,21.61,554.6,2388.01,9055.78,47.29,521.85,2388.04,8.3783,391,38.94,23.4104 +18,55,0.0001,0.0003,642.29,1576.47,1397.52,21.61,554.18,2388.12,9066.42,47.23,522.28,2388.05,8.387,392,38.95,23.3158 +18,56,-0.0003,-0.0001,642.01,1581.79,1400.68,21.61,554.38,2388.01,9056.36,47.15,522.05,2388.02,8.36,392,39.12,23.3274 +18,57,-0.0033,0.0003,642.32,1583.13,1402.57,21.61,554.41,2387.97,9065.29,47.33,522.37,2387.99,8.3994,393,39.06,23.3882 +18,58,-0.0041,-0.0001,641.86,1584.65,1398.06,21.61,553.89,2388.04,9055.44,47.28,522.52,2388.01,8.4098,390,38.98,23.3903 +18,59,0.0032,-0.0002,641.95,1583.05,1399.84,21.61,554.36,2388.07,9063.78,47.32,522.41,2387.98,8.442,391,38.98,23.4238 +18,60,-0.0029,-0.0002,642.7,1584.03,1394.72,21.61,554.7,2387.96,9069.12,47.25,522.28,2388.02,8.4094,393,38.92,23.348 +18,61,0.0002,-0.0003,641.99,1592.63,1403.36,21.61,554.64,2387.99,9066.86,47.32,522.03,2387.99,8.4013,392,39.03,23.3724 +18,62,0.0011,-0.0,642.52,1584.72,1396.77,21.61,554.17,2388.03,9063.6,47.14,521.77,2387.98,8.3968,390,38.93,23.3002 +18,63,-0.0024,-0.0003,641.91,1581.59,1397.66,21.61,553.58,2388.04,9062.67,47.34,522.27,2388.06,8.3693,392,39.16,23.516 +18,64,0.0041,-0.0001,642.2,1588.24,1406.35,21.61,554.35,2387.98,9061.77,47.19,522.04,2388.0,8.3938,393,39.0,23.3359 +18,65,-0.0006,0.0003,641.92,1592.11,1400.88,21.61,554.17,2388.05,9058.98,47.21,522.08,2387.98,8.3843,393,38.91,23.4608 +18,66,0.0014,0.0001,641.96,1586.68,1399.45,21.61,554.28,2387.99,9059.04,47.25,522.12,2388.03,8.4302,392,39.13,23.3676 +18,67,0.0029,-0.0004,642.16,1588.45,1401.89,21.61,553.96,2387.99,9063.93,47.12,521.9,2388.07,8.4307,391,38.97,23.3735 +18,68,-0.0053,-0.0004,642.05,1589.56,1400.97,21.61,554.17,2387.98,9064.48,47.37,522.23,2388.0,8.4359,392,39.01,23.4621 +18,69,0.0001,-0.0002,641.91,1581.06,1400.12,21.61,554.35,2388.03,9062.0,47.12,522.38,2388.04,8.4231,391,38.91,23.4357 +18,70,-0.0008,0.0004,641.9,1588.15,1403.54,21.61,554.31,2388.02,9071.02,47.07,521.73,2388.02,8.3974,392,38.76,23.3067 +18,71,-0.0032,-0.0003,642.1,1584.7,1400.82,21.61,553.87,2388.06,9067.44,47.16,522.34,2387.99,8.3866,392,38.96,23.3137 +18,72,-0.0015,-0.0,642.24,1584.34,1391.78,21.61,554.78,2388.0,9061.3,47.15,522.43,2387.96,8.4192,391,39.22,23.4116 +18,73,0.0007,0.0,641.97,1577.0,1391.66,21.61,554.74,2387.98,9059.19,47.35,521.82,2387.96,8.3926,391,39.09,23.4302 +18,74,-0.0033,0.0001,642.1,1584.06,1395.07,21.61,554.56,2388.03,9066.5,47.24,522.17,2388.03,8.3808,392,39.05,23.3216 +18,75,0.0003,0.0004,642.43,1576.32,1398.36,21.61,553.26,2388.05,9065.06,47.25,522.26,2388.02,8.3971,392,39.13,23.3983 +18,76,-0.0014,0.0,641.89,1586.03,1397.41,21.61,554.11,2388.02,9066.66,47.29,521.88,2388.03,8.363,393,38.89,23.2577 +18,77,0.0019,-0.0002,642.5,1583.75,1393.92,21.61,554.86,2387.99,9062.99,47.19,522.18,2388.01,8.3599,392,39.0,23.3231 +18,78,0.0001,-0.0005,642.12,1584.6,1400.5,21.61,553.98,2388.06,9062.32,47.23,522.25,2388.06,8.3759,392,39.01,23.3331 +18,79,0.0016,0.0002,642.17,1579.53,1399.94,21.61,554.66,2388.01,9069.09,47.36,522.02,2387.99,8.3849,391,39.13,23.3346 +18,80,0.002,-0.0003,642.66,1593.04,1410.9,21.61,554.17,2388.05,9064.61,47.17,522.16,2388.01,8.406,392,38.85,23.3668 +18,81,-0.0021,-0.0002,642.67,1582.84,1402.79,21.61,554.76,2388.07,9067.7,47.26,522.29,2388.01,8.4095,391,39.08,23.3978 +18,82,-0.0035,0.0005,642.07,1587.74,1399.22,21.61,553.91,2388.05,9066.58,47.09,521.69,2388.01,8.4407,393,39.03,23.239 +18,83,-0.0009,0.0005,642.34,1592.64,1403.44,21.61,553.76,2388.0,9061.51,47.24,522.01,2388.03,8.4416,393,39.13,23.3372 +18,84,0.0015,-0.0004,642.09,1589.33,1397.41,21.61,554.04,2388.01,9059.15,47.09,522.14,2388.05,8.4015,392,38.95,23.4021 +18,85,-0.0049,-0.0002,642.09,1583.27,1401.56,21.61,553.94,2388.0,9070.16,47.3,522.37,2388.02,8.4391,392,38.78,23.3582 +18,86,0.0018,-0.0,642.25,1591.3,1403.07,21.61,553.97,2388.0,9074.5,47.29,522.58,2388.0,8.3878,392,39.13,23.4095 +18,87,0.0014,0.0002,642.06,1582.49,1394.99,21.61,554.53,2388.0,9067.85,47.29,521.75,2388.04,8.3919,391,38.86,23.4634 +18,88,-0.0004,0.0,641.84,1589.77,1401.22,21.61,554.32,2388.04,9066.53,47.15,522.07,2388.05,8.4509,393,39.04,23.3098 +18,89,-0.0032,-0.0001,642.38,1588.14,1400.59,21.61,553.94,2388.02,9073.43,47.12,521.81,2388.05,8.4391,391,39.04,23.4089 +18,90,-0.0008,0.0003,642.74,1586.97,1392.63,21.61,554.97,2388.03,9070.39,47.3,522.07,2388.06,8.4299,393,38.66,23.3423 +18,91,0.004,-0.0,642.48,1592.27,1400.36,21.61,554.23,2388.01,9062.35,47.3,522.02,2388.04,8.3815,392,38.99,23.4079 +18,92,0.0001,0.0005,642.55,1591.31,1401.38,21.61,553.38,2388.02,9071.41,47.34,522.51,2388.03,8.4036,392,38.98,23.4669 +18,93,-0.0002,0.0003,642.67,1584.95,1398.8,21.61,554.55,2388.04,9067.18,47.46,522.39,2388.05,8.3889,393,39.01,23.3003 +18,94,-0.0001,0.0004,641.73,1582.79,1393.97,21.61,554.63,2388.03,9054.87,47.21,522.12,2388.01,8.3987,392,38.92,23.4619 +18,95,-0.001,0.0002,642.19,1580.1,1398.09,21.61,554.8,2387.98,9067.82,47.2,522.24,2387.99,8.4083,392,38.88,23.3255 +18,96,0.0007,0.0003,642.0,1587.19,1399.31,21.61,554.6,2388.02,9073.08,47.26,522.6,2387.99,8.3757,392,38.89,23.3862 +18,97,0.0003,-0.0001,642.18,1579.99,1400.55,21.61,554.65,2388.04,9075.47,47.25,522.25,2388.07,8.3938,393,39.06,23.3256 +18,98,0.0002,0.0005,642.54,1588.03,1399.2,21.61,554.23,2387.99,9066.57,47.32,521.76,2388.03,8.4182,393,39.06,23.3368 +18,99,0.0022,0.0001,642.51,1588.5,1400.65,21.61,553.98,2387.98,9071.09,47.28,522.54,2388.05,8.4058,390,39.03,23.3504 +18,100,-0.0002,0.0003,642.44,1585.3,1410.56,21.61,554.24,2388.01,9071.04,47.18,521.75,2388.03,8.4235,394,39.0,23.3536 +18,101,-0.0,-0.0001,642.23,1591.29,1401.78,21.61,553.73,2388.06,9072.74,47.53,521.71,2388.0,8.438,392,38.82,23.348 +18,102,-0.0011,0.0004,641.74,1584.86,1399.41,21.61,554.16,2388.1,9074.8,47.16,522.17,2388.01,8.4421,393,39.0,23.3604 +18,103,-0.0009,-0.0003,642.59,1590.76,1395.61,21.61,553.59,2388.01,9076.23,47.39,521.69,2388.0,8.4326,392,38.87,23.5415 +18,104,0.0011,0.0001,642.15,1582.62,1398.49,21.61,554.37,2388.04,9075.65,47.4,521.9,2388.04,8.4134,391,38.86,23.2726 +18,105,-0.0028,0.0001,641.84,1589.47,1401.67,21.61,554.01,2387.98,9070.15,47.34,521.43,2388.0,8.4446,392,38.89,23.506 +18,106,0.001,-0.0001,642.35,1591.63,1399.96,21.61,553.69,2387.99,9075.77,47.29,522.03,2388.03,8.4204,393,38.88,23.3657 +18,107,0.0001,-0.0002,642.79,1591.51,1410.85,21.61,553.44,2388.03,9076.21,47.27,522.0,2388.03,8.4153,392,39.22,23.4117 +18,108,-0.0033,-0.0002,642.49,1590.9,1409.16,21.61,553.74,2388.03,9068.56,47.24,521.83,2388.01,8.4134,394,39.06,23.2886 +18,109,0.0019,-0.0001,642.27,1590.55,1392.8,21.61,554.23,2387.95,9077.08,47.27,522.48,2387.94,8.4141,392,39.09,23.4017 +18,110,-0.0011,0.0004,642.55,1586.44,1405.16,21.61,553.14,2387.98,9068.96,47.37,522.09,2388.02,8.4556,393,38.96,23.3786 +18,111,-0.0002,-0.0003,642.53,1582.44,1401.75,21.61,553.44,2388.05,9077.4,47.28,522.57,2388.03,8.3795,391,38.76,23.3086 +18,112,0.0005,-0.0,642.34,1579.35,1404.3,21.61,554.25,2388.06,9076.84,47.34,521.88,2388.03,8.381,391,38.92,23.3279 +18,113,0.0008,-0.0003,642.69,1587.61,1403.82,21.61,554.02,2388.04,9079.85,47.34,522.39,2388.06,8.4331,392,39.01,23.3641 +18,114,0.0021,-0.0002,642.23,1587.46,1404.07,21.61,553.42,2388.02,9073.91,47.34,521.86,2388.01,8.4375,392,38.94,23.4542 +18,115,0.0004,0.0004,641.71,1591.35,1406.5,21.61,554.13,2388.04,9078.32,47.44,522.02,2388.05,8.4052,392,38.99,23.2573 +18,116,-0.0001,0.0002,642.19,1583.87,1410.57,21.61,553.62,2387.94,9074.96,47.25,521.71,2388.03,8.444,391,38.9,23.3951 +18,117,-0.0022,0.0004,642.06,1583.79,1404.78,21.61,553.9,2387.99,9080.08,47.23,522.31,2388.04,8.4498,392,38.99,23.3608 +18,118,-0.0005,0.0004,642.43,1589.58,1397.3,21.61,554.27,2388.02,9083.68,47.46,521.13,2388.02,8.4467,391,38.93,23.389 +18,119,0.0029,-0.0002,641.9,1592.46,1404.23,21.61,554.56,2388.05,9076.6,47.4,522.04,2387.97,8.4354,392,38.86,23.4318 +18,120,-0.0013,0.0003,642.21,1592.07,1405.99,21.61,554.22,2387.98,9070.94,47.22,522.23,2387.98,8.4292,393,39.03,23.3621 +18,121,0.0005,0.0003,642.52,1586.5,1399.33,21.6,554.09,2388.04,9086.72,47.36,521.65,2388.0,8.4074,391,38.89,23.3686 +18,122,0.0003,-0.0001,642.86,1587.74,1400.36,21.61,553.72,2388.01,9081.22,47.11,521.92,2388.02,8.4184,394,39.06,23.4212 +18,123,-0.0019,-0.0002,642.57,1582.27,1394.88,21.61,554.33,2388.02,9079.59,47.37,522.52,2388.0,8.4051,391,38.92,23.3722 +18,124,0.0008,-0.0002,642.21,1593.4,1400.11,21.61,554.02,2388.07,9079.07,47.3,521.88,2388.06,8.3898,392,39.1,23.3311 +18,125,0.0001,-0.0002,642.0,1588.58,1398.29,21.61,554.2,2388.0,9076.47,47.24,521.79,2388.03,8.3991,393,38.87,23.4273 +18,126,-0.0008,0.0003,642.37,1590.08,1396.3,21.61,554.87,2388.04,9092.3,47.37,522.07,2388.09,8.4042,392,38.99,23.3313 +18,127,0.0039,-0.0004,642.12,1589.53,1407.98,21.61,554.75,2388.02,9080.88,47.57,521.78,2388.0,8.4641,393,38.96,23.287 +18,128,-0.0011,-0.0001,642.14,1591.4,1397.89,21.6,554.52,2388.01,9087.0,47.35,521.88,2388.04,8.4255,392,38.67,23.3941 +18,129,-0.0005,0.0005,642.37,1593.56,1406.09,21.61,553.52,2388.01,9089.55,47.42,521.94,2388.07,8.4045,391,38.93,23.2507 +18,130,0.0018,0.0002,642.77,1594.14,1398.72,21.61,553.87,2388.03,9085.89,47.34,522.32,2388.04,8.4203,393,38.9,23.3142 +18,131,0.0001,0.0003,643.09,1591.11,1410.53,21.61,553.25,2388.02,9085.29,47.26,521.97,2387.96,8.4357,393,38.92,23.2572 +18,132,0.0033,0.0005,642.82,1588.54,1399.38,21.61,554.37,2388.0,9086.05,47.43,521.45,2388.0,8.4232,393,38.76,23.316 +18,133,0.003,-0.0002,642.66,1588.81,1405.97,21.61,553.88,2388.0,9089.27,47.22,522.1,2388.06,8.4674,392,38.79,23.3347 +18,134,-0.0,0.0005,642.6,1582.54,1403.88,21.61,553.83,2388.03,9075.85,47.44,522.06,2387.99,8.4524,393,38.83,23.3867 +18,135,-0.0013,-0.0001,642.54,1585.67,1405.34,21.61,553.81,2388.06,9092.27,47.41,521.66,2388.05,8.4401,392,38.91,23.3456 +18,136,-0.0028,0.0002,642.32,1587.62,1403.88,21.61,553.71,2388.07,9089.94,47.49,522.33,2388.02,8.4293,395,38.95,23.3646 +18,137,0.0028,0.0,642.74,1594.35,1400.15,21.61,553.68,2388.02,9087.47,47.54,522.04,2388.06,8.4317,393,38.89,23.3933 +18,138,0.0021,-0.0,642.59,1588.95,1409.01,21.61,553.55,2388.01,9088.94,47.2,522.07,2387.99,8.4681,394,38.93,23.2783 +18,139,-0.0006,0.0002,642.44,1591.67,1397.75,21.61,553.03,2388.02,9092.44,47.35,522.03,2388.03,8.4336,394,38.71,23.3199 +18,140,0.0035,-0.0001,642.02,1590.42,1402.13,21.61,553.05,2388.06,9089.35,47.42,521.68,2387.99,8.4339,394,38.85,23.3742 +18,141,0.0021,0.0004,642.42,1588.93,1403.87,21.61,554.45,2388.0,9100.59,47.48,521.57,2388.05,8.4279,392,38.98,23.2611 +18,142,0.0005,0.0004,642.57,1589.41,1410.8,21.61,553.6,2388.01,9090.16,47.44,521.71,2388.0,8.4321,392,38.78,23.355 +18,143,-0.0035,-0.0001,643.27,1589.81,1408.32,21.61,553.74,2388.0,9093.8,47.4,521.07,2388.04,8.4616,392,38.96,23.2704 +18,144,0.0002,-0.0,642.94,1585.94,1411.93,21.61,553.55,2388.03,9099.54,47.54,521.96,2388.0,8.4174,393,38.98,23.4092 +18,145,-0.0025,0.0002,642.97,1591.89,1405.28,21.61,553.79,2388.05,9087.61,47.49,521.62,2388.01,8.4263,393,38.63,23.3455 +18,146,-0.0036,0.0002,642.69,1589.1,1414.44,21.61,554.14,2387.99,9098.27,47.31,521.58,2388.04,8.4438,394,38.91,23.2522 +18,147,-0.0013,-0.0002,642.37,1592.68,1404.3,21.61,553.39,2388.06,9097.38,47.56,522.06,2388.06,8.3921,393,38.91,23.3401 +18,148,0.0002,-0.0002,641.91,1589.12,1404.57,21.61,554.06,2388.01,9102.28,47.38,521.35,2388.1,8.4605,393,38.96,23.2572 +18,149,0.002,-0.0003,642.87,1585.97,1402.33,21.61,554.15,2388.05,9105.01,47.42,520.97,2388.05,8.4081,393,38.76,23.339 +18,150,-0.0036,0.0004,642.45,1586.5,1403.39,21.61,553.3,2388.02,9106.11,47.35,521.2,2388.02,8.4321,395,38.86,23.3118 +18,151,0.0002,0.0002,642.33,1593.51,1412.38,21.61,552.74,2388.01,9111.26,47.45,522.04,2387.99,8.4355,393,38.86,23.25 +18,152,-0.0,-0.0001,642.44,1591.49,1403.22,21.61,554.39,2388.01,9109.02,47.56,521.85,2388.0,8.4385,393,38.82,23.3116 +18,153,0.0027,-0.0002,642.67,1586.35,1410.05,21.61,553.82,2388.02,9106.32,47.56,521.92,2388.03,8.4785,393,38.95,23.1902 +18,154,-0.0023,0.0003,642.83,1587.07,1406.5,21.61,554.69,2388.01,9103.2,47.47,522.03,2388.03,8.4757,393,38.85,23.3986 +18,155,-0.0031,0.0002,642.82,1597.04,1405.39,21.61,554.19,2388.04,9103.76,47.59,520.84,2388.04,8.4184,394,38.67,23.2971 +18,156,0.001,-0.0004,642.56,1591.75,1411.09,21.61,553.42,2387.98,9111.38,47.63,521.97,2388.02,8.4523,393,38.66,23.3277 +18,157,0.004,0.0003,642.62,1591.55,1406.17,21.61,553.09,2388.06,9106.38,47.67,521.49,2388.01,8.4395,392,38.7,23.3202 +18,158,-0.005,-0.0003,642.37,1587.54,1409.14,21.61,553.73,2388.05,9118.47,47.63,521.45,2388.07,8.4415,395,38.96,23.3307 +18,159,-0.0003,0.0003,642.95,1591.89,1401.17,21.61,553.84,2388.06,9115.33,47.5,521.73,2388.03,8.432,393,38.87,23.2662 +18,160,-0.0023,0.0003,642.97,1595.36,1411.22,21.61,554.1,2388.07,9114.6,47.6,521.85,2388.0,8.4822,395,38.83,23.38 +18,161,-0.0005,-0.0,642.73,1584.91,1417.65,21.61,552.67,2388.08,9119.8,47.7,521.44,2387.99,8.435,394,38.89,23.2671 +18,162,0.0007,0.0001,642.49,1591.6,1407.02,21.61,553.83,2388.08,9116.88,47.68,521.47,2388.09,8.4515,392,38.95,23.2158 +18,163,0.0043,0.0005,642.85,1592.58,1416.27,21.61,553.45,2388.01,9127.41,47.38,521.49,2388.04,8.4483,394,38.71,23.1824 +18,164,-0.0022,0.0005,642.41,1590.17,1410.04,21.61,553.66,2388.02,9123.31,47.47,521.63,2388.09,8.4433,395,38.83,23.2063 +18,165,0.0002,0.0005,643.06,1598.42,1408.19,21.61,553.28,2388.03,9122.87,47.76,521.42,2388.07,8.4836,396,38.72,23.3115 +18,166,-0.0002,0.0004,642.64,1591.74,1414.9,21.61,554.0,2388.07,9128.98,47.84,521.97,2388.05,8.4689,395,38.69,23.2631 +18,167,0.0013,-0.0002,642.34,1591.0,1416.13,21.61,552.71,2388.05,9127.39,47.6,521.83,2388.02,8.4617,393,38.52,23.3384 +18,168,0.0014,-0.0001,642.39,1596.24,1403.83,21.61,553.79,2388.08,9131.95,47.67,521.57,2388.06,8.4355,394,38.85,23.2874 +18,169,-0.0022,-0.0003,642.92,1598.65,1409.68,21.61,553.57,2388.06,9136.6,47.57,521.64,2388.06,8.4708,394,38.55,23.1785 +18,170,0.0024,-0.0001,643.04,1587.75,1411.21,21.61,554.36,2388.0,9140.45,47.58,521.14,2388.05,8.4543,394,38.76,23.1904 +18,171,-0.001,-0.0002,642.84,1589.1,1412.38,21.61,552.88,2388.03,9148.32,47.53,520.76,2388.1,8.4662,394,38.74,23.2531 +18,172,0.0058,-0.0003,643.47,1600.63,1406.05,21.61,553.15,2388.06,9143.07,47.82,521.35,2388.05,8.4363,394,38.85,23.2209 +18,173,-0.0001,0.0003,642.66,1596.12,1419.76,21.61,553.16,2388.05,9138.56,47.65,521.47,2388.12,8.4577,394,38.72,23.2467 +18,174,0.0033,-0.0001,642.79,1595.67,1416.74,21.61,553.04,2388.08,9152.07,47.78,520.73,2388.02,8.4754,397,38.9,23.2433 +18,175,0.003,0.0003,642.76,1594.37,1422.39,21.61,553.4,2388.05,9155.35,47.72,521.27,2388.12,8.4475,395,38.72,23.2019 +18,176,0.0011,0.0003,643.09,1596.47,1415.26,21.61,554.07,2388.08,9150.63,47.81,521.36,2388.08,8.468,395,38.82,23.2493 +18,177,0.0006,-0.0004,643.11,1602.3,1416.38,21.61,552.85,2388.03,9157.14,47.65,521.45,2388.12,8.4567,396,38.81,23.1773 +18,178,0.0009,-0.0004,642.74,1599.44,1417.74,21.61,552.88,2388.12,9157.33,47.78,520.84,2388.11,8.5067,396,38.67,23.1483 +18,179,0.0014,-0.0001,642.22,1601.1,1417.03,21.61,553.44,2388.07,9157.23,47.58,521.1,2388.08,8.5244,395,38.8,23.1702 +18,180,0.0022,-0.0,642.6,1602.68,1424.29,21.61,553.14,2388.08,9162.42,47.76,520.89,2388.06,8.4783,396,38.63,23.2429 +18,181,0.0016,-0.0001,643.33,1600.23,1422.16,21.61,551.94,2388.12,9167.49,47.91,520.94,2388.14,8.4915,396,38.49,23.0976 +18,182,0.0031,-0.0002,643.06,1608.95,1417.2,21.61,552.84,2388.08,9170.17,47.81,520.56,2388.07,8.5002,395,38.74,23.1709 +18,183,-0.0032,-0.0001,643.16,1599.22,1416.6,21.61,552.92,2388.04,9171.68,47.85,520.77,2388.15,8.4876,396,38.51,23.0937 +18,184,0.0024,-0.0003,643.56,1604.92,1416.38,21.61,552.45,2388.12,9174.9,47.88,520.47,2388.12,8.5388,396,38.67,23.0863 +18,185,-0.0001,-0.0002,643.06,1601.27,1417.87,21.61,552.25,2388.13,9178.75,47.63,521.06,2388.15,8.4848,395,38.65,23.1556 +18,186,0.0016,0.0001,643.85,1597.23,1425.43,21.61,552.58,2388.1,9191.36,47.99,520.33,2388.16,8.4843,394,38.6,23.0816 +18,187,-0.0006,-0.0002,643.17,1600.39,1422.43,21.61,551.82,2388.13,9177.82,48.15,520.23,2388.12,8.4426,396,38.61,23.0819 +18,188,0.0011,0.0001,643.17,1602.0,1428.31,21.61,552.77,2388.09,9187.67,47.77,520.49,2388.09,8.4999,395,38.57,23.2292 +18,189,-0.0001,-0.0004,643.11,1601.04,1433.02,21.61,552.09,2388.13,9195.53,47.93,521.03,2388.1,8.4955,396,38.58,23.1173 +18,190,0.002,-0.0003,643.39,1603.13,1424.21,21.61,551.39,2388.1,9196.3,47.97,520.14,2388.11,8.5376,397,38.45,23.0872 +18,191,-0.0007,-0.0001,643.59,1606.51,1423.47,21.61,551.58,2388.12,9206.21,47.87,520.25,2388.13,8.5102,396,38.65,23.1001 +18,192,-0.0018,-0.0004,643.23,1602.92,1426.15,21.61,552.23,2388.14,9204.44,48.1,520.53,2388.18,8.5372,397,38.3,22.9841 +18,193,0.0003,0.0001,643.89,1603.03,1423.65,21.61,552.22,2388.2,9210.95,48.3,520.36,2388.15,8.5429,396,38.31,23.1555 +18,194,0.0003,0.0004,644.05,1609.52,1423.44,21.61,551.52,2388.13,9223.56,48.14,520.23,2388.12,8.4945,397,38.58,23.0109 +18,195,-0.0029,-0.0001,643.93,1601.0,1428.08,21.61,551.43,2388.44,9224.53,48.01,519.44,2388.39,8.5132,398,38.5,23.0304 +26,10,-0.0011,0.0005,642.34,1585.35,1406.11,21.61,554.25,2388.15,9051.8,47.56,520.4,2388.1,8.4446,394,38.77,23.3325 +26,11,0.0007,-0.0003,642.68,1586.4,1401.17,21.61,553.51,2388.11,9048.38,47.34,521.41,2388.11,8.4435,394,38.98,23.3468 +26,12,-0.0005,-0.0002,642.91,1591.39,1408.91,21.61,552.92,2388.1,9046.7,47.48,521.59,2388.14,8.4164,393,38.78,23.2211 +26,13,-0.0023,-0.0003,642.69,1587.16,1406.85,21.61,552.91,2388.12,9047.57,47.45,521.93,2388.13,8.4351,393,38.76,23.2512 +26,14,0.0001,0.0004,642.78,1593.83,1411.14,21.61,553.08,2388.12,9047.88,47.48,522.11,2388.13,8.4432,393,38.94,23.3845 +26,15,-0.001,0.0005,642.07,1591.37,1410.22,21.61,553.26,2388.17,9045.81,47.49,521.47,2388.1,8.4303,393,38.75,23.3319 +26,16,-0.0009,0.0004,642.19,1588.19,1416.35,21.61,552.89,2388.11,9045.5,47.57,521.5,2388.09,8.4432,394,38.76,23.2297 +26,17,0.0014,0.0003,642.84,1589.18,1405.88,21.61,553.25,2388.11,9041.77,47.49,521.34,2388.07,8.4638,394,39.1,23.2647 +26,18,0.0013,0.0003,642.49,1588.61,1408.21,21.61,554.18,2388.07,9050.43,47.43,521.59,2388.08,8.4456,394,38.74,23.3053 +26,19,0.0017,-0.0003,643.03,1585.33,1412.56,21.61,553.2,2388.14,9046.05,47.74,521.36,2388.14,8.4363,394,38.89,23.362 +26,20,0.0002,0.0005,642.56,1590.92,1414.56,21.61,552.52,2388.09,9050.5,47.55,521.45,2388.17,8.4226,394,38.93,23.2996 +26,21,0.0003,0.0003,642.79,1597.97,1414.67,21.61,553.39,2388.07,9045.5,47.51,521.66,2388.18,8.4233,392,38.61,23.3702 +26,22,-0.0052,-0.0004,642.73,1588.83,1407.43,21.61,553.09,2388.1,9050.15,47.42,521.09,2388.13,8.4401,394,38.73,23.2687 +26,23,-0.0003,0.0,642.56,1587.32,1415.45,21.61,554.32,2388.1,9047.48,47.54,521.54,2388.16,8.4523,392,38.75,23.3312 +26,24,-0.0033,-0.0004,642.78,1588.64,1404.79,21.61,553.13,2388.09,9044.74,47.31,521.77,2388.16,8.4651,393,38.95,23.2863 +26,25,-0.0022,-0.0003,642.83,1593.44,1408.98,21.61,553.7,2388.12,9049.57,47.28,521.73,2388.11,8.4343,393,38.9,23.2971 +26,26,-0.0026,0.0004,642.41,1586.09,1408.79,21.61,553.84,2388.14,9044.72,47.36,521.57,2388.09,8.4451,393,38.9,23.3277 +26,27,-0.006,-0.0004,642.11,1588.19,1402.79,21.61,553.35,2388.15,9050.15,47.43,521.37,2388.09,8.4405,393,38.98,23.3198 +26,28,0.0001,0.0,642.48,1591.66,1409.19,21.61,553.14,2388.08,9049.28,47.64,521.61,2388.07,8.4559,395,38.82,23.2244 +26,29,0.0022,-0.0004,642.75,1594.89,1405.56,21.61,552.85,2388.1,9045.79,47.51,521.28,2388.1,8.441,393,38.92,23.2838 +26,30,-0.0002,0.0,642.36,1587.86,1406.64,21.61,553.18,2388.11,9047.95,47.65,521.43,2388.02,8.42,392,38.84,23.294 +26,31,0.0001,-0.0002,642.69,1585.74,1405.72,21.61,554.1,2388.09,9050.52,47.69,520.88,2388.08,8.461,393,38.8,23.368 +26,32,-0.001,-0.0002,642.57,1591.78,1406.33,21.61,552.87,2388.07,9053.86,47.43,521.37,2388.08,8.455,393,38.68,23.3068 +26,33,0.0003,0.0004,642.19,1592.15,1396.5,21.61,554.0,2388.17,9043.79,47.67,521.5,2388.13,8.4566,392,38.91,23.3369 +26,34,-0.0015,-0.0001,642.71,1591.04,1400.94,21.61,553.69,2388.14,9039.9,47.63,521.05,2388.15,8.397,394,39.0,23.3474 +26,35,0.004,-0.0,643.13,1594.79,1406.94,21.61,553.33,2388.14,9045.08,47.27,521.66,2388.14,8.4148,391,38.94,23.2157 +26,36,0.0031,0.0001,642.41,1596.72,1403.05,21.61,553.6,2388.08,9050.02,47.49,521.78,2388.06,8.4661,393,38.87,23.334 +26,37,-0.0019,-0.0002,642.93,1589.57,1409.22,21.61,553.86,2388.14,9035.87,47.58,521.51,2388.12,8.4773,394,39.03,23.3528 +26,38,-0.0004,0.0004,642.78,1592.15,1409.55,21.61,553.27,2388.1,9050.97,47.59,521.31,2388.16,8.4452,392,38.61,23.3046 +26,39,-0.0049,-0.0003,642.56,1590.93,1398.15,21.61,552.88,2388.11,9055.27,47.41,521.35,2388.12,8.4503,393,38.74,23.3291 +26,40,0.0022,-0.0001,641.82,1594.36,1410.28,21.61,553.04,2388.1,9051.73,47.47,521.74,2388.17,8.454,392,38.73,23.2737 +26,41,0.0006,-0.0003,642.38,1596.89,1412.56,21.61,553.69,2388.16,9049.96,47.64,521.42,2388.07,8.4588,395,38.71,23.2904 +26,42,-0.0005,0.0001,642.19,1592.9,1406.41,21.61,553.84,2388.09,9045.86,47.58,522.03,2388.15,8.4398,393,38.77,23.2234 +26,43,-0.0013,-0.0005,642.91,1594.7,1414.93,21.61,553.25,2388.15,9048.21,47.74,521.57,2388.11,8.4202,394,38.81,23.3326 +26,44,0.0039,0.0001,642.9,1585.88,1411.13,21.61,553.52,2388.11,9046.89,47.67,521.33,2388.12,8.4596,392,38.9,23.2664 +26,45,-0.0021,-0.0005,642.06,1593.22,1410.96,21.61,553.19,2388.11,9050.81,47.6,520.97,2388.15,8.4424,393,38.89,23.3069 +26,46,-0.0022,-0.0002,642.75,1602.09,1409.77,21.61,552.36,2388.15,9049.43,47.58,521.06,2388.15,8.4722,393,38.81,23.3582 +26,47,0.0042,-0.0003,642.93,1590.74,1409.74,21.61,553.29,2388.13,9050.28,47.47,520.7,2388.14,8.4856,392,38.72,23.2004 +26,48,0.0026,0.0003,643.02,1587.83,1413.52,21.61,553.31,2388.11,9050.36,47.4,521.23,2388.12,8.4149,394,38.77,23.2041 +26,49,-0.0009,-0.0004,642.74,1594.99,1407.3,21.61,552.98,2388.12,9050.2,47.44,521.21,2388.12,8.4415,394,38.64,23.2306 +26,50,-0.0025,-0.0001,642.28,1595.54,1408.57,21.61,553.79,2388.09,9045.26,47.49,521.45,2388.11,8.4281,392,38.97,23.1972 +26,51,0.0006,-0.0001,643.33,1585.73,1405.23,21.61,553.17,2388.14,9052.66,47.51,521.22,2388.14,8.4199,393,38.86,23.2873 +26,52,-0.0042,-0.0003,642.97,1590.9,1408.69,21.61,552.88,2388.17,9050.83,47.59,521.23,2388.12,8.4798,393,38.94,23.3206 +26,53,0.0027,-0.0002,643.09,1588.71,1402.67,21.61,552.69,2388.12,9049.57,47.73,520.57,2388.14,8.4393,392,38.81,23.328 +26,54,-0.0015,-0.0004,642.49,1598.95,1409.73,21.61,553.81,2388.14,9056.1,47.59,521.99,2388.14,8.4264,395,38.77,23.3513 +26,55,-0.0006,0.0004,642.97,1589.86,1408.72,21.61,553.35,2388.11,9047.53,47.62,521.26,2388.11,8.4147,392,38.71,23.2913 +26,56,0.0008,-0.0001,643.16,1592.72,1411.87,21.61,552.42,2388.13,9040.82,47.62,521.47,2388.11,8.4291,393,38.83,23.371 +26,57,0.0035,-0.0004,642.82,1581.96,1412.11,21.61,553.02,2388.11,9045.18,47.51,521.36,2388.13,8.4925,395,39.02,23.3341 +26,58,0.0014,0.0003,642.52,1589.51,1413.65,21.61,553.75,2388.11,9054.11,47.39,521.43,2388.15,8.4437,392,38.73,23.2706 +26,59,-0.0024,-0.0004,642.3,1592.18,1404.96,21.61,552.62,2388.08,9048.88,47.64,521.59,2388.15,8.4407,393,38.83,23.398 +26,60,-0.0049,0.0003,642.99,1592.87,1404.8,21.61,553.86,2388.11,9049.92,47.44,520.98,2388.14,8.4356,394,38.82,23.3418 +26,61,0.0005,0.0001,642.86,1591.81,1406.61,21.61,552.62,2388.11,9044.24,47.49,521.31,2388.12,8.4635,392,38.8,23.3025 +26,62,0.0027,0.0005,643.05,1583.13,1406.36,21.61,553.04,2388.14,9053.9,47.55,521.79,2388.11,8.4485,395,38.85,23.4051 +26,63,0.0005,-0.0002,643.28,1598.8,1412.98,21.61,553.52,2388.13,9056.39,47.7,521.59,2388.08,8.4821,393,38.8,23.3506 +26,64,-0.0023,0.0002,642.74,1591.21,1412.73,21.61,553.4,2388.13,9054.54,47.58,521.3,2388.04,8.4438,392,38.88,23.2142 +26,65,0.0017,-0.0004,642.8,1591.29,1412.9,21.61,552.34,2388.15,9042.51,47.46,521.5,2388.09,8.4122,391,38.84,23.255 +26,66,0.0014,-0.0002,642.81,1591.39,1407.43,21.61,553.47,2388.09,9051.14,47.66,521.71,2388.12,8.4109,393,38.94,23.2372 +26,67,-0.0034,-0.0001,642.87,1593.64,1413.48,21.61,553.44,2388.1,9044.09,47.43,521.39,2388.1,8.4042,394,38.85,23.2758 +26,68,0.0004,-0.0004,643.04,1591.04,1413.48,21.61,553.53,2388.13,9048.91,47.59,520.99,2388.08,8.4392,392,38.83,23.3559 +26,69,0.0003,0.0004,642.78,1585.91,1408.84,21.61,552.67,2388.07,9049.82,47.52,521.2,2388.07,8.4248,392,38.76,23.3363 +26,70,-0.0003,-0.0002,642.53,1592.82,1410.03,21.61,553.24,2388.12,9045.84,47.47,521.67,2388.15,8.4491,393,38.68,23.2131 +26,71,0.0012,0.0001,642.52,1592.5,1405.58,21.61,553.66,2388.13,9051.11,47.6,521.22,2388.15,8.4632,395,38.8,23.2864 +26,72,0.0016,0.0003,642.77,1591.96,1404.68,21.61,553.13,2388.14,9051.27,47.49,520.66,2388.18,8.4266,393,38.88,23.2242 +26,73,0.0018,0.0,642.33,1595.74,1416.46,21.61,553.67,2388.1,9051.35,47.64,521.21,2388.14,8.4453,394,38.73,23.1944 +26,74,-0.0007,-0.0002,642.4,1592.36,1412.88,21.61,552.34,2388.1,9052.58,47.49,521.2,2388.08,8.4464,395,38.83,23.2443 +26,75,0.0016,-0.0,642.93,1590.1,1407.02,21.61,553.04,2388.12,9045.84,47.65,521.09,2388.07,8.4578,393,38.65,23.2159 +26,76,-0.0007,-0.0003,642.67,1585.14,1418.64,21.61,552.58,2388.15,9054.71,47.54,520.74,2388.13,8.4682,394,38.66,23.2473 +26,77,0.003,-0.0003,642.85,1588.37,1407.29,21.61,553.7,2388.17,9050.21,47.56,521.74,2388.12,8.426,392,38.83,23.2945 +26,78,0.0002,0.0005,642.65,1600.53,1405.42,21.61,553.74,2388.09,9045.09,47.48,521.3,2388.15,8.4371,392,38.75,23.2006 +26,79,-0.002,-0.0005,642.45,1585.95,1408.63,21.61,554.24,2388.14,9054.26,47.53,521.35,2388.13,8.4364,392,38.79,23.2569 +26,80,0.0056,0.0004,642.6,1593.05,1418.28,21.61,553.28,2388.13,9049.17,47.49,521.03,2388.16,8.4826,393,38.66,23.3776 +26,81,-0.0029,0.0002,642.7,1585.84,1405.19,21.61,553.68,2388.07,9054.98,47.53,520.6,2388.09,8.4811,390,38.86,23.3555 +26,82,-0.0002,-0.0004,642.89,1593.0,1404.59,21.61,552.79,2388.12,9051.0,47.42,521.43,2388.07,8.4789,394,38.81,23.2542 +26,83,-0.0008,-0.0005,642.51,1586.24,1412.74,21.61,552.78,2388.09,9046.34,47.71,521.39,2388.12,8.4319,392,38.81,23.2766 +26,84,0.0012,-0.0005,642.76,1593.92,1411.69,21.61,553.82,2388.12,9056.64,47.63,520.94,2388.16,8.4466,393,38.69,23.1877 +26,85,-0.0018,0.0004,642.89,1591.05,1413.55,21.61,553.54,2388.07,9056.87,47.63,520.65,2388.1,8.4192,394,38.84,23.3886 +26,86,0.0019,-0.0001,642.96,1594.34,1415.89,21.61,552.72,2388.1,9060.58,47.49,521.76,2388.15,8.4527,393,38.76,23.3023 +26,87,0.0001,0.0003,642.63,1591.85,1416.76,21.61,552.79,2388.14,9049.48,47.54,521.02,2388.1,8.4539,395,38.62,23.3896 +26,88,0.0004,0.0001,642.9,1590.66,1413.57,21.61,553.65,2388.14,9046.93,47.57,520.89,2388.14,8.4858,392,38.94,23.2118 +26,89,0.0036,-0.0004,643.11,1593.65,1418.21,21.61,553.32,2388.15,9052.67,47.66,521.37,2388.15,8.4497,394,38.67,23.3248 +26,90,-0.001,0.0002,642.48,1586.98,1414.15,21.61,553.53,2388.11,9058.39,47.61,521.64,2388.16,8.5059,393,38.83,23.2848 +26,91,0.0033,-0.0,642.92,1589.53,1402.11,21.61,553.76,2388.15,9055.07,47.54,521.44,2388.16,8.4245,393,38.7,23.3321 +26,92,0.002,-0.0002,642.0,1585.62,1407.27,21.61,553.34,2388.15,9060.92,47.62,521.1,2388.14,8.4528,395,38.63,23.2554 +26,93,0.0015,-0.0,642.4,1590.53,1411.94,21.61,553.46,2388.14,9053.9,47.59,520.7,2388.18,8.4801,393,38.71,23.224 +26,94,0.0024,-0.0001,643.12,1589.86,1418.61,21.61,553.6,2388.12,9053.51,47.58,520.88,2388.06,8.4588,395,38.71,23.2066 +26,95,0.0014,0.0004,642.57,1593.9,1410.65,21.61,553.85,2388.16,9054.27,47.47,521.55,2388.05,8.4596,393,38.89,23.221 +26,96,0.0019,-0.0003,642.47,1593.32,1413.11,21.61,553.94,2388.13,9061.16,47.57,521.7,2388.09,8.4668,392,38.91,23.2245 +26,97,-0.0065,0.0002,642.78,1591.38,1406.17,21.61,553.45,2388.1,9057.5,47.51,521.07,2388.16,8.4045,393,38.65,23.2665 +26,98,-0.0002,0.0004,642.63,1596.15,1407.14,21.61,553.86,2388.13,9058.2,47.51,521.47,2388.12,8.4465,393,38.69,23.2365 +26,99,0.0016,0.0005,642.79,1588.58,1408.83,21.61,553.58,2388.11,9058.52,47.61,521.08,2388.07,8.4583,393,38.63,23.261 +26,100,0.0002,-0.0005,643.11,1594.0,1414.1,21.61,553.61,2388.14,9053.81,47.47,520.94,2388.15,8.4528,394,38.82,23.2701 +26,101,0.0001,0.0,643.07,1586.06,1411.81,21.61,553.72,2388.09,9047.9,47.69,521.05,2388.11,8.465,393,38.9,23.1811 +26,102,-0.0018,0.0003,643.01,1587.16,1407.42,21.61,553.4,2388.13,9060.86,47.62,521.03,2388.14,8.4438,394,38.78,23.2241 +26,103,0.0004,-0.0001,642.54,1591.7,1408.83,21.61,553.04,2388.16,9060.57,47.55,521.23,2388.09,8.4258,394,38.92,23.3148 +26,104,0.0022,-0.0002,642.57,1593.02,1407.13,21.61,552.47,2388.11,9060.68,47.58,521.58,2388.16,8.4184,393,38.88,23.2761 +26,105,0.003,0.0002,642.81,1588.01,1418.03,21.61,553.44,2388.13,9057.56,47.63,521.32,2388.14,8.3984,394,38.89,23.2679 +26,106,0.0008,0.0003,643.27,1589.35,1406.73,21.61,552.97,2388.07,9054.08,47.65,521.33,2388.16,8.4427,392,38.79,23.2433 +26,107,0.0039,-0.0004,642.17,1591.59,1407.38,21.61,553.18,2388.15,9053.35,47.64,521.07,2388.14,8.4657,394,39.05,23.2332 +26,108,0.0001,0.0003,643.0,1594.12,1411.07,21.61,552.69,2388.12,9057.91,47.71,521.18,2388.12,8.4362,393,38.79,23.2894 +26,109,0.0006,-0.0003,642.71,1590.05,1412.41,21.61,553.04,2388.17,9056.41,47.74,521.64,2388.11,8.4557,394,38.76,23.2664 +26,110,-0.0033,0.0003,642.47,1596.12,1403.2,21.61,552.48,2388.13,9056.07,47.57,521.02,2388.11,8.4783,392,38.72,23.2103 +26,111,-0.0017,0.0,642.78,1597.32,1410.94,21.61,553.94,2388.13,9058.04,47.49,521.29,2388.15,8.4341,395,38.79,23.2884 +26,112,-0.0016,-0.0,642.82,1588.95,1410.12,21.61,553.23,2388.13,9056.89,47.78,521.06,2388.1,8.4548,394,38.76,23.2857 +26,113,0.0004,-0.0,642.89,1591.08,1409.34,21.61,554.07,2388.11,9058.26,47.6,521.72,2388.13,8.4922,395,38.71,23.2652 +26,114,-0.0013,0.0005,642.74,1590.0,1418.36,21.61,552.91,2388.11,9061.88,47.6,521.21,2388.18,8.4836,392,38.79,23.2896 +26,115,-0.0031,0.0001,643.09,1593.54,1412.56,21.61,552.67,2388.11,9052.34,47.41,520.97,2388.12,8.4579,394,38.74,23.3543 +26,116,-0.0015,0.0005,642.67,1592.47,1417.74,21.61,553.0,2388.15,9064.2,47.73,520.97,2388.14,8.4376,395,38.73,23.262 +26,117,-0.002,-0.0002,642.78,1593.47,1412.46,21.61,553.13,2388.16,9053.59,47.46,521.58,2388.13,8.4479,394,38.62,23.2787 +26,118,0.0007,-0.0002,642.91,1595.51,1408.94,21.61,553.52,2388.13,9053.53,47.63,521.58,2388.11,8.4692,393,38.79,23.3029 +26,119,-0.0035,0.0003,642.51,1588.65,1406.46,21.61,553.28,2388.15,9054.12,47.51,521.24,2388.11,8.4492,393,38.74,23.3369 +26,120,-0.0027,-0.0005,642.52,1596.95,1410.53,21.61,553.02,2388.15,9062.7,47.63,521.39,2388.1,8.4524,393,38.73,23.1954 +26,121,0.0006,0.0004,642.88,1586.93,1411.44,21.61,552.73,2388.09,9068.14,47.76,521.27,2388.13,8.5259,395,38.83,23.2952 +26,122,-0.0028,0.0004,642.8,1596.42,1408.39,21.61,553.68,2388.1,9060.98,47.47,521.28,2388.18,8.4295,393,38.72,23.3688 +26,123,-0.0005,-0.0004,642.67,1587.81,1416.44,21.61,552.62,2388.11,9064.94,47.62,520.63,2388.08,8.4437,394,38.75,23.2716 +26,124,-0.0029,0.0001,642.63,1594.77,1407.34,21.61,552.86,2388.13,9058.3,47.52,521.82,2388.11,8.44,394,38.84,23.2545 +26,125,-0.0017,-0.0002,643.2,1597.64,1415.94,21.61,552.87,2388.1,9060.97,47.58,520.6,2388.13,8.5054,394,38.94,23.2735 +26,126,-0.0013,0.0005,642.9,1591.59,1414.9,21.61,552.92,2388.14,9066.9,47.62,521.07,2388.12,8.4273,393,38.86,23.2378 +26,127,-0.0,0.0001,642.77,1590.04,1408.29,21.61,553.12,2388.12,9064.6,47.68,521.0,2388.11,8.4604,394,38.7,23.1846 +26,128,-0.0018,-0.0003,643.12,1590.94,1415.23,21.61,553.39,2388.09,9069.55,47.68,521.32,2388.1,8.4048,392,38.84,23.2914 +26,129,-0.0037,-0.0001,642.82,1587.67,1410.06,21.61,553.12,2388.14,9063.74,47.66,521.64,2388.09,8.4466,393,38.83,23.2279 +26,130,-0.0017,0.0001,642.87,1594.46,1416.55,21.61,552.83,2388.18,9067.21,47.75,520.6,2388.13,8.4583,394,38.64,23.2408 +26,131,0.0014,0.0002,642.86,1592.05,1411.77,21.61,553.65,2388.12,9064.62,47.57,521.38,2388.15,8.4437,393,38.82,23.2675 +26,132,-0.0001,-0.0003,642.71,1597.23,1413.3,21.61,552.95,2388.12,9065.65,47.63,521.18,2388.09,8.4666,394,38.65,23.2512 +26,133,0.0025,-0.0004,642.8,1587.21,1417.91,21.61,552.07,2388.07,9062.83,47.72,521.46,2388.18,8.4855,393,38.8,23.2418 +26,134,0.0012,0.0004,643.46,1589.61,1406.24,21.61,552.69,2388.13,9064.23,47.73,520.81,2388.08,8.4394,397,38.91,23.2175 +26,135,0.0025,-0.0004,642.61,1592.31,1406.91,21.61,553.12,2388.14,9065.68,47.7,521.41,2388.13,8.4709,393,38.85,23.2727 +26,136,0.0008,0.0001,643.15,1588.68,1411.21,21.61,553.29,2388.18,9066.68,47.57,520.69,2388.14,8.4657,395,38.83,23.1946 +26,137,0.0015,0.0002,643.01,1591.12,1408.75,21.61,553.01,2388.07,9068.24,47.58,521.7,2388.09,8.4092,393,38.85,23.2432 +26,138,-0.0004,-0.0001,642.97,1589.75,1410.74,21.61,552.65,2388.08,9070.28,47.9,521.14,2388.11,8.4432,393,38.77,23.2822 +26,139,-0.0039,-0.0005,643.41,1595.51,1409.65,21.61,553.4,2388.14,9070.31,47.72,520.96,2388.08,8.4843,395,38.67,23.2726 +26,140,-0.0033,0.0004,643.21,1598.89,1413.78,21.61,553.15,2388.09,9072.93,47.66,521.44,2388.12,8.4764,394,38.68,23.2887 +26,141,0.0001,-0.0001,643.34,1592.34,1413.57,21.61,553.29,2388.14,9074.48,47.71,520.82,2388.05,8.4295,396,38.83,23.2378 +26,142,0.0022,-0.0003,642.77,1601.39,1414.4,21.61,553.11,2388.1,9074.6,47.72,521.49,2388.17,8.4606,394,38.79,23.1802 +26,143,0.0007,-0.0,642.51,1590.82,1413.88,21.61,552.8,2388.07,9072.96,47.84,520.75,2388.11,8.4698,393,38.61,23.2324 +26,144,-0.0,-0.0004,642.8,1597.21,1417.72,21.61,552.76,2388.1,9074.35,47.69,521.48,2388.09,8.4735,393,38.92,23.0696 +26,145,0.0021,-0.0001,643.57,1594.19,1412.47,21.61,552.88,2388.15,9073.5,47.82,521.07,2388.12,8.4763,393,38.63,23.2157 +26,146,-0.0018,-0.0003,643.28,1592.37,1416.5,21.61,552.47,2388.1,9070.32,47.77,520.91,2388.07,8.4515,394,38.5,23.1227 +26,147,-0.0014,-0.0004,643.06,1587.61,1419.77,21.61,553.03,2388.11,9069.38,47.58,521.18,2388.11,8.4686,394,38.69,23.3643 +26,148,-0.0012,0.0001,642.89,1599.67,1420.63,21.61,553.11,2388.14,9080.42,47.76,520.94,2388.12,8.5091,396,38.65,23.2159 +26,149,0.0009,0.0001,642.87,1593.19,1410.17,21.61,552.99,2388.13,9089.8,47.81,521.56,2388.12,8.4315,394,38.75,23.2455 +26,150,0.0001,-0.0005,643.65,1599.87,1414.22,21.61,552.57,2388.11,9078.42,47.81,521.19,2388.11,8.4369,395,38.75,23.179 +26,151,-0.0019,0.0001,643.04,1592.56,1415.38,21.61,552.65,2388.13,9077.33,47.72,520.49,2388.08,8.4841,392,38.56,23.2403 +26,152,-0.0026,0.0002,643.04,1590.44,1417.42,21.61,552.54,2388.11,9083.27,47.76,520.39,2388.11,8.4598,395,38.8,23.3102 +26,153,0.0051,-0.0002,643.0,1594.28,1415.16,21.61,552.94,2388.11,9083.61,47.71,521.29,2388.12,8.4625,393,38.75,23.2126 +26,154,0.0017,0.0001,643.01,1593.46,1422.94,21.61,552.73,2388.09,9086.74,47.63,520.56,2388.1,8.431,395,38.66,23.2891 +26,155,0.0005,-0.0002,642.79,1591.44,1418.08,21.61,552.43,2388.05,9085.16,47.71,521.03,2388.1,8.4715,395,38.7,23.2401 +26,156,0.0002,0.0003,643.15,1594.92,1421.8,21.61,552.32,2388.14,9084.14,47.63,521.49,2388.1,8.4945,395,38.63,23.1976 +26,157,0.0024,-0.0005,643.45,1593.16,1417.92,21.61,552.71,2388.15,9083.6,47.7,521.03,2388.13,8.448,395,38.6,23.2071 +26,158,0.0005,-0.0005,642.74,1590.78,1414.85,21.61,552.63,2388.11,9084.89,47.76,521.02,2388.1,8.4482,394,38.83,23.2356 +26,159,0.0023,0.0005,643.06,1598.18,1417.35,21.61,552.83,2388.11,9088.95,47.59,520.79,2388.16,8.5171,396,38.59,23.1999 +26,160,0.0022,-0.0005,643.49,1599.72,1409.99,21.61,552.95,2388.11,9079.8,47.77,521.33,2388.11,8.4634,395,38.61,23.1524 +26,161,0.0021,0.0003,643.26,1592.23,1428.08,21.61,553.14,2388.15,9077.29,47.89,520.87,2388.1,8.5008,393,38.62,23.1214 +26,162,0.0003,0.0003,643.56,1600.3,1415.76,21.61,551.9,2388.07,9089.85,47.79,520.01,2388.12,8.4818,395,38.72,23.2595 +26,163,-0.0009,-0.0003,642.6,1590.99,1423.93,21.61,553.16,2388.1,9094.99,47.77,521.27,2388.12,8.4865,396,38.9,23.1581 +26,164,-0.0036,0.0004,642.35,1597.21,1418.41,21.61,552.9,2388.13,9091.38,47.75,520.75,2388.12,8.4672,395,38.82,23.2149 +26,165,-0.005,-0.0003,642.94,1602.91,1423.98,21.61,552.47,2388.12,9089.63,47.82,520.95,2388.19,8.4769,395,38.6,23.1424 +26,166,-0.0021,-0.0002,642.89,1596.1,1420.49,21.61,553.03,2388.13,9100.15,47.89,520.73,2388.15,8.4862,395,38.71,23.115 +26,167,-0.0,-0.0004,643.06,1597.75,1422.37,21.61,552.14,2388.15,9096.73,47.7,521.0,2388.11,8.5003,394,38.71,23.1469 +26,168,0.0047,-0.0005,642.77,1597.38,1412.74,21.61,552.9,2388.14,9093.26,47.89,520.42,2388.16,8.5048,394,38.72,23.1771 +26,169,-0.0041,-0.0,643.03,1594.48,1419.63,21.61,551.62,2388.14,9088.57,47.66,520.71,2388.15,8.4572,393,38.71,23.1739 +26,170,-0.0024,0.0003,642.78,1595.07,1422.86,21.61,552.72,2388.15,9100.74,47.92,520.48,2388.18,8.5178,395,38.61,23.0953 +26,171,-0.0021,0.0003,643.21,1600.87,1414.91,21.61,552.75,2388.15,9105.28,48.09,520.57,2388.12,8.4872,396,38.63,23.2545 +26,172,-0.0032,-0.0002,643.18,1600.26,1427.62,21.61,552.76,2388.18,9095.48,47.64,520.48,2388.09,8.4652,395,38.74,23.263 +26,173,-0.0006,0.0002,643.35,1597.52,1413.1,21.61,551.72,2388.13,9103.92,47.86,520.57,2388.1,8.5235,395,38.73,23.2349 +26,174,-0.0001,-0.0001,643.44,1599.04,1421.85,21.61,552.37,2388.13,9105.33,47.85,520.95,2388.14,8.5159,395,38.58,23.2186 +26,175,0.0007,0.0001,643.52,1597.07,1418.37,21.61,552.55,2388.14,9110.14,47.76,520.16,2388.19,8.5125,395,38.65,23.1573 +26,176,-0.0005,-0.0001,643.29,1591.28,1423.76,21.61,551.86,2388.13,9104.96,47.91,520.79,2388.11,8.5328,394,38.6,23.0826 +26,177,-0.001,0.0003,643.69,1592.25,1423.11,21.61,552.59,2388.12,9112.15,48.03,520.6,2388.13,8.5052,396,38.57,23.137 +26,178,-0.0026,-0.0001,643.25,1595.48,1418.21,21.61,552.2,2388.12,9111.45,47.75,520.1,2388.11,8.4769,395,38.35,23.1517 +26,179,0.004,0.0004,643.5,1590.51,1425.17,21.61,553.17,2388.13,9107.9,47.99,520.39,2388.13,8.5043,396,38.54,23.2159 +26,180,0.0005,0.0005,642.67,1599.32,1422.39,21.61,552.33,2388.11,9112.96,47.82,520.31,2388.15,8.4848,396,38.67,23.1208 +26,181,0.0034,0.0002,643.64,1595.3,1419.93,21.61,552.03,2388.1,9115.11,47.99,520.52,2388.17,8.5251,397,38.68,23.1598 +26,182,-0.001,-0.0001,643.14,1601.23,1429.21,21.61,552.05,2388.15,9123.09,47.84,520.78,2388.11,8.4827,394,38.65,23.2101 +26,183,-0.0022,-0.0005,643.55,1600.16,1418.84,21.61,552.59,2388.18,9121.03,48.07,520.04,2388.18,8.4973,395,38.55,23.1373 +26,184,-0.0017,0.0003,643.14,1597.99,1415.1,21.61,551.57,2388.12,9124.85,47.83,520.25,2388.14,8.512,394,38.64,23.1791 +26,185,-0.0007,-0.0003,643.02,1598.81,1419.15,21.61,552.39,2388.12,9129.73,47.88,520.11,2388.15,8.5088,394,38.6,23.0039 +26,186,-0.0022,-0.0003,643.81,1601.93,1418.67,21.61,552.33,2388.13,9126.56,47.92,521.01,2388.14,8.5137,395,38.32,23.1313 +26,187,0.0013,-0.0004,643.5,1602.0,1422.72,21.61,552.65,2388.15,9135.41,48.15,519.7,2388.08,8.5071,395,38.57,23.1639 +26,188,-0.0013,0.0001,643.15,1603.07,1429.06,21.61,552.16,2388.12,9131.88,47.87,519.8,2388.13,8.4834,395,38.44,23.1403 +26,189,0.0005,-0.0,643.59,1600.68,1424.71,21.61,551.99,2388.15,9130.05,48.2,520.54,2388.17,8.4844,396,38.58,23.1637 +26,190,0.0009,-0.0003,643.29,1601.67,1428.87,21.61,551.93,2388.15,9128.33,47.95,520.33,2388.14,8.4889,396,38.63,23.2113 +26,191,-0.0024,0.0004,643.59,1606.06,1424.87,21.61,551.83,2388.13,9139.45,47.95,519.97,2388.16,8.5494,397,38.58,23.0404 +26,192,0.0014,0.0004,643.7,1602.26,1425.02,21.61,551.89,2388.15,9143.79,48.02,520.34,2388.21,8.5053,397,38.43,23.11 +26,193,0.0012,0.0002,643.32,1598.78,1427.13,21.61,551.78,2388.19,9139.84,47.98,519.8,2388.15,8.5207,396,38.39,23.1663 +26,194,0.0032,-0.0002,643.71,1599.33,1432.5,21.61,552.14,2388.13,9143.97,48.04,520.48,2388.17,8.5348,397,38.66,23.0408 +26,195,-0.0011,0.0,643.49,1607.92,1422.33,21.61,552.0,2388.16,9145.59,48.03,520.44,2388.16,8.5399,396,38.57,23.114 +26,196,-0.0034,0.0002,643.57,1603.45,1427.18,21.61,552.02,2388.14,9158.85,47.98,520.28,2388.16,8.4726,395,38.46,23.0408 +26,197,0.0007,-0.0,644.04,1602.29,1426.78,21.61,551.23,2388.16,9150.89,48.14,520.41,2388.13,8.5083,398,38.57,23.0534 +26,198,-0.0025,0.0,643.24,1599.73,1421.29,21.61,551.57,2388.19,9154.0,48.07,520.53,2388.16,8.5098,397,38.45,23.1852 +26,199,-0.0005,0.0003,643.51,1599.25,1432.5,21.61,551.79,2388.19,9159.51,48.05,519.2,2388.2,8.5347,398,38.27,22.9867 +27,10,0.0013,0.0001,642.54,1592.24,1408.67,21.61,554.03,2388.08,9066.4,47.52,521.19,2388.09,8.4128,393,38.95,23.4244 +27,11,0.0006,-0.0004,642.57,1586.12,1392.42,21.61,553.0,2388.11,9062.55,47.44,521.82,2388.15,8.4378,392,38.91,23.362 +27,12,-0.0021,-0.0003,642.48,1587.31,1404.75,21.61,553.34,2388.04,9065.14,47.45,522.05,2388.04,8.4468,393,38.82,23.3062 +27,13,0.005,0.0004,642.36,1588.83,1410.72,21.61,553.02,2388.08,9061.13,47.44,521.87,2388.09,8.4276,392,38.64,23.3662 +27,14,0.0012,0.0001,642.37,1583.56,1407.41,21.61,553.82,2388.05,9056.57,47.31,521.98,2388.07,8.4452,394,38.97,23.3414 +27,15,0.0006,-0.0002,642.33,1583.7,1402.81,21.61,553.9,2388.03,9069.72,47.42,521.67,2388.06,8.4514,393,38.73,23.3552 +27,16,-0.0024,-0.0003,642.4,1585.16,1403.97,21.61,552.58,2388.06,9067.64,47.5,521.55,2388.02,8.4352,392,38.82,23.3333 +27,17,-0.0014,-0.0003,641.78,1591.04,1407.19,21.61,554.56,2388.0,9061.41,47.4,521.6,2388.06,8.4351,393,38.86,23.3798 +27,18,-0.0015,0.0002,642.61,1590.43,1396.7,21.61,553.71,2388.1,9064.92,47.37,521.43,2388.09,8.4055,393,38.84,23.3399 +27,19,-0.0019,-0.0001,642.47,1581.23,1399.5,21.61,553.43,2388.11,9062.02,47.42,521.86,2388.04,8.4082,393,38.8,23.3244 +27,20,0.0004,-0.0003,642.66,1592.44,1407.16,21.61,553.88,2388.02,9064.36,47.4,521.61,2388.08,8.45,393,38.9,23.3725 +27,21,-0.0002,0.0002,642.56,1584.78,1395.72,21.61,553.86,2388.02,9067.88,47.47,522.07,2388.01,8.4341,392,38.83,23.358 +27,22,0.0025,-0.0004,642.75,1590.65,1405.19,21.61,552.86,2388.07,9059.1,47.53,522.0,2388.06,8.4121,393,38.89,23.3225 +27,23,0.0048,-0.0005,642.3,1590.01,1407.18,21.61,553.67,2388.09,9064.01,47.52,521.71,2388.05,8.4264,393,38.89,23.2872 +27,24,-0.0009,-0.0004,642.54,1594.77,1404.67,21.61,553.5,2387.97,9073.32,47.44,520.89,2388.12,8.4451,393,38.91,23.3274 +27,25,0.0002,-0.0004,642.54,1590.71,1403.35,21.61,554.51,2388.14,9066.2,47.24,522.1,2388.1,8.427,393,38.9,23.2058 +27,26,0.0001,0.0003,642.61,1587.42,1398.58,21.61,554.09,2388.06,9063.43,47.37,522.04,2388.06,8.4276,391,38.74,23.2886 +27,27,0.0035,-0.0003,642.32,1585.31,1406.02,21.61,552.99,2388.07,9069.36,47.31,521.77,2388.08,8.4601,393,39.02,23.3902 +27,28,0.0003,0.0003,642.55,1586.9,1404.2,21.61,554.33,2388.11,9067.38,47.34,522.21,2388.04,8.3907,393,39.12,23.3839 +27,29,-0.0023,-0.0005,642.5,1583.07,1405.78,21.61,553.98,2388.06,9063.3,47.35,521.91,2388.04,8.4348,392,38.89,23.2319 +27,30,-0.0009,0.0001,642.46,1589.12,1395.35,21.61,554.02,2388.05,9061.47,47.34,521.5,2388.05,8.4483,393,38.75,23.2781 +27,31,-0.0007,0.0002,642.7,1590.1,1404.34,21.61,553.94,2388.03,9056.41,47.47,521.61,2388.03,8.4361,392,38.72,23.3471 +27,32,-0.001,0.0,642.55,1589.05,1404.68,21.61,553.58,2388.02,9058.45,47.45,521.48,2388.01,8.4304,393,38.66,23.3432 +27,33,-0.0025,0.0003,642.06,1590.6,1407.24,21.61,553.03,2388.07,9060.42,47.37,521.75,2388.06,8.446,394,38.89,23.2982 +27,34,0.0014,-0.0003,642.93,1597.39,1403.23,21.61,553.9,2388.1,9062.04,47.25,522.2,2388.04,8.4496,393,38.92,23.3944 +27,35,-0.0035,-0.0,642.31,1591.21,1405.62,21.61,553.41,2388.06,9066.63,47.45,521.89,2388.05,8.4391,392,38.91,23.365 +27,36,-0.0022,-0.0002,642.16,1596.79,1407.68,21.61,554.49,2388.1,9068.67,47.45,521.56,2388.06,8.3947,393,38.98,23.2749 +27,37,0.0028,0.0002,642.69,1587.68,1401.08,21.61,554.49,2388.08,9067.53,47.28,521.81,2388.04,8.4219,391,38.87,23.4123 +27,38,0.0012,0.0002,642.55,1587.12,1409.48,21.61,554.18,2388.06,9070.16,47.52,522.24,2388.07,8.4059,392,38.96,23.3179 +27,39,-0.0006,-0.0004,642.26,1589.69,1405.18,21.61,553.64,2388.02,9060.09,47.57,521.94,2388.1,8.4273,393,39.0,23.3514 +27,40,0.0001,0.0003,642.42,1592.01,1409.89,21.61,554.32,2388.08,9064.69,47.53,521.57,2388.05,8.4624,393,38.85,23.3694 +27,41,0.0012,-0.0,642.21,1583.26,1404.96,21.61,553.73,2388.06,9057.14,47.44,521.64,2388.12,8.4502,392,38.87,23.165 +27,42,0.0009,-0.0005,642.94,1581.57,1407.92,21.61,553.41,2388.04,9068.4,47.37,521.29,2388.06,8.4601,393,38.94,23.3386 +27,43,0.0002,-0.0004,642.84,1591.34,1401.74,21.61,553.68,2388.13,9064.24,47.38,521.49,2388.12,8.4171,394,38.79,23.3086 +27,44,0.0001,-0.0002,642.81,1583.25,1397.69,21.61,554.14,2388.09,9072.87,47.45,521.52,2388.02,8.4091,393,38.87,23.2843 +27,45,0.001,-0.0002,642.5,1588.66,1412.34,21.61,554.03,2388.05,9063.77,47.58,521.21,2388.04,8.4182,392,39.02,23.2726 +27,46,-0.0038,-0.0003,642.48,1585.98,1400.43,21.61,554.23,2388.05,9070.12,47.32,521.48,2388.05,8.4178,392,38.86,23.3129 +27,47,-0.002,-0.0002,642.32,1590.28,1409.2,21.61,553.25,2388.1,9068.49,47.47,521.83,2388.04,8.4431,392,38.87,23.2718 +27,48,0.001,-0.0,643.11,1593.64,1412.48,21.61,553.45,2388.06,9066.14,47.6,521.73,2388.09,8.4163,393,38.88,23.4464 +27,49,0.0032,0.0003,642.05,1590.33,1408.22,21.61,553.53,2388.07,9071.78,47.54,521.74,2388.08,8.4277,392,38.92,23.3259 +27,50,-0.0014,-0.0003,643.12,1588.5,1406.8,21.61,553.36,2388.11,9066.57,47.64,521.26,2388.07,8.4129,394,39.0,23.3386 +27,51,-0.0025,-0.0002,642.53,1590.41,1409.24,21.61,553.16,2388.03,9065.55,47.37,521.76,2388.12,8.4392,393,38.93,23.4062 +27,52,-0.0008,-0.0002,642.86,1592.59,1404.88,21.6,553.17,2388.03,9063.27,47.59,521.31,2388.09,8.4518,391,38.98,23.288 +27,53,0.0032,0.0004,642.56,1584.63,1408.94,21.61,553.14,2388.06,9060.79,47.46,522.0,2388.07,8.4146,392,38.78,23.3635 +27,54,0.0009,0.0001,642.62,1584.73,1407.3,21.61,553.53,2388.06,9063.37,47.52,521.52,2388.13,8.4461,392,38.9,23.2081 +27,55,0.0033,-0.0,642.28,1590.34,1403.66,21.61,554.97,2388.05,9065.81,47.45,521.68,2388.12,8.4398,393,38.92,23.4158 +27,56,0.003,0.0003,642.91,1595.92,1403.35,21.61,553.23,2388.09,9065.89,47.21,521.48,2388.07,8.4514,393,38.9,23.3764 +27,57,-0.0003,0.0003,642.26,1590.69,1410.43,21.61,554.17,2388.03,9066.79,47.62,521.45,2388.11,8.4204,393,38.79,23.3128 +27,58,0.0017,0.0002,642.57,1584.91,1401.33,21.61,552.96,2388.05,9069.47,47.45,521.26,2388.07,8.4361,393,38.92,23.3731 +27,59,-0.0028,0.0001,641.89,1595.99,1406.05,21.61,552.99,2388.11,9063.77,47.66,521.69,2388.05,8.4306,394,38.76,23.357 +27,60,-0.0021,0.0002,642.78,1587.22,1407.53,21.61,553.02,2388.07,9069.95,47.51,521.53,2388.06,8.4413,392,38.77,23.2111 +27,61,0.0003,-0.0004,642.56,1591.03,1408.91,21.61,552.82,2388.09,9071.13,47.39,521.15,2388.11,8.4327,392,38.69,23.379 +27,62,0.0024,0.0002,642.26,1588.61,1414.54,21.61,553.51,2388.1,9064.77,47.38,521.63,2388.04,8.4336,392,38.93,23.2637 +27,63,0.0004,0.0001,642.33,1590.1,1416.28,21.61,552.61,2388.08,9060.33,47.41,521.49,2388.05,8.4618,393,38.93,23.2869 +27,64,-0.0023,-0.0004,642.59,1591.45,1403.31,21.61,553.92,2388.15,9068.6,47.55,521.87,2388.05,8.4189,393,39.07,23.3385 +27,65,-0.0008,-0.0002,642.7,1590.78,1406.97,21.61,553.23,2388.1,9060.49,47.63,522.24,2388.06,8.4179,393,38.88,23.3298 +27,66,-0.005,-0.0003,642.81,1589.64,1406.18,21.61,553.8,2388.07,9065.48,47.47,521.52,2388.09,8.4438,393,38.9,23.1849 +27,67,0.0,0.0002,642.57,1586.59,1412.39,21.61,554.0,2388.07,9069.14,47.43,521.83,2388.07,8.4508,395,38.94,23.3121 +27,68,-0.0006,-0.0001,642.73,1593.25,1413.68,21.61,553.45,2388.1,9069.39,47.34,522.14,2388.12,8.428,392,38.8,23.3597 +27,69,0.0033,0.0003,642.77,1578.13,1407.13,21.61,553.32,2388.08,9066.37,47.54,522.12,2388.05,8.427,394,38.78,23.364 +27,70,0.0018,-0.0003,642.53,1584.62,1408.9,21.61,553.2,2388.08,9066.9,47.44,521.9,2388.09,8.4254,394,38.88,23.3443 +27,71,-0.0011,-0.0001,642.7,1593.27,1404.91,21.61,552.78,2388.08,9066.69,47.56,521.98,2388.07,8.3924,393,38.98,23.3195 +27,72,-0.0001,-0.0005,642.85,1584.8,1409.4,21.61,553.28,2388.07,9070.38,47.5,522.03,2388.13,8.4406,392,38.82,23.2761 +27,73,-0.0022,-0.0004,642.83,1595.96,1403.62,21.61,553.38,2388.08,9070.22,47.52,521.66,2388.12,8.408,393,38.83,23.2556 +27,74,-0.0014,-0.0001,642.43,1589.75,1403.14,21.61,554.42,2388.08,9065.28,47.54,521.83,2388.12,8.4408,393,39.06,23.3193 +27,75,-0.0002,0.0004,642.76,1589.51,1411.99,21.61,553.49,2388.04,9071.52,47.46,521.93,2388.13,8.4467,393,38.68,23.3404 +27,76,-0.0014,0.0001,642.5,1587.74,1407.5,21.61,553.38,2388.06,9064.55,47.56,521.65,2388.11,8.4191,393,38.94,23.3429 +27,77,0.0017,-0.0003,642.87,1588.09,1409.32,21.61,554.35,2388.03,9076.28,47.46,521.62,2388.14,8.4316,392,38.9,23.3397 +27,78,-0.0024,-0.0002,642.43,1593.59,1411.26,21.61,553.09,2388.1,9070.92,47.45,521.76,2388.09,8.429,395,38.85,23.3428 +27,79,-0.0024,-0.0002,642.7,1584.93,1410.78,21.61,553.87,2388.12,9071.87,47.42,521.29,2388.12,8.4376,394,38.73,23.2766 +27,80,0.0007,-0.0005,641.84,1587.58,1414.87,21.61,553.53,2388.02,9069.73,47.46,521.35,2388.06,8.4667,393,38.84,23.2138 +27,81,-0.0003,-0.0003,643.16,1590.25,1410.54,21.61,553.74,2388.09,9063.08,47.42,522.07,2388.12,8.444,393,38.82,23.3558 +27,82,0.0017,-0.0,642.5,1600.91,1415.54,21.61,553.5,2388.09,9061.03,47.48,521.68,2388.08,8.3974,392,38.75,23.3561 +27,83,0.0013,0.0001,642.24,1591.16,1399.22,21.61,553.41,2388.07,9072.18,47.53,520.86,2388.1,8.4279,394,38.92,23.3416 +27,84,0.0026,0.0001,643.05,1590.75,1411.12,21.61,553.21,2388.11,9069.1,47.63,521.86,2388.15,8.4312,395,38.72,23.3699 +27,85,-0.0042,0.0,641.86,1591.36,1409.92,21.61,553.28,2388.09,9074.25,47.63,521.37,2388.02,8.4562,392,38.93,23.3496 +27,86,-0.0013,-0.0004,642.87,1593.17,1403.79,21.61,553.76,2388.1,9070.13,47.58,521.0,2388.07,8.4437,393,39.1,23.2941 +27,87,0.0021,-0.0003,642.63,1590.85,1411.77,21.61,553.85,2388.1,9067.17,47.61,521.42,2388.12,8.4775,391,38.7,23.2104 +27,88,0.0003,-0.0005,643.0,1586.24,1407.36,21.61,553.15,2388.05,9068.5,47.51,520.59,2388.06,8.4216,392,38.82,23.3788 +27,89,0.0003,0.0001,642.6,1595.61,1410.14,21.61,553.43,2388.07,9074.96,47.47,520.92,2388.08,8.4042,394,38.86,23.1602 +27,90,0.0001,0.0,642.13,1591.67,1408.51,21.61,553.68,2388.08,9069.56,47.6,520.97,2388.12,8.4565,394,38.68,23.3718 +27,91,0.0016,-0.0002,642.94,1590.89,1409.25,21.61,553.26,2388.07,9072.4,47.54,521.51,2388.03,8.457,394,39.03,23.1897 +27,92,-0.0008,0.0002,642.48,1585.96,1408.21,21.61,553.18,2388.09,9072.9,47.69,521.03,2388.05,8.4985,393,38.86,23.2057 +27,93,0.0,0.0002,642.64,1592.61,1417.3,21.61,553.58,2388.12,9074.79,47.43,521.03,2388.13,8.4139,394,38.71,23.303 +27,94,-0.0019,0.0002,642.41,1597.87,1409.0,21.61,553.78,2388.07,9086.81,47.54,521.51,2388.06,8.4572,394,38.76,23.2785 +27,95,0.0008,-0.0001,643.26,1595.23,1408.35,21.61,552.69,2388.07,9082.15,47.71,522.37,2388.11,8.4474,392,38.87,23.2952 +27,96,-0.0003,0.0002,642.66,1590.7,1415.73,21.61,553.07,2388.06,9073.48,47.67,520.96,2388.05,8.484,393,38.65,23.31 +27,97,0.0031,-0.0003,643.17,1584.43,1417.08,21.61,552.48,2388.1,9075.95,47.53,521.28,2388.13,8.4153,392,38.76,23.2503 +27,98,-0.0013,0.0004,642.59,1586.18,1408.5,21.61,552.75,2388.08,9079.74,47.73,521.06,2388.15,8.4508,394,38.82,23.1136 +27,99,-0.0023,-0.0,642.65,1591.88,1414.29,21.61,553.3,2388.1,9077.61,47.5,521.05,2388.1,8.4217,394,38.99,23.4543 +27,100,-0.0009,-0.0003,642.41,1591.27,1405.82,21.61,553.08,2388.12,9074.93,47.5,520.96,2388.13,8.4529,392,38.93,23.3242 +27,101,0.0018,-0.0002,642.97,1590.05,1409.52,21.61,553.08,2388.08,9072.0,47.58,521.5,2388.05,8.4494,393,38.79,23.273 +27,102,-0.0028,0.0001,643.27,1596.27,1410.49,21.61,552.4,2388.11,9083.46,47.69,521.26,2388.1,8.4381,393,38.71,23.1543 +27,103,-0.0017,-0.0005,642.92,1598.29,1417.33,21.61,552.39,2388.12,9070.84,47.62,520.88,2388.08,8.4145,395,38.86,23.2877 +27,104,-0.0006,0.0002,642.8,1590.26,1411.59,21.61,553.29,2388.12,9079.04,47.64,521.37,2388.06,8.4773,393,38.84,23.2414 +27,105,0.0003,0.0,642.78,1594.54,1408.62,21.61,553.07,2388.12,9072.32,47.59,521.57,2388.05,8.4467,393,39.01,23.3349 +27,106,-0.003,-0.0004,643.22,1591.24,1413.43,21.61,553.27,2388.08,9070.42,47.73,521.17,2388.11,8.4402,396,38.63,23.3546 +27,107,0.0013,-0.0001,643.06,1592.6,1415.59,21.61,553.25,2388.1,9079.41,47.61,520.91,2388.07,8.4471,393,38.98,23.2095 +27,108,-0.0048,-0.0,642.5,1586.58,1410.2,21.61,553.29,2388.1,9078.18,47.47,521.28,2388.1,8.4409,394,38.73,23.3405 +27,109,-0.0005,0.0002,643.03,1596.46,1402.48,21.61,552.89,2388.07,9079.2,47.65,520.72,2388.08,8.4645,395,38.56,23.238 +27,110,0.0007,-0.0005,643.17,1597.79,1416.82,21.61,553.23,2388.1,9082.82,47.58,521.39,2388.09,8.4654,394,38.74,23.2156 +27,111,-0.001,-0.0002,643.07,1587.76,1408.68,21.61,552.55,2388.1,9086.44,47.5,521.2,2388.06,8.4732,393,38.75,23.1462 +27,112,-0.0009,0.0001,642.55,1593.06,1419.78,21.61,552.7,2388.11,9086.26,47.82,520.87,2388.05,8.4971,394,38.72,23.2291 +27,113,-0.0009,0.0004,642.01,1590.1,1419.08,21.61,553.33,2388.12,9084.23,47.66,521.38,2388.11,8.4996,394,38.86,23.2555 +27,114,-0.0013,0.0,642.62,1589.31,1409.5,21.61,553.45,2388.16,9085.75,47.62,520.56,2388.12,8.4495,393,38.75,23.3215 +27,115,0.0016,-0.0004,643.15,1596.43,1406.79,21.61,553.37,2388.1,9080.95,47.74,521.61,2388.12,8.424,393,38.75,23.2533 +27,116,-0.0011,-0.0003,643.03,1595.3,1414.22,21.61,553.75,2388.12,9087.05,47.69,521.55,2388.09,8.4847,392,38.58,23.2533 +27,117,-0.0015,-0.0002,643.13,1594.45,1412.68,21.61,553.08,2388.09,9086.99,47.63,520.64,2388.11,8.4794,394,38.82,23.2818 +27,118,-0.0007,-0.0001,642.66,1596.54,1409.07,21.61,553.06,2388.06,9083.29,47.82,520.65,2388.11,8.4542,394,38.69,23.2242 +27,119,0.002,-0.0003,642.63,1601.47,1413.67,21.61,552.57,2388.04,9086.62,47.71,520.96,2388.11,8.4609,394,38.67,23.1955 +27,120,0.0003,0.0002,643.3,1596.71,1415.04,21.61,551.91,2388.08,9086.22,47.84,520.73,2388.05,8.4257,394,38.8,23.1596 +27,121,-0.0004,-0.0001,642.67,1596.07,1411.54,21.61,553.52,2388.07,9087.76,47.73,521.19,2388.11,8.4937,395,38.81,23.2751 +27,122,0.0012,-0.0001,642.78,1594.96,1411.04,21.61,552.51,2388.11,9082.24,47.62,520.9,2388.13,8.4538,394,38.64,23.2634 +27,123,0.0013,-0.0005,643.01,1593.26,1418.59,21.61,553.0,2388.11,9085.06,47.79,520.44,2388.13,8.5044,395,38.77,23.2581 +27,124,-0.0003,-0.0002,643.02,1594.17,1420.21,21.61,552.91,2388.14,9091.19,47.74,521.12,2388.08,8.4511,393,38.54,23.2164 +27,125,-0.0012,0.0004,643.3,1594.14,1414.68,21.61,553.37,2388.13,9088.49,47.48,521.4,2388.16,8.4702,393,38.65,23.1363 +27,126,-0.0008,-0.0003,643.13,1601.52,1418.16,21.61,552.71,2388.05,9092.73,47.86,520.72,2388.05,8.4775,393,38.69,23.2992 +27,127,-0.0008,0.0002,642.93,1589.48,1413.76,21.61,552.81,2388.08,9095.28,47.95,520.78,2388.1,8.4782,393,38.64,23.2686 +27,128,0.0,0.0003,642.99,1597.56,1418.09,21.61,552.65,2388.11,9100.82,47.73,520.65,2388.11,8.421,396,38.77,23.201 +27,129,-0.0009,-0.0003,642.82,1596.58,1414.87,21.61,552.18,2388.11,9091.64,47.72,520.84,2388.09,8.4733,395,38.78,23.2787 +27,130,-0.0012,0.0002,643.14,1588.93,1415.13,21.61,552.34,2388.13,9098.26,47.76,521.13,2388.16,8.4932,393,38.71,23.1785 +27,131,0.0015,0.0,642.63,1596.17,1419.49,21.61,552.19,2388.11,9095.96,47.82,521.24,2388.19,8.4656,396,38.56,23.2102 +27,132,0.0024,-0.0005,643.56,1596.9,1414.83,21.61,553.17,2388.11,9096.31,47.81,520.71,2388.12,8.4617,395,38.64,23.1495 +27,133,-0.003,-0.0003,643.82,1596.44,1413.51,21.61,553.15,2388.09,9102.37,47.74,520.61,2388.15,8.473,395,38.66,23.135 +27,134,-0.003,-0.0005,643.55,1594.9,1415.44,21.61,552.61,2388.17,9099.55,47.85,521.26,2388.09,8.4878,395,38.69,23.1422 +27,135,-0.0022,0.0001,642.84,1599.93,1421.02,21.61,553.28,2388.08,9100.56,47.57,520.67,2388.11,8.4401,395,38.72,23.1423 +27,136,-0.0051,-0.0005,643.43,1597.34,1420.99,21.61,552.33,2388.16,9103.92,47.82,520.63,2388.13,8.48,395,38.6,23.1191 +27,137,0.0008,-0.0005,643.42,1587.85,1421.48,21.61,552.31,2388.14,9109.46,47.96,520.37,2388.13,8.47,395,38.39,23.2479 +27,138,0.0018,0.0004,643.79,1600.39,1423.73,21.61,552.47,2388.12,9112.02,47.78,520.55,2388.14,8.5029,397,38.46,23.1376 +27,139,-0.0018,-0.0004,643.55,1604.41,1418.5,21.61,552.66,2388.12,9109.28,47.95,520.2,2388.14,8.4694,395,38.63,23.2009 +27,140,0.004,0.0004,643.03,1590.08,1418.17,21.61,552.13,2388.15,9106.13,47.82,520.3,2388.15,8.5094,394,38.5,23.1819 +27,141,0.0026,0.0,643.77,1595.21,1418.75,21.61,551.98,2388.2,9112.38,47.77,520.69,2388.15,8.4834,394,38.51,23.1364 +27,142,-0.0004,0.0001,643.22,1595.77,1416.04,21.61,552.63,2388.14,9117.4,48.09,521.08,2388.14,8.4769,394,38.6,23.0974 +27,143,-0.0001,-0.0001,643.27,1602.64,1421.92,21.61,552.5,2388.19,9118.63,47.88,520.53,2388.12,8.5029,394,38.5,23.0649 +27,144,-0.0017,-0.0003,643.38,1602.76,1422.56,21.61,551.99,2388.17,9121.87,48.09,520.05,2388.11,8.4962,395,38.67,23.137 +27,145,-0.0,0.0003,643.56,1599.55,1423.96,21.61,551.38,2388.12,9118.9,48.07,520.74,2388.14,8.5521,395,38.69,23.15 +27,146,-0.0013,0.0002,644.0,1605.27,1424.26,21.61,551.89,2388.15,9121.63,48.09,520.78,2388.19,8.4684,396,38.45,23.0716 +27,147,0.0017,0.0003,643.6,1599.15,1423.26,21.61,551.4,2388.16,9118.21,47.98,520.66,2388.15,8.4949,397,38.58,23.0639 +27,148,-0.0023,-0.0004,643.3,1604.17,1424.36,21.61,552.45,2388.17,9126.28,47.86,520.19,2388.22,8.4951,395,38.47,23.1164 +27,149,-0.0042,-0.0002,643.4,1598.75,1422.67,21.61,552.41,2388.14,9122.95,47.99,520.25,2388.14,8.5158,395,38.38,23.1406 +27,150,-0.0009,0.0001,643.75,1599.94,1419.47,21.61,551.51,2388.17,9133.75,47.99,519.94,2388.13,8.5362,398,38.42,23.1674 +27,151,-0.005,0.0003,643.48,1604.42,1423.42,21.61,551.31,2388.17,9129.98,48.11,520.3,2388.16,8.5312,397,38.48,23.1837 +27,152,-0.0004,0.0004,643.64,1600.46,1416.81,21.61,551.96,2388.16,9131.86,48.11,520.3,2388.24,8.5054,396,38.53,23.082 +27,153,0.0027,0.0001,643.57,1600.98,1429.2,21.61,551.83,2388.17,9129.9,47.9,520.29,2388.19,8.4995,395,38.3,23.0855 +27,154,0.0024,0.0002,643.8,1606.27,1431.34,21.61,551.47,2388.18,9140.82,48.15,519.87,2388.19,8.502,397,38.55,23.098 +27,155,-0.003,0.0001,643.5,1607.67,1422.32,21.61,551.62,2388.14,9143.95,48.07,520.09,2388.25,8.5216,398,38.56,23.1217 +27,156,0.0003,0.0004,643.76,1606.45,1429.06,21.61,551.51,2388.17,9141.14,48.26,519.43,2388.15,8.5259,397,38.65,23.0772 +28,10,-0.0004,0.0003,642.01,1580.24,1396.79,21.61,554.71,2387.98,9066.17,47.1,521.77,2388.03,8.3912,391,39.06,23.4235 +28,11,-0.0013,0.0004,642.31,1587.71,1396.13,21.61,554.6,2388.03,9061.34,47.02,522.39,2388.04,8.4056,391,39.04,23.3447 +28,12,-0.0001,0.0005,642.01,1588.4,1399.95,21.61,554.7,2387.98,9062.82,47.2,522.25,2387.96,8.3913,391,39.01,23.547 +28,13,0.0002,0.0005,641.58,1583.34,1397.28,21.61,554.82,2388.01,9066.09,47.08,522.08,2387.99,8.3841,392,38.97,23.4033 +28,14,0.0044,0.0002,641.9,1585.59,1401.43,21.61,554.8,2387.99,9051.05,47.21,522.34,2387.98,8.3898,391,39.03,23.3883 +28,15,-0.0004,0.0004,641.55,1583.1,1395.37,21.61,554.91,2388.05,9049.26,47.18,522.39,2387.99,8.3717,391,39.01,23.5113 +28,16,0.0034,-0.0001,641.86,1582.29,1394.28,21.61,555.09,2388.06,9062.03,47.28,522.27,2387.96,8.3851,392,38.95,23.3424 +28,17,-0.0005,-0.0001,641.88,1581.72,1398.89,21.61,555.02,2387.99,9065.75,47.09,522.48,2387.99,8.3755,392,39.1,23.4449 +28,18,0.0039,-0.0001,642.12,1589.7,1396.29,21.61,554.92,2387.98,9067.04,47.3,521.82,2388.04,8.446,392,39.13,23.4849 +28,19,-0.0012,0.0004,641.86,1580.18,1399.73,21.61,555.19,2387.96,9066.55,47.29,522.06,2387.98,8.3974,390,38.97,23.4707 +28,20,-0.0035,0.0001,642.38,1588.55,1398.68,21.61,554.98,2387.97,9070.68,47.21,522.33,2387.99,8.3633,390,39.02,23.526 +28,21,-0.0019,0.0002,641.8,1583.54,1396.72,21.61,554.41,2388.08,9070.94,47.29,522.61,2388.01,8.419,392,39.14,23.3621 +28,22,0.0023,0.0001,641.96,1585.14,1397.42,21.61,554.77,2387.94,9062.74,47.22,522.2,2388.04,8.3809,390,39.04,23.3614 +28,23,-0.0007,-0.0001,642.24,1592.12,1389.11,21.61,554.32,2387.99,9070.1,47.24,522.58,2387.92,8.3752,390,38.84,23.4896 +28,24,-0.0043,0.0001,641.96,1586.78,1397.66,21.61,554.32,2388.01,9059.83,47.18,522.94,2387.99,8.3832,391,39.02,23.4439 +28,25,0.0007,0.0004,641.99,1584.17,1393.05,21.61,553.95,2388.0,9052.73,47.24,522.35,2387.99,8.3855,391,39.12,23.4736 +28,26,0.0013,0.0004,642.27,1583.55,1399.65,21.6,554.59,2388.02,9056.03,47.07,522.16,2387.99,8.4107,391,39.01,23.4683 +28,27,-0.0014,0.0005,641.98,1578.48,1396.48,21.61,554.14,2388.04,9070.27,47.23,522.67,2388.0,8.4122,391,38.97,23.5858 +28,28,-0.0016,0.0005,641.31,1577.83,1400.03,21.61,555.26,2387.98,9063.64,47.13,522.4,2387.99,8.4115,393,39.12,23.5554 +28,29,0.0009,0.0002,641.91,1581.94,1396.35,21.61,554.65,2387.96,9057.08,47.36,522.43,2388.04,8.4109,390,38.9,23.4527 +28,30,0.002,0.0004,641.9,1591.83,1398.37,21.61,554.52,2387.97,9060.75,47.18,522.66,2388.0,8.4159,391,39.07,23.3106 +28,31,-0.0011,0.0003,642.59,1583.14,1396.67,21.61,553.91,2387.97,9060.02,47.15,522.21,2388.01,8.3923,393,39.06,23.4405 +28,32,-0.0052,0.0002,641.96,1577.38,1398.27,21.61,554.45,2387.98,9061.77,47.12,521.9,2387.97,8.364,392,39.11,23.4599 +28,33,-0.0022,0.0,642.1,1579.87,1399.7,21.61,554.87,2388.04,9063.8,47.27,522.53,2387.99,8.3637,390,38.97,23.3332 +28,34,-0.0021,0.0,642.59,1594.85,1398.24,21.61,554.5,2388.02,9069.76,47.14,522.25,2387.92,8.4059,390,38.84,23.3499 +28,35,-0.0021,0.0002,642.13,1590.98,1392.22,21.61,554.57,2387.97,9066.54,47.23,522.45,2387.93,8.4076,392,39.01,23.4664 +28,36,0.0022,0.0005,641.41,1574.52,1398.33,21.61,554.14,2387.99,9052.62,47.23,522.34,2388.03,8.4202,393,38.96,23.3854 +28,37,-0.003,-0.0002,641.84,1581.94,1392.17,21.61,555.38,2388.07,9068.16,47.13,522.07,2388.02,8.3763,391,39.13,23.4107 +28,38,0.0009,-0.0001,641.66,1583.68,1398.96,21.61,554.18,2388.06,9068.32,47.06,522.41,2387.96,8.409,391,39.14,23.5379 +28,39,0.0007,-0.0004,642.19,1592.26,1389.12,21.61,554.08,2387.98,9068.8,47.27,521.95,2387.98,8.4104,393,39.19,23.3943 +28,40,0.0002,-0.0002,642.01,1587.66,1406.12,21.61,554.67,2388.01,9064.71,47.11,522.0,2387.97,8.3907,392,39.2,23.3242 +28,41,-0.002,-0.0003,641.76,1575.6,1396.3,21.61,554.56,2387.99,9064.08,47.19,522.48,2387.99,8.3489,391,39.24,23.4913 +28,42,0.0023,-0.0004,642.31,1585.08,1395.52,21.61,554.44,2388.02,9061.42,47.11,522.63,2387.99,8.3567,392,39.13,23.3987 +28,43,0.0019,-0.0001,642.08,1586.32,1396.26,21.61,554.28,2387.98,9065.24,47.12,522.42,2387.97,8.3901,392,38.92,23.418 +28,44,-0.0028,-0.0004,642.23,1586.12,1400.95,21.61,554.69,2387.97,9068.56,47.08,522.27,2388.02,8.4043,392,39.13,23.4689 +28,45,-0.0008,-0.0003,641.87,1581.16,1394.98,21.61,555.23,2387.96,9066.97,47.26,522.4,2388.02,8.4185,389,39.06,23.353 +28,46,0.0,0.0003,642.24,1584.24,1405.74,21.61,554.46,2388.02,9074.28,47.12,522.15,2387.99,8.3911,390,39.03,23.4541 +28,47,0.0012,0.0005,642.29,1583.8,1394.33,21.61,553.54,2388.06,9068.95,47.17,522.68,2387.99,8.4057,391,39.19,23.504 +28,48,-0.002,-0.0002,642.03,1578.55,1390.2,21.61,554.3,2387.97,9062.59,47.1,522.41,2387.99,8.4239,391,39.05,23.4335 +28,49,-0.0048,0.0003,642.05,1584.38,1397.22,21.61,554.33,2388.01,9068.64,47.23,522.01,2387.98,8.3989,391,39.05,23.371 +28,50,0.0001,0.0003,641.93,1589.99,1389.19,21.61,553.93,2388.03,9053.29,47.2,522.15,2387.94,8.4083,390,39.02,23.4871 +28,51,0.0048,-0.0004,641.82,1583.92,1400.67,21.61,555.0,2388.01,9067.07,47.04,522.43,2387.98,8.3757,393,38.97,23.4205 +28,52,0.0047,-0.0004,642.55,1581.69,1395.74,21.61,554.45,2387.99,9068.46,47.38,522.11,2387.99,8.3764,391,38.95,23.4285 +28,53,0.0013,-0.0002,641.96,1583.64,1395.62,21.61,554.16,2388.01,9066.56,47.21,522.68,2387.99,8.3889,390,39.16,23.4004 +28,54,0.0014,-0.0001,642.64,1579.5,1398.73,21.61,553.92,2388.05,9060.99,47.38,522.49,2388.03,8.3787,391,38.97,23.4836 +28,55,0.0003,0.0001,642.11,1582.46,1401.79,21.61,554.23,2388.02,9067.45,47.33,522.16,2387.98,8.4182,391,38.96,23.4092 +28,56,0.0053,0.0002,641.57,1583.61,1392.84,21.61,554.84,2387.97,9062.72,47.23,522.21,2388.0,8.4071,391,39.02,23.3816 +28,57,0.0008,0.0001,642.0,1584.72,1396.69,21.61,553.53,2388.0,9067.19,47.28,522.09,2387.99,8.4263,392,38.9,23.3154 +28,58,-0.0055,-0.0004,642.06,1585.85,1393.35,21.6,553.94,2388.03,9058.45,47.25,521.9,2388.07,8.3993,392,39.08,23.4433 +28,59,0.0011,-0.0003,642.1,1582.48,1400.19,21.61,555.04,2387.96,9070.08,47.11,522.34,2388.02,8.4166,392,39.1,23.4337 +28,60,0.0022,0.0005,642.12,1583.95,1399.63,21.61,554.45,2388.03,9060.3,47.18,522.36,2388.03,8.3719,393,38.97,23.3426 +28,61,-0.0017,0.0005,642.55,1584.91,1394.03,21.61,554.19,2388.02,9066.89,47.21,522.48,2388.05,8.3928,392,38.93,23.31 +28,62,0.0017,-0.0003,642.22,1586.18,1396.17,21.61,554.82,2388.02,9063.33,47.34,522.36,2388.0,8.4121,392,39.15,23.4007 +28,63,0.0025,-0.0003,642.52,1583.53,1398.93,21.61,554.83,2388.04,9066.6,47.26,522.63,2387.99,8.386,393,39.22,23.3433 +28,64,-0.0015,0.0003,642.13,1586.43,1395.3,21.61,554.59,2387.99,9063.19,47.37,522.3,2388.01,8.3751,391,39.01,23.4845 +28,65,-0.001,-0.0002,642.18,1581.73,1396.08,21.61,553.86,2388.01,9065.88,47.18,522.6,2388.04,8.3687,393,38.84,23.4073 +28,66,-0.0006,-0.0003,641.88,1589.67,1398.05,21.61,554.57,2388.01,9061.76,47.28,522.02,2388.0,8.3617,392,38.93,23.3639 +28,67,0.0045,0.0,642.3,1582.51,1400.33,21.61,553.88,2388.02,9068.43,47.33,522.37,2388.05,8.4349,392,38.93,23.3905 +28,68,-0.0014,0.0001,642.04,1584.96,1394.02,21.61,554.55,2388.06,9065.24,47.15,522.54,2387.97,8.4225,393,39.01,23.5582 +28,69,-0.0012,0.0002,642.33,1580.4,1390.96,21.61,554.32,2388.02,9076.21,47.25,521.74,2388.01,8.4078,391,38.84,23.5081 +28,70,0.0005,0.0002,641.85,1588.49,1398.78,21.6,555.15,2388.01,9065.58,47.28,522.0,2388.0,8.3872,391,39.09,23.3669 +28,71,0.0015,-0.0004,641.88,1584.83,1398.94,21.61,554.52,2387.98,9070.96,47.13,522.03,2387.97,8.3846,392,39.04,23.4344 +28,72,0.0034,0.0003,641.94,1590.87,1399.22,21.61,553.52,2387.98,9058.05,47.19,522.7,2388.07,8.3823,392,39.19,23.4449 +28,73,0.0029,-0.0004,641.84,1583.63,1396.76,21.61,554.28,2388.01,9062.43,47.2,522.38,2388.03,8.416,393,38.9,23.3652 +28,74,0.004,-0.0004,642.26,1589.71,1392.72,21.61,553.94,2388.02,9064.55,47.19,522.12,2388.04,8.3927,392,38.98,23.3505 +28,75,0.0012,0.0004,642.2,1589.25,1397.92,21.61,554.47,2387.99,9061.14,47.21,522.2,2387.95,8.4315,392,39.0,23.3564 +28,76,0.0024,-0.0002,642.63,1581.34,1396.47,21.61,554.4,2388.05,9060.49,47.24,522.65,2388.1,8.4286,393,38.98,23.3559 +28,77,-0.0003,-0.0,642.11,1583.91,1401.63,21.6,554.41,2388.01,9068.2,47.32,522.36,2387.95,8.3962,392,39.02,23.4062 +28,78,-0.0003,0.0001,642.21,1582.49,1396.62,21.61,554.4,2387.99,9068.86,47.2,522.02,2387.98,8.4082,392,38.98,23.3934 +28,79,-0.0013,-0.0003,642.32,1581.55,1402.42,21.61,554.01,2388.05,9068.57,47.17,522.12,2388.02,8.4053,392,39.0,23.4542 +28,80,-0.0026,-0.0003,641.87,1582.14,1399.29,21.61,554.7,2388.0,9066.96,47.37,522.42,2388.02,8.4009,391,39.01,23.3739 +28,81,-0.0007,-0.0,641.88,1586.36,1401.79,21.61,554.37,2388.02,9057.4,47.16,522.34,2388.01,8.3736,392,38.87,23.4255 +28,82,-0.0026,0.0,642.51,1588.64,1403.68,21.61,553.65,2387.97,9060.37,47.11,522.0,2387.93,8.4566,391,38.91,23.3632 +28,83,-0.0024,0.0001,642.18,1593.18,1398.97,21.61,553.46,2388.04,9058.47,47.1,522.22,2388.06,8.4374,391,38.83,23.41 +28,84,-0.0019,-0.0003,642.23,1584.76,1397.48,21.61,554.0,2388.03,9075.51,47.08,521.99,2388.04,8.4306,392,38.94,23.375 +28,85,0.0018,-0.0005,642.87,1586.61,1393.44,21.61,553.76,2388.07,9063.46,47.14,521.98,2388.03,8.4041,392,38.78,23.3571 +28,86,0.0001,0.0,641.92,1595.05,1394.52,21.61,554.55,2388.07,9072.58,47.3,522.16,2388.1,8.4209,393,39.02,23.4089 +28,87,-0.0,0.0004,641.96,1592.49,1399.57,21.61,554.06,2388.02,9072.34,47.38,521.88,2388.02,8.4084,393,38.97,23.3528 +28,88,-0.0015,-0.0003,641.79,1588.65,1399.83,21.61,554.03,2388.06,9067.73,47.39,522.35,2388.01,8.4056,393,38.94,23.3676 +28,89,-0.002,-0.0,641.96,1583.78,1407.31,21.61,554.14,2388.04,9061.62,47.23,522.26,2388.04,8.4194,392,38.92,23.333 +28,90,0.0032,-0.0003,642.51,1588.33,1405.43,21.61,554.21,2388.0,9071.85,47.42,522.3,2388.05,8.4098,391,39.07,23.3898 +28,91,0.0022,0.0002,641.95,1586.5,1405.25,21.61,554.42,2388.06,9065.12,47.34,522.01,2388.02,8.4066,393,38.87,23.4287 +28,92,-0.0017,-0.0003,642.28,1585.44,1394.94,21.6,554.58,2388.01,9073.66,47.37,521.94,2388.04,8.4126,391,38.85,23.1935 +28,93,0.0002,-0.0001,642.72,1591.59,1399.35,21.6,554.28,2388.01,9069.35,47.33,521.98,2388.02,8.4185,393,38.81,23.4296 +28,94,0.0009,0.0002,642.38,1582.06,1394.89,21.6,553.94,2388.05,9064.48,47.36,522.04,2388.08,8.4143,392,38.88,23.2959 +28,95,-0.0002,0.0,642.55,1589.01,1407.07,21.61,553.73,2388.06,9056.85,47.35,522.12,2388.04,8.3995,393,38.86,23.2812 +28,96,-0.0015,-0.0004,642.31,1591.21,1401.74,21.61,553.8,2388.03,9064.81,47.29,521.86,2388.01,8.4495,394,38.87,23.4844 +28,97,-0.0004,0.0001,641.99,1581.89,1400.24,21.61,553.31,2388.0,9066.63,47.24,521.94,2388.01,8.4075,391,38.78,23.4177 +28,98,-0.0019,-0.0004,641.91,1592.21,1401.4,21.61,553.52,2388.01,9074.76,47.46,521.91,2388.1,8.4168,392,38.9,23.2685 +28,99,-0.0027,-0.0002,642.69,1583.56,1399.46,21.61,553.9,2388.09,9060.46,47.29,521.75,2388.06,8.4386,394,39.12,23.3521 +28,100,0.0014,-0.0,642.29,1591.93,1395.41,21.61,553.17,2388.06,9070.47,47.33,522.1,2388.03,8.4137,394,38.95,23.339 +28,101,0.0007,-0.0002,642.43,1588.34,1400.41,21.61,552.96,2388.06,9063.04,47.39,522.51,2388.02,8.4105,393,38.9,23.3334 +28,102,-0.001,-0.0002,642.36,1583.1,1406.13,21.61,554.05,2388.05,9070.65,47.43,522.42,2388.01,8.4574,393,38.8,23.3367 +28,103,0.0016,-0.0001,643.22,1589.06,1392.55,21.61,554.01,2388.11,9066.86,47.5,522.34,2388.0,8.4222,394,38.96,23.3641 +28,104,0.0049,-0.0002,642.88,1589.67,1405.47,21.61,554.24,2388.06,9066.64,47.46,522.35,2388.04,8.4376,394,38.86,23.3536 +28,105,0.0036,0.0002,642.21,1585.77,1405.28,21.61,553.54,2388.03,9067.68,47.5,521.68,2388.0,8.441,392,38.88,23.336 +28,106,0.0012,-0.0001,642.6,1589.88,1408.61,21.61,554.13,2388.03,9071.53,47.41,521.64,2388.06,8.423,392,38.94,23.3182 +28,107,0.0004,0.0002,642.82,1585.25,1406.34,21.61,553.33,2388.08,9070.99,47.46,521.72,2388.03,8.4141,393,38.9,23.2492 +28,108,0.0005,0.0005,642.31,1591.53,1408.36,21.6,553.98,2388.07,9068.1,47.44,521.89,2388.04,8.4284,392,38.87,23.3229 +28,109,-0.001,-0.0004,642.86,1588.87,1402.59,21.61,553.69,2388.07,9069.41,47.33,521.8,2388.03,8.4261,394,38.77,23.4303 +28,110,0.0013,0.0004,642.8,1590.35,1403.29,21.61,553.99,2388.1,9072.74,47.36,522.14,2388.04,8.4303,393,38.76,23.2298 +28,111,0.0038,-0.0,642.46,1587.64,1399.69,21.61,552.62,2388.04,9066.62,47.41,521.28,2388.05,8.4127,394,38.97,23.3283 +28,112,-0.0015,-0.0001,642.66,1595.05,1406.63,21.61,554.25,2388.07,9063.78,47.44,521.66,2388.08,8.4343,392,38.93,23.293 +28,113,-0.0007,-0.0003,642.1,1588.6,1410.62,21.61,554.19,2388.06,9073.58,47.6,521.7,2388.06,8.4655,393,38.86,23.3128 +28,114,-0.001,0.0001,642.63,1586.07,1399.68,21.61,553.09,2388.08,9066.1,47.37,521.9,2388.11,8.4267,393,38.73,23.3627 +28,115,0.0012,-0.0,642.63,1588.97,1411.41,21.61,552.67,2388.1,9068.71,47.45,521.84,2388.04,8.4293,393,38.83,23.25 +28,116,0.0053,0.0004,641.99,1588.81,1404.74,21.61,553.32,2388.07,9065.56,47.55,522.11,2388.11,8.4381,392,38.86,23.3796 +28,117,-0.0031,-0.0003,642.39,1596.89,1401.99,21.61,553.49,2388.07,9064.48,47.42,521.82,2388.07,8.4037,394,38.82,23.3743 +28,118,0.0017,-0.0001,642.59,1594.32,1405.54,21.61,553.15,2388.11,9071.78,47.4,521.74,2388.05,8.4527,393,38.88,23.3331 +28,119,0.0001,-0.0002,642.64,1594.68,1402.06,21.61,553.25,2388.11,9068.71,47.55,521.65,2388.05,8.4621,393,38.7,23.2723 +28,120,-0.0014,0.0002,642.55,1586.39,1407.76,21.61,553.7,2388.09,9070.29,47.34,521.72,2388.1,8.4557,392,38.92,23.3114 +28,121,-0.0001,0.0005,642.95,1585.59,1411.61,21.61,553.65,2388.12,9070.46,47.45,520.71,2388.13,8.4288,392,38.8,23.3848 +28,122,0.0003,0.0004,642.46,1593.16,1407.5,21.61,553.85,2388.16,9075.11,47.43,521.53,2388.09,8.3966,394,39.04,23.2633 +28,123,-0.0013,0.0003,642.88,1590.42,1401.19,21.61,554.11,2388.08,9066.91,47.48,521.54,2388.07,8.4518,393,38.71,23.3152 +28,124,0.0048,0.0,642.81,1587.52,1404.91,21.61,553.89,2388.08,9065.64,47.52,521.69,2388.08,8.4523,393,38.68,23.3989 +28,125,-0.0023,0.0005,642.69,1591.68,1411.37,21.61,553.43,2388.07,9064.05,47.58,521.68,2388.07,8.4468,393,38.77,23.272 +28,126,-0.0,-0.0004,642.9,1590.26,1408.76,21.61,553.71,2388.06,9079.21,47.38,521.52,2388.03,8.4685,393,38.65,23.3217 +28,127,0.0046,-0.0003,642.57,1590.9,1411.16,21.61,553.37,2388.06,9079.03,47.43,521.51,2388.06,8.4355,395,39.09,23.256 +28,128,-0.003,0.0003,642.68,1589.29,1408.73,21.61,552.75,2388.12,9071.04,47.49,521.81,2388.11,8.4731,393,38.69,23.2458 +28,129,-0.0013,0.0005,642.66,1593.27,1411.25,21.61,553.0,2388.08,9069.02,47.58,521.15,2388.13,8.4617,393,38.82,23.2907 +28,130,0.0008,0.0005,643.02,1588.34,1408.79,21.61,552.71,2388.12,9070.02,47.49,521.2,2388.11,8.4636,393,38.97,23.1778 +28,131,-0.0007,-0.0004,643.32,1596.01,1407.16,21.61,553.01,2388.13,9071.53,47.58,521.48,2388.05,8.4385,394,38.74,23.2287 +28,132,-0.0028,0.0003,642.9,1588.76,1412.05,21.61,553.39,2388.05,9082.27,47.77,521.15,2388.09,8.4299,393,38.84,23.2317 +28,133,0.0008,0.0003,642.7,1597.02,1413.32,21.61,554.08,2388.13,9080.29,47.6,521.13,2388.08,8.4466,394,38.7,23.1365 +28,134,-0.0011,-0.0003,642.67,1588.91,1413.19,21.61,553.36,2388.1,9073.19,47.54,520.8,2388.1,8.4653,396,38.59,23.2933 +28,135,-0.0003,0.0003,642.98,1598.46,1415.99,21.61,553.3,2388.14,9070.6,47.57,521.21,2388.14,8.4131,395,38.71,23.2552 +28,136,0.0023,0.0005,643.3,1590.51,1417.54,21.61,553.19,2388.12,9070.18,47.74,521.06,2388.11,8.4334,393,38.79,23.2216 +28,137,0.0016,-0.0004,642.03,1592.11,1415.45,21.61,552.4,2388.15,9081.98,47.71,521.62,2388.13,8.4784,393,38.71,23.2841 +28,138,-0.0036,0.0004,643.28,1594.24,1417.41,21.61,552.28,2388.12,9070.93,47.81,520.65,2388.18,8.4703,394,38.8,23.1434 +28,139,0.0028,-0.0001,643.5,1591.72,1414.2,21.61,553.18,2388.13,9077.91,47.71,521.42,2388.1,8.493,395,38.62,23.2133 +28,140,0.0019,0.0,642.84,1592.1,1418.51,21.61,553.22,2388.1,9081.4,47.63,520.67,2388.14,8.4526,394,38.68,23.2411 +28,141,0.0013,-0.0002,643.12,1590.49,1414.89,21.61,553.02,2388.14,9078.09,47.77,521.5,2388.11,8.4868,394,38.58,23.2571 +28,142,0.0,0.0003,643.88,1600.09,1417.57,21.61,552.98,2388.12,9082.53,47.81,520.73,2388.17,8.5027,394,38.65,23.238 +28,143,0.0002,-0.0004,643.12,1591.03,1416.38,21.61,552.69,2388.13,9072.17,47.59,520.67,2388.18,8.4654,395,38.7,23.2628 +28,144,-0.001,0.0,642.7,1587.86,1416.58,21.61,552.75,2388.1,9077.92,47.7,520.81,2388.1,8.4862,394,38.83,23.2113 +28,145,-0.0005,0.0,643.19,1592.22,1415.47,21.61,553.43,2388.15,9081.83,47.9,520.46,2388.13,8.4972,396,38.7,23.2044 +28,146,-0.002,0.0005,642.81,1591.98,1421.31,21.61,552.91,2388.18,9082.54,47.97,520.36,2388.13,8.4752,395,38.75,23.209 +28,147,0.0023,-0.0004,643.3,1593.76,1417.7,21.61,552.68,2388.15,9083.73,47.68,520.61,2388.16,8.4826,394,38.62,23.0827 +28,148,-0.0005,-0.0003,643.41,1594.69,1414.66,21.61,552.14,2388.16,9077.92,48.0,521.0,2388.17,8.5174,396,38.41,23.1716 +28,149,-0.0039,-0.0004,643.34,1598.63,1413.08,21.61,552.6,2388.2,9081.74,47.49,520.57,2388.17,8.4742,395,38.64,23.2073 +28,150,-0.0023,-0.0002,643.49,1601.63,1416.81,21.61,552.48,2388.2,9069.75,47.91,520.29,2388.2,8.4797,395,38.6,23.2244 +28,151,0.0001,0.0001,643.38,1597.84,1427.3,21.61,552.37,2388.18,9081.63,48.04,521.23,2388.16,8.4848,394,38.55,23.1402 +28,152,0.0035,0.0002,643.6,1592.42,1422.7,21.61,552.32,2388.19,9080.04,47.96,520.54,2388.14,8.5076,395,38.76,23.1725 +28,153,0.0,0.0,643.05,1595.44,1421.17,21.61,551.62,2388.17,9086.36,47.89,520.28,2388.14,8.5064,396,38.65,23.22 +28,154,-0.0042,0.0003,643.79,1591.72,1416.78,21.61,552.53,2388.17,9077.1,47.93,520.46,2388.13,8.4689,395,38.6,23.1744 +28,155,0.0016,-0.0001,642.86,1588.91,1421.73,21.61,552.41,2388.17,9080.65,48.11,520.86,2388.18,8.4889,394,38.57,23.1103 +28,156,-0.0003,-0.0,643.25,1595.61,1421.04,21.61,552.25,2388.14,9085.06,47.96,520.36,2388.18,8.5036,394,38.59,23.0898 +28,157,0.0016,-0.0002,643.59,1595.93,1422.9,21.61,552.07,2388.16,9089.54,48.11,520.08,2388.19,8.4855,395,38.55,22.9847 +28,158,0.0006,0.0004,642.95,1605.08,1423.15,21.61,551.72,2388.23,9077.78,48.03,520.11,2388.16,8.4629,394,38.61,23.1739 +28,159,0.0043,0.0001,643.4,1595.53,1420.72,21.61,551.06,2388.2,9082.95,48.0,519.91,2388.19,8.5378,395,38.31,23.0893 +28,160,0.0004,-0.0002,643.32,1601.84,1418.55,21.61,551.39,2388.15,9085.03,48.1,519.89,2388.16,8.5162,397,38.61,23.0811 +28,161,-0.0023,-0.0001,643.6,1594.0,1426.37,21.61,551.52,2388.18,9089.03,48.15,519.94,2388.22,8.5019,396,38.43,23.2617 +28,162,0.0003,-0.0,643.83,1604.96,1430.24,21.61,551.63,2388.27,9081.64,48.14,519.94,2388.25,8.5141,396,38.26,23.2241 +28,163,0.0046,0.0002,643.73,1601.34,1421.09,21.61,551.12,2388.17,9085.22,48.28,519.96,2388.18,8.5312,396,38.59,23.0807 +28,164,-0.0038,-0.0002,643.71,1594.05,1431.96,21.61,551.92,2388.28,9088.77,48.13,520.27,2388.24,8.5308,396,38.59,22.9402 +28,165,-0.0036,-0.0004,644.01,1600.61,1431.57,21.61,551.78,2388.19,9087.32,48.04,519.31,2388.2,8.5311,396,38.37,23.1508 +30,10,0.0045,0.0002,641.92,1583.96,1401.38,21.6,553.94,2387.97,9059.24,47.36,522.7,2387.96,8.3983,391,38.98,23.4457 +30,11,-0.004,0.0001,642.64,1578.62,1392.01,21.61,554.73,2387.98,9058.75,47.19,522.81,2387.97,8.3876,392,39.17,23.5464 +30,12,-0.0034,-0.0003,642.29,1593.34,1396.9,21.6,555.49,2387.99,9060.37,47.16,522.02,2387.97,8.4074,391,39.06,23.3477 +30,13,-0.0027,0.0,641.46,1584.87,1402.07,21.61,554.73,2387.99,9054.42,47.15,522.12,2388.0,8.406,393,39.02,23.5109 +30,14,0.0023,-0.0002,641.72,1583.39,1401.14,21.6,554.51,2387.98,9058.62,47.18,522.71,2387.94,8.3855,392,39.22,23.3945 +30,15,-0.0019,-0.0002,642.49,1579.51,1400.21,21.61,554.84,2387.99,9061.45,47.17,522.48,2387.99,8.3746,392,39.16,23.4308 +30,16,-0.0004,0.0002,642.28,1590.12,1394.29,21.61,554.55,2388.0,9059.2,47.2,522.52,2388.0,8.3488,391,39.04,23.3701 +30,17,0.0022,-0.0,642.26,1586.5,1401.91,21.61,554.89,2388.0,9068.84,46.86,522.49,2387.98,8.405,392,39.08,23.3792 +30,18,-0.0017,0.0003,642.09,1576.63,1398.25,21.61,554.86,2388.01,9064.79,47.04,522.52,2387.99,8.4257,392,39.04,23.4545 +30,19,-0.0006,-0.0004,641.6,1588.2,1393.93,21.6,554.5,2387.94,9058.17,47.05,522.73,2387.99,8.4192,392,39.07,23.4319 +30,20,0.0012,-0.0004,641.87,1585.62,1395.66,21.61,554.89,2387.99,9069.05,47.08,522.08,2388.0,8.4227,392,39.11,23.4404 +30,21,-0.0002,0.0005,641.86,1577.56,1393.02,21.61,555.39,2388.0,9070.45,47.28,522.62,2388.01,8.3859,391,39.06,23.3625 +30,22,-0.0018,-0.0003,641.63,1579.66,1391.13,21.61,554.39,2388.01,9060.76,47.26,521.99,2388.01,8.3485,391,39.09,23.3191 +30,23,0.0028,0.0001,641.56,1583.55,1399.5,21.61,555.67,2388.03,9058.66,47.23,522.57,2387.94,8.4295,391,38.96,23.4042 +30,24,-0.0034,-0.0003,641.84,1583.23,1389.91,21.61,554.46,2387.95,9065.74,47.18,522.7,2387.99,8.4082,390,39.06,23.4602 +30,25,0.0005,0.0003,641.97,1590.33,1399.6,21.6,554.4,2388.03,9064.1,47.14,522.55,2388.0,8.3728,391,38.97,23.4629 +30,26,-0.0005,-0.0,642.51,1580.48,1394.28,21.61,554.97,2388.0,9064.17,47.2,522.55,2388.02,8.4109,391,38.89,23.4197 +30,27,0.0007,-0.0003,641.54,1583.17,1398.41,21.61,554.95,2387.97,9059.15,47.12,522.61,2388.0,8.3828,390,39.02,23.5524 +30,28,-0.0039,-0.0003,641.92,1580.23,1394.82,21.61,554.38,2388.05,9062.43,47.06,522.5,2387.97,8.4101,392,38.99,23.4704 +30,29,-0.0025,0.0,642.57,1579.13,1397.24,21.61,555.33,2388.04,9068.52,47.26,522.7,2388.03,8.4018,391,38.99,23.432 +30,30,-0.0019,-0.0,641.85,1581.0,1396.49,21.61,554.64,2387.97,9062.26,47.22,522.06,2387.98,8.3842,392,39.22,23.3783 +30,31,0.0014,0.0005,641.93,1579.16,1402.5,21.61,554.76,2387.98,9061.26,47.28,522.53,2387.98,8.3806,392,39.0,23.3137 +30,32,-0.0012,-0.0004,642.16,1579.16,1401.48,21.61,554.96,2388.01,9061.24,47.25,522.25,2387.97,8.3841,390,39.14,23.4645 +30,33,0.0025,0.0001,642.33,1581.25,1401.28,21.61,555.33,2388.03,9054.02,47.18,522.55,2388.0,8.3958,392,38.94,23.4554 +30,34,-0.0,-0.0002,642.06,1583.92,1402.45,21.61,554.57,2387.98,9062.56,47.52,522.71,2388.03,8.4162,390,39.04,23.3417 +30,35,0.0002,-0.0,642.34,1585.19,1399.12,21.61,554.28,2387.93,9065.3,47.16,522.3,2387.99,8.4114,391,39.14,23.4793 +30,36,-0.0,-0.0004,642.18,1588.19,1406.83,21.61,555.12,2387.96,9060.92,47.19,522.32,2388.03,8.4161,390,39.09,23.4132 +30,37,0.0021,-0.0002,642.22,1583.19,1392.92,21.61,555.34,2387.99,9055.9,47.31,522.26,2387.99,8.4177,392,39.11,23.4552 +30,38,-0.0023,0.0004,642.08,1592.07,1397.03,21.61,554.62,2387.99,9065.48,47.38,522.79,2388.06,8.3914,392,39.15,23.372 +30,39,0.001,-0.0001,641.79,1573.85,1400.68,21.6,554.62,2387.99,9064.49,47.29,522.44,2388.01,8.3869,391,39.07,23.3204 +30,40,0.0007,0.0001,642.49,1576.62,1396.56,21.61,554.83,2387.98,9062.74,47.24,521.93,2387.98,8.4149,393,38.83,23.3954 +30,41,-0.0008,0.0,642.33,1582.23,1397.44,21.61,554.65,2388.0,9067.51,47.19,523.02,2387.96,8.3951,391,39.2,23.4505 +30,42,-0.0014,-0.0003,642.01,1584.09,1395.07,21.61,552.93,2388.01,9055.15,47.17,521.51,2388.03,8.3938,391,39.09,23.5771 +30,43,-0.0013,-0.0002,642.54,1585.86,1389.53,21.61,554.59,2388.02,9065.92,47.15,522.57,2387.98,8.3938,391,39.01,23.417 +30,44,-0.0011,0.0003,642.25,1582.48,1392.7,21.61,554.48,2388.01,9059.63,47.27,522.86,2387.96,8.4046,392,38.97,23.4317 +30,45,-0.0009,0.0004,642.63,1582.57,1395.17,21.61,554.48,2388.01,9059.29,47.11,522.36,2388.05,8.4136,392,39.01,23.4841 +30,46,-0.0013,-0.0005,641.6,1579.91,1398.65,21.61,554.46,2387.99,9059.22,47.06,522.47,2388.01,8.3736,392,39.0,23.4249 +30,47,-0.0008,-0.0002,641.65,1584.22,1394.82,21.61,555.19,2387.96,9056.07,47.14,521.8,2387.99,8.3717,391,39.07,23.3628 +30,48,-0.0013,-0.0,642.12,1584.85,1394.7,21.61,554.65,2388.03,9062.44,47.27,522.34,2387.99,8.3805,391,38.98,23.3428 +30,49,-0.0009,0.0,641.77,1583.5,1403.79,21.61,554.56,2387.98,9058.74,47.34,522.25,2387.91,8.3856,392,39.27,23.3326 +30,50,-0.0003,-0.0001,642.69,1591.98,1386.69,21.61,554.96,2388.04,9057.53,47.31,522.38,2388.02,8.3958,392,39.09,23.3434 +30,51,-0.003,-0.0003,641.66,1581.86,1395.76,21.61,554.16,2387.98,9066.93,47.2,522.55,2387.97,8.3966,391,39.05,23.4946 +30,52,-0.0004,0.0005,642.1,1582.77,1395.75,21.61,554.66,2388.01,9063.48,47.12,522.32,2388.0,8.4098,392,39.15,23.485 +30,53,-0.0006,0.0005,642.66,1586.75,1397.13,21.61,555.45,2387.93,9058.41,47.24,522.54,2387.98,8.3718,391,39.04,23.556 +30,54,-0.0005,0.0,642.14,1585.66,1407.99,21.61,554.75,2388.0,9064.1,47.36,522.55,2388.02,8.3862,391,39.07,23.4289 +30,55,0.0016,-0.0004,642.42,1577.95,1392.36,21.6,554.45,2387.98,9067.7,47.21,523.08,2387.97,8.3837,390,39.05,23.4493 +30,56,-0.0006,-0.0002,642.07,1590.96,1400.13,21.61,554.68,2388.0,9060.06,47.23,522.16,2387.99,8.365,391,38.98,23.3885 +30,57,-0.0016,0.0003,642.17,1585.65,1393.73,21.61,554.23,2388.02,9062.9,47.17,522.35,2387.99,8.4254,392,39.12,23.5117 +30,58,0.0011,-0.0003,642.12,1585.61,1397.02,21.61,554.24,2388.0,9060.13,46.86,522.59,2388.0,8.4077,392,39.01,23.2698 +30,59,-0.0023,0.0003,642.3,1585.01,1400.35,21.6,554.54,2388.02,9062.67,47.24,522.13,2388.0,8.4204,394,39.08,23.4127 +30,60,-0.0005,-0.0003,642.0,1588.2,1390.33,21.61,554.58,2388.0,9064.68,47.08,522.62,2388.04,8.3959,391,38.9,23.4121 +30,61,-0.0003,-0.0005,642.27,1586.78,1392.98,21.61,554.49,2388.01,9062.23,47.22,522.1,2387.98,8.3791,392,39.14,23.4028 +30,62,-0.0001,-0.0003,642.22,1587.12,1400.98,21.6,554.32,2388.01,9064.36,47.14,522.6,2388.02,8.3555,393,39.15,23.4328 +30,63,-0.0036,-0.0003,642.47,1580.44,1395.34,21.61,554.11,2388.01,9066.83,47.14,522.0,2388.03,8.4064,390,38.81,23.4557 +30,64,0.0022,0.0003,641.94,1581.31,1393.91,21.61,554.58,2388.0,9057.31,47.27,522.5,2387.99,8.39,391,39.1,23.4577 +30,65,0.0021,-0.0004,642.39,1584.99,1395.51,21.61,554.14,2388.02,9065.93,47.27,522.47,2388.04,8.412,392,38.9,23.4004 +30,66,0.0018,-0.0001,642.01,1593.44,1399.14,21.61,555.04,2388.05,9065.03,47.19,522.8,2388.02,8.393,393,38.75,23.3491 +30,67,0.0026,-0.0003,641.82,1585.83,1395.31,21.61,555.07,2388.11,9059.19,47.38,522.87,2387.97,8.3813,393,38.98,23.409 +30,68,-0.0004,0.0,642.37,1583.89,1394.37,21.61,554.52,2387.97,9068.05,47.35,522.0,2388.02,8.3729,391,39.2,23.5163 +30,69,-0.0023,0.0001,642.62,1580.37,1404.47,21.61,554.44,2388.0,9067.91,47.07,522.73,2388.04,8.4075,390,39.05,23.3784 +30,70,-0.0008,0.0002,642.15,1584.58,1397.05,21.61,554.68,2387.97,9068.03,47.39,522.85,2388.04,8.4073,392,38.8,23.3425 +30,71,-0.0005,-0.0005,641.58,1580.78,1398.2,21.61,554.18,2388.07,9054.7,47.28,522.08,2388.02,8.3464,391,38.93,23.4917 +30,72,0.0005,0.0001,642.41,1583.87,1401.78,21.61,554.41,2388.01,9072.22,47.29,522.64,2388.0,8.415,392,39.13,23.3726 +30,73,0.0021,-0.0002,642.17,1584.59,1401.3,21.61,554.4,2387.99,9052.57,47.32,522.85,2387.97,8.3778,393,39.01,23.4059 +30,74,-0.0004,-0.0001,642.31,1581.72,1408.31,21.61,554.44,2388.03,9059.39,46.95,522.83,2388.0,8.4066,392,39.0,23.3415 +30,75,0.0031,0.0003,642.61,1580.23,1398.62,21.61,554.34,2388.02,9059.31,47.14,521.55,2387.98,8.3975,392,39.04,23.4104 +30,76,-0.0002,-0.0001,642.22,1584.14,1404.48,21.61,554.37,2388.0,9056.64,47.25,521.93,2388.04,8.3485,390,39.08,23.4195 +30,77,0.0009,0.0001,642.45,1585.72,1398.18,21.61,554.52,2388.01,9062.14,47.11,522.45,2388.0,8.4275,392,38.87,23.4208 +30,78,0.0018,-0.0005,641.71,1582.59,1398.05,21.6,554.3,2388.04,9069.2,47.17,521.9,2388.0,8.4039,391,39.02,23.2979 +30,79,-0.0011,-0.0001,641.99,1590.07,1402.3,21.61,554.37,2387.98,9064.1,47.27,521.86,2388.01,8.3936,392,38.91,23.3932 +30,80,-0.0006,0.0001,641.95,1579.25,1397.53,21.61,554.49,2388.0,9062.21,47.29,522.24,2387.99,8.4198,393,39.16,23.3492 +30,81,-0.0003,0.0005,642.18,1587.63,1397.48,21.61,554.67,2388.11,9058.6,47.15,521.84,2388.0,8.4238,393,38.91,23.3211 +30,82,-0.0019,0.0,642.2,1584.63,1395.38,21.6,553.88,2387.99,9064.81,47.13,522.11,2388.03,8.4148,391,38.88,23.3756 +30,83,0.0012,0.0004,642.11,1582.55,1394.98,21.61,554.14,2388.01,9058.02,47.36,522.38,2387.98,8.4185,391,39.04,23.2968 +30,84,0.0004,0.0003,641.79,1584.57,1401.34,21.61,554.59,2387.99,9061.88,47.17,521.81,2388.02,8.4112,392,39.08,23.3616 +30,85,-0.0007,-0.0002,642.43,1582.33,1397.52,21.61,554.4,2388.01,9058.01,47.25,522.01,2387.98,8.4274,391,38.98,23.4296 +30,86,-0.0047,-0.0005,642.44,1585.37,1398.23,21.61,554.86,2388.06,9064.07,47.4,522.42,2387.97,8.3646,391,39.03,23.3863 +30,87,-0.0035,-0.0004,642.02,1589.85,1387.36,21.61,554.1,2388.04,9065.85,47.15,522.44,2387.99,8.3858,392,38.9,23.4056 +30,88,-0.0052,0.0002,642.23,1577.76,1394.11,21.61,555.04,2388.0,9056.32,47.23,522.62,2387.95,8.3793,393,39.15,23.3897 +30,89,0.0009,0.0001,642.03,1577.75,1399.62,21.61,553.83,2387.96,9064.48,47.36,522.34,2388.01,8.424,391,38.91,23.4586 +30,90,0.0008,-0.0001,642.35,1592.11,1400.35,21.61,553.87,2388.04,9064.95,47.22,522.68,2388.03,8.4266,391,39.01,23.4515 +30,91,0.0058,-0.0,642.27,1587.08,1400.44,21.61,554.31,2388.05,9062.69,47.25,522.45,2388.01,8.3918,392,39.04,23.3655 +30,92,0.0001,-0.0002,642.41,1585.92,1408.06,21.61,554.52,2387.97,9063.86,47.2,521.84,2388.0,8.4067,392,38.78,23.5047 +30,93,0.0032,0.0002,641.7,1580.59,1395.09,21.61,553.91,2387.96,9063.62,47.34,522.52,2388.05,8.3981,393,38.98,23.4019 +30,94,0.0033,-0.0004,642.44,1581.85,1399.89,21.61,554.24,2388.03,9064.01,47.24,522.17,2388.04,8.4213,393,39.05,23.4338 +30,95,0.0003,-0.0004,642.08,1577.72,1390.22,21.61,553.68,2388.06,9058.08,47.34,521.97,2387.99,8.3651,391,38.89,23.4305 +30,96,-0.0007,-0.0004,642.08,1587.5,1402.12,21.61,554.3,2388.01,9057.33,47.34,522.21,2388.03,8.4031,391,38.96,23.4079 +30,97,0.0002,0.0001,642.37,1584.39,1398.59,21.61,554.09,2388.04,9062.08,47.26,521.74,2387.99,8.4203,393,38.89,23.4042 +30,98,0.0042,-0.0004,642.65,1591.22,1402.72,21.61,554.31,2388.02,9053.13,47.28,522.02,2388.02,8.4223,392,38.95,23.4166 +30,99,0.0002,0.0003,642.42,1592.99,1396.54,21.61,554.06,2388.08,9064.04,47.27,521.9,2387.99,8.4359,393,39.08,23.2926 +30,100,0.0,-0.0002,642.39,1586.3,1400.74,21.61,553.53,2388.0,9057.1,47.4,521.81,2388.02,8.3997,391,38.97,23.4027 +30,101,0.0033,0.0001,641.81,1583.0,1404.81,21.61,553.79,2388.03,9063.28,47.3,522.31,2387.98,8.3892,392,38.98,23.3485 +30,102,-0.002,-0.0,642.57,1588.31,1401.86,21.61,554.29,2388.01,9058.77,47.18,522.58,2388.04,8.3833,391,39.16,23.3412 +30,103,-0.0044,0.0,642.03,1581.91,1397.28,21.61,554.28,2388.05,9058.25,47.31,522.32,2388.09,8.4062,392,38.86,23.2906 +30,104,0.001,0.0001,642.43,1583.52,1402.0,21.61,554.09,2388.07,9062.12,47.17,522.02,2387.99,8.3795,392,38.91,23.2822 +30,105,0.0011,-0.0002,642.01,1585.26,1405.92,21.61,554.02,2388.01,9067.59,47.39,522.39,2388.0,8.3834,392,38.93,23.3958 +30,106,-0.0001,0.0,642.44,1588.9,1402.93,21.61,554.18,2388.01,9061.9,47.48,521.66,2388.06,8.394,393,38.88,23.2506 +30,107,-0.0004,0.0004,641.9,1591.75,1402.29,21.61,553.91,2388.05,9057.84,47.23,521.86,2388.06,8.3791,393,38.89,23.3928 +30,108,0.0042,-0.0004,642.26,1588.58,1399.83,21.61,554.08,2388.07,9062.61,47.24,522.12,2388.0,8.4102,393,39.06,23.3976 +30,109,0.0005,0.0004,642.18,1588.58,1402.83,21.61,553.47,2388.05,9060.12,47.27,521.71,2388.1,8.4138,393,39.0,23.2846 +30,110,0.0014,-0.0003,642.28,1586.12,1401.54,21.61,554.52,2388.03,9059.82,47.57,521.56,2388.03,8.4099,392,38.9,23.2249 +30,111,0.003,0.0005,641.98,1584.82,1406.2,21.61,553.69,2388.08,9057.28,47.34,521.76,2388.03,8.4232,393,38.93,23.4376 +30,112,0.0016,-0.0001,642.33,1584.19,1396.72,21.61,554.13,2388.08,9059.06,47.24,521.63,2388.0,8.3935,393,38.83,23.3444 +30,113,-0.0006,-0.0004,642.87,1585.17,1394.55,21.61,554.11,2388.04,9054.07,47.33,521.82,2388.02,8.4097,391,38.88,23.4792 +30,114,-0.0001,-0.0,642.53,1582.19,1403.23,21.61,554.32,2388.05,9063.13,47.25,522.47,2388.02,8.3964,394,38.95,23.3742 +30,115,-0.0013,0.0002,641.81,1589.56,1402.69,21.61,554.32,2388.1,9059.82,47.2,521.96,2388.05,8.451,393,38.91,23.443 +30,116,-0.0018,-0.0003,641.77,1585.28,1405.81,21.61,553.52,2388.09,9065.04,47.21,521.98,2388.05,8.4002,394,38.82,23.3915 +30,117,0.0004,-0.0001,642.64,1580.11,1401.32,21.61,553.79,2388.02,9065.67,47.35,521.38,2388.04,8.3948,391,38.91,23.3781 +30,118,0.0019,0.0005,642.16,1581.71,1397.66,21.61,553.92,2388.0,9065.09,47.13,522.03,2388.02,8.4231,391,39.02,23.3816 +30,119,-0.0012,-0.0003,642.35,1585.69,1399.37,21.61,554.23,2388.04,9061.09,47.15,522.1,2388.04,8.4148,391,39.04,23.3975 +30,120,-0.0017,0.0001,642.73,1584.64,1401.4,21.61,554.2,2388.06,9053.64,47.4,522.44,2388.05,8.4349,392,38.91,23.2933 +30,121,0.0018,0.0003,642.48,1582.56,1393.52,21.61,554.41,2388.04,9051.13,47.35,522.22,2388.03,8.4001,392,38.92,23.386 +30,122,-0.0033,0.0003,642.99,1588.91,1406.33,21.61,554.03,2388.08,9062.45,47.34,522.06,2388.04,8.4607,392,38.87,23.3282 +30,123,-0.0001,0.0003,642.04,1586.54,1404.95,21.61,553.72,2388.03,9069.17,47.37,521.62,2388.01,8.4163,392,38.83,23.3618 +30,124,0.0003,-0.0,642.48,1585.57,1403.67,21.61,554.58,2388.07,9052.53,47.16,521.93,2388.11,8.4545,391,38.73,23.4269 +30,125,-0.0012,-0.0003,642.53,1585.08,1409.54,21.61,554.38,2388.05,9065.83,47.29,521.61,2387.96,8.4223,391,39.02,23.3843 +30,126,0.0001,-0.0004,642.45,1593.46,1399.84,21.61,553.71,2388.0,9062.29,47.43,522.72,2388.09,8.4343,392,38.93,23.3004 +30,127,0.0019,-0.0001,642.24,1591.6,1402.34,21.61,553.93,2388.08,9059.01,47.43,521.96,2388.09,8.4193,392,38.78,23.3592 +30,128,0.0012,0.0001,642.27,1594.41,1406.55,21.61,554.45,2388.03,9058.34,47.42,521.33,2388.07,8.4193,393,39.03,23.4067 +30,129,-0.0012,0.0001,642.19,1584.39,1414.22,21.61,553.92,2388.07,9062.12,47.41,522.03,2388.1,8.3986,393,39.0,23.3117 +30,130,-0.0036,-0.0002,642.65,1594.28,1397.82,21.61,553.99,2388.1,9054.61,47.36,521.92,2388.03,8.4135,393,38.98,23.2622 +30,131,0.0019,0.0001,642.69,1584.96,1406.77,21.61,553.37,2388.05,9059.81,47.38,521.91,2388.07,8.4248,393,38.78,23.3401 +30,132,0.0016,-0.0001,641.95,1584.66,1403.19,21.61,553.52,2388.11,9058.52,47.39,522.05,2388.11,8.4011,392,39.08,23.3263 +30,133,-0.0024,-0.0004,642.52,1593.26,1404.17,21.61,553.96,2388.07,9059.55,47.36,521.54,2388.04,8.412,393,39.0,23.2852 +30,134,-0.0015,0.0004,642.2,1591.22,1407.07,21.61,553.9,2388.06,9064.56,47.24,521.52,2388.08,8.4122,392,38.87,23.2746 +30,135,-0.0003,0.0,642.21,1577.89,1403.44,21.61,553.69,2388.02,9062.27,47.46,521.98,2388.05,8.4386,393,38.76,23.2909 +30,136,-0.0042,0.0002,642.72,1589.32,1405.63,21.61,553.27,2388.15,9054.96,47.38,521.81,2388.11,8.3976,392,38.98,23.3789 +30,137,-0.0033,0.0003,642.76,1592.26,1405.53,21.61,552.86,2388.08,9054.68,47.35,521.81,2388.02,8.4428,393,38.96,23.4407 +30,138,0.0022,-0.0004,642.74,1586.59,1411.94,21.61,553.01,2388.1,9062.87,47.58,521.51,2388.02,8.4443,393,38.76,23.3684 +30,139,0.0011,-0.0004,642.29,1590.39,1408.71,21.61,553.44,2388.05,9060.32,47.6,521.57,2388.09,8.4358,394,38.79,23.2696 +30,140,0.0015,-0.0003,642.09,1590.22,1401.57,21.61,553.34,2388.06,9058.2,47.39,521.49,2388.06,8.4153,392,38.87,23.361 +30,141,-0.0011,0.0,642.54,1586.22,1402.83,21.61,554.02,2388.11,9062.92,47.48,521.42,2388.12,8.4558,392,38.88,23.3348 +30,142,-0.0007,0.0002,642.61,1583.32,1409.76,21.61,553.47,2388.16,9060.62,47.52,521.68,2388.11,8.4723,394,38.81,23.3449 +30,143,0.0005,0.0001,642.51,1590.92,1410.08,21.61,553.43,2388.04,9056.86,47.5,521.42,2388.08,8.3969,393,38.97,23.3814 +30,144,0.0045,-0.0002,642.45,1592.41,1405.23,21.61,553.39,2388.1,9065.14,47.53,521.6,2388.1,8.4475,394,38.7,23.384 +30,145,-0.0028,-0.0002,642.42,1593.25,1409.11,21.61,553.32,2388.08,9062.42,47.41,521.23,2388.13,8.4658,393,38.87,23.2412 +30,146,-0.0024,-0.0002,642.44,1592.71,1405.58,21.61,553.71,2388.12,9065.44,47.54,521.57,2388.07,8.4606,393,38.8,23.2319 +30,147,0.0001,-0.0002,642.05,1591.29,1413.02,21.61,554.01,2388.11,9058.34,47.52,521.02,2388.04,8.4407,394,38.76,23.3498 +30,148,0.0025,0.0003,643.01,1587.19,1415.8,21.61,553.42,2388.11,9053.82,47.57,521.21,2388.12,8.4307,394,38.8,23.2313 +30,149,-0.0011,-0.0002,642.37,1591.14,1407.63,21.61,552.87,2388.07,9055.04,47.38,521.72,2388.15,8.4151,392,38.74,23.354 +30,150,0.0035,0.0001,642.62,1590.33,1411.98,21.61,553.36,2388.16,9060.0,47.64,521.03,2388.1,8.4593,394,38.97,23.2037 +30,151,0.0028,0.0,642.65,1590.11,1410.16,21.61,553.14,2388.07,9064.54,47.6,521.1,2388.07,8.4347,394,38.75,23.1521 +30,152,-0.0023,-0.0001,642.54,1590.7,1409.7,21.61,553.18,2388.13,9058.32,47.79,521.32,2388.08,8.4349,394,38.74,23.2894 +30,153,0.0001,-0.0001,642.89,1593.52,1417.0,21.61,553.86,2388.13,9060.56,47.44,520.85,2388.11,8.4373,394,38.72,23.1734 +30,154,-0.0022,-0.0003,642.55,1587.3,1406.04,21.61,553.21,2388.15,9060.98,47.64,521.31,2388.12,8.4326,393,38.82,23.2581 +30,155,-0.0014,-0.0004,642.92,1593.63,1404.65,21.61,553.26,2388.15,9058.46,47.58,521.34,2388.1,8.4767,394,39.08,23.2471 +30,156,0.0024,0.0003,642.34,1586.8,1402.97,21.61,553.45,2388.12,9060.81,47.82,520.92,2388.13,8.4352,393,38.86,23.2616 +30,157,-0.0006,0.0003,642.61,1595.7,1406.4,21.61,553.35,2388.13,9058.52,47.58,520.86,2388.16,8.4695,393,38.73,23.2119 +30,158,0.0025,-0.0,642.9,1594.27,1416.24,21.61,553.17,2388.13,9057.01,47.61,521.57,2388.19,8.4396,394,38.73,23.2411 +30,159,0.0012,0.0002,643.07,1597.02,1412.94,21.61,552.53,2388.13,9053.09,47.5,521.12,2388.13,8.4338,396,38.73,23.1997 +30,160,0.0021,0.0002,642.93,1597.49,1416.64,21.61,553.61,2388.14,9060.17,47.48,520.71,2388.13,8.5068,394,38.89,23.2727 +30,161,-0.0035,-0.0002,642.45,1598.89,1415.27,21.61,553.0,2388.18,9055.47,47.59,520.99,2388.12,8.4597,394,38.69,23.16 +30,162,-0.0023,0.0002,642.32,1594.88,1412.51,21.61,552.77,2388.12,9058.14,47.62,520.97,2388.2,8.4557,392,38.63,23.2997 +30,163,-0.0015,0.0003,642.64,1599.86,1410.54,21.61,552.34,2388.14,9057.36,47.69,521.01,2388.18,8.4717,392,38.82,23.2873 +30,164,0.0002,-0.0003,642.93,1592.68,1418.13,21.61,552.66,2388.18,9059.48,47.77,520.82,2388.15,8.4624,394,38.83,23.2539 +30,165,0.0034,0.0003,642.94,1592.27,1414.8,21.61,552.97,2388.12,9046.45,47.71,521.07,2388.12,8.4374,395,38.66,23.1558 +30,166,-0.0035,-0.0002,643.19,1594.47,1405.06,21.61,552.11,2388.11,9054.68,47.69,521.27,2388.16,8.453,394,38.63,23.3154 +30,167,0.0022,0.0005,642.6,1590.69,1418.89,21.61,553.04,2388.14,9052.43,47.75,520.91,2388.1,8.482,393,38.76,23.3618 +30,168,0.0029,-0.0001,643.22,1593.18,1409.51,21.61,552.46,2388.15,9049.28,47.86,520.7,2388.22,8.4309,395,38.83,23.2764 +30,169,-0.0003,-0.0005,642.78,1593.76,1416.89,21.61,552.69,2388.25,9054.99,47.61,520.85,2388.21,8.4441,396,38.68,23.1873 +30,170,0.0018,-0.0003,643.23,1591.67,1413.31,21.61,552.48,2388.15,9063.22,47.81,521.12,2388.19,8.4651,393,38.48,23.1442 +30,171,0.0011,-0.0005,642.97,1596.9,1418.05,21.61,552.6,2388.19,9048.73,47.62,521.02,2388.12,8.4728,394,38.65,23.1261 +30,172,0.0009,-0.0003,643.27,1588.64,1416.87,21.61,552.59,2388.19,9057.89,47.71,521.3,2388.2,8.4821,394,38.8,23.2791 +30,173,0.0015,0.0002,643.05,1588.62,1420.56,21.61,552.13,2388.2,9052.17,47.87,520.78,2388.27,8.4934,395,38.69,23.1842 +30,174,0.0013,0.0003,643.64,1588.97,1419.27,21.61,551.94,2388.2,9055.73,47.88,520.43,2388.2,8.4688,393,38.57,23.257 +30,175,0.0002,-0.0002,642.68,1593.68,1418.61,21.61,552.44,2388.15,9057.8,47.86,519.81,2388.17,8.5048,394,38.66,23.1409 +30,176,0.003,-0.0003,643.13,1594.82,1420.87,21.61,552.03,2388.25,9056.14,48.0,520.56,2388.21,8.4569,394,38.67,23.0812 +30,177,0.0001,-0.0002,642.84,1594.17,1418.86,21.61,553.03,2388.25,9055.25,47.94,519.74,2388.18,8.4652,395,38.68,23.1291 +30,178,0.0009,0.0001,642.92,1596.34,1418.78,21.61,551.75,2388.14,9056.49,48.0,520.6,2388.17,8.4717,394,38.55,23.2355 +30,179,-0.0042,0.0004,643.75,1594.22,1419.01,21.61,552.85,2388.12,9061.87,47.92,520.72,2388.19,8.475,394,38.67,23.1937 +30,180,0.0006,-0.0003,643.36,1593.48,1427.11,21.61,552.0,2388.23,9045.55,48.0,519.93,2388.2,8.464,393,38.58,23.2488 +30,181,0.0005,0.0004,643.27,1600.72,1420.74,21.61,551.41,2388.18,9054.9,47.81,520.71,2388.18,8.4716,395,38.5,23.1706 +30,182,-0.0005,0.0004,643.72,1600.24,1420.71,21.61,552.3,2388.25,9053.48,48.13,520.33,2388.2,8.5077,396,38.51,23.2195 +30,183,0.0005,0.0,643.87,1602.57,1412.64,21.61,552.33,2388.22,9054.52,47.93,520.01,2388.21,8.5284,394,38.57,23.1144 +30,184,-0.0021,0.0001,643.41,1603.89,1424.56,21.61,552.44,2388.24,9055.41,47.95,520.08,2388.18,8.5278,395,38.55,23.0789 +30,185,-0.0014,-0.0003,643.0,1598.5,1431.53,21.61,551.79,2388.28,9050.22,47.9,519.83,2388.22,8.4843,395,38.57,23.133 +30,186,-0.0009,-0.0001,643.26,1594.24,1426.02,21.61,552.09,2388.25,9056.84,47.95,519.74,2388.19,8.5004,395,38.49,23.2516 +30,187,0.0016,-0.0,643.33,1599.63,1427.59,21.61,551.12,2388.29,9048.77,48.1,519.88,2388.3,8.4856,394,38.63,23.0802 +30,188,-0.0002,-0.0002,643.42,1596.46,1431.49,21.61,551.75,2388.25,9055.32,48.0,520.5,2388.28,8.4991,397,38.47,23.1048 +30,189,-0.0006,-0.0002,643.46,1600.32,1425.35,21.61,551.17,2388.22,9049.57,47.99,519.74,2388.28,8.5502,396,38.45,23.127 +30,190,0.0002,0.0001,643.8,1601.46,1423.61,21.61,551.75,2388.21,9046.62,48.05,519.91,2388.31,8.5077,397,38.53,23.1087 +30,191,-0.0026,0.0001,643.72,1603.55,1423.84,21.61,551.62,2388.29,9049.47,48.06,519.68,2388.27,8.5266,394,38.5,23.0123 +30,192,-0.0032,-0.0003,643.6,1604.26,1422.34,21.61,551.89,2388.28,9052.51,48.04,519.75,2388.25,8.528,395,38.5,23.0121 +30,193,0.0026,0.0003,644.01,1595.95,1427.62,21.61,551.86,2388.25,9052.23,48.2,519.28,2388.29,8.5148,395,38.44,22.9821 +30,194,0.0003,0.0005,643.34,1604.03,1441.49,21.61,551.1,2388.32,9050.0,48.17,519.22,2388.3,8.5298,396,38.24,23.1925 +31,10,-0.0027,-0.0001,642.64,1595.07,1399.16,21.61,554.44,2388.01,9053.89,47.02,522.29,2388.02,8.3873,389,39.12,23.469 +31,11,0.0013,0.0002,642.17,1579.12,1399.42,21.61,554.43,2387.98,9055.09,47.15,522.24,2388.01,8.3832,392,39.12,23.4295 +31,12,-0.0009,0.0003,642.18,1579.01,1394.44,21.61,554.3,2387.99,9057.49,47.17,522.12,2388.01,8.4032,390,39.0,23.4151 +31,13,0.0042,-0.0001,642.06,1581.71,1397.1,21.61,554.25,2388.01,9059.26,47.23,522.66,2388.06,8.3956,393,38.89,23.5862 +31,14,-0.003,0.0001,641.66,1587.61,1398.61,21.61,554.4,2388.01,9057.46,47.31,522.8,2387.99,8.3706,391,38.99,23.4726 +31,15,0.0011,0.0001,642.49,1583.13,1391.64,21.61,554.4,2388.04,9057.39,47.19,522.33,2388.02,8.3784,392,39.06,23.4839 +31,16,0.0013,-0.0,641.65,1585.84,1398.7,21.61,554.72,2388.0,9049.27,47.04,522.21,2388.02,8.3947,392,38.94,23.3974 +31,17,-0.0027,0.0005,642.13,1582.29,1401.29,21.61,554.0,2388.04,9054.63,47.11,522.56,2388.03,8.4062,392,39.11,23.3932 +31,18,0.0019,0.0004,641.76,1589.63,1392.85,21.61,553.69,2388.04,9054.25,47.06,522.75,2388.03,8.4117,393,39.02,23.5791 +31,19,-0.0011,0.0,642.18,1587.07,1399.25,21.61,554.14,2388.01,9055.95,47.32,522.08,2388.01,8.4282,389,39.03,23.4234 +31,20,0.0009,-0.0003,642.16,1592.08,1397.95,21.61,554.36,2388.05,9057.86,47.14,521.89,2388.03,8.371,393,39.08,23.476 +31,21,-0.0041,-0.0003,642.43,1590.86,1405.43,21.61,554.3,2388.01,9057.22,47.09,521.99,2388.05,8.4408,392,39.01,23.4254 +31,22,-0.0,0.0005,642.41,1585.3,1395.91,21.61,554.1,2387.97,9059.15,47.2,522.0,2388.0,8.3647,390,39.07,23.3529 +31,23,-0.0003,0.0001,642.13,1583.72,1398.73,21.61,554.09,2387.99,9049.36,47.45,522.33,2387.97,8.3973,392,39.07,23.4756 +31,24,-0.0009,0.0003,642.02,1583.53,1400.11,21.61,554.34,2388.04,9054.41,47.01,522.85,2388.01,8.3842,391,39.05,23.4339 +31,25,-0.0001,0.0003,641.81,1587.24,1395.24,21.61,555.03,2388.05,9053.45,47.3,521.68,2387.98,8.4043,392,38.93,23.3552 +31,26,-0.0034,0.0005,642.49,1588.89,1394.61,21.61,554.05,2388.05,9057.32,47.16,522.33,2387.94,8.4098,393,38.83,23.4585 +31,27,0.0007,0.0,641.97,1586.29,1395.12,21.61,554.79,2388.02,9060.61,47.26,522.39,2387.97,8.3659,390,38.92,23.3088 +31,28,-0.0014,-0.0002,641.82,1584.33,1395.34,21.61,554.39,2387.96,9051.49,47.24,521.92,2387.98,8.4182,392,38.99,23.3738 +31,29,0.0015,0.0004,642.75,1582.95,1397.95,21.6,553.71,2388.0,9056.69,47.25,522.83,2388.01,8.4084,390,39.13,23.4073 +31,30,0.0012,0.0003,642.43,1584.37,1402.39,21.61,554.6,2388.08,9060.37,47.25,521.85,2388.0,8.4189,391,38.82,23.263 +31,31,0.0,0.0005,642.43,1585.58,1398.84,21.61,554.62,2388.0,9057.53,47.15,522.64,2388.0,8.3931,393,38.92,23.4831 +31,32,-0.0033,-0.0004,642.07,1583.16,1393.16,21.6,554.65,2388.05,9059.82,47.41,522.22,2388.0,8.4297,392,38.99,23.4403 +31,33,0.0017,0.0004,642.6,1589.24,1401.33,21.61,554.16,2388.05,9060.87,47.07,522.68,2388.03,8.4018,392,38.92,23.4052 +31,34,0.0012,-0.0003,642.08,1588.91,1399.33,21.61,555.31,2388.0,9050.68,47.11,522.17,2388.05,8.4,391,39.13,23.4073 +31,35,-0.002,0.0003,642.63,1589.74,1399.15,21.61,554.26,2388.06,9053.42,47.3,522.31,2388.06,8.416,392,39.0,23.5561 +31,36,0.0022,-0.0003,642.26,1575.27,1397.59,21.61,554.97,2388.04,9049.85,47.37,522.35,2388.04,8.4196,392,39.09,23.4543 +31,37,-0.0003,-0.0003,641.53,1588.56,1395.54,21.61,554.72,2387.99,9054.71,47.06,522.01,2388.03,8.3852,393,38.93,23.4069 +31,38,0.0016,-0.0004,642.27,1585.97,1400.07,21.61,554.72,2387.98,9060.69,47.07,522.86,2388.03,8.3874,391,38.91,23.4678 +31,39,-0.0001,-0.0,642.16,1582.17,1395.41,21.61,554.48,2388.01,9053.07,47.26,522.41,2388.0,8.4151,392,39.02,23.5421 +31,40,0.0028,0.0001,642.61,1583.26,1397.76,21.6,553.67,2387.98,9056.09,47.1,522.16,2387.98,8.3976,390,38.87,23.403 +31,41,-0.0012,-0.0,641.87,1586.7,1396.71,21.6,553.96,2388.09,9059.83,47.2,522.42,2388.04,8.3995,392,39.11,23.4224 +31,42,-0.0026,-0.0003,642.09,1581.83,1399.34,21.61,555.28,2387.97,9057.89,47.22,521.92,2387.96,8.392,392,39.04,23.3833 +31,43,-0.0012,0.0003,641.5,1577.74,1394.51,21.61,554.17,2388.0,9059.11,47.06,521.95,2388.03,8.3855,391,38.96,23.413 +31,44,-0.0012,-0.0003,642.27,1584.28,1391.16,21.61,554.36,2388.04,9051.2,47.13,522.09,2388.01,8.3587,392,38.87,23.4417 +31,45,-0.0017,0.0004,641.91,1588.78,1404.39,21.61,554.2,2388.0,9058.85,47.07,522.25,2388.03,8.4147,390,39.13,23.45 +31,46,-0.0013,0.0005,642.67,1579.99,1395.96,21.61,554.25,2387.99,9059.75,47.12,522.28,2388.03,8.3972,390,39.22,23.4009 +31,47,-0.0036,-0.0003,642.16,1586.8,1396.91,21.6,554.53,2388.02,9057.24,47.23,522.3,2388.03,8.3637,393,39.0,23.4342 +31,48,-0.007,-0.0004,642.16,1582.58,1398.43,21.61,555.04,2388.02,9053.91,47.3,522.53,2387.97,8.4014,394,39.07,23.5247 +31,49,-0.0013,-0.0002,642.35,1576.11,1398.33,21.61,554.02,2388.04,9054.19,47.04,522.54,2387.98,8.3911,394,39.11,23.4696 +31,50,0.0007,0.0004,642.5,1587.31,1404.68,21.6,554.5,2388.01,9049.55,47.27,522.24,2388.01,8.3969,391,39.07,23.5154 +31,51,-0.003,0.0004,642.49,1587.64,1403.08,21.61,554.32,2387.98,9049.21,47.16,521.86,2388.01,8.4113,393,39.12,23.3379 +31,52,0.0001,0.0004,642.27,1583.5,1394.1,21.61,554.62,2387.95,9065.9,47.29,522.31,2388.0,8.3646,390,39.2,23.4843 +31,53,0.0009,-0.0003,642.11,1591.74,1406.84,21.61,553.97,2388.06,9061.54,47.23,522.3,2387.99,8.4042,391,38.99,23.4381 +31,54,-0.0018,0.0004,641.7,1581.44,1397.18,21.61,554.57,2388.02,9057.25,47.33,522.19,2388.04,8.4005,392,38.98,23.4706 +31,55,-0.0011,0.0003,642.27,1577.19,1396.34,21.61,553.59,2388.05,9051.68,47.13,522.04,2388.04,8.4091,392,38.91,23.4684 +31,56,0.0008,0.0,642.32,1582.58,1396.36,21.61,554.67,2387.99,9055.52,47.21,522.78,2387.95,8.4156,393,39.01,23.4246 +31,57,0.0001,-0.0001,642.04,1580.68,1396.08,21.61,555.23,2388.06,9053.23,47.11,522.42,2387.98,8.4029,393,39.22,23.4429 +31,58,0.0006,0.0005,642.39,1590.24,1398.19,21.61,554.7,2388.05,9053.09,47.17,522.32,2388.02,8.4052,393,39.11,23.3814 +31,59,-0.0003,0.0004,642.71,1584.82,1395.32,21.61,554.41,2388.01,9056.26,47.36,522.2,2388.01,8.3941,393,38.99,23.4277 +31,60,0.0014,-0.0004,641.79,1580.03,1397.52,21.61,554.71,2388.08,9055.6,47.25,522.35,2388.05,8.4057,393,39.02,23.5239 +31,61,-0.0015,-0.0004,642.03,1584.42,1400.26,21.6,554.15,2387.98,9055.27,47.19,522.25,2388.0,8.3946,391,38.98,23.4154 +31,62,0.0009,-0.0,642.37,1581.94,1400.59,21.61,554.49,2387.98,9053.13,47.33,522.38,2388.03,8.4107,391,38.94,23.3159 +31,63,0.0002,0.0,642.51,1583.2,1404.25,21.61,554.65,2388.03,9053.81,47.3,522.08,2388.1,8.4201,392,39.22,23.4375 +31,64,-0.0014,-0.0001,641.93,1578.34,1394.57,21.6,553.74,2388.01,9060.72,47.25,521.88,2388.11,8.3898,392,39.06,23.4081 +31,65,0.0006,0.0005,642.06,1580.85,1402.65,21.61,554.97,2388.01,9059.01,47.2,522.31,2388.03,8.4168,392,38.9,23.4173 +31,66,0.0002,-0.0005,642.3,1587.25,1401.11,21.61,554.17,2387.99,9064.4,47.32,522.39,2388.05,8.403,391,38.93,23.4114 +31,67,0.0016,-0.0004,641.83,1585.17,1402.06,21.61,554.84,2388.0,9061.78,47.14,522.41,2388.02,8.4404,392,39.04,23.4479 +31,68,-0.0006,0.0001,642.51,1580.51,1401.55,21.61,554.1,2388.1,9062.01,47.2,521.56,2388.01,8.3873,390,38.91,23.5005 +31,69,-0.0022,0.0005,642.15,1589.08,1402.87,21.61,554.78,2388.04,9048.6,47.28,522.33,2388.04,8.3597,391,39.08,23.462 +31,70,-0.0017,-0.0002,641.95,1578.36,1390.86,21.61,554.37,2388.04,9058.4,47.37,522.48,2388.07,8.3843,391,39.07,23.4163 +31,71,0.0017,-0.0002,642.24,1583.58,1389.59,21.61,553.74,2388.08,9057.16,47.31,522.85,2388.01,8.3745,390,39.06,23.3219 +31,72,-0.001,0.0001,642.09,1586.63,1394.39,21.61,554.58,2388.05,9052.4,47.21,522.35,2387.99,8.4163,393,38.87,23.4494 +31,73,0.0013,-0.0,642.25,1590.14,1401.52,21.61,554.53,2388.02,9060.66,47.29,522.1,2387.95,8.3996,390,39.08,23.3939 +31,74,-0.0018,-0.0004,642.3,1580.25,1398.63,21.61,554.93,2388.02,9062.01,47.36,522.05,2387.96,8.4138,393,38.98,23.3986 +31,75,-0.0061,-0.0004,642.07,1582.09,1403.33,21.61,554.09,2388.03,9044.83,47.58,521.66,2388.05,8.398,393,39.17,23.3992 +31,76,0.0022,-0.0,642.13,1584.29,1401.17,21.61,554.17,2388.06,9057.23,47.15,522.24,2388.09,8.4217,391,38.97,23.3696 +31,77,-0.0024,-0.0002,642.1,1582.16,1397.17,21.61,553.97,2388.04,9058.22,47.25,521.94,2388.02,8.4135,392,39.04,23.3315 +31,78,0.0027,-0.0003,642.55,1584.71,1397.01,21.61,553.76,2388.03,9062.0,47.3,522.17,2388.09,8.3719,392,39.01,23.3907 +31,79,0.0034,-0.0002,642.24,1583.94,1399.87,21.61,554.71,2388.04,9056.32,47.16,521.93,2387.99,8.3815,391,38.98,23.4214 +31,80,0.0025,-0.0003,642.36,1589.73,1399.27,21.61,554.34,2388.03,9056.46,47.21,522.08,2388.03,8.3977,391,38.8,23.3383 +31,81,-0.0022,-0.0004,642.16,1586.86,1397.11,21.61,554.44,2388.01,9052.36,47.32,522.2,2388.0,8.4083,395,39.08,23.3733 +31,82,0.0031,-0.0004,642.4,1586.49,1403.04,21.6,553.41,2388.01,9049.36,47.3,521.43,2388.0,8.4063,393,39.07,23.4354 +31,83,-0.0031,0.0002,642.13,1586.11,1398.99,21.61,554.18,2388.01,9056.86,47.37,521.92,2388.03,8.4442,393,38.95,23.4576 +31,84,-0.0001,-0.0004,642.27,1583.84,1396.03,21.61,554.39,2388.05,9059.83,47.27,522.38,2388.02,8.3898,393,38.84,23.3944 +31,85,0.002,-0.0,641.96,1584.79,1398.88,21.61,554.45,2388.03,9059.34,47.26,522.55,2388.03,8.3892,390,39.05,23.4604 +31,86,-0.0001,-0.0002,641.84,1581.38,1396.55,21.61,554.64,2388.01,9060.45,47.4,522.51,2388.06,8.4166,391,38.85,23.2815 +31,87,0.0014,0.0001,642.06,1582.91,1397.71,21.61,554.85,2388.01,9057.86,47.34,521.77,2388.02,8.4112,392,38.8,23.3901 +31,88,-0.0036,0.0002,642.44,1584.18,1400.34,21.61,554.48,2388.04,9058.58,47.28,522.18,2388.06,8.395,394,39.13,23.4183 +31,89,0.0004,0.0003,642.12,1585.38,1403.75,21.61,553.96,2388.04,9059.74,47.25,522.67,2388.01,8.4133,393,39.13,23.4733 +31,90,-0.0004,-0.0003,642.58,1580.59,1404.03,21.61,553.75,2388.0,9051.58,47.26,521.75,2388.05,8.3926,392,39.27,23.4482 +31,91,-0.0022,0.0003,642.49,1589.4,1400.75,21.61,554.2,2388.05,9059.84,47.21,522.22,2388.03,8.4495,393,39.07,23.4234 +31,92,-0.0044,-0.0,642.45,1591.97,1394.88,21.61,554.07,2388.04,9051.65,47.37,521.91,2388.13,8.4121,391,39.03,23.5272 +31,93,-0.0005,0.0004,641.77,1584.84,1397.48,21.61,553.98,2388.05,9051.51,47.23,522.26,2388.04,8.4089,390,38.97,23.3959 +31,94,0.0042,-0.0004,642.27,1592.33,1402.49,21.61,554.2,2388.0,9059.41,47.44,521.86,2388.04,8.4134,392,39.04,23.3312 +31,95,0.0005,-0.0003,642.14,1583.63,1396.89,21.61,553.83,2387.99,9054.55,47.2,522.13,2388.04,8.4077,392,38.8,23.4486 +31,96,0.0029,-0.0001,642.71,1576.78,1400.69,21.61,553.99,2388.07,9054.65,47.37,521.93,2388.09,8.4311,392,38.97,23.4938 +31,97,0.0003,-0.0002,642.25,1581.34,1405.52,21.61,554.0,2388.0,9055.23,47.3,522.13,2388.04,8.4229,391,39.06,23.3329 +31,98,-0.0019,0.0003,642.05,1588.96,1399.88,21.61,554.68,2388.01,9054.65,47.16,522.36,2388.05,8.4126,391,38.94,23.4385 +31,99,-0.0008,0.0,642.3,1584.06,1398.71,21.61,554.68,2388.05,9064.69,47.28,522.39,2388.0,8.4094,391,38.98,23.2732 +31,100,-0.0012,-0.0003,641.94,1582.21,1399.09,21.61,554.61,2388.05,9058.63,47.05,521.49,2388.03,8.4277,392,38.88,23.4044 +31,101,0.0031,0.0001,642.1,1583.86,1401.44,21.6,554.52,2388.08,9055.73,47.35,521.76,2388.08,8.3783,392,38.85,23.3846 +31,102,-0.0058,0.0004,642.16,1584.69,1402.89,21.61,553.74,2388.07,9059.28,47.45,522.31,2388.01,8.4326,393,38.98,23.4357 +31,103,0.0009,0.0003,642.18,1586.57,1406.99,21.61,554.49,2388.02,9059.29,47.34,521.9,2388.03,8.3977,391,38.91,23.4291 +31,104,0.0035,-0.0002,642.0,1582.16,1397.98,21.61,555.12,2388.01,9059.97,47.23,522.18,2388.0,8.4324,390,38.88,23.3485 +31,105,0.0026,-0.0003,642.24,1588.38,1398.02,21.6,553.83,2388.03,9054.88,47.14,521.85,2388.04,8.4088,391,39.02,23.2901 +31,106,0.0001,-0.0003,642.17,1587.18,1401.05,21.61,554.75,2388.05,9056.12,47.2,522.07,2388.07,8.3646,392,38.92,23.3532 +31,107,0.0022,0.0005,642.26,1583.76,1399.65,21.61,554.08,2388.05,9059.05,47.26,522.01,2388.01,8.4216,392,39.1,23.3989 +31,108,0.0006,-0.0,641.96,1581.24,1401.0,21.61,554.82,2388.07,9051.46,47.32,521.89,2388.04,8.4162,390,38.78,23.4721 +31,109,-0.0031,0.0001,642.17,1578.66,1403.88,21.61,554.95,2388.07,9055.69,47.2,522.17,2388.03,8.4345,393,38.98,23.4442 +31,110,0.0006,-0.0004,641.99,1587.94,1398.14,21.61,554.43,2388.0,9060.78,47.16,521.94,2388.06,8.4513,391,38.96,23.4025 +31,111,-0.002,0.0001,642.82,1585.58,1407.75,21.61,553.91,2388.05,9057.34,47.35,522.11,2388.08,8.4285,393,38.81,23.3864 +31,112,0.0018,0.0004,642.32,1584.73,1403.76,21.61,553.93,2388.06,9056.15,47.3,522.38,2388.04,8.3935,391,39.16,23.3309 +31,113,0.0003,0.0,641.82,1585.36,1398.06,21.61,554.31,2388.0,9058.13,47.33,522.12,2388.06,8.3836,393,39.18,23.3139 +31,114,-0.0007,-0.0005,642.47,1573.92,1398.89,21.61,554.7,2388.07,9058.71,47.31,522.43,2388.06,8.3988,391,39.04,23.4133 +31,115,-0.0027,-0.0002,642.76,1591.29,1400.61,21.61,554.79,2388.06,9061.07,47.42,522.24,2388.07,8.4209,393,38.84,23.4881 +31,116,-0.0024,-0.0004,641.89,1595.6,1408.42,21.61,554.09,2388.05,9055.25,47.34,522.08,2388.01,8.3771,393,38.93,23.3913 +31,117,0.0007,-0.0003,642.24,1584.86,1401.82,21.61,553.89,2388.05,9058.63,47.35,522.38,2388.09,8.4188,393,38.91,23.4307 +31,118,-0.0009,-0.0002,642.22,1585.92,1399.92,21.61,553.86,2388.04,9060.32,47.42,522.15,2388.03,8.3992,391,38.91,23.3304 +31,119,-0.0031,0.0002,642.41,1579.35,1402.17,21.61,553.31,2388.02,9047.77,47.17,521.81,2388.11,8.4055,393,38.99,23.2714 +31,120,0.0015,-0.0,642.42,1587.09,1402.37,21.61,554.58,2388.03,9056.19,47.27,522.13,2388.06,8.4156,393,38.68,23.5514 +31,121,0.0057,-0.0002,641.76,1585.79,1402.34,21.61,554.01,2388.08,9054.32,47.27,521.83,2387.95,8.4092,392,39.04,23.3617 +31,122,0.0008,0.0005,642.18,1588.45,1406.25,21.61,553.83,2388.15,9049.93,47.2,522.05,2388.02,8.3856,391,38.96,23.3398 +31,123,0.0004,-0.0003,642.68,1585.86,1404.48,21.61,553.81,2388.05,9058.7,47.16,522.22,2387.99,8.3936,392,39.02,23.3139 +31,124,0.001,0.0003,642.34,1584.66,1405.53,21.61,554.19,2388.07,9056.85,47.32,521.68,2388.06,8.4203,392,38.99,23.5337 +31,125,0.0013,0.0002,641.93,1585.47,1403.84,21.61,553.38,2388.06,9050.05,47.37,521.4,2388.01,8.4015,394,39.02,23.3915 +31,126,0.0007,0.0005,642.35,1586.36,1403.85,21.61,553.71,2388.06,9053.55,47.31,522.17,2388.04,8.4667,392,39.29,23.4391 +31,127,-0.0001,0.0002,642.82,1586.92,1404.85,21.61,554.1,2388.01,9059.17,47.38,521.85,2388.06,8.4483,392,38.78,23.3477 +31,128,0.0009,0.0001,642.58,1590.97,1402.36,21.61,554.42,2388.02,9059.25,47.17,522.08,2388.08,8.4376,391,38.99,23.3748 +31,129,-0.0001,-0.0002,641.98,1588.97,1404.6,21.6,553.63,2387.99,9059.61,47.31,521.84,2388.04,8.4003,392,39.1,23.301 +31,130,-0.0006,-0.0004,642.46,1585.58,1407.02,21.6,554.55,2388.08,9054.18,47.27,522.28,2388.06,8.4061,392,38.86,23.285 +31,131,-0.0007,-0.0001,643.02,1581.67,1408.27,21.61,553.78,2388.05,9053.97,47.2,522.04,2388.04,8.4122,392,38.94,23.3609 +31,132,-0.0012,-0.0002,642.51,1586.16,1398.13,21.61,554.53,2388.05,9057.29,47.51,521.92,2388.07,8.4164,392,39.06,23.3908 +31,133,0.0008,-0.0,642.26,1588.12,1405.45,21.61,554.43,2388.08,9062.87,47.22,522.16,2388.07,8.4393,392,38.98,23.3907 +31,134,-0.0012,0.0005,642.19,1589.83,1405.31,21.61,553.39,2388.03,9053.93,47.49,522.01,2388.06,8.4016,394,38.91,23.2717 +31,135,-0.0058,0.0005,641.56,1590.87,1401.49,21.61,554.2,2388.08,9058.74,47.33,521.61,2388.09,8.4031,393,38.72,23.4951 +31,136,-0.0021,-0.0,642.73,1583.42,1401.02,21.61,553.57,2388.11,9055.48,47.37,522.11,2388.11,8.4027,394,38.85,23.3925 +31,137,-0.0057,-0.0001,642.18,1592.42,1408.51,21.61,553.23,2388.02,9053.81,47.43,522.21,2388.06,8.4156,392,39.07,23.3351 +31,138,0.0008,-0.0001,642.62,1587.27,1404.89,21.61,554.26,2388.06,9060.34,47.47,522.37,2388.1,8.4174,392,38.89,23.2082 +31,139,-0.0034,0.0004,642.29,1593.1,1401.78,21.61,553.62,2388.11,9055.71,47.31,521.89,2388.05,8.4492,393,39.03,23.2539 +31,140,-0.003,-0.0003,642.47,1588.69,1403.44,21.61,554.84,2388.08,9056.63,47.51,521.52,2388.07,8.4666,392,39.01,23.2502 +31,141,0.0005,-0.0001,642.58,1591.87,1398.14,21.61,553.95,2388.09,9053.6,47.42,522.5,2388.06,8.4442,390,38.91,23.2488 +31,142,0.0022,-0.0002,642.44,1587.55,1404.11,21.61,554.23,2388.07,9055.67,47.26,522.15,2388.06,8.4237,392,38.91,23.3373 +31,143,0.0,-0.0002,642.22,1588.18,1405.62,21.61,554.33,2388.04,9060.88,47.47,522.2,2388.08,8.4239,393,38.84,23.372 +31,144,0.0008,0.0005,642.08,1584.98,1400.03,21.61,553.72,2388.07,9053.41,47.3,521.66,2388.06,8.4416,391,38.82,23.4426 +31,145,0.0007,-0.0004,642.13,1585.38,1411.23,21.61,553.4,2388.07,9057.53,47.45,521.98,2388.08,8.4399,393,38.88,23.3472 +31,146,0.0023,-0.0005,642.57,1588.63,1401.39,21.61,554.57,2388.08,9058.67,47.48,521.45,2388.1,8.4106,392,39.06,23.3759 +31,147,0.0028,-0.0002,642.35,1589.01,1405.08,21.61,554.21,2388.09,9061.8,47.37,521.79,2388.1,8.4413,395,38.83,23.316 +31,148,-0.0014,0.0002,642.57,1592.49,1402.39,21.61,553.96,2388.1,9058.01,47.31,520.87,2388.08,8.4221,392,38.89,23.3517 +31,149,0.0014,0.0001,642.5,1596.95,1407.89,21.61,553.84,2388.01,9054.99,47.36,521.53,2388.09,8.3871,392,39.07,23.4434 +31,150,-0.0032,0.0004,642.57,1587.82,1402.37,21.61,553.58,2388.05,9056.79,47.41,521.9,2388.06,8.4045,392,38.98,23.3595 +31,151,-0.0016,-0.0004,642.21,1587.25,1405.01,21.6,552.81,2388.08,9056.44,47.35,521.8,2388.06,8.4409,394,38.76,23.3454 +31,152,0.0023,-0.0,642.47,1585.13,1407.14,21.61,554.2,2388.06,9060.49,47.46,521.89,2388.12,8.4387,392,38.91,23.3289 +31,153,0.0028,-0.0004,642.72,1591.58,1404.64,21.61,553.7,2388.05,9050.4,47.31,521.26,2388.07,8.4287,392,38.89,23.2679 +31,154,-0.0015,0.0002,642.57,1588.47,1408.25,21.61,554.33,2388.03,9055.23,47.37,521.86,2388.08,8.4345,393,38.76,23.3128 +31,155,0.0032,0.0002,642.83,1593.09,1405.83,21.61,553.96,2388.06,9055.35,47.59,521.7,2388.07,8.435,393,38.89,23.3514 +31,156,0.0026,0.0002,642.78,1588.92,1405.88,21.61,553.72,2388.09,9060.96,47.45,521.18,2388.08,8.419,392,39.0,23.3315 +31,157,-0.0016,0.0004,642.15,1595.21,1400.72,21.61,553.18,2388.12,9063.01,47.42,521.87,2388.07,8.4417,393,38.84,23.2909 +31,158,0.0007,0.0004,642.46,1592.1,1404.73,21.61,553.52,2388.06,9055.82,47.46,521.44,2388.11,8.4492,393,38.93,23.2213 +31,159,0.0016,-0.0001,642.33,1591.55,1403.24,21.61,553.57,2388.11,9050.51,47.5,521.66,2388.1,8.4563,393,38.76,23.222 +31,160,-0.0005,-0.0003,642.93,1591.64,1401.32,21.61,554.02,2388.07,9057.35,47.54,521.46,2388.04,8.451,393,38.9,23.3917 +31,161,0.0011,0.0001,642.52,1591.1,1407.04,21.61,552.74,2388.05,9068.41,47.57,522.14,2388.07,8.4306,393,38.95,23.1793 +31,162,0.0,0.0005,643.02,1594.85,1410.34,21.61,553.92,2388.04,9055.64,47.29,521.79,2388.15,8.4432,392,39.01,23.3423 +31,163,-0.0013,-0.0001,642.69,1585.73,1403.17,21.61,553.86,2388.1,9060.3,47.45,521.57,2388.14,8.4195,393,38.91,23.3211 +31,164,0.0001,0.0005,642.15,1586.6,1409.25,21.61,553.51,2388.06,9045.41,47.35,521.59,2388.04,8.4308,393,38.97,23.3815 +31,165,-0.0013,0.0,642.26,1581.7,1406.3,21.61,553.19,2388.08,9057.01,47.61,521.41,2388.1,8.4037,393,38.95,23.3877 +31,166,0.0019,0.0002,643.1,1588.23,1409.64,21.61,553.54,2388.08,9046.73,47.45,521.86,2388.07,8.4267,394,38.99,23.3332 +31,167,-0.0003,-0.0004,641.62,1591.98,1410.44,21.61,552.82,2388.11,9057.21,47.74,521.71,2388.18,8.452,394,38.93,23.1925 +31,168,0.0015,-0.0001,642.15,1587.05,1404.56,21.61,553.39,2388.05,9054.61,47.39,521.48,2388.12,8.4207,395,38.85,23.3879 +31,169,-0.0033,-0.0001,642.55,1578.77,1407.48,21.61,554.0,2388.11,9058.31,47.64,521.22,2388.05,8.4244,394,38.68,23.3424 +31,170,0.002,0.0,642.81,1591.95,1401.14,21.61,552.52,2388.12,9051.56,47.6,521.49,2388.15,8.425,393,38.96,23.253 +31,171,0.0026,-0.0005,642.34,1589.46,1406.34,21.61,553.63,2388.15,9054.76,47.65,521.35,2388.08,8.4268,394,38.79,23.3784 +31,172,0.0011,-0.0003,643.03,1582.03,1411.49,21.61,553.87,2388.12,9060.76,47.7,521.34,2388.11,8.4785,393,38.89,23.2834 +31,173,0.0016,-0.0004,642.57,1590.28,1410.64,21.61,552.66,2388.04,9058.45,47.53,521.4,2388.09,8.4333,392,38.79,23.338 +31,174,0.0006,-0.0004,642.54,1587.72,1400.46,21.61,553.6,2388.08,9064.21,47.45,520.93,2388.1,8.4473,393,38.73,23.2243 +31,175,0.0043,-0.0002,642.68,1590.79,1411.52,21.61,553.9,2388.09,9063.63,47.6,521.18,2388.09,8.4759,393,38.68,23.2591 +31,176,-0.0009,-0.0003,643.76,1585.81,1402.83,21.61,553.38,2388.12,9056.24,47.57,521.12,2388.1,8.4431,395,38.78,23.2197 +31,177,0.0008,0.0,642.44,1585.01,1408.47,21.61,552.27,2388.12,9056.85,47.48,521.69,2388.1,8.4643,394,38.78,23.2824 +31,178,-0.0034,0.0002,642.83,1596.38,1407.84,21.61,553.69,2388.08,9059.01,47.54,520.86,2388.16,8.4216,392,38.88,23.3443 +31,179,0.0014,0.0005,642.31,1597.18,1414.18,21.61,553.59,2388.12,9055.06,47.65,520.93,2388.1,8.4523,395,38.74,23.2259 +31,180,0.0001,-0.0001,642.44,1592.08,1410.57,21.61,553.02,2388.09,9054.74,47.56,521.27,2388.06,8.4281,393,38.98,23.3185 +31,181,0.0028,0.0005,643.11,1583.92,1407.05,21.61,553.17,2388.16,9050.13,47.58,521.23,2388.14,8.4477,393,38.67,23.254 +31,182,0.0017,-0.0004,642.75,1590.59,1403.05,21.61,552.68,2388.17,9063.22,47.6,521.63,2388.11,8.449,395,38.78,23.3036 +31,183,0.0023,0.0005,642.78,1593.46,1407.03,21.61,553.27,2388.1,9054.33,47.46,521.64,2388.13,8.412,394,38.75,23.3858 +31,184,0.0002,-0.0004,642.77,1593.08,1411.46,21.61,553.97,2388.11,9052.59,47.62,520.86,2388.08,8.4668,394,38.77,23.2027 +31,185,-0.0059,-0.0005,642.93,1595.2,1409.93,21.61,552.86,2388.12,9062.71,47.6,520.97,2388.15,8.4421,394,38.74,23.2711 +31,186,0.0009,0.0,643.24,1588.74,1413.03,21.61,553.12,2388.12,9064.28,47.72,521.36,2388.07,8.4706,393,38.89,23.2308 +31,187,-0.0018,-0.0002,642.41,1596.81,1418.82,21.61,553.56,2388.11,9058.06,47.58,521.52,2388.2,8.444,393,38.83,23.2724 +31,188,0.0029,0.0004,643.42,1596.19,1411.94,21.61,552.54,2388.17,9057.4,47.7,521.72,2388.17,8.4378,394,38.75,23.3027 +31,189,-0.0004,-0.0001,643.1,1595.59,1411.58,21.61,553.18,2388.2,9056.37,47.56,521.34,2388.2,8.4472,392,38.75,23.221 +31,190,0.0033,0.0002,643.28,1595.87,1406.14,21.61,552.64,2388.16,9055.0,47.52,521.24,2388.15,8.4656,394,38.8,23.1736 +31,191,0.0026,-0.0002,643.2,1590.33,1413.24,21.61,552.89,2388.15,9051.5,47.66,521.05,2388.17,8.4497,393,38.69,23.3146 +31,192,0.0016,-0.0001,642.93,1591.79,1409.32,21.61,553.19,2388.17,9057.62,47.46,520.64,2388.12,8.4582,393,38.94,23.3407 +31,193,0.0005,-0.0001,643.15,1588.7,1418.24,21.61,552.82,2388.15,9057.39,47.6,521.03,2388.11,8.4467,393,38.96,23.2027 +31,194,0.0005,0.0003,642.3,1588.3,1416.01,21.61,552.5,2388.17,9059.46,47.79,521.01,2388.16,8.4709,394,38.73,23.3371 +31,195,0.003,0.0002,642.86,1597.28,1413.72,21.61,553.4,2388.14,9057.98,47.57,520.64,2388.15,8.4697,394,38.63,23.2138 +31,196,0.0029,0.0004,643.06,1589.6,1415.21,21.61,552.26,2388.15,9048.02,47.72,520.34,2388.11,8.4483,394,38.79,23.2927 +31,197,0.0009,0.0003,642.87,1592.55,1411.15,21.61,552.55,2388.19,9047.21,47.79,520.81,2388.2,8.4487,395,38.7,23.2288 +31,198,0.0009,0.0001,642.48,1590.2,1417.66,21.61,552.34,2388.17,9053.11,47.55,521.04,2388.18,8.4781,395,38.57,23.1996 +31,199,-0.0021,0.0005,642.54,1594.44,1424.13,21.61,551.98,2388.18,9060.5,47.67,521.03,2388.16,8.468,393,38.69,23.2373 +31,200,-0.0006,0.0001,642.99,1591.2,1424.56,21.61,552.83,2388.16,9058.74,47.61,520.74,2388.14,8.4825,395,38.58,23.1759 +31,201,0.0002,0.0003,643.39,1590.35,1418.49,21.61,551.77,2388.17,9056.61,47.84,520.33,2388.19,8.4808,394,38.73,23.1204 +31,202,-0.0011,-0.0003,642.7,1602.78,1416.46,21.61,552.67,2388.17,9050.38,47.72,520.75,2388.14,8.472,393,38.66,23.2345 +31,203,0.0005,0.0002,643.08,1587.54,1418.31,21.61,552.01,2388.18,9054.14,47.94,520.53,2388.18,8.4792,394,38.59,23.268 +31,204,-0.0031,0.0004,642.67,1597.92,1411.85,21.61,552.22,2388.19,9049.57,47.79,520.79,2388.17,8.4292,394,38.67,23.1413 +31,205,-0.0036,0.0,643.26,1592.93,1412.85,21.61,552.02,2388.18,9054.82,47.86,520.66,2388.25,8.4899,393,38.45,23.2457 +31,206,-0.0022,0.0001,643.28,1595.29,1427.59,21.61,552.32,2388.17,9053.81,47.83,520.66,2388.25,8.4771,394,38.64,23.139 +31,207,0.0005,0.0002,642.6,1591.08,1411.14,21.61,552.33,2388.22,9052.93,47.82,519.88,2388.19,8.4957,393,38.66,23.1918 +31,208,0.0002,-0.0002,643.27,1606.79,1418.33,21.61,552.29,2388.19,9053.57,47.89,520.46,2388.2,8.4544,394,38.6,23.2397 +31,209,0.0017,0.0002,643.1,1590.49,1417.6,21.61,552.26,2388.21,9050.85,47.89,520.82,2388.18,8.4563,394,38.54,23.1642 +31,210,-0.003,0.0001,643.14,1600.49,1414.18,21.61,552.22,2388.23,9047.31,47.78,520.54,2388.23,8.5095,396,38.65,23.1762 +31,211,0.001,0.0002,643.26,1604.58,1427.97,21.61,552.47,2388.22,9046.26,48.01,520.53,2388.22,8.5038,396,38.57,23.2898 +31,212,0.0018,-0.0004,643.35,1591.18,1425.24,21.61,552.06,2388.19,9051.62,47.94,519.9,2388.18,8.4583,395,38.65,23.1623 +31,213,0.0002,0.0003,643.19,1596.87,1416.53,21.61,552.23,2388.19,9051.37,47.7,520.57,2388.23,8.4483,396,38.36,23.246 +31,214,0.0012,0.0005,643.5,1596.65,1420.56,21.61,551.97,2388.23,9046.68,47.91,520.1,2388.22,8.4957,394,38.59,23.1847 +31,215,-0.0035,0.0001,642.41,1604.84,1420.7,21.61,552.66,2388.23,9049.47,48.08,520.6,2388.25,8.4771,395,38.65,23.1527 +31,216,0.0018,0.0004,642.93,1598.21,1415.41,21.61,552.29,2388.18,9060.59,47.93,520.43,2388.26,8.4698,396,38.62,23.171 +31,217,0.003,0.0005,643.28,1594.03,1421.66,21.61,552.04,2388.17,9043.2,48.07,520.66,2388.15,8.49,396,38.54,23.178 +31,218,0.0006,0.0001,643.69,1598.21,1423.87,21.61,551.89,2388.19,9047.17,48.21,520.47,2388.17,8.4957,396,38.63,23.1818 +31,219,0.0004,0.0001,643.37,1594.68,1423.53,21.61,551.57,2388.22,9051.27,48.15,520.34,2388.27,8.4898,395,38.63,23.1122 +31,220,0.0049,0.0004,643.98,1595.32,1429.25,21.61,552.19,2388.21,9047.58,47.93,519.77,2388.23,8.4865,394,38.7,23.1928 +31,221,-0.0004,-0.0001,643.52,1600.61,1423.13,21.61,552.43,2388.21,9043.86,48.16,520.32,2388.29,8.5174,396,38.42,23.0305 +31,222,-0.0002,-0.0,643.22,1600.63,1420.58,21.61,551.78,2388.26,9047.4,47.92,520.03,2388.19,8.4755,395,38.59,23.1057 +31,223,-0.0008,0.0002,642.98,1606.34,1422.75,21.61,551.1,2388.26,9045.3,47.96,519.28,2388.2,8.5229,393,38.42,23.1375 +31,224,-0.0003,-0.0003,643.62,1598.21,1432.73,21.61,551.43,2388.29,9045.11,48.03,519.9,2388.2,8.5313,395,38.44,23.1149 +31,225,-0.0038,0.0005,643.35,1595.95,1423.18,21.61,551.37,2388.29,9046.08,48.0,520.09,2388.25,8.4932,396,38.63,23.0751 +31,226,-0.0008,-0.0005,643.05,1601.52,1426.01,21.61,552.04,2388.29,9047.34,48.11,520.25,2388.28,8.5264,397,38.5,23.1028 +31,227,0.0019,-0.0004,643.51,1601.75,1424.33,21.61,551.33,2388.3,9050.69,48.13,519.77,2388.25,8.5089,395,38.51,23.0634 +31,228,0.0013,0.0,642.77,1594.36,1426.05,21.61,551.45,2388.22,9044.63,48.22,520.05,2388.22,8.5145,396,38.59,23.0135 +31,229,-0.0012,0.0004,644.11,1602.35,1429.78,21.61,551.66,2388.3,9050.49,48.26,519.23,2388.3,8.5085,396,38.45,23.0127 +31,230,0.0005,-0.0002,643.48,1602.57,1428.95,21.61,550.93,2388.2,9045.1,48.0,519.64,2388.27,8.4803,396,38.52,23.0058 +31,231,0.0001,0.0001,643.75,1606.56,1428.63,21.61,551.45,2388.28,9052.33,48.1,519.62,2388.3,8.5289,397,38.4,23.1205 +31,232,0.0022,-0.0,644.07,1602.77,1429.18,21.61,551.15,2388.32,9043.3,48.08,519.65,2388.25,8.5153,394,38.48,23.0406 +31,233,-0.0011,-0.0003,643.41,1601.56,1424.74,21.61,551.29,2388.27,9048.94,48.04,519.68,2388.3,8.5001,396,38.29,23.1609 +31,234,0.0023,-0.0001,643.5,1599.79,1425.76,21.61,550.86,2388.34,9042.46,48.32,519.88,2388.35,8.4871,397,38.46,23.0314 +38,10,-0.0002,0.0003,643.0,1589.58,1410.93,21.61,553.06,2388.13,9049.31,47.42,521.15,2388.14,8.4132,393,38.8,23.336 +38,11,0.0016,0.0002,642.12,1589.44,1410.93,21.61,553.22,2388.12,9051.73,47.39,522.0,2388.12,8.451,392,38.91,23.1972 +38,12,0.0005,0.0003,643.24,1588.18,1414.47,21.61,552.34,2388.19,9050.25,47.61,521.42,2388.17,8.4685,393,38.84,23.3892 +38,13,-0.0016,-0.0001,642.81,1590.28,1412.48,21.61,554.03,2388.11,9040.79,47.63,521.61,2388.12,8.42,392,38.72,23.3364 +38,14,0.0014,-0.0003,642.41,1587.56,1403.03,21.61,553.58,2388.12,9055.77,47.45,521.24,2388.18,8.4495,391,38.69,23.273 +38,15,0.0006,-0.0001,642.44,1594.9,1412.99,21.61,553.54,2388.12,9049.56,47.63,521.92,2388.11,8.4579,391,38.72,23.3186 +38,16,0.0029,0.0001,642.64,1582.04,1412.53,21.61,554.33,2388.17,9049.28,47.44,521.32,2388.13,8.4355,392,38.8,23.3469 +38,17,-0.0021,-0.0001,642.34,1587.03,1400.59,21.61,553.75,2388.13,9059.38,47.34,521.59,2388.07,8.4204,393,38.81,23.3542 +38,18,-0.0018,-0.0001,643.02,1585.7,1410.65,21.61,552.92,2388.11,9042.39,47.23,521.86,2388.12,8.4608,393,38.87,23.3424 +38,19,-0.0025,0.0002,642.84,1596.47,1412.33,21.61,553.91,2388.1,9048.0,47.49,521.3,2388.08,8.4467,394,38.89,23.2625 +38,20,-0.0002,-0.0004,642.13,1593.09,1406.41,21.61,553.42,2388.06,9044.05,47.43,521.05,2388.11,8.4439,393,38.84,23.3772 +38,21,0.0003,-0.0004,642.24,1594.31,1400.38,21.61,553.05,2388.16,9046.44,47.48,521.58,2388.07,8.4597,393,38.74,23.4 +38,22,0.0005,-0.0002,642.09,1587.18,1421.1,21.61,553.46,2388.17,9054.54,47.65,521.03,2388.1,8.4423,393,38.8,23.2618 +38,23,0.0009,-0.0,642.26,1584.89,1408.2,21.61,554.03,2388.08,9047.9,47.57,520.85,2388.09,8.4606,392,38.86,23.3257 +38,24,-0.0005,-0.0,642.39,1586.82,1409.61,21.61,553.22,2388.15,9047.66,47.5,521.62,2388.13,8.4447,392,38.88,23.2764 +38,25,0.0005,-0.0005,642.63,1581.1,1407.94,21.61,553.43,2388.15,9038.89,47.45,521.23,2388.11,8.4474,394,38.9,23.2561 +38,26,-0.0023,0.0001,643.14,1595.06,1403.16,21.61,552.5,2388.21,9044.37,47.53,521.47,2388.11,8.4306,394,38.93,23.3049 +38,27,0.0006,0.0,642.46,1591.91,1401.65,21.61,553.74,2388.09,9054.55,47.72,521.74,2388.1,8.4221,394,38.88,23.2469 +38,28,0.0009,-0.0001,642.43,1592.08,1412.18,21.61,553.75,2388.09,9049.94,47.52,521.76,2388.12,8.4695,394,38.88,23.403 +38,29,0.0009,-0.0002,642.64,1586.68,1407.41,21.61,553.89,2388.11,9048.03,47.51,521.43,2388.08,8.4529,394,39.03,23.258 +38,30,0.0023,0.0,642.44,1589.07,1407.62,21.61,553.31,2388.15,9051.79,47.52,521.27,2388.08,8.4439,394,38.81,23.3986 +38,31,0.0007,0.0004,642.84,1589.54,1409.44,21.61,553.3,2388.13,9053.52,47.4,521.68,2388.11,8.4045,394,38.74,23.3012 +38,32,-0.0015,0.0003,643.16,1587.08,1395.47,21.61,553.38,2388.09,9052.24,47.49,521.05,2388.11,8.4401,393,38.78,23.2933 +38,33,0.0009,-0.0,642.67,1587.12,1412.4,21.61,554.02,2388.11,9040.54,47.57,521.27,2388.1,8.4201,392,38.87,23.3629 +38,34,0.0014,-0.0,642.28,1589.41,1405.96,21.61,553.71,2388.11,9048.04,47.56,520.74,2388.15,8.4116,391,38.83,23.3505 +38,35,0.0024,0.0002,641.88,1583.35,1408.37,21.61,553.15,2388.13,9044.18,47.52,521.58,2388.08,8.4148,392,38.86,23.3355 +38,36,0.0033,-0.0003,642.91,1595.17,1399.64,21.61,553.46,2388.08,9052.31,47.47,521.04,2388.08,8.4389,393,38.84,23.3631 +38,37,0.0005,-0.0003,642.66,1592.21,1407.84,21.61,553.53,2388.08,9049.85,47.38,521.94,2388.1,8.4513,393,38.8,23.2601 +38,38,-0.0009,0.0003,642.96,1588.21,1405.72,21.61,552.98,2388.12,9046.59,47.57,520.87,2388.15,8.4593,394,38.93,23.3728 +38,39,0.0011,0.0002,642.6,1582.37,1409.37,21.61,553.32,2388.11,9048.57,47.49,521.59,2388.09,8.4424,393,38.77,23.2768 +38,40,0.0034,0.0004,642.77,1591.33,1409.21,21.61,553.48,2388.14,9047.07,47.49,521.7,2388.08,8.4092,393,38.92,23.298 +38,41,-0.005,-0.0004,642.56,1590.95,1410.36,21.61,553.32,2388.09,9049.8,47.6,521.23,2388.1,8.4142,391,38.98,23.2736 +38,42,0.0021,-0.0003,642.66,1589.06,1414.37,21.61,553.82,2388.06,9054.45,47.54,521.89,2388.12,8.4274,393,38.85,23.3433 +38,43,-0.0005,-0.0005,642.84,1586.78,1412.06,21.61,553.76,2388.1,9052.16,47.56,521.42,2388.16,8.4451,393,38.75,23.392 +38,44,0.0005,-0.0003,642.72,1582.54,1398.19,21.61,553.77,2388.12,9043.14,47.6,521.53,2388.06,8.4283,393,39.11,23.2875 +38,45,-0.0018,-0.0,642.3,1590.58,1407.52,21.61,552.92,2388.14,9051.31,47.63,521.54,2388.09,8.4291,394,38.91,23.2259 +38,46,-0.0034,0.0004,642.82,1588.4,1409.1,21.61,553.25,2388.09,9053.6,47.66,521.62,2388.09,8.4032,392,38.88,23.3197 +38,47,0.0014,0.0002,642.64,1589.48,1407.74,21.61,553.15,2388.19,9045.17,47.53,521.37,2388.08,8.4375,394,38.75,23.2922 +38,48,0.0027,0.0003,642.49,1595.8,1406.74,21.61,553.71,2388.13,9050.68,47.47,521.77,2388.07,8.4737,393,38.81,23.3485 +38,49,-0.0034,0.0003,642.91,1586.08,1409.42,21.61,552.92,2388.15,9048.79,47.58,521.61,2388.23,8.4611,392,38.72,23.3256 +38,50,0.0006,-0.0001,642.08,1592.84,1413.28,21.61,553.0,2388.13,9049.69,47.67,521.05,2388.16,8.4427,393,38.72,23.2577 +38,51,-0.0017,-0.0004,642.64,1588.2,1406.63,21.61,553.4,2388.13,9049.88,47.63,521.42,2388.09,8.4644,393,38.83,23.2531 +38,52,0.0008,0.0004,643.0,1585.87,1407.94,21.61,553.88,2388.11,9045.83,47.66,521.63,2388.09,8.4534,393,38.75,23.282 +38,53,-0.0033,-0.0,643.04,1590.97,1404.66,21.61,553.46,2388.07,9048.27,47.56,521.45,2388.05,8.4331,394,38.98,23.3775 +38,54,0.0022,0.0001,642.16,1588.87,1405.83,21.61,553.24,2388.07,9046.0,47.47,521.04,2388.11,8.4302,394,38.79,23.3762 +38,55,0.0016,-0.0,643.13,1584.03,1409.16,21.61,553.24,2388.09,9045.14,47.47,521.94,2388.06,8.4132,394,38.79,23.4527 +38,56,-0.0013,-0.0003,642.48,1592.67,1406.19,21.61,554.12,2388.13,9048.66,47.46,521.07,2388.07,8.4266,392,38.77,23.3474 +38,57,-0.0006,0.0003,643.35,1589.08,1404.46,21.61,552.72,2388.11,9051.49,47.61,521.56,2388.1,8.4704,393,38.99,23.2358 +38,58,0.0002,0.0005,642.84,1604.36,1409.41,21.61,553.57,2388.12,9044.66,47.48,521.41,2388.12,8.4278,392,38.86,23.3168 +38,59,0.0018,0.0003,642.8,1588.15,1401.74,21.61,553.69,2388.1,9048.43,47.52,521.58,2388.09,8.434,394,38.84,23.3378 +38,60,-0.0011,-0.0005,643.35,1596.09,1411.57,21.61,552.43,2388.09,9050.54,47.53,520.99,2388.08,8.4346,394,38.95,23.3436 +38,61,0.0019,-0.0001,642.23,1591.98,1405.75,21.61,553.54,2388.13,9044.1,47.45,521.26,2388.13,8.4254,392,38.91,23.2271 +38,62,-0.0021,-0.0,642.8,1588.81,1405.14,21.61,553.02,2388.07,9046.04,47.5,521.93,2388.11,8.4306,392,38.61,23.4048 +38,63,-0.0044,-0.0001,642.44,1585.8,1409.6,21.61,553.04,2388.09,9044.17,47.62,522.0,2388.11,8.4407,393,38.87,23.2797 +38,64,0.0018,0.0002,642.88,1592.13,1404.47,21.61,553.61,2388.13,9049.28,47.4,521.09,2388.1,8.4284,393,38.85,23.3077 +38,65,0.002,0.0003,642.89,1600.54,1405.82,21.61,553.21,2388.14,9057.21,47.32,522.06,2388.11,8.4409,392,38.78,23.258 +38,66,-0.0,0.0001,642.54,1592.63,1411.24,21.61,553.38,2388.14,9045.52,47.54,521.56,2388.04,8.453,394,38.75,23.277 +38,67,0.0018,-0.0002,642.0,1599.84,1403.88,21.61,552.56,2388.06,9051.3,47.46,521.51,2388.08,8.4125,393,38.7,23.3579 +38,68,-0.0006,-0.0003,642.72,1591.46,1404.84,21.61,552.79,2388.1,9053.15,47.53,521.77,2388.15,8.434,393,38.82,23.2709 +38,69,0.0007,0.0002,643.01,1591.1,1413.15,21.61,552.86,2388.06,9052.33,47.61,521.05,2388.1,8.4475,394,39.08,23.3611 +38,70,-0.0014,0.0,642.52,1592.06,1404.53,21.61,553.26,2388.08,9048.6,47.51,521.34,2388.13,8.4578,394,38.71,23.3773 +38,71,-0.0043,-0.0001,642.9,1585.93,1398.16,21.61,553.74,2388.06,9046.19,47.5,521.52,2388.1,8.4671,393,38.95,23.2984 +38,72,0.0005,0.0004,643.14,1594.27,1409.37,21.61,553.2,2388.11,9050.92,47.56,521.55,2388.13,8.449,391,38.93,23.4225 +38,73,0.0006,-0.0003,642.76,1591.18,1406.75,21.61,553.52,2388.14,9046.5,47.53,521.42,2388.11,8.4207,392,38.9,23.3453 +38,74,-0.0008,0.0004,642.45,1585.85,1408.38,21.61,553.33,2388.14,9052.98,47.56,520.98,2388.11,8.4526,394,38.8,23.139 +38,75,0.0003,-0.0001,642.93,1588.53,1403.69,21.61,553.42,2388.11,9053.05,47.47,521.46,2388.09,8.4354,393,38.61,23.3062 +38,76,0.0002,0.0004,642.53,1584.43,1408.84,21.61,552.65,2388.09,9055.66,47.52,521.72,2388.17,8.486,393,38.89,23.1985 +38,77,-0.0007,-0.0,642.65,1589.27,1407.19,21.61,553.43,2388.11,9059.39,47.67,521.67,2388.09,8.4709,393,38.71,23.2104 +38,78,-0.0034,-0.0002,642.65,1593.05,1406.31,21.61,553.19,2388.16,9053.75,47.61,521.35,2388.09,8.4401,393,38.89,23.2875 +38,79,-0.0025,-0.0005,643.06,1590.31,1414.25,21.61,553.37,2388.13,9061.03,47.57,521.53,2388.13,8.4293,392,38.8,23.2711 +38,80,-0.0004,0.0001,642.22,1589.19,1406.79,21.61,553.44,2388.13,9048.79,47.47,521.47,2388.18,8.4272,394,38.8,23.2825 +38,81,0.0026,-0.0002,643.31,1589.78,1409.91,21.61,553.62,2388.09,9050.71,47.43,521.38,2388.12,8.408,394,38.94,23.2134 +38,82,-0.0004,-0.0003,642.24,1586.66,1404.55,21.61,554.38,2388.09,9050.44,47.5,521.09,2388.11,8.4409,392,38.81,23.267 +38,83,0.0006,-0.0005,642.21,1584.46,1410.64,21.61,553.27,2388.11,9046.38,47.5,520.94,2388.12,8.4539,395,38.75,23.3345 +38,84,0.0008,-0.0002,642.67,1597.0,1408.25,21.61,553.49,2388.16,9055.6,47.48,521.02,2388.15,8.4147,393,38.84,23.2865 +38,85,-0.0014,-0.0002,642.99,1589.45,1405.64,21.61,553.07,2388.13,9054.8,47.42,521.5,2388.05,8.4305,395,38.69,23.2868 +38,86,0.0016,-0.0004,643.23,1584.84,1407.81,21.61,552.76,2388.1,9057.41,47.57,521.2,2388.1,8.4246,393,38.73,23.2219 +38,87,0.0012,-0.0004,643.01,1588.51,1412.47,21.61,553.45,2388.1,9052.04,47.48,521.67,2388.09,8.4228,392,38.93,23.4679 +38,88,-0.0005,0.0002,643.14,1594.67,1413.3,21.61,553.24,2388.13,9055.47,47.47,521.43,2388.09,8.4358,394,38.9,23.4242 +38,89,-0.0027,-0.0002,642.43,1589.96,1406.46,21.61,553.2,2388.12,9047.94,47.61,521.46,2388.11,8.4655,393,38.84,23.2803 +38,90,-0.0018,-0.0003,642.48,1589.25,1399.51,21.61,553.48,2388.13,9053.09,47.6,521.43,2388.08,8.417,393,38.65,23.2607 +38,91,0.0028,-0.0,642.19,1589.17,1411.22,21.61,553.5,2388.16,9045.49,47.57,521.75,2388.06,8.4449,394,38.92,23.3045 +38,92,0.0013,0.0,642.52,1592.64,1405.69,21.61,552.88,2388.09,9050.17,47.44,521.75,2388.08,8.4834,394,38.9,23.2929 +38,93,-0.0036,-0.0004,642.89,1591.07,1409.64,21.61,553.7,2388.09,9055.18,47.58,521.42,2388.14,8.444,393,38.86,23.3233 +38,94,0.0014,-0.0001,642.77,1586.61,1407.9,21.61,553.26,2388.09,9058.64,47.48,521.43,2388.16,8.4604,394,38.73,23.3036 +38,95,0.0023,-0.0001,642.9,1594.15,1411.2,21.61,552.59,2388.15,9048.54,47.58,521.23,2388.12,8.4576,393,38.8,23.3051 +38,96,0.0043,-0.0001,642.94,1588.48,1406.95,21.61,553.8,2388.09,9050.17,47.69,521.82,2388.11,8.4416,393,38.85,23.2399 +38,97,-0.0038,-0.0,642.51,1587.39,1403.5,21.61,553.25,2388.09,9058.95,47.52,521.07,2388.1,8.4496,393,38.62,23.2162 +38,98,-0.0016,0.0003,642.77,1591.31,1405.71,21.61,552.78,2388.14,9051.96,47.66,521.51,2388.12,8.4537,393,38.77,23.1696 +38,99,-0.0032,-0.0002,642.73,1597.89,1412.09,21.61,553.62,2388.13,9050.81,47.69,520.95,2388.11,8.4478,394,38.81,23.1952 +38,100,0.0006,-0.0004,642.91,1587.0,1412.3,21.61,553.61,2388.11,9052.84,47.63,520.79,2388.1,8.4179,393,38.87,23.2959 +38,101,0.0016,-0.0001,642.86,1596.66,1408.13,21.61,553.39,2388.07,9056.77,47.51,521.74,2388.15,8.5014,393,38.96,23.273 +38,102,0.0017,0.0002,642.61,1590.32,1408.52,21.61,553.38,2388.04,9057.72,47.49,521.81,2388.14,8.4131,394,38.68,23.3957 +38,103,-0.0015,0.0001,642.71,1594.07,1414.99,21.61,552.96,2388.11,9051.45,47.68,521.36,2388.13,8.4754,394,38.75,23.2851 +38,104,0.0011,0.0005,643.17,1583.23,1412.96,21.61,553.53,2388.18,9051.35,47.58,521.39,2388.14,8.4759,393,38.66,23.3439 +38,105,-0.0031,-0.0001,642.96,1592.03,1418.3,21.61,552.63,2388.14,9050.9,47.73,521.5,2388.1,8.4694,395,38.82,23.1592 +38,106,-0.0015,0.0003,642.17,1591.61,1402.58,21.61,553.44,2388.15,9065.48,47.52,520.76,2388.14,8.4322,395,38.9,23.2814 +38,107,-0.0011,0.0,643.22,1588.06,1418.64,21.61,553.9,2388.09,9058.94,47.6,521.55,2388.12,8.4236,394,38.96,23.2589 +38,108,0.0038,-0.0004,642.36,1590.23,1415.08,21.61,552.81,2388.15,9049.71,47.43,521.45,2388.11,8.4217,393,39.04,23.2318 +38,109,0.0005,-0.0001,642.82,1589.7,1410.0,21.61,552.91,2388.13,9060.74,47.45,521.31,2388.15,8.4575,393,38.88,23.3238 +38,110,-0.0013,-0.0,642.21,1592.95,1412.21,21.61,553.94,2388.1,9054.39,47.54,521.28,2388.07,8.4225,394,38.82,23.3953 +38,111,0.0072,-0.0002,643.14,1589.98,1409.05,21.61,553.83,2388.11,9060.58,47.65,520.93,2388.06,8.477,394,38.81,23.3629 +38,112,-0.0041,-0.0003,642.96,1595.07,1403.47,21.61,553.91,2388.0,9060.44,47.7,520.73,2388.13,8.4597,393,38.67,23.2571 +38,113,-0.0029,-0.0004,642.56,1591.98,1399.48,21.61,553.46,2388.11,9065.56,47.52,521.37,2388.15,8.4368,392,38.94,23.2581 +38,114,0.0037,0.0002,642.94,1592.81,1410.77,21.61,552.64,2388.07,9064.07,47.5,521.44,2388.14,8.4587,393,38.7,23.3256 +38,115,0.0024,0.0005,643.28,1582.88,1408.63,21.61,553.3,2388.13,9061.74,47.68,521.36,2388.12,8.4597,393,38.81,23.3281 +38,116,0.0013,0.0001,642.74,1584.78,1408.38,21.61,553.25,2388.12,9066.29,47.59,521.32,2388.07,8.4317,394,38.6,23.26 +38,117,0.0017,-0.0003,642.25,1592.93,1403.03,21.61,553.16,2388.08,9064.91,47.59,521.52,2388.1,8.4929,393,38.58,23.2607 +38,118,0.0008,-0.0001,642.26,1585.67,1421.01,21.61,553.09,2388.07,9056.48,47.54,520.83,2388.13,8.4514,393,38.76,23.1766 +38,119,-0.0001,0.0003,643.27,1585.15,1410.51,21.61,552.96,2388.06,9063.89,47.73,520.48,2388.09,8.4492,394,38.72,23.247 +38,120,-0.0012,0.0004,642.79,1595.13,1409.18,21.61,553.13,2388.05,9061.28,47.65,521.2,2388.14,8.4324,394,38.97,23.2083 +38,121,0.0007,-0.0004,643.19,1590.55,1411.28,21.61,553.36,2388.11,9062.95,47.61,520.92,2388.16,8.4777,393,38.82,23.2822 +38,122,-0.0004,0.0001,642.37,1587.66,1407.04,21.61,553.12,2388.1,9058.88,47.62,521.42,2388.14,8.4301,393,38.78,23.184 +38,123,0.0004,0.0001,642.6,1594.37,1418.21,21.61,553.03,2388.11,9063.18,47.61,521.27,2388.12,8.437,392,38.91,23.3147 +38,124,0.0029,-0.0003,642.56,1590.51,1409.86,21.61,553.45,2388.12,9061.42,47.55,520.62,2388.13,8.4648,394,38.74,23.3418 +38,125,-0.0005,-0.0004,642.82,1589.36,1408.79,21.61,553.53,2388.11,9062.92,47.53,521.34,2388.18,8.4326,393,38.79,23.3474 +38,126,0.0031,-0.0003,643.36,1598.07,1410.26,21.61,552.96,2388.09,9063.96,47.66,521.07,2388.13,8.4716,393,38.86,23.241 +38,127,-0.0,0.0001,642.64,1596.74,1412.05,21.61,553.01,2388.14,9072.52,47.51,521.64,2388.14,8.4477,395,38.87,23.21 +38,128,0.0018,-0.0005,643.06,1585.61,1412.8,21.61,553.75,2388.1,9063.04,47.73,521.09,2388.13,8.501,393,38.87,23.3607 +38,129,-0.0031,-0.0004,642.52,1592.15,1417.85,21.61,553.69,2388.14,9062.08,47.65,521.84,2388.07,8.4769,394,38.63,23.3353 +38,130,0.0007,-0.0001,642.51,1593.14,1408.32,21.61,552.74,2388.08,9066.51,47.62,520.91,2388.1,8.4658,394,38.67,23.223 +38,131,0.003,0.0003,643.24,1592.74,1414.99,21.61,553.19,2388.03,9073.05,47.67,521.18,2388.14,8.376,393,38.69,23.2411 +38,132,0.0005,0.0003,643.14,1597.58,1413.44,21.61,553.31,2388.12,9061.77,47.67,521.33,2388.09,8.4351,394,38.74,23.2767 +38,133,-0.0011,-0.0,642.88,1593.02,1418.87,21.61,553.12,2388.11,9068.07,47.55,520.83,2388.13,8.4723,394,38.74,23.317 +38,134,-0.0009,-0.0003,643.08,1587.14,1410.15,21.61,553.06,2388.09,9073.51,47.42,521.03,2388.11,8.4417,394,38.67,23.1283 +38,135,0.0026,-0.0005,643.07,1597.93,1409.71,21.61,552.76,2388.06,9070.14,47.54,520.83,2388.16,8.4442,393,38.5,23.2582 +38,136,0.0016,-0.0003,642.63,1596.09,1412.75,21.61,553.74,2388.09,9067.47,47.79,521.34,2388.16,8.4788,395,38.78,23.1958 +38,137,0.0016,0.0003,642.63,1595.19,1405.32,21.61,552.45,2388.13,9072.92,47.76,520.85,2388.11,8.4326,394,38.73,23.3127 +38,138,-0.0028,-0.0005,643.16,1586.84,1411.02,21.61,552.84,2388.19,9073.25,47.79,520.89,2388.07,8.471,396,38.66,23.3063 +38,139,-0.0009,-0.0,642.55,1594.27,1415.12,21.61,553.19,2388.11,9073.27,47.73,521.22,2388.14,8.4876,393,38.74,23.258 +38,140,0.0018,-0.0003,642.62,1587.43,1412.93,21.61,553.07,2388.11,9072.17,47.67,521.03,2388.15,8.4612,395,38.66,23.1983 +38,141,0.003,0.0004,643.28,1591.59,1407.34,21.61,553.18,2388.09,9065.46,47.69,521.22,2388.07,8.4582,394,38.56,23.1826 +38,142,-0.0004,-0.0004,643.16,1596.77,1416.99,21.61,552.43,2388.09,9070.89,47.49,520.5,2388.15,8.4575,394,38.64,23.2017 +38,143,-0.0013,-0.0003,642.5,1600.87,1421.51,21.61,552.02,2388.06,9071.38,47.72,521.29,2388.1,8.5339,394,38.67,23.1425 +38,144,0.0019,0.0003,642.75,1591.26,1411.79,21.61,553.38,2388.13,9087.03,47.64,520.94,2388.05,8.409,394,38.81,23.2951 +38,145,0.0036,-0.0005,643.36,1591.29,1412.79,21.61,552.78,2388.16,9081.27,47.85,520.97,2388.06,8.4581,396,38.56,23.1519 +38,146,0.0004,-0.0004,643.38,1600.91,1414.32,21.61,552.59,2388.14,9077.4,47.66,520.46,2388.09,8.4594,395,38.58,23.2027 +38,147,-0.0056,-0.0003,643.59,1604.7,1415.64,21.61,553.08,2388.06,9078.85,47.75,520.97,2388.11,8.4496,395,38.55,23.2296 +38,148,0.0014,0.0004,643.11,1598.43,1422.18,21.61,553.2,2388.09,9075.98,47.81,521.04,2388.12,8.4512,395,38.73,23.2717 +38,149,-0.0013,-0.0004,643.24,1592.16,1416.73,21.61,552.5,2388.1,9081.19,47.77,520.66,2388.06,8.4655,393,38.78,23.2089 +38,150,0.0022,0.0002,642.24,1600.0,1416.68,21.61,552.81,2388.1,9076.96,47.88,521.06,2388.1,8.4436,395,38.69,23.2033 +38,151,-0.0001,-0.0002,642.95,1594.61,1417.77,21.61,552.47,2388.1,9078.0,47.65,520.82,2388.12,8.4636,396,38.53,23.2487 +38,152,-0.0005,0.0002,642.84,1597.48,1420.25,21.61,552.17,2388.09,9081.12,47.8,520.61,2388.15,8.4824,395,38.7,23.2834 +38,153,0.0002,0.0001,642.84,1604.77,1418.01,21.61,552.75,2388.11,9079.53,47.62,520.49,2388.13,8.4716,394,38.76,23.1457 +38,154,-0.0003,0.0002,643.17,1589.94,1418.38,21.61,552.61,2388.11,9085.08,47.86,520.89,2388.12,8.4564,394,38.66,23.161 +38,155,-0.0036,0.0002,643.49,1596.46,1417.73,21.61,551.98,2388.12,9091.65,47.84,520.02,2388.12,8.4955,395,38.88,23.225 +38,156,0.0033,-0.0004,643.47,1603.73,1412.15,21.61,552.47,2388.09,9090.04,47.75,520.48,2388.11,8.4484,396,38.66,23.2177 +38,157,-0.0,0.0001,642.94,1592.51,1413.71,21.61,552.37,2388.12,9089.33,47.59,520.82,2388.12,8.4668,395,38.54,23.1024 +38,158,0.0004,-0.0004,643.0,1593.39,1419.62,21.61,553.63,2388.14,9088.02,47.84,520.7,2388.09,8.467,396,38.56,23.1527 +38,159,-0.0008,-0.0002,642.96,1594.29,1416.71,21.61,552.87,2388.08,9092.19,47.73,520.57,2388.08,8.4571,394,38.52,23.0857 +38,160,-0.0023,0.0,642.84,1586.99,1419.87,21.61,552.28,2388.1,9091.77,47.9,520.49,2388.14,8.4687,393,38.7,23.1869 +38,161,0.0019,-0.0,643.27,1604.36,1419.95,21.61,552.61,2388.08,9092.28,47.67,520.82,2388.1,8.443,394,38.48,23.2537 +38,162,0.0015,0.0002,643.42,1592.85,1415.36,21.61,552.41,2388.1,9097.62,47.84,520.36,2388.15,8.4816,395,38.67,23.217 +38,163,-0.0005,-0.0003,643.06,1591.02,1424.59,21.61,552.84,2388.15,9096.95,47.7,520.32,2388.08,8.4599,395,38.68,23.2453 +38,164,-0.0026,0.0003,643.07,1593.36,1419.41,21.61,553.32,2388.14,9093.04,47.73,520.97,2388.14,8.4802,395,38.61,23.1382 +38,165,-0.0021,-0.0004,643.2,1599.33,1412.85,21.61,552.49,2388.2,9097.67,47.83,520.85,2388.19,8.4999,395,38.69,23.1216 +38,166,-0.0041,-0.0003,643.76,1600.07,1416.44,21.61,552.86,2388.15,9103.63,47.81,520.4,2388.13,8.4959,394,38.75,23.1031 +38,167,0.0006,0.0001,643.09,1590.66,1419.83,21.61,552.77,2388.12,9100.11,47.89,519.91,2388.11,8.4796,394,38.8,23.1763 +38,168,0.0008,-0.0003,643.04,1593.17,1423.66,21.61,552.25,2388.13,9100.65,47.91,520.68,2388.14,8.4942,396,38.48,23.14 +38,169,-0.0028,-0.0004,642.93,1601.55,1419.62,21.61,552.63,2388.11,9110.4,47.83,520.43,2388.08,8.5071,395,38.57,23.0668 +38,170,0.0023,-0.0002,642.65,1604.55,1415.21,21.61,552.04,2388.17,9108.25,47.94,520.76,2388.09,8.5047,395,38.58,23.2694 +38,171,0.0038,0.0,643.45,1594.43,1422.14,21.61,552.76,2388.13,9100.84,47.82,520.92,2388.11,8.4793,395,38.72,23.1439 +38,172,-0.0006,-0.0005,643.02,1597.33,1424.64,21.61,552.24,2388.1,9107.26,47.91,521.09,2388.15,8.4902,394,38.62,23.0322 +38,173,-0.0003,-0.0003,643.22,1605.01,1418.63,21.61,552.21,2388.12,9107.88,47.99,521.04,2388.1,8.4761,396,38.59,23.1237 +38,174,0.0012,0.0002,643.24,1599.67,1430.24,21.61,551.96,2388.17,9114.33,48.08,521.19,2388.14,8.4668,397,38.59,23.0522 +38,175,0.0002,-0.0003,643.35,1592.64,1418.61,21.61,552.18,2388.15,9112.85,47.76,520.41,2388.15,8.4891,396,38.55,23.1113 +38,176,0.0001,-0.0,643.15,1597.64,1421.22,21.61,552.26,2388.14,9110.23,48.05,519.97,2388.15,8.5131,396,38.46,23.1801 +38,177,0.0007,-0.0003,643.35,1602.44,1423.77,21.61,552.47,2388.11,9123.54,47.88,521.1,2388.1,8.5014,396,38.76,23.0744 +38,178,-0.0004,0.0004,643.82,1600.23,1421.11,21.61,551.37,2388.15,9120.81,47.84,520.32,2388.15,8.5243,395,38.57,23.2017 +38,179,0.0039,0.0004,643.55,1594.33,1426.04,21.61,552.33,2388.21,9114.94,48.09,520.66,2388.18,8.5002,396,38.42,23.2328 +38,180,0.0013,0.0003,643.4,1594.51,1425.28,21.61,551.06,2388.11,9126.3,47.82,520.51,2388.16,8.4679,395,38.74,23.1098 +38,181,0.0,-0.0004,643.57,1591.28,1416.64,21.61,551.84,2388.15,9126.0,47.93,520.86,2388.14,8.5004,395,38.56,23.1342 +38,182,0.0013,-0.0,643.56,1603.5,1422.16,21.61,552.46,2388.13,9129.92,48.01,520.7,2388.18,8.5204,394,38.56,23.1349 +38,183,-0.0016,-0.0002,642.83,1590.86,1420.58,21.61,551.81,2388.17,9132.15,47.87,520.28,2388.2,8.517,394,38.49,23.1141 +38,184,-0.0017,0.0002,642.96,1597.06,1423.57,21.61,551.89,2388.08,9133.05,47.94,520.61,2388.18,8.4795,396,38.46,23.0831 +38,185,-0.0015,-0.0,643.58,1598.91,1429.47,21.61,551.37,2388.18,9139.16,48.04,520.76,2388.14,8.5422,397,38.36,23.0453 +38,186,-0.0031,-0.0002,643.58,1597.97,1425.29,21.61,551.75,2388.14,9134.14,47.88,520.39,2388.16,8.474,396,38.56,23.1217 +38,187,0.0005,0.0001,643.52,1606.12,1432.11,21.61,552.39,2388.18,9134.76,48.14,519.91,2388.18,8.481,397,38.66,23.0874 +38,188,-0.0005,-0.0003,643.33,1598.92,1425.12,21.61,551.75,2388.12,9141.02,47.99,519.77,2388.19,8.5051,396,38.67,23.052 +38,189,0.0047,0.0001,643.92,1602.98,1429.18,21.61,551.55,2388.18,9147.53,48.11,520.44,2388.14,8.5033,396,38.49,23.0723 +38,190,0.0015,0.0002,643.97,1601.42,1435.51,21.61,551.08,2388.19,9146.3,48.12,519.92,2388.22,8.5201,396,38.4,23.0671 +38,191,0.0007,-0.0004,643.13,1604.78,1428.62,21.61,552.75,2388.11,9150.36,47.97,519.2,2388.19,8.5265,395,38.48,23.0973 +38,192,0.0014,0.0002,643.65,1602.43,1430.7,21.61,551.56,2388.17,9150.13,48.08,519.17,2388.19,8.542,398,38.5,23.0961 +38,193,0.0032,-0.0004,643.45,1604.46,1429.92,21.61,551.5,2388.21,9157.23,47.98,519.79,2388.16,8.5484,397,38.53,22.9884 +38,194,-0.0017,0.0004,643.95,1606.9,1426.16,21.61,551.67,2388.26,9156.77,48.52,520.07,2388.16,8.5574,397,38.35,23.001 +41,10,-0.0003,0.0005,641.93,1586.49,1391.09,21.61,554.88,2388.01,9064.75,47.17,522.55,2388.02,8.4026,392,38.96,23.4328 +41,11,-0.0007,-0.0004,642.08,1581.89,1395.51,21.6,554.13,2388.02,9058.42,47.33,522.34,2388.0,8.4099,392,39.04,23.3279 +41,12,0.0026,0.0004,642.52,1580.81,1397.28,21.61,554.85,2388.04,9061.76,47.3,522.35,2388.02,8.3841,391,38.9,23.3475 +41,13,-0.0042,0.0002,642.49,1585.24,1398.72,21.61,554.66,2388.01,9063.05,47.25,522.28,2387.98,8.387,391,38.93,23.3529 +41,14,-0.0016,0.0002,642.69,1585.0,1402.3,21.61,554.24,2388.07,9062.88,47.18,522.17,2388.06,8.3834,392,39.06,23.3631 +41,15,0.0056,0.0004,642.1,1584.93,1393.25,21.61,554.62,2388.0,9061.26,47.24,522.37,2387.98,8.4384,392,38.83,23.4242 +41,16,0.0032,0.0005,642.68,1583.94,1405.22,21.6,553.92,2388.02,9067.72,47.26,521.67,2387.98,8.4058,393,39.09,23.3661 +41,17,-0.0008,-0.0003,642.23,1591.01,1406.69,21.6,554.62,2387.98,9059.67,47.23,522.1,2388.07,8.415,392,39.12,23.3098 +41,18,0.0042,-0.0004,641.96,1584.48,1398.87,21.61,553.94,2388.04,9068.2,47.27,522.54,2387.98,8.4417,390,38.98,23.4416 +41,19,0.0017,0.0003,641.75,1584.57,1396.24,21.61,554.19,2387.97,9060.53,47.38,522.58,2387.99,8.3845,393,38.92,23.3302 +41,20,0.0003,0.0005,641.94,1588.72,1400.14,21.61,554.16,2388.05,9061.15,47.26,522.02,2388.08,8.412,392,38.96,23.4141 +41,21,0.0006,-0.0003,642.12,1587.0,1395.03,21.6,554.32,2388.01,9059.48,47.37,522.56,2388.0,8.4302,393,38.92,23.3716 +41,22,-0.0029,0.0001,641.57,1583.3,1401.3,21.61,553.75,2388.03,9066.42,47.31,521.86,2388.07,8.3875,391,39.15,23.4643 +41,23,0.0011,-0.0001,642.65,1588.16,1399.07,21.61,554.49,2388.01,9071.6,47.35,522.36,2388.06,8.3807,392,39.07,23.4666 +41,24,-0.0011,-0.0004,642.47,1581.81,1391.27,21.61,554.0,2388.03,9065.11,47.34,521.75,2387.98,8.3903,392,38.96,23.4438 +41,25,0.0015,-0.0001,641.98,1582.24,1396.86,21.61,553.36,2388.07,9060.33,47.25,521.28,2388.01,8.3946,394,38.92,23.4964 +41,26,-0.0003,0.0004,642.28,1579.99,1396.47,21.61,554.32,2388.05,9064.07,47.23,521.81,2388.0,8.3843,392,39.1,23.4039 +41,27,-0.0023,-0.0001,642.58,1584.5,1404.92,21.61,554.25,2387.95,9066.1,47.32,522.37,2388.02,8.396,392,38.81,23.3427 +41,28,0.0,0.0002,642.04,1582.13,1405.05,21.61,554.41,2388.05,9059.97,47.3,522.13,2388.03,8.4107,391,38.99,23.3916 +41,29,0.0023,-0.0003,642.15,1584.24,1402.21,21.61,554.49,2388.04,9072.69,47.2,522.16,2388.01,8.4184,392,39.03,23.4006 +41,30,0.0014,-0.0001,642.04,1585.09,1399.26,21.61,553.94,2388.0,9063.19,47.29,522.26,2387.99,8.3857,392,39.02,23.363 +41,31,0.0027,-0.0004,642.15,1586.98,1402.33,21.61,554.12,2388.01,9060.51,47.12,521.73,2388.02,8.3943,393,38.99,23.476 +41,32,0.0004,0.0,641.95,1582.23,1401.77,21.61,554.03,2388.01,9065.86,47.38,521.99,2388.01,8.4214,393,38.93,23.2778 +41,33,-0.0028,0.0002,642.38,1581.22,1400.33,21.61,554.43,2388.02,9066.31,47.23,522.09,2388.02,8.3938,393,39.05,23.2761 +41,34,-0.0004,-0.0002,642.04,1585.91,1399.54,21.61,554.58,2388.03,9055.66,47.28,522.07,2387.97,8.4406,395,39.03,23.3824 +41,35,0.002,0.0005,642.34,1584.76,1399.08,21.6,553.83,2388.01,9063.45,47.26,522.61,2387.94,8.4345,393,39.05,23.3314 +41,36,0.0007,0.0005,642.04,1586.15,1392.32,21.61,554.08,2388.02,9070.39,47.32,522.49,2388.05,8.4117,394,38.89,23.4742 +41,37,0.0024,0.0001,642.24,1581.95,1393.5,21.61,554.79,2388.07,9056.15,47.21,522.52,2387.99,8.446,390,39.04,23.3135 +41,38,0.0046,-0.0002,642.2,1591.46,1399.35,21.61,554.42,2388.02,9057.45,47.29,522.31,2388.05,8.4073,391,38.92,23.3953 +41,39,0.0024,0.0003,642.23,1583.6,1400.98,21.61,553.95,2387.98,9061.77,47.39,522.08,2387.99,8.3953,392,39.02,23.4833 +41,40,0.0045,0.0005,642.64,1580.17,1403.14,21.6,554.22,2388.03,9065.44,47.16,522.31,2388.0,8.4046,393,39.1,23.3544 +41,41,0.0007,0.0004,641.85,1582.34,1402.59,21.61,554.95,2388.03,9064.13,47.39,522.44,2387.99,8.4065,392,38.95,23.4668 +41,42,-0.0021,0.0,641.81,1588.33,1391.1,21.61,554.42,2388.08,9061.63,47.15,522.05,2388.03,8.4031,393,39.01,23.2587 +41,43,-0.0014,-0.0003,642.07,1577.23,1393.64,21.61,554.4,2387.96,9061.57,47.39,522.22,2387.98,8.4001,392,38.95,23.3855 +41,44,-0.0027,-0.0004,641.65,1585.47,1394.68,21.61,554.62,2387.98,9060.9,47.33,522.32,2388.02,8.3957,390,38.91,23.3669 +41,45,0.0016,0.0002,641.97,1582.37,1400.23,21.61,554.08,2388.0,9072.14,47.27,522.54,2388.05,8.3904,390,38.91,23.4365 +41,46,0.0015,0.0002,641.99,1591.46,1400.64,21.61,554.68,2388.02,9062.52,47.28,521.77,2387.99,8.4201,390,38.95,23.4101 +41,47,0.001,0.0005,642.37,1585.87,1399.9,21.61,553.34,2388.01,9064.71,47.01,522.27,2388.04,8.4311,391,39.08,23.4619 +41,48,0.0013,0.0003,642.47,1585.33,1398.75,21.61,554.23,2388.05,9066.26,47.29,522.1,2388.0,8.3789,394,39.04,23.2837 +41,49,0.0005,0.0005,642.86,1588.91,1410.01,21.61,554.1,2388.02,9065.53,47.22,522.32,2388.04,8.4205,391,38.85,23.3819 +41,50,0.0046,-0.0,642.33,1577.37,1398.79,21.61,554.09,2388.02,9066.14,47.39,522.09,2388.03,8.4352,391,38.93,23.3785 +41,51,0.0011,-0.0002,642.37,1584.74,1406.36,21.61,554.2,2387.98,9063.36,47.26,522.78,2388.0,8.4198,392,38.92,23.3366 +41,52,-0.0028,-0.0001,641.94,1586.37,1400.62,21.61,554.0,2388.09,9060.8,47.0,522.07,2387.98,8.4082,392,39.02,23.3932 +41,53,-0.0039,-0.0002,642.87,1587.74,1399.86,21.61,553.68,2388.05,9061.14,47.3,522.14,2388.03,8.4034,392,39.02,23.4442 +41,54,-0.0024,0.0005,642.52,1586.43,1390.39,21.61,554.46,2387.99,9070.34,47.37,522.4,2387.97,8.41,393,38.92,23.4417 +41,55,-0.0021,0.0001,642.07,1584.27,1397.37,21.61,553.97,2388.04,9063.69,47.52,522.17,2388.03,8.3982,392,38.99,23.4015 +41,56,0.0007,0.0005,642.37,1593.66,1392.76,21.61,554.37,2388.04,9067.6,47.18,522.26,2388.01,8.3742,391,38.88,23.306 +41,57,0.0008,-0.0004,643.02,1591.66,1398.37,21.61,554.49,2387.98,9068.75,47.45,522.26,2388.02,8.4069,392,39.1,23.4089 +41,58,0.0015,-0.0004,642.04,1583.3,1402.08,21.61,553.26,2387.99,9063.47,47.35,521.85,2388.0,8.4161,393,38.91,23.3008 +41,59,0.0024,0.0001,642.13,1585.0,1398.72,21.61,554.46,2388.0,9072.67,47.18,522.11,2388.05,8.3847,392,38.98,23.3135 +41,60,-0.0019,-0.0001,642.01,1587.08,1395.29,21.61,553.97,2388.02,9065.32,47.34,521.65,2388.05,8.4135,391,38.96,23.319 +41,61,-0.0026,0.0004,642.13,1576.83,1403.8,21.61,553.48,2387.98,9066.21,47.26,521.96,2387.94,8.4253,392,38.94,23.4705 +41,62,-0.0001,0.0,642.28,1585.19,1398.85,21.61,554.1,2387.99,9067.95,47.19,522.0,2388.03,8.4138,393,38.91,23.3669 +41,63,-0.0023,-0.0004,642.79,1583.41,1400.66,21.61,554.37,2388.03,9061.4,47.38,521.91,2388.02,8.3983,392,38.95,23.3178 +41,64,0.0027,0.0005,642.27,1583.89,1399.08,21.61,553.91,2388.01,9066.63,47.47,522.13,2388.01,8.4355,393,38.87,23.3468 +41,65,-0.0012,0.0002,642.03,1587.47,1397.3,21.61,553.17,2388.01,9062.41,47.3,522.0,2388.07,8.3904,393,39.12,23.4441 +41,66,-0.0024,-0.0002,642.12,1587.24,1396.98,21.61,554.87,2388.02,9076.33,47.3,521.97,2388.01,8.4173,393,38.94,23.3509 +41,67,0.0023,0.0001,642.57,1592.68,1397.86,21.61,553.77,2388.03,9070.2,47.29,522.31,2388.02,8.4081,394,39.07,23.4797 +41,68,-0.0045,-0.0001,642.38,1594.09,1415.21,21.61,553.81,2388.06,9071.07,47.32,522.35,2388.0,8.3892,391,38.99,23.3345 +41,69,0.0015,-0.0003,642.51,1578.47,1406.24,21.61,554.24,2388.05,9069.43,47.36,522.83,2388.02,8.4118,392,38.88,23.4061 +41,70,-0.0013,0.0,641.91,1589.73,1400.06,21.61,554.15,2388.03,9069.31,47.26,521.88,2388.03,8.4209,391,38.83,23.3617 +41,71,0.0003,-0.0001,642.21,1583.86,1404.21,21.61,554.49,2387.98,9074.95,47.29,522.42,2388.01,8.3769,392,38.97,23.3813 +41,72,0.0039,0.0002,642.31,1586.55,1400.07,21.61,554.72,2388.02,9068.75,47.37,522.35,2388.0,8.391,391,39.03,23.3448 +41,73,-0.0009,-0.0001,643.0,1581.44,1398.11,21.61,554.15,2388.1,9071.75,47.21,522.19,2388.05,8.4007,393,38.95,23.3807 +41,74,-0.0043,0.0002,642.54,1588.95,1399.17,21.61,553.51,2388.06,9064.95,47.15,521.56,2387.99,8.4423,392,39.01,23.4185 +41,75,-0.0009,0.0003,641.97,1596.15,1408.89,21.61,553.59,2388.02,9056.22,47.1,521.38,2388.04,8.4232,391,38.77,23.3613 +41,76,0.002,0.0005,642.6,1583.46,1401.28,21.61,554.93,2388.08,9067.56,47.34,521.98,2388.06,8.4241,392,39.11,23.3172 +41,77,0.0011,-0.0001,642.21,1581.49,1401.89,21.61,554.65,2388.01,9067.59,47.39,522.4,2388.05,8.4489,392,39.05,23.3856 +41,78,-0.0003,-0.0,641.94,1589.77,1398.42,21.61,553.9,2388.06,9064.74,47.1,522.8,2388.02,8.4334,391,38.88,23.4167 +41,79,0.0016,-0.0002,642.75,1585.32,1404.53,21.61,554.39,2388.02,9073.28,47.17,522.07,2388.05,8.3993,392,38.86,23.2632 +41,80,-0.0007,0.0005,642.25,1574.75,1404.14,21.61,553.87,2388.03,9066.76,47.34,522.1,2388.0,8.4419,393,38.81,23.409 +41,81,-0.0,0.0,641.47,1584.14,1399.08,21.61,554.04,2388.05,9065.52,47.45,521.8,2388.04,8.3943,392,38.96,23.5181 +41,82,0.0003,0.0001,642.13,1594.1,1403.61,21.61,554.52,2388.02,9064.11,47.29,522.49,2388.05,8.4334,392,38.95,23.3764 +41,83,0.0004,-0.0004,642.43,1588.62,1404.47,21.61,553.65,2388.03,9070.12,47.36,522.37,2388.05,8.4402,393,38.94,23.5444 +41,84,-0.001,0.0001,643.14,1582.52,1390.03,21.61,554.02,2388.02,9068.44,47.44,522.52,2388.04,8.3984,390,38.96,23.3158 +41,85,-0.0018,0.0004,642.14,1587.45,1405.65,21.61,554.17,2388.04,9069.46,47.4,521.98,2388.0,8.4264,392,39.1,23.3126 +41,86,0.0013,-0.0003,642.01,1591.37,1398.48,21.61,554.57,2388.01,9060.09,47.48,522.5,2388.04,8.4142,392,38.76,23.4508 +41,87,0.0032,0.0002,642.76,1585.28,1403.97,21.6,554.18,2388.03,9063.66,47.21,522.26,2387.97,8.3983,392,38.82,23.4371 +41,88,-0.0003,-0.0001,642.34,1583.29,1398.25,21.61,554.29,2388.0,9072.97,47.26,522.15,2388.04,8.3781,393,39.14,23.3553 +41,89,0.0037,0.0004,641.91,1585.96,1403.46,21.61,554.65,2387.98,9066.45,47.39,522.64,2388.02,8.4384,393,38.96,23.3483 +41,90,-0.0019,0.0001,642.18,1593.36,1403.89,21.61,554.37,2388.01,9077.09,47.38,522.09,2387.98,8.3937,391,38.95,23.2136 +41,91,-0.0016,-0.0004,642.92,1580.98,1400.1,21.61,554.06,2388.04,9068.85,47.36,522.28,2388.01,8.4333,391,39.03,23.3007 +41,92,0.0007,-0.0001,642.52,1585.5,1391.57,21.61,553.73,2388.01,9071.92,47.42,522.09,2388.06,8.3621,392,38.92,23.3262 +41,93,-0.0029,0.0004,641.9,1592.2,1402.3,21.61,554.44,2388.08,9071.42,47.21,521.75,2388.02,8.4452,393,38.95,23.3024 +41,94,0.0017,0.0005,641.86,1581.17,1399.7,21.61,554.23,2388.02,9066.07,47.18,521.71,2388.04,8.4404,393,39.1,23.3619 +41,95,0.0014,0.0,642.23,1581.02,1406.45,21.61,554.2,2388.04,9061.5,47.18,521.87,2388.07,8.433,393,38.97,23.2193 +41,96,-0.0031,0.0005,642.61,1584.33,1402.66,21.61,553.99,2388.01,9068.1,47.26,521.85,2388.02,8.4442,392,38.89,23.2864 +41,97,-0.0015,0.0001,642.59,1590.74,1403.21,21.61,553.69,2388.01,9067.26,47.37,521.76,2387.99,8.4439,392,38.91,23.3741 +41,98,0.003,0.0004,642.44,1584.77,1401.43,21.61,553.95,2388.02,9063.64,47.35,521.71,2388.06,8.4289,391,38.99,23.2899 +41,99,0.0006,-0.0004,642.24,1585.08,1398.2,21.61,554.44,2387.93,9063.83,47.19,522.04,2388.05,8.4307,393,38.82,23.3179 +41,100,0.0017,0.0005,642.87,1597.59,1406.99,21.61,554.07,2388.1,9066.47,47.38,522.15,2388.01,8.4156,392,38.92,23.2304 +41,101,-0.0012,-0.0004,643.08,1588.91,1404.61,21.61,554.33,2388.03,9077.0,47.38,522.05,2388.09,8.3978,391,38.99,23.3855 +41,102,0.0005,-0.0002,643.02,1583.21,1407.7,21.61,553.9,2388.03,9074.5,47.33,522.07,2388.08,8.4159,393,38.97,23.3209 +41,103,0.0023,-0.0004,642.07,1585.52,1406.22,21.61,554.27,2388.04,9078.05,47.31,522.41,2388.07,8.406,395,38.85,23.3706 +41,104,-0.0007,-0.0001,642.25,1588.69,1406.73,21.61,554.41,2388.01,9069.15,47.3,522.17,2387.97,8.4196,391,39.05,23.4737 +41,105,0.0002,0.0003,642.3,1586.0,1412.53,21.61,553.99,2388.02,9067.48,47.34,522.06,2388.06,8.4046,392,38.87,23.2925 +41,106,0.0001,0.0003,642.33,1587.36,1405.95,21.61,554.79,2388.04,9060.86,47.22,522.28,2388.04,8.4462,391,38.67,23.2898 +41,107,0.0036,-0.0,642.4,1585.43,1406.36,21.61,553.75,2388.03,9079.72,47.34,521.93,2388.03,8.4006,392,38.91,23.4421 +41,108,0.0021,0.0001,642.38,1586.82,1405.84,21.61,553.43,2388.04,9068.81,47.54,522.24,2388.0,8.3985,392,39.06,23.2663 +41,109,-0.0014,-0.0003,642.63,1585.81,1395.54,21.61,554.13,2388.09,9075.54,47.56,522.13,2388.07,8.4272,393,38.89,23.4292 +41,110,-0.0005,0.0001,642.09,1589.77,1406.41,21.61,554.32,2388.01,9071.53,47.26,521.91,2388.02,8.4123,393,38.94,23.2614 +41,111,-0.0022,0.0004,642.09,1585.93,1401.59,21.61,554.63,2388.04,9076.62,47.43,522.45,2388.08,8.3999,392,38.93,23.4159 +41,112,0.0,-0.0004,642.07,1585.89,1395.67,21.6,553.61,2388.04,9072.16,47.49,522.02,2388.03,8.4235,393,38.98,23.2328 +41,113,0.0003,-0.0001,642.39,1589.31,1405.26,21.61,554.04,2388.02,9076.44,47.57,521.36,2388.1,8.413,391,38.83,23.3436 +41,114,-0.0001,0.0002,642.44,1587.88,1393.8,21.61,553.62,2388.05,9071.54,47.49,522.52,2388.05,8.3872,393,38.86,23.2953 +41,115,-0.0,-0.0001,642.72,1582.15,1402.18,21.61,554.36,2388.02,9079.56,47.21,521.96,2388.01,8.4436,390,39.01,23.3328 +41,116,-0.001,-0.0003,642.19,1591.14,1403.87,21.61,554.7,2388.07,9064.39,47.43,521.68,2388.01,8.3949,394,38.89,23.3805 +41,117,-0.0008,-0.0004,642.25,1584.14,1404.49,21.61,554.25,2388.0,9069.65,47.3,521.64,2388.09,8.4102,393,39.01,23.3369 +41,118,-0.002,0.0001,642.78,1584.74,1407.69,21.61,553.55,2388.07,9077.08,47.17,521.93,2388.05,8.401,394,38.91,23.2631 +41,119,0.0009,0.0004,642.71,1586.06,1398.44,21.61,554.6,2388.06,9072.6,47.38,522.21,2388.07,8.4475,393,38.8,23.3927 +41,120,-0.0021,0.0005,642.36,1585.47,1412.08,21.61,554.97,2388.04,9078.11,47.4,522.17,2388.01,8.443,393,39.0,23.4454 +41,121,0.0006,-0.0,642.68,1583.15,1400.21,21.61,554.0,2388.0,9079.49,47.3,522.04,2388.07,8.4181,394,38.62,23.3317 +41,122,-0.0005,-0.0001,642.52,1591.09,1408.33,21.61,554.06,2387.97,9075.12,47.51,522.16,2388.0,8.4154,392,38.78,23.3482 +41,123,-0.0034,-0.0,642.96,1583.8,1403.33,21.61,553.87,2388.06,9076.81,47.5,521.87,2388.02,8.4435,394,38.77,23.3781 +41,124,-0.0001,0.0002,642.3,1595.06,1406.41,21.61,553.99,2388.03,9074.25,47.42,521.76,2388.07,8.429,393,38.8,23.2778 +41,125,0.0017,-0.0,642.68,1584.56,1405.34,21.61,554.46,2388.05,9077.11,47.57,521.91,2387.99,8.4237,394,38.89,23.3177 +41,126,0.0018,0.0001,642.5,1583.8,1401.41,21.61,553.65,2388.0,9076.65,47.46,522.28,2388.09,8.4177,393,38.72,23.3559 +41,127,0.002,-0.0002,642.73,1582.78,1402.07,21.61,553.74,2388.05,9075.7,47.29,521.56,2388.04,8.4505,393,38.85,23.3532 +41,128,0.0022,-0.0002,642.9,1590.67,1411.28,21.61,553.76,2388.03,9080.13,47.38,521.28,2387.98,8.4487,393,38.96,23.3155 +41,129,-0.0009,0.0005,642.26,1586.66,1406.71,21.61,553.63,2387.99,9078.53,47.19,521.44,2388.05,8.4127,394,38.91,23.4011 +41,130,0.0,-0.0004,642.8,1589.53,1404.81,21.61,553.84,2388.06,9082.71,47.56,522.0,2388.07,8.4413,392,39.01,23.3835 +41,131,0.0015,0.0004,642.19,1585.34,1403.7,21.61,553.43,2388.04,9076.0,47.23,521.31,2388.07,8.4311,395,39.01,23.3803 +41,132,-0.0034,-0.0002,642.83,1593.33,1405.44,21.61,553.62,2388.03,9083.74,47.51,520.44,2388.08,8.426,391,38.74,23.3853 +41,133,-0.0008,-0.0,642.42,1580.2,1409.9,21.61,553.59,2388.02,9078.08,47.25,521.61,2388.07,8.4277,393,38.81,23.3346 +41,134,-0.0012,0.0,642.17,1590.65,1404.59,21.61,553.8,2387.98,9076.82,47.4,521.78,2388.05,8.4201,392,39.01,23.3459 +41,135,0.0015,-0.0002,642.88,1592.81,1405.24,21.61,553.28,2388.08,9078.26,47.48,521.5,2388.06,8.4413,393,39.04,23.3521 +41,136,0.0012,-0.0002,642.39,1592.89,1410.61,21.61,553.12,2388.06,9076.97,47.15,521.58,2388.05,8.4304,393,38.85,23.3768 +41,137,-0.0016,0.0003,642.32,1590.52,1400.78,21.61,553.71,2388.05,9077.09,47.44,522.26,2388.08,8.4339,392,38.86,23.3819 +41,138,-0.0034,0.0002,642.54,1587.16,1405.0,21.61,553.75,2388.07,9068.36,47.35,521.55,2388.04,8.4298,393,38.88,23.2919 +41,139,0.0003,-0.0004,642.78,1592.59,1400.2,21.61,553.15,2388.05,9085.07,47.39,521.84,2388.05,8.4223,392,38.79,23.2241 +41,140,0.0011,0.0004,642.64,1586.41,1405.88,21.61,553.16,2388.01,9075.39,47.43,521.11,2388.09,8.4166,395,38.88,23.2367 +41,141,-0.0008,-0.0003,643.2,1583.27,1401.32,21.61,554.29,2388.1,9085.21,47.36,521.79,2387.98,8.4414,392,38.99,23.2998 +41,142,0.0013,-0.0002,642.61,1586.44,1407.36,21.61,553.58,2388.02,9081.65,47.59,521.53,2388.07,8.4054,394,38.95,23.3494 +41,143,0.002,0.0001,642.69,1593.62,1407.71,21.61,554.41,2388.05,9076.53,47.42,521.73,2388.02,8.4281,393,38.84,23.3023 +41,144,0.0006,-0.0002,642.89,1583.18,1399.27,21.61,553.43,2388.09,9082.84,47.34,522.15,2387.99,8.4198,393,38.75,23.3732 +41,145,0.0006,0.0002,642.57,1586.68,1407.37,21.61,553.1,2388.06,9082.47,47.49,521.21,2388.03,8.4478,393,38.92,23.3038 +41,146,0.0003,-0.0003,642.65,1585.78,1408.99,21.61,553.63,2388.06,9086.48,47.66,521.19,2388.08,8.4293,391,38.79,23.28 +41,147,0.0017,-0.0001,642.25,1593.33,1407.71,21.61,553.04,2388.05,9079.35,47.37,521.49,2388.11,8.4261,395,38.74,23.2972 +41,148,0.0023,-0.0003,642.86,1588.61,1409.34,21.61,553.35,2388.05,9082.35,47.43,521.83,2388.06,8.4772,393,38.86,23.2589 +41,149,0.0021,-0.0002,642.91,1591.03,1409.11,21.61,553.48,2388.06,9085.54,47.45,521.23,2387.97,8.4625,393,38.84,23.345 +41,150,-0.0018,0.0001,642.92,1595.44,1410.32,21.61,553.13,2388.1,9081.9,47.7,521.25,2388.04,8.4524,393,38.79,23.2779 +41,151,-0.0039,0.0003,642.02,1592.7,1413.37,21.61,553.74,2388.06,9086.61,47.3,521.31,2388.04,8.4453,392,38.78,23.3812 +41,152,0.0033,-0.0002,642.91,1593.76,1407.4,21.61,553.82,2388.09,9084.84,47.58,521.3,2388.09,8.4383,393,38.84,23.3251 +41,153,0.0015,0.0005,642.88,1590.68,1408.85,21.61,552.94,2388.1,9082.19,47.45,520.89,2388.08,8.4174,394,38.9,23.2922 +41,154,-0.0022,-0.0004,643.0,1585.28,1404.21,21.61,553.67,2388.03,9085.17,47.59,521.43,2388.05,8.4653,393,38.89,23.3182 +41,155,0.0015,-0.0001,642.09,1594.44,1413.32,21.61,553.78,2388.09,9087.29,47.5,521.93,2388.07,8.4401,392,38.85,23.1918 +41,156,-0.0012,-0.0001,642.76,1592.1,1403.18,21.61,554.19,2388.1,9088.67,47.74,522.3,2388.06,8.4597,395,38.98,23.2808 +41,157,0.0024,-0.0004,642.59,1597.51,1408.85,21.61,553.67,2388.01,9094.33,47.7,521.49,2388.08,8.4252,392,38.91,23.2811 +41,158,-0.0038,0.0002,642.32,1592.73,1413.18,21.61,553.81,2388.08,9082.98,47.55,521.3,2388.12,8.4456,393,38.75,23.2287 +41,159,-0.0,-0.0003,642.61,1593.13,1409.84,21.61,553.29,2388.02,9082.55,47.49,521.35,2388.06,8.4682,394,38.81,23.2689 +41,160,-0.0038,-0.0002,642.72,1595.89,1409.44,21.61,553.63,2388.07,9093.64,47.86,521.47,2388.05,8.4334,393,38.9,23.2451 +41,161,0.0018,-0.0002,642.41,1589.33,1407.25,21.61,553.36,2388.09,9087.74,47.58,521.02,2388.07,8.4697,392,38.71,23.2267 +41,162,-0.0023,-0.0002,643.2,1598.11,1410.54,21.61,553.86,2388.09,9089.97,47.65,521.83,2388.09,8.4517,393,38.81,23.224 +41,163,-0.0026,-0.0002,642.37,1598.88,1409.36,21.61,553.9,2388.02,9092.77,47.61,520.85,2388.03,8.4683,394,38.88,23.3096 +41,164,0.0034,0.0003,642.47,1596.59,1413.97,21.61,553.14,2388.02,9085.32,47.65,520.98,2388.07,8.4409,393,38.88,23.2296 +41,165,0.0006,-0.0002,642.64,1586.58,1409.72,21.61,553.3,2388.14,9091.95,47.47,520.98,2388.07,8.4256,395,38.76,23.3594 +41,166,-0.0013,0.0005,643.26,1590.1,1408.81,21.61,553.32,2388.06,9095.88,47.41,520.93,2388.11,8.4811,393,38.95,23.3031 +41,167,0.002,0.0001,642.65,1589.84,1411.28,21.61,552.83,2388.06,9098.71,47.47,520.77,2388.1,8.4152,393,38.81,23.2936 +41,168,0.0002,0.0002,643.26,1597.34,1413.42,21.61,553.05,2388.08,9099.19,47.67,521.38,2388.09,8.4293,395,38.73,23.1988 +41,169,0.0013,0.0004,642.96,1594.28,1412.46,21.61,553.72,2388.09,9098.67,47.51,521.19,2388.07,8.4957,394,38.75,23.2162 +41,170,0.0024,0.0,643.11,1589.34,1407.76,21.61,552.67,2388.09,9095.28,47.78,521.47,2388.01,8.4045,393,38.76,23.2066 +41,171,-0.0007,0.0001,643.12,1591.17,1405.76,21.61,553.4,2388.02,9105.49,47.48,521.33,2388.1,8.4522,393,38.9,23.3059 +41,172,0.0039,0.0001,642.27,1594.37,1415.16,21.61,552.65,2388.11,9094.36,47.74,521.36,2388.1,8.4662,393,38.72,23.2645 +41,173,0.0039,0.0004,642.79,1586.63,1413.04,21.61,552.99,2388.08,9102.72,47.54,521.71,2388.06,8.44,394,38.65,23.3386 +41,174,-0.0038,0.0004,642.95,1585.76,1410.72,21.61,553.0,2388.07,9096.16,47.7,521.12,2388.05,8.4599,395,38.56,23.1265 +41,175,-0.0003,0.0002,642.59,1595.91,1416.94,21.61,552.66,2388.04,9104.67,47.6,521.52,2388.02,8.4868,394,38.61,23.2915 +41,176,-0.0037,-0.0,642.89,1589.53,1408.97,21.61,553.7,2388.11,9095.6,47.71,520.7,2388.09,8.4426,393,38.72,23.1792 +41,177,-0.0026,0.0004,643.14,1590.16,1414.19,21.61,553.38,2388.07,9095.05,47.72,520.6,2388.08,8.4863,392,38.75,23.2574 +41,178,0.0014,-0.0004,642.88,1587.66,1410.69,21.61,552.81,2388.08,9098.14,47.78,521.41,2388.11,8.4457,395,38.89,23.265 +41,179,-0.0023,-0.0001,643.16,1590.5,1416.75,21.61,553.16,2388.1,9099.9,47.49,521.74,2388.06,8.4918,394,38.72,23.2674 +41,180,-0.0036,0.0003,642.64,1595.51,1411.95,21.61,553.64,2388.14,9100.24,47.82,521.91,2388.08,8.4719,395,38.77,23.2302 +41,181,0.0004,0.0002,642.71,1597.78,1417.32,21.61,553.35,2388.08,9099.51,47.55,521.12,2388.07,8.4465,396,38.65,23.2573 +41,182,-0.0043,0.0002,642.99,1598.58,1413.15,21.61,553.84,2388.11,9099.43,47.77,520.3,2388.11,8.4514,394,38.71,23.2068 +41,183,-0.0008,0.0004,643.03,1591.14,1409.14,21.61,552.89,2388.08,9098.74,47.74,521.32,2388.09,8.4696,394,38.84,23.2241 +41,184,0.0012,0.0002,643.24,1601.58,1414.72,21.61,552.92,2388.13,9110.47,47.9,520.55,2388.11,8.4747,395,38.65,23.2767 +41,185,0.0042,0.0,642.8,1590.27,1414.12,21.61,552.62,2388.06,9098.99,47.97,520.65,2388.12,8.4837,394,38.65,23.2606 +41,186,0.0036,0.0003,642.74,1595.82,1418.46,21.61,553.31,2388.08,9107.87,47.65,521.17,2388.11,8.4536,395,38.66,23.2067 +41,187,0.0019,-0.0003,642.82,1595.98,1420.22,21.61,552.17,2388.13,9112.47,47.72,520.98,2388.15,8.4642,396,38.82,23.1661 +41,188,-0.0018,-0.0,642.37,1598.42,1420.56,21.61,551.95,2388.14,9116.94,47.84,520.61,2388.12,8.4492,395,38.56,23.289 +41,189,-0.0027,0.0002,643.62,1598.57,1421.09,21.61,553.06,2388.11,9116.88,47.82,520.8,2388.11,8.4892,396,38.72,23.1772 +41,190,0.0003,0.0,642.48,1597.18,1421.2,21.61,553.11,2388.08,9109.74,47.52,520.89,2388.09,8.4716,394,38.83,23.2267 +41,191,-0.0013,0.0002,643.17,1598.63,1415.36,21.61,552.65,2388.13,9114.68,47.8,520.84,2388.11,8.4943,395,38.56,23.1498 +41,192,0.0022,-0.0003,643.29,1593.07,1418.73,21.61,552.65,2388.12,9120.14,47.85,520.56,2388.11,8.5129,394,38.72,23.1414 +41,193,-0.0011,0.0002,643.36,1595.21,1419.76,21.61,552.58,2388.15,9115.98,47.72,521.13,2388.04,8.4625,395,38.74,23.1496 +41,194,-0.0005,0.0005,642.96,1594.57,1422.46,21.61,552.59,2388.13,9117.9,47.77,520.49,2388.09,8.5019,395,38.59,23.2329 +41,195,-0.0031,-0.0004,642.35,1596.48,1421.22,21.61,552.62,2388.08,9125.32,47.82,520.57,2388.11,8.5162,394,38.48,23.1055 +41,196,-0.0006,0.0003,643.28,1600.51,1414.8,21.61,552.06,2388.13,9117.01,47.77,520.95,2388.07,8.4745,396,38.73,23.2066 +41,197,0.002,-0.0003,643.62,1599.12,1419.88,21.61,552.74,2388.08,9121.2,47.86,520.62,2388.11,8.4912,395,38.68,23.188 +41,198,-0.0004,-0.0002,643.23,1596.67,1416.36,21.61,552.76,2388.11,9119.39,47.87,520.34,2388.08,8.4935,396,38.59,23.1971 +41,199,0.0006,0.0002,643.3,1592.09,1419.63,21.61,552.68,2388.09,9120.93,47.84,520.59,2388.14,8.4879,396,38.64,23.0716 +41,200,-0.0042,-0.0003,643.03,1593.26,1421.77,21.61,552.21,2388.16,9126.41,47.86,520.2,2388.08,8.477,394,38.56,23.2225 +41,201,0.003,0.0003,643.08,1596.2,1416.68,21.61,551.53,2388.15,9133.0,47.96,520.47,2388.1,8.4683,396,38.62,23.1026 +41,202,-0.0002,0.0004,642.8,1594.17,1417.11,21.61,552.11,2388.12,9130.02,47.92,520.59,2388.14,8.4752,397,38.59,23.0607 +41,203,0.0017,-0.0003,643.22,1594.8,1424.74,21.61,552.71,2388.16,9128.06,47.81,520.52,2388.15,8.4812,396,38.49,23.1872 +41,204,0.0012,0.0002,643.03,1598.1,1421.35,21.61,551.83,2388.15,9131.22,47.98,520.56,2388.15,8.5129,395,38.56,23.1615 +41,205,0.0008,-0.0,643.34,1600.74,1415.37,21.61,551.98,2388.12,9139.97,48.03,520.04,2388.12,8.5,395,38.64,23.0379 +41,206,0.0057,0.0003,643.63,1599.01,1419.32,21.61,552.15,2388.15,9137.83,47.87,520.97,2388.14,8.4998,395,38.45,23.1545 +41,207,-0.0037,-0.0,643.4,1601.51,1420.83,21.61,552.77,2388.12,9142.0,47.99,520.4,2388.13,8.5278,397,38.71,23.1533 +41,208,-0.0007,0.0,643.68,1599.48,1428.41,21.61,551.7,2388.19,9141.47,47.95,520.06,2388.1,8.4869,397,38.71,23.1123 +41,209,0.0016,0.0003,643.63,1597.54,1422.52,21.61,552.91,2388.18,9148.09,48.15,520.37,2388.12,8.5426,395,38.63,23.0502 +41,210,0.0016,0.0003,642.86,1597.65,1421.63,21.61,551.88,2388.16,9143.5,48.19,520.4,2388.15,8.5217,396,38.24,23.0194 +41,211,-0.0001,0.0005,643.95,1601.42,1429.42,21.61,551.44,2388.15,9143.75,48.06,520.17,2388.12,8.5323,396,38.49,23.0543 +41,212,-0.0012,0.0005,643.91,1603.06,1423.13,21.61,551.85,2388.15,9149.0,48.25,520.08,2388.15,8.551,396,38.59,23.0281 +41,213,-0.0013,-0.0002,643.49,1605.82,1434.97,21.61,551.97,2388.15,9149.92,48.32,519.69,2388.17,8.5262,397,38.48,23.0126 +41,214,-0.0014,0.0,644.07,1602.54,1431.63,21.61,550.98,2388.18,9155.38,48.03,519.6,2388.17,8.5404,398,38.49,23.0107 +41,215,-0.0,-0.0002,643.82,1610.3,1423.4,21.61,552.7,2388.22,9147.43,48.17,519.94,2388.19,8.5354,398,38.47,23.0304 +41,216,-0.0024,-0.0001,643.51,1603.91,1428.74,21.61,551.53,2388.16,9152.86,48.34,520.07,2388.17,8.4999,398,38.25,23.1237 +44,10,0.001,-0.0001,642.11,1587.75,1397.72,21.61,554.14,2388.02,9065.61,47.35,522.1,2388.05,8.3928,393,38.99,23.3664 +44,11,0.0005,0.0004,642.82,1585.92,1400.62,21.61,553.87,2387.99,9074.27,47.29,522.09,2388.02,8.3933,392,38.94,23.3275 +44,12,-0.0007,0.0004,641.87,1582.53,1401.81,21.61,554.91,2387.99,9070.32,47.36,521.9,2388.01,8.3913,391,39.03,23.3745 +44,13,-0.0029,0.0003,642.14,1581.03,1398.39,21.61,555.39,2388.03,9062.02,47.26,522.01,2388.02,8.3979,393,39.05,23.4597 +44,14,-0.0,-0.0001,642.05,1583.57,1397.95,21.61,554.14,2387.99,9073.43,47.29,522.02,2388.08,8.4041,391,39.04,23.4947 +44,15,0.0037,-0.0004,642.46,1586.98,1400.41,21.61,555.1,2388.04,9071.01,47.43,522.26,2388.0,8.4075,391,39.11,23.3766 +44,16,-0.0017,0.0,642.47,1586.89,1399.49,21.61,553.78,2388.03,9062.57,47.14,522.59,2388.03,8.3916,392,38.95,23.3416 +44,17,0.0039,-0.0001,641.87,1586.57,1392.66,21.61,553.6,2388.05,9075.58,47.17,522.47,2388.06,8.3763,390,39.22,23.3104 +44,18,0.0045,0.0002,642.34,1585.13,1398.5,21.61,554.48,2388.03,9060.72,47.33,522.1,2388.04,8.4153,393,38.97,23.4192 +44,19,-0.0008,-0.0001,642.22,1588.82,1397.23,21.61,554.51,2388.1,9063.16,47.41,522.05,2388.07,8.4145,391,39.05,23.423 +44,20,0.0012,0.0003,641.61,1585.55,1400.22,21.61,553.99,2388.02,9062.78,47.12,522.51,2388.0,8.4086,390,39.07,23.4179 +44,21,0.0026,-0.0001,642.27,1582.88,1400.56,21.61,555.07,2387.96,9059.52,47.5,521.91,2388.02,8.4537,391,39.11,23.4018 +44,22,0.0,-0.0005,642.64,1586.07,1402.21,21.61,554.02,2388.03,9068.32,47.45,522.39,2388.06,8.3947,391,38.87,23.2809 +44,23,-0.0002,-0.0002,642.35,1588.38,1407.4,21.61,554.16,2387.98,9064.61,47.16,522.86,2388.03,8.4503,393,38.78,23.4011 +44,24,-0.0029,-0.0005,642.01,1587.3,1403.85,21.61,554.71,2387.99,9065.44,47.13,522.48,2388.02,8.3982,391,39.17,23.3627 +44,25,0.0021,0.0005,641.9,1582.93,1407.01,21.61,554.11,2387.96,9063.75,47.11,522.28,2388.02,8.3955,392,38.92,23.247 +44,26,-0.0005,0.0003,642.17,1583.88,1407.53,21.61,554.4,2388.02,9066.35,47.24,522.16,2388.01,8.3993,393,39.02,23.3287 +44,27,-0.0036,-0.0003,641.95,1588.72,1402.76,21.61,554.18,2388.0,9062.5,47.28,522.37,2388.03,8.4574,391,39.07,23.3382 +44,28,-0.005,0.0001,642.54,1587.39,1402.16,21.6,553.51,2387.99,9071.97,47.25,522.32,2388.04,8.4188,392,39.14,23.4397 +44,29,-0.0013,-0.0004,642.5,1580.64,1399.05,21.61,554.29,2388.03,9073.66,47.36,522.64,2387.95,8.4044,392,38.98,23.2539 +44,30,0.0005,-0.0002,642.29,1582.46,1392.49,21.61,554.5,2387.96,9063.61,47.28,522.26,2387.98,8.3982,392,39.2,23.4601 +44,31,0.0008,-0.0,642.08,1583.63,1402.58,21.61,554.4,2387.97,9065.73,47.46,522.45,2388.07,8.3823,392,39.0,23.2312 +44,32,-0.0025,-0.0001,642.19,1581.05,1394.85,21.61,554.16,2388.02,9064.1,47.33,521.73,2388.07,8.4179,393,39.06,23.4209 +44,33,0.0003,0.0003,642.15,1584.41,1399.83,21.61,554.56,2388.04,9067.97,47.25,522.07,2388.05,8.4303,391,39.01,23.3702 +44,34,-0.0006,-0.0001,642.48,1584.48,1399.0,21.61,554.59,2388.01,9058.88,47.37,522.01,2388.01,8.3729,391,38.97,23.4094 +44,35,0.0035,0.0,642.3,1585.36,1399.18,21.61,554.04,2388.05,9065.14,47.26,522.36,2388.01,8.3962,392,39.04,23.4633 +44,36,0.0024,-0.0005,642.58,1584.78,1403.19,21.61,554.16,2388.01,9073.65,47.18,522.24,2388.06,8.4097,392,38.92,23.4262 +44,37,-0.0012,0.0002,642.6,1582.61,1394.51,21.61,553.78,2388.0,9063.49,47.23,522.22,2387.99,8.4155,392,38.9,23.398 +44,38,0.0002,0.0003,642.42,1586.97,1403.97,21.61,553.97,2388.01,9069.46,47.36,522.91,2388.01,8.3752,391,39.02,23.2856 +44,39,0.0012,-0.0003,642.18,1591.04,1394.96,21.61,553.98,2387.99,9075.7,47.35,521.75,2388.01,8.3753,392,39.18,23.3421 +44,40,-0.0033,0.0003,642.01,1591.54,1396.7,21.61,554.64,2388.0,9068.47,47.05,522.11,2388.02,8.3909,390,38.85,23.4245 +44,41,-0.0032,0.0004,642.12,1587.96,1394.48,21.61,554.26,2388.01,9060.24,47.31,522.53,2388.03,8.4488,393,38.96,23.3425 +44,42,0.0005,-0.0002,642.3,1581.61,1400.18,21.61,554.21,2388.06,9063.75,47.25,521.95,2387.99,8.4141,394,38.9,23.3654 +44,43,-0.0006,0.0003,642.85,1584.95,1405.43,21.61,554.6,2387.99,9069.04,47.25,521.94,2388.07,8.4308,392,39.21,23.3512 +44,44,-0.0026,-0.0001,642.52,1589.34,1403.83,21.61,553.4,2388.0,9074.0,47.04,522.59,2388.06,8.3958,391,38.99,23.3333 +44,45,-0.0041,0.0004,642.32,1588.13,1394.85,21.61,554.66,2388.04,9068.97,47.33,522.44,2388.06,8.3786,391,39.06,23.3534 +44,46,-0.0008,0.0003,641.89,1590.64,1398.48,21.61,553.87,2388.03,9066.21,47.33,521.81,2388.05,8.4166,391,38.97,23.3787 +44,47,-0.0012,0.0002,642.71,1587.24,1401.37,21.61,554.17,2387.99,9069.1,47.2,521.61,2388.03,8.4197,393,38.88,23.3449 +44,48,-0.0002,-0.0001,641.91,1585.57,1399.46,21.61,554.17,2388.04,9068.96,47.32,522.46,2388.01,8.3808,390,38.89,23.4847 +44,49,0.0024,-0.0001,642.17,1587.31,1392.92,21.61,554.13,2388.01,9067.32,47.33,522.2,2388.03,8.4147,391,38.88,23.417 +44,50,0.0002,-0.0002,642.27,1583.16,1400.73,21.61,554.57,2387.96,9063.74,47.26,522.32,2388.0,8.4266,392,38.88,23.4421 +44,51,0.0018,0.0,642.4,1583.27,1398.62,21.61,554.91,2388.04,9072.71,47.23,521.68,2388.01,8.4164,393,39.08,23.2303 +44,52,0.0031,0.0003,642.05,1589.38,1392.05,21.61,554.4,2387.99,9065.4,47.37,522.17,2388.01,8.4303,391,38.83,23.4014 +44,53,0.0007,-0.0002,641.83,1582.04,1402.1,21.61,554.08,2387.97,9062.04,47.28,522.38,2388.03,8.3988,392,38.94,23.3685 +44,54,0.0014,-0.0,642.43,1583.19,1403.48,21.61,554.81,2388.01,9071.95,47.38,521.77,2388.04,8.4105,392,38.93,23.3172 +44,55,-0.0021,-0.0005,642.17,1581.51,1403.39,21.61,554.68,2388.04,9067.62,47.26,522.69,2388.04,8.483,394,38.91,23.3415 +44,56,-0.0016,0.0004,642.29,1586.34,1395.94,21.61,553.84,2388.0,9063.37,47.23,521.92,2388.04,8.3829,393,39.1,23.3457 +44,57,0.0027,-0.0003,641.84,1580.42,1397.99,21.61,554.52,2387.98,9062.15,47.22,522.56,2388.03,8.4495,390,39.09,23.3923 +44,58,-0.0013,-0.0002,642.01,1588.84,1400.81,21.6,554.02,2388.0,9066.53,47.3,521.53,2388.04,8.4189,391,39.07,23.4126 +44,59,-0.003,-0.0,642.43,1587.83,1393.48,21.61,554.4,2388.02,9066.76,47.25,521.68,2388.03,8.4158,391,39.0,23.3713 +44,60,-0.0001,-0.0003,641.91,1577.88,1402.46,21.6,553.76,2388.04,9062.36,47.35,521.93,2388.04,8.4146,391,38.89,23.3815 +44,61,-0.0002,-0.0003,642.23,1583.35,1399.97,21.61,554.06,2388.01,9066.78,47.35,522.77,2388.01,8.3747,392,38.85,23.3342 +44,62,-0.0024,0.0004,642.51,1578.82,1403.45,21.61,553.83,2388.03,9062.4,47.17,521.92,2388.06,8.4047,391,39.15,23.3515 +44,63,-0.0021,-0.0005,642.74,1592.33,1400.23,21.61,554.14,2388.03,9067.78,47.32,522.21,2388.05,8.3983,390,38.9,23.4224 +44,64,-0.0009,-0.0003,642.15,1586.66,1398.84,21.6,554.59,2387.99,9063.03,47.36,521.88,2388.05,8.408,392,39.12,23.4309 +44,65,0.0005,-0.0003,642.2,1585.56,1401.47,21.61,554.09,2387.99,9060.22,47.25,521.83,2388.0,8.388,392,38.99,23.387 +44,66,-0.0016,0.0003,642.28,1580.55,1402.3,21.61,554.33,2388.03,9067.99,47.3,522.1,2388.04,8.4267,392,38.91,23.3531 +44,67,-0.0023,-0.0002,642.17,1587.07,1404.48,21.61,554.29,2388.08,9060.12,47.38,522.31,2388.05,8.4276,391,38.91,23.3862 +44,68,-0.0014,-0.0003,642.11,1594.45,1407.83,21.61,553.96,2388.04,9066.17,47.23,521.82,2387.98,8.387,393,38.99,23.4718 +44,69,-0.0055,-0.0004,642.68,1590.8,1405.79,21.61,554.38,2388.02,9060.17,47.25,521.83,2388.01,8.4128,392,38.97,23.37 +44,70,0.0015,0.0001,642.27,1584.79,1396.19,21.61,554.54,2388.01,9064.31,47.27,522.06,2388.02,8.4077,394,39.06,23.3881 +44,71,-0.0009,-0.0003,642.38,1589.48,1395.51,21.61,554.17,2388.03,9068.99,47.33,522.28,2388.03,8.4356,391,39.05,23.5184 +44,72,-0.0006,-0.0005,642.81,1579.42,1399.49,21.61,554.42,2388.07,9067.91,47.2,521.92,2388.0,8.428,394,38.93,23.4807 +44,73,0.0007,-0.0003,642.38,1590.39,1402.47,21.61,554.2,2388.02,9065.42,47.3,522.14,2388.06,8.4525,391,38.92,23.2985 +44,74,0.0012,-0.0004,642.05,1583.81,1398.05,21.61,554.93,2387.99,9073.12,47.32,522.22,2387.98,8.3951,392,39.05,23.4374 +44,75,0.0035,-0.0001,641.84,1583.26,1401.6,21.61,553.89,2388.02,9067.15,47.28,521.92,2388.07,8.4111,392,39.1,23.3593 +44,76,-0.0035,-0.0001,641.42,1588.58,1400.94,21.61,554.28,2388.04,9063.49,47.41,521.82,2388.05,8.4054,392,38.99,23.4375 +44,77,0.0025,0.0003,642.23,1584.8,1403.23,21.61,554.22,2387.99,9067.33,47.35,521.28,2388.02,8.3945,392,38.81,23.3916 +44,78,-0.0039,-0.0003,642.8,1592.27,1399.1,21.61,554.23,2388.07,9070.27,47.28,521.88,2388.0,8.3924,391,38.9,23.4512 +44,79,-0.0004,-0.0003,642.59,1586.49,1401.22,21.61,554.12,2387.98,9073.42,47.25,521.59,2388.05,8.382,393,38.75,23.4249 +44,80,0.0015,0.0004,642.55,1584.95,1400.86,21.61,554.49,2387.98,9068.18,47.43,522.15,2388.06,8.42,393,39.15,23.2892 +44,81,-0.0032,-0.0003,642.53,1589.79,1399.14,21.61,553.22,2388.02,9070.21,47.48,521.84,2387.99,8.4277,392,39.0,23.4094 +44,82,0.0003,-0.0003,642.76,1586.91,1397.73,21.61,554.07,2388.04,9066.55,47.38,521.71,2388.06,8.4235,391,38.75,23.3618 +44,83,-0.0069,-0.0005,642.02,1590.09,1401.12,21.61,553.81,2388.02,9064.65,47.17,522.5,2388.0,8.3973,393,39.1,23.3816 +44,84,-0.0022,0.0004,642.01,1582.05,1405.21,21.61,553.9,2388.03,9067.49,47.3,521.98,2388.03,8.419,391,38.86,23.3279 +44,85,0.002,0.0003,642.39,1586.33,1405.19,21.61,554.41,2388.02,9069.47,47.36,522.19,2388.07,8.3813,392,38.68,23.4168 +44,86,-0.0002,0.0003,642.33,1585.37,1405.93,21.61,553.69,2388.04,9067.9,47.19,521.77,2388.05,8.4485,395,38.98,23.4394 +44,87,-0.0002,0.0005,642.49,1585.81,1404.96,21.61,553.8,2388.06,9068.11,47.3,521.63,2388.02,8.3956,393,39.05,23.3515 +44,88,0.0001,0.0004,642.63,1581.33,1402.94,21.61,554.46,2388.04,9074.25,47.44,521.86,2388.01,8.4115,393,38.83,23.4071 +44,89,-0.0031,0.0004,642.73,1586.98,1396.77,21.61,553.74,2387.99,9071.72,47.43,521.72,2388.05,8.4211,392,39.08,23.3967 +44,90,-0.0014,0.0001,642.07,1591.48,1401.58,21.61,554.48,2388.0,9072.04,47.16,521.55,2387.93,8.4489,393,38.66,23.3231 +44,91,-0.0019,-0.0,642.19,1591.44,1400.62,21.61,553.46,2388.06,9071.77,47.5,521.8,2388.01,8.4012,392,38.88,23.304 +44,92,-0.0013,-0.0,642.35,1590.1,1406.86,21.61,554.11,2388.08,9075.83,47.4,521.45,2388.03,8.432,391,38.99,23.3322 +44,93,0.0026,-0.0004,642.1,1588.77,1403.31,21.61,554.45,2388.03,9064.84,47.31,522.16,2388.04,8.4316,392,38.9,23.3227 +44,94,-0.0002,-0.0004,642.28,1583.81,1400.99,21.61,553.7,2388.07,9072.58,47.29,521.61,2388.06,8.4444,391,38.93,23.3133 +44,95,-0.0006,-0.0001,642.75,1592.79,1398.52,21.6,553.83,2388.08,9069.68,47.27,522.07,2388.04,8.4465,392,38.86,23.2917 +44,96,0.0061,-0.0,642.49,1583.97,1400.48,21.61,554.23,2388.03,9068.02,47.37,522.04,2388.06,8.4575,392,39.11,23.1472 +44,97,-0.0012,-0.0003,642.82,1584.23,1406.64,21.61,553.83,2388.05,9074.74,47.38,521.96,2388.03,8.423,390,38.94,23.3085 +44,98,0.0011,0.0002,642.49,1594.28,1410.67,21.61,553.79,2388.05,9072.34,47.39,521.37,2388.07,8.4438,394,38.78,23.4416 +44,99,-0.0047,0.0002,642.98,1591.75,1404.21,21.61,553.7,2388.05,9068.18,47.14,521.9,2388.0,8.4132,395,38.92,23.2991 +44,100,-0.0001,0.0001,642.15,1586.21,1406.94,21.61,553.9,2388.08,9071.68,47.19,521.71,2388.02,8.372,392,38.82,23.4789 +44,101,0.0024,0.0002,642.2,1587.07,1401.68,21.61,554.04,2388.09,9075.13,47.36,521.95,2387.95,8.3805,393,38.81,23.3747 +44,102,0.0024,-0.0004,642.83,1593.85,1397.22,21.61,553.67,2388.11,9076.48,47.47,522.02,2388.06,8.4278,393,38.86,23.3845 +44,103,0.002,-0.0004,642.04,1587.1,1405.48,21.61,554.19,2388.07,9073.87,47.38,522.16,2388.04,8.4227,392,38.87,23.3098 +44,104,0.0022,0.0003,642.31,1585.1,1401.9,21.61,553.53,2388.05,9073.61,47.44,521.62,2388.02,8.4478,393,38.69,23.2988 +44,105,0.0039,-0.0005,642.68,1591.46,1406.02,21.61,553.65,2388.02,9069.72,47.38,521.73,2388.06,8.4119,392,38.86,23.3712 +44,106,-0.0005,0.0001,642.43,1597.52,1405.94,21.61,553.56,2388.02,9064.98,47.48,521.76,2388.09,8.4409,393,38.78,23.4069 +44,107,0.0023,-0.0,642.66,1584.18,1405.62,21.61,553.63,2388.08,9071.32,47.38,521.71,2388.06,8.4311,391,38.77,23.3192 +44,108,-0.0003,-0.0002,642.85,1591.46,1408.09,21.61,553.73,2388.08,9073.4,47.28,521.65,2388.09,8.4364,393,38.84,23.3747 +44,109,-0.0013,0.0001,641.94,1587.18,1407.15,21.61,552.75,2388.08,9067.61,47.38,522.28,2388.02,8.4523,393,38.91,23.4133 +44,110,0.0031,-0.0003,641.94,1585.36,1402.34,21.61,553.89,2388.09,9067.49,47.41,522.16,2388.0,8.4407,394,38.86,23.3435 +44,111,-0.0009,0.0001,642.48,1591.23,1413.13,21.61,553.64,2388.1,9067.47,47.57,522.26,2388.08,8.402,392,38.86,23.3541 +44,112,-0.0017,0.0003,642.63,1594.59,1406.74,21.61,553.65,2388.03,9071.86,47.38,522.11,2388.07,8.3999,391,39.06,23.3487 +44,113,0.0006,0.0004,642.58,1583.42,1402.32,21.61,553.88,2388.05,9065.04,47.52,521.35,2388.08,8.4454,392,38.73,23.3766 +44,114,-0.0,-0.0003,642.36,1592.21,1408.27,21.61,553.45,2388.01,9071.8,47.55,522.0,2388.05,8.4135,393,38.99,23.3074 +44,115,-0.0033,-0.0001,642.6,1591.42,1408.59,21.61,553.49,2388.02,9070.93,47.38,522.13,2388.02,8.4559,392,38.8,23.4512 +44,116,0.0001,0.0004,642.64,1586.8,1409.88,21.61,554.28,2388.07,9069.94,47.48,521.55,2388.07,8.3986,392,38.78,23.381 +44,117,-0.0023,0.0001,642.14,1588.91,1410.91,21.61,553.69,2388.01,9071.48,47.48,521.72,2388.1,8.431,392,38.68,23.3088 +44,118,0.0002,-0.0001,642.18,1591.13,1403.0,21.61,554.15,2388.05,9079.02,47.63,521.62,2388.11,8.4383,393,38.88,23.2717 +44,119,0.0006,0.0,642.33,1593.12,1397.27,21.61,553.16,2388.07,9062.71,47.36,521.69,2388.02,8.3974,393,38.81,23.4212 +44,120,-0.0011,0.0005,642.19,1586.54,1409.86,21.61,554.31,2388.09,9072.51,47.26,521.59,2388.04,8.4228,395,38.85,23.3849 +44,121,-0.0007,0.0002,642.27,1588.56,1403.65,21.61,554.18,2388.06,9065.63,47.56,521.32,2388.12,8.4074,393,38.96,23.3071 +44,122,-0.0013,0.0004,642.06,1602.52,1400.5,21.61,554.61,2388.07,9070.08,47.46,521.5,2388.09,8.4487,392,38.89,23.3902 +44,123,0.0011,-0.0001,642.64,1591.2,1410.31,21.61,553.76,2388.05,9078.99,47.44,521.86,2388.09,8.3967,392,38.96,23.3754 +44,124,-0.005,0.0002,642.76,1591.77,1410.38,21.61,553.1,2388.05,9070.73,47.44,522.07,2388.05,8.4538,393,38.79,23.2514 +44,125,-0.0034,-0.0001,642.4,1585.51,1408.95,21.61,553.76,2388.08,9070.1,47.59,521.47,2388.06,8.427,393,38.87,23.3021 +44,126,0.0001,0.0003,642.84,1588.67,1404.06,21.61,553.35,2388.06,9070.15,47.4,522.09,2388.01,8.4359,391,38.85,23.3114 +44,127,-0.0002,0.0003,642.63,1586.74,1410.69,21.61,553.82,2388.11,9062.7,47.34,521.56,2388.05,8.4614,392,38.54,23.3462 +44,128,0.0009,-0.0003,642.81,1583.34,1410.54,21.61,554.03,2388.07,9065.53,47.38,521.09,2388.06,8.4038,393,38.68,23.3752 +44,129,0.0017,-0.0002,642.35,1592.87,1402.96,21.61,553.88,2388.05,9067.47,47.51,521.75,2388.06,8.4593,393,38.68,23.3006 +44,130,0.0013,-0.0002,642.81,1597.69,1400.09,21.61,553.6,2388.06,9064.41,47.53,521.32,2388.08,8.4589,394,38.88,23.3898 +44,131,0.0012,0.0003,642.78,1590.57,1402.02,21.61,553.45,2388.08,9076.73,47.37,521.28,2388.04,8.4647,392,38.81,23.2868 +44,132,0.0037,0.0001,642.5,1589.77,1406.53,21.61,553.54,2388.03,9073.1,47.49,521.41,2388.03,8.4585,392,38.96,23.2792 +44,133,0.0014,0.0004,642.73,1597.1,1402.16,21.61,553.55,2388.07,9072.61,47.47,521.35,2388.04,8.4353,394,38.86,23.2777 +44,134,-0.0006,0.0002,642.52,1591.02,1403.9,21.61,553.42,2388.1,9067.26,47.65,522.07,2388.11,8.4276,394,38.81,23.2337 +44,135,0.001,0.0002,642.83,1592.46,1407.67,21.61,552.93,2388.11,9080.43,47.6,521.6,2388.12,8.4567,394,38.79,23.2751 +44,136,0.002,0.0005,642.76,1587.59,1401.34,21.61,553.28,2388.11,9071.05,47.65,521.64,2388.01,8.459,394,38.86,23.2314 +44,137,0.0009,-0.0002,642.37,1587.97,1404.97,21.61,553.28,2388.1,9077.45,47.65,521.34,2388.04,8.4408,392,38.66,23.2344 +44,138,-0.0017,-0.0005,642.82,1586.14,1411.12,21.61,553.03,2388.07,9067.42,47.54,521.19,2388.09,8.4734,394,38.85,23.3948 +44,139,-0.0007,-0.0003,642.94,1593.56,1413.54,21.61,552.82,2388.14,9079.32,47.59,521.52,2388.1,8.4509,393,38.73,23.2686 +44,140,0.0001,-0.0002,642.73,1594.24,1409.65,21.61,552.85,2388.07,9076.1,47.64,521.95,2388.1,8.4291,393,38.65,23.2198 +44,141,-0.0019,0.0003,642.16,1593.88,1409.17,21.61,552.75,2388.09,9077.57,47.38,521.53,2388.11,8.4168,393,38.75,23.3339 +44,142,-0.005,0.0001,642.43,1588.93,1409.27,21.61,553.26,2388.14,9071.84,47.73,521.22,2388.14,8.4513,393,38.84,23.2356 +44,143,-0.0007,0.0004,642.41,1592.43,1406.67,21.61,553.46,2388.14,9079.43,47.66,521.63,2388.16,8.4334,393,39.04,23.2052 +44,144,-0.0017,-0.0,642.58,1600.6,1414.47,21.61,552.42,2388.1,9072.7,47.64,521.41,2388.15,8.4301,395,38.88,23.3913 +44,145,-0.0012,0.0001,642.39,1591.41,1413.63,21.61,553.35,2388.09,9071.99,47.67,521.44,2388.07,8.4888,394,38.74,23.2573 +44,146,-0.0038,0.0004,643.05,1592.85,1411.9,21.61,553.14,2388.14,9075.24,47.67,521.27,2388.13,8.4718,392,38.71,23.221 +44,147,-0.0007,0.0002,642.9,1591.72,1406.77,21.61,553.38,2388.04,9066.38,47.54,521.68,2388.14,8.4557,392,38.92,23.3031 +44,148,-0.0012,-0.0004,643.22,1587.33,1406.18,21.61,553.77,2388.11,9074.88,47.49,521.2,2388.12,8.4418,393,38.55,23.2907 +44,149,-0.0002,-0.0001,642.91,1589.38,1419.63,21.61,553.08,2388.13,9074.36,47.6,521.25,2388.08,8.4625,394,38.78,23.3027 +44,150,0.0004,-0.0001,642.94,1589.12,1416.35,21.61,552.62,2388.13,9074.08,47.55,521.24,2388.1,8.4553,393,38.78,23.2209 +44,151,-0.0012,-0.0002,643.18,1590.53,1414.73,21.61,552.98,2388.07,9070.79,47.75,521.66,2388.09,8.438,393,38.82,23.0892 +44,152,0.002,0.0001,643.24,1600.25,1414.93,21.61,552.73,2388.11,9082.39,47.85,520.99,2388.2,8.4583,394,38.78,23.2187 +44,153,0.0028,-0.0003,643.13,1599.5,1421.29,21.61,553.64,2388.08,9082.06,47.78,521.17,2388.12,8.4342,392,38.88,23.2524 +44,154,-0.0004,0.0003,642.95,1594.38,1409.05,21.61,552.62,2388.09,9077.87,47.68,521.16,2388.1,8.4511,394,38.85,23.3 +44,155,-0.0002,0.0003,642.86,1592.11,1417.07,21.61,553.17,2388.07,9080.14,47.78,521.08,2388.11,8.4481,394,38.76,23.368 +44,156,0.001,0.0003,642.7,1590.73,1402.36,21.61,552.72,2388.14,9071.23,47.55,521.36,2388.17,8.4512,395,38.65,23.3049 +44,157,-0.0032,0.0002,642.68,1588.35,1408.39,21.61,552.52,2388.17,9080.27,47.64,520.91,2388.12,8.4946,394,38.77,23.1999 +44,158,0.0003,-0.0005,642.97,1597.05,1417.6,21.61,553.33,2388.07,9071.06,47.77,521.26,2388.11,8.4598,393,38.62,23.1811 +44,159,0.0025,-0.0003,643.36,1593.94,1420.52,21.61,553.36,2388.16,9083.02,47.8,520.16,2388.18,8.4478,394,38.68,23.2056 +44,160,0.0006,-0.0005,642.88,1594.11,1413.09,21.61,552.95,2388.1,9077.91,47.75,521.2,2388.16,8.4494,394,38.89,23.2448 +44,161,0.005,0.0003,642.82,1591.53,1412.83,21.61,552.75,2388.11,9075.85,47.71,521.36,2388.14,8.4879,395,38.7,23.2428 +44,162,-0.0016,-0.0002,643.0,1592.35,1417.63,21.61,552.74,2388.13,9075.58,47.76,521.06,2388.15,8.4741,396,38.61,23.2244 +44,163,0.0026,-0.0003,643.27,1599.87,1418.28,21.61,553.92,2388.17,9072.43,47.64,521.33,2388.14,8.4849,395,38.53,23.237 +44,164,0.0006,-0.0001,642.88,1599.02,1414.31,21.61,552.27,2388.15,9076.42,47.54,521.16,2388.16,8.4744,396,38.79,23.3309 +44,165,0.0012,0.0004,643.62,1590.23,1416.86,21.61,552.9,2388.15,9075.93,47.76,520.83,2388.16,8.4655,396,38.79,23.2954 +44,166,0.001,0.0001,643.3,1591.58,1417.72,21.61,552.8,2388.17,9075.68,48.02,521.03,2388.18,8.4722,395,38.73,23.2368 +44,167,0.0015,0.0,642.96,1598.57,1415.13,21.61,552.13,2388.13,9078.46,47.67,520.48,2388.14,8.4608,395,38.55,23.1302 +44,168,0.0022,0.0005,643.51,1598.32,1418.34,21.61,552.32,2388.12,9080.31,47.73,520.53,2388.09,8.4552,394,38.59,23.2228 +44,169,-0.0011,-0.0002,643.53,1597.58,1413.27,21.61,552.39,2388.12,9074.86,47.91,520.94,2388.13,8.4672,396,38.67,23.1493 +44,170,0.0013,-0.0003,643.18,1596.1,1419.16,21.61,553.41,2388.16,9083.68,48.0,521.31,2388.11,8.4874,395,38.66,23.0593 +44,171,-0.001,0.0005,643.41,1602.73,1415.78,21.61,552.25,2388.17,9078.7,47.83,520.27,2388.14,8.4424,394,38.6,23.1823 +44,172,-0.0007,0.0002,643.29,1595.31,1423.8,21.61,551.71,2388.18,9081.78,47.91,520.85,2388.15,8.4583,396,38.57,23.2305 +44,173,0.0017,0.0004,643.28,1590.18,1418.06,21.61,552.16,2388.18,9082.74,47.83,520.0,2388.23,8.5005,394,38.58,23.1232 +44,174,0.0024,0.0,642.9,1594.58,1421.7,21.61,552.36,2388.19,9076.85,47.88,520.55,2388.23,8.5042,395,38.52,23.1962 +44,175,0.0013,-0.0001,643.02,1597.59,1420.72,21.61,552.14,2388.14,9070.9,47.99,520.75,2388.09,8.507,393,38.68,23.1616 +44,176,0.0001,-0.0001,643.2,1597.94,1416.46,21.61,552.36,2388.24,9077.87,47.95,520.15,2388.17,8.523,395,38.6,23.2314 +44,177,-0.003,0.0004,643.3,1590.15,1418.51,21.61,552.05,2388.12,9074.41,47.86,520.26,2388.18,8.532,394,38.69,23.1563 +44,178,-0.0001,-0.0001,643.42,1601.12,1424.81,21.61,552.08,2388.17,9076.28,48.0,520.36,2388.17,8.4936,396,38.63,23.2223 +44,179,0.0002,0.0004,643.67,1598.08,1420.42,21.61,551.61,2388.12,9079.75,48.01,520.54,2388.18,8.4902,396,38.55,23.173 +44,180,0.0021,0.0004,643.23,1603.69,1428.6,21.61,552.28,2388.18,9075.72,48.0,520.29,2388.19,8.4915,396,38.46,23.0919 +44,181,0.0059,-0.0004,643.45,1589.36,1421.07,21.61,552.13,2388.14,9084.08,48.02,520.51,2388.15,8.5201,396,38.43,23.0442 +44,182,-0.0022,-0.0002,643.72,1598.43,1429.24,21.61,551.58,2388.18,9078.44,48.11,520.08,2388.17,8.5044,396,38.41,23.1306 +44,183,-0.0002,-0.0,643.47,1600.71,1418.55,21.61,552.17,2388.24,9075.21,47.95,520.51,2388.17,8.5167,395,38.62,23.2134 +44,184,0.0004,-0.0004,643.32,1598.81,1425.71,21.61,551.84,2388.18,9090.3,48.15,519.85,2388.22,8.5082,396,38.46,23.143 +44,185,-0.0005,0.0003,643.4,1607.53,1427.6,21.61,552.15,2388.19,9074.53,48.08,519.62,2388.21,8.4776,397,38.45,23.2201 +44,186,0.0026,0.0001,643.19,1594.66,1427.48,21.61,551.49,2388.26,9079.22,48.07,520.02,2388.14,8.4971,396,38.59,23.1345 +44,187,-0.0018,0.0,643.45,1597.05,1425.84,21.61,551.55,2388.22,9081.77,48.02,519.93,2388.23,8.5062,397,38.42,22.9868 +44,188,0.0009,-0.0002,643.76,1601.4,1423.73,21.61,551.48,2388.22,9080.41,48.1,519.68,2388.2,8.5285,396,38.51,23.0425 +44,189,0.0035,0.0001,643.2,1601.34,1428.0,21.61,551.27,2388.26,9084.58,48.24,520.35,2388.2,8.5108,394,38.51,23.116 +44,190,0.0008,0.0003,643.42,1607.76,1428.14,21.61,552.12,2388.27,9084.54,48.03,519.68,2388.22,8.4984,396,38.24,23.1008 +44,191,0.0043,-0.0,644.13,1596.87,1422.36,21.61,551.14,2388.19,9084.0,48.12,520.18,2388.24,8.5249,398,38.64,23.0364 +44,192,0.0015,-0.0003,643.95,1608.5,1438.96,21.61,552.03,2388.17,9079.75,48.05,519.87,2388.23,8.5266,396,38.39,22.9435 +47,10,0.0009,-0.0005,641.86,1587.28,1400.35,21.61,554.04,2388.02,9070.63,47.12,522.09,2388.05,8.395,392,38.97,23.3734 +47,11,0.0013,-0.0001,641.95,1577.31,1398.69,21.61,554.24,2388.05,9054.8,47.27,522.1,2388.01,8.3882,391,39.14,23.4639 +47,12,0.0023,0.0002,642.14,1582.58,1404.15,21.61,554.83,2387.99,9061.05,47.3,522.16,2387.95,8.4187,391,38.97,23.3962 +47,13,0.0023,-0.0005,642.37,1581.81,1399.37,21.61,554.18,2388.01,9063.67,47.25,522.2,2388.02,8.3798,391,39.02,23.4168 +47,14,-0.0016,0.0004,642.08,1578.29,1395.7,21.61,554.21,2388.01,9070.42,47.13,522.17,2388.02,8.4359,390,39.08,23.4572 +47,15,-0.0005,0.0002,642.11,1590.53,1396.66,21.61,553.46,2387.98,9062.51,47.24,522.47,2388.02,8.3994,390,39.03,23.4858 +47,16,-0.0009,0.0,642.02,1588.73,1398.9,21.6,555.16,2387.97,9066.42,47.17,521.96,2387.98,8.4188,392,39.29,23.3971 +47,17,0.0024,0.0002,641.94,1580.17,1393.7,21.61,554.72,2388.01,9059.86,46.98,522.83,2388.01,8.3896,392,38.97,23.4019 +47,18,0.0026,-0.0005,642.56,1585.06,1400.7,21.61,554.32,2387.9,9064.85,47.05,522.78,2387.95,8.4005,392,39.02,23.495 +47,19,0.0014,-0.0005,642.2,1582.16,1395.54,21.61,554.24,2387.99,9067.02,47.43,522.82,2387.98,8.3767,390,39.09,23.3073 +47,20,0.001,-0.0002,641.98,1579.78,1405.51,21.61,554.98,2388.03,9065.74,47.27,522.38,2388.03,8.4178,391,39.07,23.3601 +47,21,0.0013,-0.0003,641.8,1586.68,1408.07,21.61,554.13,2388.02,9067.49,47.11,522.78,2388.04,8.4339,392,39.14,23.3738 +47,22,-0.0033,0.0001,641.88,1588.12,1398.95,21.61,554.66,2388.0,9059.01,47.15,522.01,2387.98,8.3869,393,38.9,23.3644 +47,23,0.0019,0.0001,642.33,1589.08,1405.64,21.6,554.69,2388.01,9074.08,47.21,522.28,2388.01,8.3818,392,38.99,23.3279 +47,24,-0.0024,-0.0003,641.97,1581.26,1400.66,21.61,554.69,2387.96,9068.9,47.2,522.1,2388.03,8.3992,390,39.05,23.3989 +47,25,0.0011,0.0003,641.97,1576.05,1397.31,21.61,554.12,2388.01,9062.56,47.11,521.76,2388.04,8.394,390,38.8,23.5406 +47,26,-0.004,-0.0001,642.01,1584.22,1403.91,21.61,554.17,2388.05,9065.92,47.27,522.44,2388.02,8.3941,392,39.24,23.4711 +47,27,0.0,-0.0004,641.35,1582.95,1404.14,21.61,554.63,2387.97,9067.49,46.94,522.45,2388.05,8.4026,392,39.04,23.4434 +47,28,-0.0011,0.0003,642.39,1586.61,1400.8,21.61,554.85,2387.99,9064.2,47.27,522.3,2388.0,8.4185,390,39.12,23.3532 +47,29,0.0021,0.0004,641.98,1582.56,1396.1,21.61,554.08,2388.03,9070.61,47.07,522.27,2387.96,8.4059,392,39.25,23.369 +47,30,-0.0016,-0.0001,641.88,1579.53,1393.06,21.61,554.5,2388.03,9063.39,47.12,522.26,2388.02,8.3921,390,39.04,23.3996 +47,31,-0.0042,-0.0005,642.18,1581.87,1393.44,21.61,554.89,2388.06,9066.92,47.17,522.17,2388.03,8.4029,393,38.91,23.4207 +47,32,-0.001,0.0001,643.04,1583.57,1392.99,21.61,554.0,2387.98,9063.22,47.2,522.1,2388.0,8.3693,393,38.94,23.3922 +47,33,0.0002,-0.0003,642.78,1587.47,1402.32,21.61,554.15,2388.03,9064.15,47.16,522.44,2388.0,8.3755,392,39.0,23.3781 +47,34,0.0029,-0.0003,642.43,1588.71,1402.53,21.61,554.52,2387.99,9063.86,47.12,522.56,2387.99,8.3603,393,39.22,23.3781 +47,35,-0.0,0.0004,642.82,1580.7,1397.95,21.61,554.51,2387.98,9069.29,47.38,522.87,2387.98,8.4071,392,38.98,23.4313 +47,36,-0.0008,-0.0,642.19,1582.73,1395.97,21.6,554.52,2388.04,9061.17,46.98,522.62,2388.0,8.42,393,38.93,23.3941 +47,37,0.0008,0.0001,642.43,1584.72,1395.16,21.61,554.67,2388.0,9063.29,47.1,522.56,2388.0,8.418,391,38.99,23.3671 +47,38,0.0013,-0.0003,641.77,1585.13,1399.56,21.61,554.34,2387.99,9064.13,47.09,522.08,2388.01,8.3858,390,39.12,23.4132 +47,39,0.0033,0.0002,641.68,1584.17,1401.82,21.61,554.09,2387.99,9068.76,47.15,521.83,2388.04,8.3963,392,39.01,23.3532 +47,40,-0.0009,0.0001,642.22,1584.92,1398.57,21.61,554.66,2388.01,9063.92,47.11,521.92,2387.99,8.3957,390,39.02,23.387 +47,41,0.0026,0.0004,642.1,1587.49,1395.16,21.61,554.33,2388.01,9066.93,47.11,522.5,2388.05,8.4048,393,39.07,23.4207 +47,42,-0.0007,-0.0,642.3,1577.88,1401.27,21.61,554.42,2388.05,9065.6,47.26,522.12,2388.01,8.4308,391,39.11,23.449 +47,43,-0.0002,0.0001,642.4,1586.97,1402.6,21.61,553.92,2387.99,9070.42,47.11,522.51,2387.99,8.4122,391,39.06,23.4204 +47,44,-0.0027,0.0004,642.25,1587.39,1397.36,21.61,554.44,2388.03,9067.51,47.21,522.91,2387.94,8.3965,391,39.04,23.3873 +47,45,-0.0012,0.0004,642.81,1583.7,1395.63,21.61,554.65,2387.98,9066.32,47.03,521.88,2388.01,8.3898,392,38.99,23.4644 +47,46,-0.0009,-0.0002,642.14,1590.31,1403.93,21.61,554.24,2388.01,9062.27,47.25,522.08,2388.06,8.4002,391,38.99,23.3927 +47,47,-0.0,0.0,642.07,1586.49,1392.74,21.61,554.6,2388.01,9067.96,47.12,522.16,2388.04,8.4245,392,39.09,23.3596 +47,48,0.0017,0.0001,641.94,1589.09,1400.99,21.61,554.37,2388.04,9064.46,47.19,522.3,2388.0,8.421,392,39.04,23.4083 +47,49,-0.0015,-0.0003,642.52,1587.69,1398.19,21.61,554.35,2388.01,9074.41,47.13,522.78,2388.02,8.427,392,39.12,23.4402 +47,50,0.0003,-0.0004,641.9,1582.73,1395.11,21.61,553.73,2388.04,9068.01,47.27,522.04,2388.01,8.363,393,39.04,23.3386 +47,51,-0.0013,-0.0,641.81,1574.52,1402.21,21.61,553.46,2388.0,9065.73,47.13,521.58,2387.96,8.4041,393,39.04,23.4086 +47,52,-0.002,0.0002,642.51,1583.03,1399.8,21.61,554.16,2387.99,9070.87,47.31,522.27,2388.02,8.3647,392,38.94,23.3559 +47,53,0.0029,0.0001,641.92,1579.32,1401.24,21.61,554.12,2388.0,9070.73,47.32,522.3,2388.01,8.4135,392,38.96,23.4945 +47,54,-0.0016,-0.0001,642.31,1585.36,1392.59,21.61,554.37,2388.01,9059.96,47.39,521.42,2388.07,8.4136,392,39.09,23.4004 +47,55,0.0002,0.0,642.0,1575.47,1397.11,21.61,554.1,2388.02,9062.56,47.31,521.78,2387.96,8.4088,392,38.99,23.4662 +47,56,-0.0021,-0.0003,642.1,1584.43,1394.51,21.6,554.55,2387.99,9070.0,47.12,522.98,2387.97,8.4306,393,38.98,23.4253 +47,57,0.0031,-0.0,642.16,1586.05,1400.94,21.61,554.7,2388.01,9071.83,47.3,522.32,2387.98,8.4171,391,39.05,23.3678 +47,58,0.0053,0.0003,641.68,1589.86,1405.6,21.61,554.87,2388.0,9066.39,47.38,521.97,2388.02,8.3847,393,38.93,23.4006 +47,59,-0.001,0.0004,641.92,1578.76,1401.18,21.61,554.78,2388.0,9059.17,47.09,522.17,2388.0,8.3935,391,39.11,23.3763 +47,60,0.0017,-0.0001,641.78,1585.71,1394.72,21.61,554.52,2387.99,9065.73,47.21,522.05,2387.99,8.3953,390,39.03,23.4252 +47,61,-0.0015,-0.0003,641.57,1584.27,1408.5,21.61,554.37,2387.97,9074.97,47.14,522.27,2387.97,8.4539,391,38.86,23.4099 +47,62,0.0014,-0.0005,641.99,1585.13,1398.9,21.61,554.6,2387.97,9068.86,47.21,522.19,2388.01,8.4505,392,38.86,23.3696 +47,63,0.0011,0.0004,642.47,1586.03,1410.9,21.6,554.08,2388.06,9064.02,47.31,522.09,2388.03,8.434,392,39.07,23.3496 +47,64,-0.0043,0.0004,642.22,1584.91,1394.21,21.61,554.61,2388.0,9066.69,47.3,522.3,2388.03,8.4057,392,38.88,23.4677 +47,65,-0.0005,-0.0,641.83,1581.59,1405.33,21.61,553.51,2387.97,9063.53,47.34,522.02,2387.99,8.3789,392,39.1,23.5199 +47,66,0.0012,0.0002,642.4,1584.11,1394.33,21.61,554.25,2388.04,9066.95,47.13,522.08,2388.02,8.4152,391,39.01,23.4295 +47,67,0.0011,-0.0005,642.07,1583.78,1400.62,21.6,554.14,2388.01,9063.9,47.41,522.43,2387.98,8.409,389,39.07,23.4957 +47,68,0.0012,-0.0001,642.11,1583.42,1392.88,21.61,554.45,2388.0,9066.72,47.28,522.55,2388.0,8.4,393,38.94,23.4111 +47,69,0.001,-0.0004,642.49,1584.51,1390.08,21.61,554.27,2388.06,9064.23,47.41,521.9,2388.02,8.3737,390,38.98,23.4571 +47,70,0.0011,-0.0001,642.47,1582.76,1403.26,21.61,554.27,2387.95,9067.28,47.21,522.28,2388.02,8.4088,393,39.05,23.3884 +47,71,0.001,-0.0002,641.75,1582.75,1396.32,21.61,553.68,2388.07,9063.79,47.02,522.21,2388.03,8.3785,391,39.1,23.4067 +47,72,0.0025,-0.0004,642.5,1578.69,1402.9,21.61,553.59,2388.01,9061.26,47.07,521.7,2387.95,8.432,392,38.76,23.4144 +47,73,-0.0027,-0.0002,642.25,1580.98,1404.29,21.61,554.15,2388.0,9067.24,47.35,522.09,2388.04,8.3851,390,39.08,23.4314 +47,74,0.0007,0.0002,641.75,1584.17,1392.6,21.61,554.62,2388.06,9065.72,47.29,522.32,2387.96,8.3904,392,38.85,23.3813 +47,75,0.0023,-0.0004,642.66,1584.61,1400.37,21.61,554.44,2388.03,9065.57,47.37,523.06,2388.0,8.4389,394,38.94,23.3573 +47,76,0.0046,0.0003,642.46,1578.97,1400.9,21.61,554.62,2388.01,9064.43,47.23,522.21,2388.0,8.4069,394,38.95,23.4458 +47,77,0.0008,-0.0004,642.2,1584.25,1395.13,21.61,554.97,2388.05,9067.2,47.31,522.18,2388.06,8.4292,392,38.94,23.3946 +47,78,-0.0003,-0.0001,642.47,1584.68,1404.65,21.61,554.61,2387.95,9065.91,47.38,522.18,2388.03,8.4037,392,38.86,23.4739 +47,79,0.0009,0.0001,642.35,1587.21,1401.6,21.61,554.65,2388.03,9074.28,47.25,522.52,2387.96,8.3818,393,39.17,23.2787 +47,80,-0.0007,-0.0003,642.7,1586.8,1395.98,21.61,555.37,2388.02,9068.67,47.06,522.32,2388.05,8.4233,390,39.16,23.474 +47,81,-0.0045,0.0004,641.75,1584.43,1402.91,21.61,554.72,2388.06,9063.06,47.06,522.49,2388.04,8.4147,393,39.07,23.2813 +47,82,-0.0007,-0.0004,642.3,1587.32,1404.18,21.61,554.29,2388.0,9066.23,47.23,522.17,2387.95,8.3622,391,38.95,23.3219 +47,83,0.0011,0.0003,642.02,1587.69,1396.24,21.61,554.17,2388.04,9068.74,47.17,522.8,2388.01,8.3872,393,38.78,23.3408 +47,84,0.0026,0.0003,642.5,1582.47,1395.91,21.61,553.79,2388.01,9071.49,47.34,521.81,2388.08,8.4156,392,38.91,23.3745 +47,85,0.0005,-0.0001,642.25,1585.16,1401.33,21.61,553.61,2388.01,9063.16,47.25,522.5,2387.98,8.4275,392,38.97,23.3731 +47,86,-0.0003,0.0002,642.49,1588.2,1397.12,21.6,554.5,2388.02,9061.62,47.23,522.49,2388.01,8.38,392,38.93,23.5193 +47,87,-0.0012,0.0004,641.96,1581.52,1401.77,21.61,554.3,2388.01,9067.96,47.19,522.3,2388.09,8.3813,393,39.02,23.3624 +47,88,-0.0033,0.0002,642.64,1585.66,1400.54,21.61,554.29,2388.07,9066.32,47.23,522.84,2387.98,8.4308,392,38.97,23.3916 +47,89,-0.0021,0.0001,642.83,1585.81,1404.45,21.61,554.32,2387.99,9065.1,47.33,522.51,2388.01,8.4305,393,38.9,23.51 +47,90,0.0001,-0.0004,642.23,1588.38,1403.15,21.61,554.08,2388.03,9069.86,47.29,522.35,2388.0,8.4096,391,38.99,23.4356 +47,91,0.0014,-0.0,642.06,1581.02,1407.84,21.6,554.92,2388.1,9072.76,47.25,522.23,2388.01,8.4057,392,39.05,23.3854 +47,92,-0.0007,0.0003,642.38,1591.43,1392.23,21.61,554.48,2388.01,9064.32,47.36,521.85,2388.04,8.4082,390,38.96,23.3628 +47,93,-0.002,-0.0004,642.21,1585.38,1402.2,21.61,554.08,2387.97,9064.29,47.47,522.31,2388.04,8.3987,392,39.0,23.4203 +47,94,0.0006,-0.0004,642.18,1579.57,1403.6,21.61,554.54,2388.04,9062.86,47.52,522.39,2388.01,8.4471,393,38.95,23.3349 +47,95,-0.0016,0.0002,642.21,1593.68,1397.43,21.61,554.16,2388.04,9060.47,47.37,521.5,2388.01,8.3654,392,39.08,23.3771 +47,96,-0.0037,0.0001,642.14,1581.19,1401.09,21.61,554.48,2388.02,9063.25,47.15,521.84,2388.06,8.4038,391,39.15,23.3933 +47,97,0.0003,-0.0004,642.15,1584.34,1402.92,21.61,553.75,2388.02,9066.85,47.29,522.26,2388.06,8.4086,391,38.95,23.3737 +47,98,-0.0051,0.0003,641.42,1583.37,1396.84,21.61,553.23,2388.04,9062.83,47.38,521.8,2388.05,8.4117,392,39.09,23.3579 +47,99,-0.0003,0.0,642.58,1581.79,1404.53,21.61,554.34,2388.04,9070.58,47.34,522.16,2388.07,8.4243,393,38.86,23.3665 +47,100,0.0047,0.0003,642.08,1585.68,1401.92,21.61,553.79,2387.99,9065.13,47.33,522.0,2388.02,8.3747,392,38.86,23.3906 +47,101,0.0027,0.0003,641.96,1591.32,1399.9,21.61,553.93,2387.97,9068.19,47.13,521.61,2387.97,8.3987,392,38.85,23.4541 +47,102,-0.0013,0.0002,642.66,1582.29,1402.69,21.61,554.85,2388.03,9067.14,47.43,522.57,2388.01,8.392,392,39.09,23.2522 +47,103,0.0034,0.0002,642.98,1588.43,1404.6,21.61,554.19,2388.05,9069.72,47.34,521.76,2388.03,8.4324,390,39.01,23.3101 +47,104,-0.0012,0.0002,642.49,1585.78,1398.75,21.61,554.92,2388.04,9065.11,47.32,521.97,2387.98,8.4539,392,38.74,23.3257 +47,105,-0.0032,-0.0003,642.09,1588.22,1404.37,21.61,554.3,2388.03,9069.89,47.51,521.47,2388.05,8.4147,394,38.97,23.3703 +47,106,-0.0005,0.0,642.07,1575.03,1409.09,21.61,554.29,2388.0,9067.26,47.37,522.13,2388.02,8.4164,393,38.94,23.4738 +47,107,-0.0006,-0.0001,641.99,1585.05,1405.92,21.61,554.51,2388.05,9071.69,47.19,522.25,2388.05,8.4383,392,38.86,23.3731 +47,108,0.0015,0.0003,642.69,1584.46,1401.48,21.61,554.0,2388.02,9068.11,47.24,522.34,2388.02,8.4292,392,38.99,23.3755 +47,109,-0.0038,0.0002,642.33,1592.21,1414.4,21.61,554.3,2388.02,9070.17,47.42,522.65,2388.04,8.4354,393,38.87,23.3895 +47,110,0.0,0.0004,642.46,1580.4,1403.36,21.61,554.48,2388.11,9070.64,47.29,522.04,2388.03,8.3694,392,39.1,23.4281 +47,111,0.0053,0.0002,642.82,1585.75,1411.44,21.61,554.24,2388.01,9065.79,47.43,522.14,2388.05,8.4228,393,38.9,23.231 +47,112,-0.002,0.0001,642.06,1592.48,1401.81,21.61,553.6,2387.98,9068.96,47.25,521.81,2388.04,8.4182,390,38.91,23.3327 +47,113,-0.0027,-0.0005,642.18,1584.18,1405.17,21.61,553.95,2387.98,9070.94,47.29,521.78,2388.03,8.3905,392,38.71,23.3483 +47,114,-0.0081,0.0004,642.19,1585.06,1410.45,21.61,553.76,2388.05,9067.87,47.3,522.05,2388.05,8.3821,392,38.74,23.2997 +47,115,-0.0008,0.0003,642.26,1587.72,1404.52,21.61,553.83,2387.98,9072.23,47.44,522.12,2388.01,8.4589,392,38.98,23.4487 +47,116,-0.0035,0.0004,642.87,1584.7,1399.63,21.61,554.19,2388.05,9068.4,47.38,522.49,2388.02,8.4461,393,39.0,23.2924 +47,117,0.0023,-0.0001,642.15,1586.76,1407.32,21.61,554.0,2388.03,9069.67,47.46,521.84,2388.04,8.4116,391,38.81,23.3819 +47,118,0.0021,-0.0003,642.24,1585.84,1395.94,21.61,552.66,2388.06,9066.11,47.16,522.47,2388.02,8.4615,393,38.94,23.3344 +47,119,0.0058,0.0002,641.88,1587.51,1408.39,21.61,554.09,2388.0,9072.34,47.22,521.89,2388.06,8.4035,391,38.62,23.3157 +47,120,-0.0009,-0.0005,642.14,1593.16,1399.21,21.61,553.1,2388.02,9075.81,47.49,521.7,2388.02,8.4271,391,38.84,23.3064 +47,121,-0.0017,-0.0002,642.37,1588.91,1402.36,21.61,554.0,2388.03,9064.84,47.42,522.27,2388.08,8.4031,392,39.06,23.361 +47,122,-0.0016,-0.0005,642.05,1588.81,1399.27,21.61,554.66,2388.05,9075.41,47.29,521.96,2388.03,8.4332,392,39.07,23.2488 +47,123,0.0029,-0.0004,642.28,1585.77,1405.05,21.61,554.41,2388.14,9069.75,47.39,522.47,2388.05,8.3917,393,38.84,23.2879 +47,124,-0.0054,0.0,642.98,1586.0,1405.08,21.61,553.24,2388.08,9066.84,47.39,522.23,2388.02,8.4207,392,38.77,23.3747 +47,125,0.0019,-0.0004,642.1,1586.56,1406.34,21.61,553.67,2388.04,9080.3,47.52,521.82,2388.02,8.4263,393,38.91,23.3462 +47,126,-0.0015,-0.0005,642.35,1586.81,1411.11,21.61,553.95,2388.11,9066.69,47.5,521.56,2388.01,8.4196,393,39.12,23.3697 +47,127,-0.0022,-0.0005,642.33,1588.33,1405.95,21.61,554.69,2387.99,9065.45,47.44,522.23,2388.03,8.4033,392,38.94,23.39 +47,128,0.0016,0.0004,642.55,1589.6,1404.22,21.61,553.81,2387.99,9078.83,47.44,522.32,2388.01,8.4063,393,38.86,23.3346 +47,129,-0.0011,-0.0002,642.35,1583.8,1402.94,21.61,553.37,2388.04,9076.92,47.39,521.55,2388.05,8.4036,392,38.91,23.3945 +47,130,0.0005,-0.0002,642.47,1590.18,1406.25,21.61,553.85,2388.03,9072.96,47.36,521.89,2388.05,8.3933,394,38.92,23.3359 +47,131,-0.0022,-0.0001,642.4,1579.94,1401.11,21.61,553.66,2388.07,9070.68,47.57,521.75,2388.07,8.4367,393,38.87,23.2885 +47,132,-0.0027,-0.0004,641.79,1583.46,1411.1,21.61,554.07,2387.97,9077.3,47.52,521.75,2388.07,8.4369,394,38.91,23.4065 +47,133,-0.0022,0.0002,642.72,1593.37,1401.96,21.61,553.63,2388.03,9069.49,47.27,521.9,2388.05,8.4125,392,38.87,23.3309 +47,134,0.005,-0.0,642.84,1582.69,1400.58,21.61,553.44,2388.02,9067.37,47.26,521.98,2388.0,8.4323,392,38.91,23.3861 +47,135,0.0024,-0.0005,641.86,1595.35,1407.0,21.61,552.77,2388.09,9082.19,47.35,522.26,2388.09,8.433,393,38.71,23.267 +47,136,-0.0011,-0.0002,642.74,1588.33,1406.68,21.61,553.76,2387.98,9074.92,47.39,521.46,2388.04,8.4401,392,38.87,23.379 +47,137,-0.0013,-0.0002,642.7,1589.12,1401.39,21.61,553.25,2388.06,9074.0,47.53,521.59,2388.06,8.4332,393,38.88,23.2847 +47,138,-0.0005,-0.0002,642.45,1589.6,1411.46,21.61,554.07,2388.06,9072.75,47.3,521.74,2388.07,8.4531,392,38.8,23.2686 +47,139,-0.0016,-0.0003,642.57,1584.05,1408.4,21.61,553.52,2388.01,9077.18,47.43,521.85,2388.03,8.4226,392,38.94,23.4256 +47,140,-0.0027,0.0003,642.84,1589.97,1399.76,21.61,553.87,2388.04,9069.57,47.3,521.28,2388.02,8.4023,392,38.87,23.3338 +47,141,-0.0005,-0.0005,642.65,1588.13,1413.07,21.61,554.03,2388.08,9074.54,47.21,521.83,2388.07,8.3931,393,38.95,23.2914 +47,142,-0.001,0.0,642.72,1580.05,1408.59,21.61,554.32,2388.02,9077.58,47.4,521.77,2388.05,8.4696,392,38.97,23.3538 +47,143,0.002,-0.0005,642.7,1587.59,1405.27,21.61,553.74,2388.1,9069.37,47.45,521.69,2388.07,8.4398,391,38.75,23.4264 +47,144,-0.0009,0.0003,642.14,1589.38,1401.06,21.61,553.04,2388.03,9072.16,47.39,521.72,2388.04,8.4364,395,38.81,23.2299 +47,145,0.0013,-0.0003,642.65,1588.8,1399.62,21.61,552.87,2388.07,9066.15,47.32,521.82,2388.05,8.4433,392,38.75,23.3843 +47,146,0.0031,0.0004,642.43,1586.78,1406.7,21.61,553.6,2388.07,9069.55,47.48,521.76,2388.03,8.4358,392,38.74,23.2274 +47,147,0.0005,0.0004,642.62,1597.94,1404.59,21.61,553.69,2388.1,9081.37,47.53,521.37,2388.06,8.4211,392,38.79,23.2998 +47,148,-0.0004,0.0002,642.56,1589.14,1405.85,21.61,553.11,2388.04,9077.78,47.49,521.97,2388.05,8.4136,392,38.93,23.3257 +47,149,0.0017,-0.0004,642.25,1589.77,1402.6,21.61,553.58,2388.07,9076.72,47.37,521.38,2388.02,8.4267,392,38.93,23.2946 +47,150,-0.0039,-0.0005,642.83,1588.18,1405.4,21.61,553.71,2388.08,9066.87,47.4,521.81,2388.12,8.4068,393,38.91,23.2845 +47,151,-0.0,0.0,642.57,1590.14,1404.79,21.61,553.86,2388.05,9081.54,47.58,521.63,2388.04,8.4609,394,38.84,23.257 +47,152,-0.0029,0.0,642.14,1591.49,1401.36,21.61,553.87,2388.09,9074.22,47.47,521.46,2388.1,8.4696,393,38.96,23.2933 +47,153,-0.0023,-0.0003,642.39,1591.33,1415.96,21.61,553.52,2388.09,9085.46,47.51,521.52,2388.08,8.4527,394,38.88,23.2103 +47,154,-0.0028,0.0002,642.71,1591.36,1412.01,21.61,552.89,2388.11,9073.82,47.61,521.37,2388.08,8.422,393,38.57,23.3289 +47,155,0.0013,-0.0002,643.1,1586.7,1414.5,21.61,553.91,2388.07,9074.98,47.41,521.71,2388.13,8.4319,393,38.95,23.2409 +47,156,-0.001,-0.0002,642.45,1588.64,1413.24,21.61,553.14,2388.07,9076.75,47.47,521.47,2388.05,8.4409,393,38.88,23.2812 +47,157,0.0041,0.0004,642.78,1585.01,1407.19,21.61,552.97,2388.04,9069.95,47.59,521.75,2388.08,8.4509,392,38.83,23.2543 +47,158,-0.0007,0.0002,643.21,1590.29,1411.36,21.61,553.15,2388.13,9075.93,47.67,520.98,2388.06,8.4395,395,38.63,23.2164 +47,159,0.0015,0.0003,642.53,1592.17,1412.21,21.61,552.96,2388.07,9079.76,47.47,521.36,2388.1,8.4692,394,38.91,23.3325 +47,160,-0.0014,-0.0004,642.49,1591.0,1405.85,21.61,554.0,2388.03,9076.05,47.63,521.41,2388.05,8.4644,393,38.86,23.3992 +47,161,0.0029,0.0001,642.75,1595.15,1403.99,21.61,553.33,2388.1,9078.76,47.41,521.64,2388.05,8.4428,393,38.9,23.3298 +47,162,0.0023,-0.0004,643.19,1596.5,1410.46,21.61,553.45,2388.03,9079.58,47.66,520.77,2388.0,8.4377,395,38.84,23.3044 +47,163,-0.0013,0.0,642.68,1595.57,1403.14,21.61,553.09,2388.09,9078.05,47.55,521.34,2388.08,8.4496,395,38.77,23.2309 +47,164,-0.0023,-0.0003,643.57,1590.89,1415.32,21.61,553.16,2388.08,9082.87,47.56,520.83,2388.08,8.4377,393,38.61,23.2545 +47,165,0.0011,0.0002,642.63,1595.56,1417.79,21.61,553.23,2388.02,9081.83,47.55,521.29,2388.14,8.4393,394,38.8,23.307 +47,166,-0.0011,-0.0004,642.87,1591.43,1409.8,21.61,553.94,2388.07,9080.28,47.56,520.99,2388.06,8.4713,394,38.74,23.2342 +47,167,-0.0001,-0.0004,643.15,1591.64,1407.03,21.61,553.16,2388.07,9080.98,47.58,521.24,2388.06,8.465,393,38.79,23.2483 +47,168,0.0006,0.0003,641.92,1589.02,1420.46,21.61,553.09,2388.08,9078.34,47.47,521.1,2388.11,8.4305,393,38.78,23.2023 +47,169,-0.0033,-0.0003,643.02,1597.23,1409.48,21.61,553.16,2388.08,9083.5,47.64,520.78,2388.1,8.4721,395,38.81,23.2177 +47,170,0.0016,0.0001,643.0,1590.81,1409.65,21.61,553.36,2388.09,9080.44,47.78,521.02,2388.13,8.4712,393,38.73,23.2731 +47,171,-0.0006,-0.0002,642.69,1592.59,1411.85,21.61,552.99,2388.09,9087.05,47.81,520.96,2388.08,8.4754,393,38.83,23.2605 +47,172,-0.0002,0.0002,642.83,1593.27,1420.82,21.61,553.78,2388.13,9082.22,47.45,521.33,2388.13,8.451,394,38.68,23.2224 +47,173,0.0016,0.0001,642.76,1589.72,1408.5,21.61,553.34,2388.13,9081.05,47.74,520.91,2388.15,8.4554,394,38.73,23.2698 +47,174,-0.0022,-0.0001,642.73,1603.82,1416.84,21.61,552.8,2388.15,9079.87,47.76,521.26,2388.11,8.4522,394,38.56,23.2984 +47,175,0.0003,0.0003,643.37,1586.66,1414.65,21.61,553.24,2388.1,9085.55,47.58,521.35,2388.12,8.4785,394,38.7,23.2637 +47,176,0.0053,-0.0001,643.2,1588.0,1412.74,21.61,552.13,2388.1,9085.48,47.72,521.35,2388.09,8.42,394,38.66,23.2887 +47,177,0.0038,-0.0004,642.59,1591.89,1410.96,21.61,553.62,2388.09,9085.37,47.61,520.94,2388.07,8.4529,394,38.85,23.2514 +47,178,-0.0026,-0.0001,643.0,1589.3,1419.35,21.61,553.41,2388.14,9088.07,47.62,520.75,2388.14,8.4533,394,38.94,23.2409 +47,179,-0.003,0.0001,642.74,1599.01,1409.71,21.61,553.03,2388.08,9090.19,47.63,520.79,2388.08,8.4837,395,38.69,23.209 +47,180,-0.0035,0.0,643.11,1595.48,1413.38,21.61,552.52,2388.12,9084.74,47.77,520.74,2388.08,8.4831,393,38.71,23.1991 +47,181,-0.0035,0.0003,643.25,1596.7,1412.54,21.61,553.07,2388.14,9086.48,47.79,521.43,2388.1,8.4695,394,38.6,23.1514 +47,182,-0.0009,-0.0002,642.92,1602.84,1415.35,21.61,553.25,2388.06,9084.66,47.49,520.93,2388.1,8.4275,393,38.58,23.2178 +47,183,0.0021,0.0002,643.47,1593.24,1417.87,21.61,552.85,2388.09,9085.92,47.66,520.93,2388.11,8.5075,394,38.59,23.1667 +47,184,-0.0004,0.0001,643.28,1600.34,1414.17,21.61,552.55,2388.12,9085.1,47.69,520.88,2388.16,8.4681,395,38.84,23.2984 +47,185,0.0012,0.0002,643.2,1589.6,1414.65,21.61,551.68,2388.13,9089.57,47.75,520.79,2388.15,8.4672,395,38.78,23.1398 +47,186,0.0007,-0.0002,643.03,1597.18,1420.9,21.61,552.53,2388.12,9091.74,47.85,521.16,2388.11,8.4665,395,38.77,23.2148 +47,187,0.0031,0.0001,643.1,1591.92,1415.94,21.61,553.11,2388.14,9098.16,47.59,520.74,2388.14,8.4654,393,38.78,23.1375 +47,188,-0.0004,-0.0002,642.79,1594.86,1422.6,21.61,553.14,2388.07,9092.04,47.87,520.79,2388.14,8.4657,395,38.85,23.1549 +47,189,-0.0017,-0.0003,643.6,1588.23,1416.07,21.61,552.74,2388.14,9093.48,47.7,521.0,2388.12,8.4749,395,38.62,23.1605 +47,190,0.0029,0.0002,642.58,1599.1,1417.1,21.61,552.37,2388.12,9092.34,47.81,520.86,2388.11,8.4962,394,38.65,23.1856 +47,191,-0.0004,-0.0005,642.93,1599.84,1410.03,21.61,552.82,2388.21,9088.84,47.76,520.75,2388.11,8.4839,395,38.69,23.1444 +47,192,-0.0016,0.0004,643.23,1597.43,1419.79,21.61,552.3,2388.15,9084.48,47.8,520.11,2388.15,8.4801,395,38.64,23.1599 +47,193,-0.0013,0.0002,643.8,1603.73,1415.5,21.61,552.46,2388.09,9087.06,47.77,521.01,2388.11,8.4949,394,38.58,23.1101 +47,194,0.0038,-0.0002,643.52,1595.3,1425.64,21.61,552.76,2388.09,9089.81,47.96,519.99,2388.11,8.5068,396,38.53,23.1098 +47,195,0.0058,0.0002,643.19,1599.61,1422.83,21.61,553.11,2388.12,9101.84,47.77,520.73,2388.06,8.4709,393,38.77,23.0628 +47,196,-0.0009,-0.0002,643.63,1597.71,1417.23,21.61,552.88,2388.21,9094.9,47.94,520.67,2388.12,8.4911,396,38.58,23.1176 +47,197,0.0036,-0.0004,642.95,1605.33,1419.36,21.61,551.5,2388.13,9099.43,47.81,520.44,2388.13,8.4904,396,38.61,23.1407 +47,198,-0.002,-0.0005,642.75,1595.13,1424.51,21.61,552.03,2388.15,9086.83,48.02,520.39,2388.13,8.4854,395,38.65,23.1176 +47,199,0.0052,0.0004,643.28,1599.02,1424.43,21.61,552.16,2388.16,9092.46,48.01,520.28,2388.15,8.4941,394,38.62,23.0752 +47,200,-0.0,0.0003,643.08,1596.65,1426.1,21.61,551.53,2388.17,9094.81,48.03,519.99,2388.15,8.5028,396,38.49,23.0787 +47,201,0.0004,-0.0005,643.6,1593.02,1415.24,21.61,552.42,2388.19,9096.77,48.04,520.53,2388.15,8.4752,395,38.68,23.1646 +47,202,-0.005,0.0004,643.1,1600.95,1422.52,21.61,552.08,2388.14,9098.73,48.07,520.49,2388.2,8.4844,395,38.66,22.9843 +47,203,0.0032,-0.0003,643.41,1593.11,1426.57,21.61,552.11,2388.12,9096.51,47.84,520.43,2388.2,8.5001,396,38.49,23.0978 +47,204,0.0032,-0.0004,642.93,1604.59,1436.65,21.61,551.42,2388.17,9094.7,48.13,520.23,2388.15,8.5228,395,38.68,23.1709 +47,205,-0.0069,-0.0001,643.65,1604.96,1426.06,21.61,552.2,2388.16,9100.79,47.98,520.43,2388.15,8.5473,396,38.56,23.191 +47,206,-0.002,0.0001,643.19,1598.99,1425.61,21.61,552.35,2388.16,9098.91,47.96,520.64,2388.15,8.4887,396,38.42,23.0552 +47,207,-0.0024,-0.0003,643.31,1605.32,1426.49,21.61,551.04,2388.18,9099.45,48.13,520.12,2388.23,8.5257,396,38.36,23.065 +47,208,-0.0006,-0.0005,644.02,1598.2,1420.91,21.61,552.08,2388.16,9101.7,48.12,519.5,2388.19,8.53,397,38.57,23.1465 +47,209,0.0044,-0.0,643.22,1597.77,1427.12,21.61,551.47,2388.19,9109.37,48.05,520.5,2388.18,8.5429,396,38.4,23.1393 +47,210,-0.0015,0.0001,643.78,1606.28,1422.21,21.61,551.76,2388.2,9109.62,48.0,519.87,2388.2,8.5324,396,38.52,23.107 +47,211,-0.0006,-0.0005,642.96,1605.71,1433.16,21.61,551.77,2388.2,9097.78,48.14,520.18,2388.21,8.4635,396,38.25,23.0423 +47,212,-0.0021,0.0004,643.4,1600.06,1427.67,21.61,551.63,2388.24,9110.6,47.97,520.55,2388.23,8.5209,396,38.53,23.0345 +47,213,-0.0015,-0.0003,643.9,1604.52,1422.89,21.61,551.93,2388.21,9109.27,48.23,520.18,2388.23,8.527,397,38.59,22.965 +47,214,0.0032,-0.0001,643.5,1602.64,1433.3,21.61,551.7,2388.21,9107.27,48.28,519.72,2388.22,8.5238,395,38.48,23.1299 +50,10,0.0005,0.0003,642.33,1585.82,1395.96,21.61,554.58,2388.09,9061.41,47.26,521.43,2388.03,8.4169,392,38.81,23.2714 +50,11,-0.0036,-0.0004,642.05,1578.46,1396.43,21.61,553.38,2388.09,9063.78,47.4,521.57,2388.09,8.3979,392,38.81,23.3106 +50,12,-0.003,0.0003,642.76,1581.49,1400.18,21.61,554.42,2388.07,9060.85,47.34,522.23,2388.09,8.4528,393,38.84,23.3407 +50,13,-0.0025,0.0,642.6,1576.37,1398.64,21.61,553.14,2388.07,9065.62,47.4,521.87,2388.07,8.4003,393,38.85,23.3102 +50,14,-0.0014,0.0003,641.95,1588.64,1406.48,21.61,553.63,2388.05,9063.97,47.43,521.76,2388.05,8.4072,391,38.95,23.3548 +50,15,0.0018,0.0,642.19,1588.83,1399.52,21.61,553.72,2388.02,9061.43,47.25,522.36,2388.01,8.4295,391,38.96,23.346 +50,16,-0.0009,0.0003,641.81,1584.15,1405.48,21.61,553.85,2388.11,9064.26,47.43,521.75,2388.01,8.4279,392,38.89,23.288 +50,17,-0.0049,-0.0005,642.83,1585.08,1402.0,21.61,554.4,2388.08,9067.86,47.41,521.77,2388.06,8.4252,394,38.83,23.2551 +50,18,0.002,0.0001,642.47,1582.63,1401.72,21.61,553.74,2388.05,9057.15,47.3,522.45,2388.03,8.418,393,38.9,23.441 +50,19,0.0023,-0.0006,642.67,1585.14,1404.04,21.61,554.12,2388.09,9061.05,47.49,522.02,2388.06,8.4178,392,39.02,23.3642 +50,20,-0.0001,-0.0002,642.42,1583.58,1399.71,21.61,554.51,2388.07,9068.95,47.46,521.68,2388.08,8.4347,392,38.82,23.4585 +50,21,-0.0001,-0.0001,642.56,1585.06,1412.19,21.61,554.43,2388.04,9062.45,47.35,521.46,2388.03,8.419,392,39.0,23.3518 +50,22,0.004,0.0002,642.39,1584.2,1407.2,21.61,554.04,2388.03,9063.67,47.41,521.47,2388.0,8.4218,393,38.76,23.3956 +50,23,-0.0005,-0.0004,642.83,1593.36,1400.32,21.61,553.53,2388.08,9056.7,47.48,521.89,2388.03,8.3873,391,38.99,23.4109 +50,24,0.0035,-0.0002,642.73,1580.39,1400.53,21.61,554.31,2388.07,9061.05,47.32,521.94,2388.09,8.3854,392,38.96,23.3642 +50,25,0.0026,0.0003,642.4,1589.16,1399.42,21.61,553.25,2388.04,9063.67,47.41,521.98,2388.03,8.4174,394,38.98,23.3005 +50,26,0.0035,-0.0001,642.74,1579.32,1397.69,21.61,554.16,2388.06,9074.08,47.43,521.98,2388.04,8.4121,393,38.81,23.3646 +50,27,-0.0019,-0.0003,642.46,1586.65,1402.83,21.61,553.98,2388.04,9069.01,47.36,521.67,2388.07,8.4403,392,38.94,23.3186 +50,28,-0.005,0.0,642.28,1586.5,1407.03,21.61,553.44,2388.13,9068.05,47.46,521.59,2387.99,8.4091,392,38.91,23.3449 +50,29,0.0039,0.0001,642.92,1591.07,1399.2,21.61,553.96,2388.06,9061.73,47.34,521.57,2387.97,8.4099,391,38.91,23.3521 +50,30,-0.0021,0.0002,642.62,1590.45,1407.7,21.61,554.18,2388.03,9064.09,47.25,522.31,2388.08,8.4132,393,38.99,23.1615 +50,31,-0.0034,-0.0006,642.46,1584.46,1408.24,21.61,553.98,2388.06,9062.5,47.18,521.49,2388.04,8.4105,393,38.91,23.3103 +50,32,0.0009,-0.0006,642.63,1589.42,1399.63,21.61,553.37,2388.04,9060.88,47.44,522.26,2388.06,8.3881,393,39.0,23.3352 +50,33,0.0,-0.0004,642.14,1582.13,1405.19,21.61,553.22,2388.08,9062.7,47.51,521.78,2388.06,8.4352,391,38.82,23.3546 +50,34,-0.0009,0.0004,642.82,1582.82,1408.77,21.61,554.05,2388.08,9068.04,47.34,522.29,2388.07,8.4409,393,38.98,23.3735 +50,35,-0.0031,0.0003,642.12,1590.81,1400.34,21.61,553.18,2388.02,9058.77,47.3,521.23,2388.08,8.3706,393,38.9,23.3269 +50,36,0.0004,-0.0004,642.38,1586.38,1403.16,21.61,554.13,2388.08,9064.08,47.42,522.38,2388.04,8.4335,394,38.95,23.4361 +50,37,-0.0029,-0.0002,642.66,1591.79,1401.3,21.6,554.6,2388.01,9064.12,47.47,521.68,2388.06,8.4158,393,38.8,23.3016 +50,38,-0.0002,-0.0005,642.28,1587.84,1404.96,21.61,553.6,2388.06,9065.83,47.33,522.12,2388.07,8.4467,392,38.99,23.344 +50,39,-0.001,-0.0005,642.21,1586.89,1404.47,21.61,554.31,2388.05,9065.63,47.48,521.96,2388.05,8.4424,393,38.91,23.319 +50,40,-0.0061,-0.0002,643.19,1587.36,1398.9,21.61,554.35,2388.07,9059.91,47.3,522.31,2388.04,8.4504,393,38.95,23.3161 +50,41,-0.0002,0.0001,642.47,1584.96,1406.08,21.61,554.03,2388.0,9073.29,47.44,522.05,2388.05,8.3822,392,38.83,23.3256 +50,42,-0.0003,-0.0003,641.82,1585.3,1399.3,21.61,554.38,2388.02,9068.48,47.13,522.17,2388.04,8.418,393,38.8,23.4777 +50,43,0.0026,-0.0005,642.39,1589.71,1410.44,21.61,553.41,2388.07,9065.43,47.32,522.44,2388.07,8.4232,393,38.7,23.3443 +50,44,0.0011,0.0002,642.07,1590.7,1403.72,21.61,553.84,2388.04,9059.48,47.43,521.9,2388.08,8.4063,393,38.89,23.3815 +50,45,0.0005,-0.0001,641.8,1592.23,1401.26,21.61,553.56,2388.02,9059.32,47.19,521.73,2388.04,8.3988,390,38.95,23.3749 +50,46,0.0008,0.0001,642.26,1586.46,1404.42,21.61,553.29,2388.04,9071.98,47.41,521.8,2388.03,8.4241,391,38.96,23.3982 +50,47,0.0016,0.0002,642.78,1594.91,1404.75,21.61,553.26,2388.0,9061.25,47.48,522.25,2388.05,8.438,391,38.94,23.253 +50,48,-0.0005,-0.0001,642.22,1580.13,1403.97,21.61,553.98,2388.11,9069.15,47.43,522.09,2388.08,8.4472,392,38.9,23.3085 +50,49,0.0026,-0.0002,642.85,1586.51,1403.74,21.61,553.53,2388.07,9056.25,47.38,521.63,2388.07,8.403,393,38.91,23.1514 +50,50,-0.0036,0.0002,642.17,1593.23,1396.05,21.61,554.17,2388.06,9061.89,47.63,521.69,2388.02,8.4304,392,38.84,23.38 +50,51,-0.0016,-0.0005,642.12,1588.94,1408.59,21.61,553.5,2388.03,9062.73,47.28,521.81,2388.04,8.3951,393,38.99,23.1953 +50,52,0.0062,-0.0004,642.16,1585.63,1410.41,21.61,554.02,2388.08,9062.46,47.34,521.97,2388.05,8.41,392,38.95,23.4115 +50,53,0.0036,-0.0004,642.53,1587.93,1401.62,21.61,553.98,2388.04,9071.8,47.65,521.8,2388.1,8.4355,394,38.99,23.3295 +50,54,-0.002,0.0003,642.03,1586.26,1407.92,21.61,553.54,2388.02,9065.53,47.33,521.19,2388.04,8.4345,392,38.93,23.4203 +50,55,-0.0021,0.0001,641.89,1587.63,1410.24,21.61,554.04,2388.07,9060.36,47.45,521.23,2388.07,8.45,393,38.76,23.3948 +50,56,-0.0005,-0.0005,642.45,1583.2,1408.51,21.61,554.6,2388.02,9063.39,47.39,521.43,2388.06,8.4518,394,38.96,23.2727 +50,57,0.0026,-0.0001,643.12,1584.99,1398.91,21.61,553.92,2388.06,9057.86,47.51,522.1,2388.03,8.4159,393,38.78,23.3328 +50,58,0.0008,-0.0002,642.32,1586.96,1404.61,21.61,553.8,2388.02,9066.95,47.18,521.81,2388.09,8.4207,393,39.02,23.3168 +50,59,0.0011,-0.0,642.72,1586.05,1400.68,21.61,553.96,2388.11,9067.12,47.23,522.11,2388.02,8.3832,394,38.81,23.3355 +50,60,-0.0013,-0.0001,642.44,1589.24,1416.54,21.61,553.12,2388.03,9070.84,47.32,521.79,2388.02,8.4086,392,38.86,23.3714 +50,61,-0.0021,-0.0005,642.39,1584.21,1404.19,21.61,553.94,2388.08,9066.48,47.4,521.9,2388.05,8.4312,393,38.94,23.3841 +50,62,-0.0008,0.0004,642.64,1597.04,1403.63,21.61,553.31,2388.12,9060.63,47.53,522.24,2388.09,8.4157,394,39.14,23.2324 +50,63,-0.0009,0.0002,642.14,1589.99,1410.05,21.61,553.37,2388.04,9067.71,47.37,521.23,2388.1,8.4236,392,38.79,23.3751 +50,64,0.0026,-0.0002,642.21,1592.14,1403.64,21.61,553.14,2388.06,9057.15,47.4,521.71,2388.03,8.4281,392,38.91,23.3434 +50,65,0.0039,-0.0003,642.24,1585.01,1405.13,21.61,553.69,2388.07,9068.1,47.24,522.19,2388.08,8.4537,393,38.98,23.2149 +50,66,-0.002,-0.0002,642.52,1584.84,1407.86,21.61,553.52,2388.05,9065.0,47.58,521.98,2388.03,8.4272,392,38.96,23.2587 +50,67,-0.0027,0.0001,642.55,1592.28,1406.93,21.61,553.16,2388.05,9077.05,47.23,520.86,2388.1,8.4347,393,38.88,23.3006 +50,68,0.0006,0.0,642.52,1585.26,1402.78,21.61,553.42,2388.08,9057.66,47.19,521.31,2388.02,8.4391,395,38.91,23.327 +50,69,0.001,-0.0,642.29,1581.25,1409.86,21.61,553.25,2388.04,9066.7,47.28,522.2,2388.06,8.4336,392,39.08,23.4135 +50,70,0.0042,0.0004,642.46,1586.49,1409.26,21.61,554.94,2388.06,9066.79,47.5,521.67,2388.08,8.4552,394,39.05,23.2842 +50,71,0.0004,0.0002,642.0,1588.12,1399.37,21.61,553.54,2388.06,9063.64,47.53,521.72,2388.06,8.4144,392,38.9,23.3808 +50,72,-0.0028,0.0003,642.42,1584.73,1404.86,21.61,553.8,2388.11,9058.59,47.59,522.04,2388.06,8.4021,392,38.89,23.3863 +50,73,0.0004,-0.0001,642.63,1586.71,1400.6,21.61,554.14,2388.03,9061.19,47.43,521.39,2388.03,8.4378,393,38.67,23.2567 +50,74,-0.0024,-0.0004,642.79,1587.78,1405.16,21.61,554.46,2388.05,9067.88,47.26,521.78,2388.04,8.4015,393,38.73,23.3033 +50,75,0.003,-0.0006,642.6,1593.14,1396.47,21.61,554.63,2388.03,9058.27,47.44,521.63,2388.0,8.4256,394,38.93,23.3008 +50,76,-0.0026,0.0003,642.87,1590.79,1407.75,21.61,554.06,2388.07,9073.62,47.47,521.55,2388.11,8.4664,393,38.96,23.352 +50,77,-0.0004,-0.0004,642.07,1584.43,1405.78,21.61,553.61,2387.99,9066.94,47.44,521.84,2388.07,8.413,392,38.87,23.2678 +50,78,0.0037,-0.0005,642.59,1586.9,1406.29,21.61,553.91,2388.04,9061.96,47.35,521.41,2388.08,8.4072,393,38.72,23.4196 +50,79,-0.0006,-0.0004,642.51,1589.88,1406.79,21.61,553.97,2388.05,9069.12,47.49,522.02,2388.06,8.3685,393,38.95,23.2316 +50,80,-0.002,-0.0006,642.53,1584.91,1408.52,21.61,554.29,2388.04,9070.89,47.62,521.71,2388.01,8.427,393,38.85,23.3824 +50,81,0.0016,0.0001,642.91,1584.75,1405.41,21.61,553.9,2388.07,9076.62,47.46,521.32,2388.02,8.4206,391,38.84,23.365 +50,82,-0.0047,-0.0003,642.44,1587.53,1407.61,21.61,553.88,2388.08,9066.0,47.36,522.18,2388.05,8.4279,393,38.83,23.3956 +50,83,-0.0013,-0.0001,642.81,1584.97,1406.28,21.61,553.05,2388.08,9062.4,47.5,521.28,2388.07,8.4171,393,38.69,23.2507 +50,84,0.0003,-0.0004,642.86,1594.21,1401.17,21.61,553.17,2388.09,9070.82,47.43,521.7,2388.06,8.4153,392,38.89,23.1871 +50,85,-0.0007,-0.0006,642.52,1587.23,1414.25,21.61,553.96,2388.05,9063.96,47.57,521.68,2388.06,8.3936,393,38.87,23.2868 +50,86,-0.0006,0.0001,642.6,1589.77,1408.59,21.61,553.28,2388.06,9064.35,47.45,521.41,2388.12,8.4459,393,39.05,23.3112 +50,87,-0.0011,0.0001,642.8,1590.97,1402.2,21.61,553.29,2388.09,9076.77,47.45,521.54,2388.07,8.4213,393,39.04,23.2808 +50,88,0.0014,0.0,642.57,1596.7,1400.16,21.61,554.13,2388.02,9059.16,47.51,521.52,2388.06,8.429,393,38.84,23.2388 +50,89,-0.0023,-0.0003,642.43,1588.87,1415.58,21.61,553.88,2388.06,9070.2,47.31,521.85,2388.07,8.4376,393,38.8,23.288 +50,90,-0.0029,0.0001,642.6,1593.47,1410.18,21.61,554.29,2388.08,9074.19,47.46,521.27,2388.08,8.4483,393,38.76,23.281 +50,91,0.0035,-0.0006,642.48,1594.0,1403.91,21.61,553.26,2388.07,9066.75,47.54,521.5,2388.05,8.4339,393,38.96,23.3141 +50,92,-0.0013,-0.0005,642.76,1590.0,1401.25,21.61,553.57,2388.09,9078.07,47.45,521.21,2388.01,8.4334,393,38.8,23.4373 +50,93,-0.0014,-0.0004,642.43,1584.14,1407.75,21.61,553.86,2388.05,9066.98,47.36,521.06,2388.05,8.4146,394,38.77,23.2351 +50,94,0.0031,-0.0,643.02,1589.56,1406.51,21.61,554.09,2388.11,9063.37,47.52,521.76,2388.12,8.4371,393,38.72,23.3616 +50,95,-0.002,-0.0005,642.61,1589.19,1400.61,21.61,553.72,2388.08,9068.33,47.63,521.59,2388.1,8.4572,393,38.86,23.2087 +50,96,0.0004,-0.0001,643.01,1584.82,1407.66,21.61,553.88,2388.05,9064.01,47.67,520.95,2388.12,8.4468,393,38.74,23.3042 +50,97,0.0023,0.0001,642.26,1586.61,1412.3,21.61,553.01,2388.09,9063.93,47.54,521.46,2388.04,8.4492,391,38.76,23.2788 +50,98,-0.0013,0.0001,642.38,1592.25,1415.75,21.61,553.75,2388.06,9066.16,47.45,521.31,2388.05,8.4741,394,38.83,23.3351 +50,99,0.0018,0.0,642.39,1585.49,1405.87,21.61,553.01,2388.03,9067.2,47.35,521.39,2388.07,8.4572,395,39.02,23.3337 +50,100,0.0017,0.0002,642.38,1588.59,1411.1,21.61,553.32,2388.09,9066.08,47.61,521.2,2388.14,8.4043,391,38.87,23.218 +50,101,0.0015,-0.0003,642.85,1592.22,1401.11,21.61,553.13,2388.11,9063.79,47.49,521.52,2388.11,8.4367,392,38.9,23.2263 +50,102,-0.0019,-0.0003,642.39,1582.43,1414.12,21.61,553.38,2388.12,9071.01,47.6,522.0,2388.12,8.4199,393,38.79,23.2869 +50,103,-0.0031,-0.0002,642.03,1589.44,1406.72,21.61,553.31,2388.13,9064.34,47.53,521.37,2388.14,8.4632,393,38.63,23.3116 +50,104,0.0059,0.0004,642.36,1582.35,1405.23,21.61,553.76,2388.1,9072.74,47.67,521.29,2388.08,8.4417,391,39.01,23.2998 +50,105,0.0029,-0.0004,642.69,1586.81,1404.16,21.61,553.88,2388.01,9070.52,47.46,521.52,2388.1,8.4503,393,38.96,23.1933 +50,106,0.0002,-0.0002,642.86,1595.04,1412.43,21.61,553.63,2388.11,9068.84,47.47,521.34,2388.03,8.4337,393,38.68,23.3613 +50,107,-0.0003,0.0002,642.41,1585.63,1406.48,21.61,553.02,2388.04,9076.73,47.71,521.35,2388.08,8.4257,392,38.76,23.2578 +50,108,0.0021,0.0003,642.56,1586.63,1403.55,21.61,554.17,2388.07,9068.62,47.38,521.79,2388.07,8.405,393,38.89,23.4082 +50,109,-0.0008,-0.0004,643.16,1592.98,1402.06,21.61,552.92,2388.05,9068.55,47.62,521.45,2388.09,8.4259,394,38.75,23.2252 +50,110,0.0011,-0.0006,642.54,1589.83,1409.9,21.61,553.33,2388.09,9068.83,47.59,521.61,2388.09,8.4337,393,39.05,23.2011 +50,111,-0.0034,-0.0001,642.35,1583.83,1411.36,21.61,554.03,2388.12,9077.18,47.48,520.8,2388.06,8.4407,392,38.8,23.2918 +50,112,0.0042,-0.0005,642.7,1593.62,1411.73,21.61,553.65,2388.12,9067.69,47.57,521.4,2388.07,8.4403,392,38.7,23.3406 +50,113,0.0041,0.0001,642.58,1594.04,1407.39,21.61,553.47,2388.06,9069.77,47.66,521.29,2388.03,8.4579,393,38.81,23.3687 +50,114,0.0016,0.0002,642.45,1581.39,1410.59,21.61,553.53,2388.05,9063.18,47.62,521.1,2388.1,8.4139,393,38.84,23.2916 +50,115,-0.0017,0.0002,642.68,1587.94,1408.14,21.61,553.7,2388.04,9068.26,47.55,521.5,2388.06,8.415,393,38.75,23.2829 +50,116,0.0018,-0.0001,642.65,1590.26,1409.13,21.61,553.65,2388.09,9069.26,47.52,521.71,2388.06,8.4735,394,38.77,23.2517 +50,117,0.0019,-0.0006,642.46,1595.36,1405.92,21.61,553.18,2388.1,9067.25,47.6,521.34,2388.12,8.4447,394,38.57,23.2391 +50,118,0.0015,0.0004,642.47,1584.45,1404.53,21.61,553.45,2388.1,9068.18,47.35,521.26,2388.04,8.415,392,38.94,23.3091 +50,119,-0.0035,0.0,643.12,1590.39,1406.79,21.61,553.14,2388.08,9074.31,47.4,521.22,2388.06,8.4504,394,38.86,23.2776 +50,120,-0.0006,0.0001,642.67,1583.85,1399.52,21.61,553.37,2388.05,9074.37,47.57,521.28,2388.02,8.4601,392,38.78,23.3392 +50,121,0.0029,-0.0004,642.58,1594.4,1407.05,21.61,553.03,2388.09,9070.88,47.63,521.52,2388.11,8.4468,393,38.74,23.3172 +50,122,0.0017,-0.0003,642.91,1586.67,1412.8,21.61,553.46,2388.11,9074.7,47.52,521.62,2388.07,8.4333,394,38.8,23.2134 +50,123,-0.001,0.0003,643.01,1578.72,1411.24,21.61,553.45,2388.08,9071.52,47.58,521.57,2388.14,8.4162,394,38.84,23.3588 +50,124,-0.0018,0.0003,642.72,1594.11,1411.57,21.61,553.61,2388.13,9076.43,47.78,520.68,2388.12,8.4797,391,39.02,23.257 +50,125,0.0034,0.0003,642.91,1594.05,1407.09,21.61,553.17,2388.09,9072.09,47.57,521.27,2388.09,8.4409,393,38.85,23.1987 +50,126,-0.0007,-0.0005,642.93,1593.66,1408.19,21.61,553.54,2388.07,9073.0,47.51,521.92,2388.04,8.4659,394,38.8,23.295 +50,127,-0.0037,0.0004,642.73,1586.43,1410.09,21.61,552.97,2388.08,9068.8,47.55,521.88,2388.08,8.413,395,38.69,23.2201 +50,128,-0.0,-0.0003,642.85,1587.73,1410.21,21.61,552.69,2388.07,9076.77,47.6,521.25,2388.13,8.4194,393,38.6,23.2817 +50,129,0.0014,0.0004,642.82,1591.14,1416.38,21.61,553.37,2388.16,9071.56,47.64,520.99,2388.12,8.4504,394,38.67,23.2955 +50,130,0.0023,-0.0001,642.99,1598.6,1414.89,21.61,553.18,2388.11,9085.34,47.56,520.95,2388.12,8.4192,394,38.7,23.3214 +50,131,0.0034,0.0,642.42,1588.11,1415.53,21.61,553.26,2388.04,9069.6,47.7,520.87,2388.09,8.469,392,38.78,23.266 +50,132,0.0003,0.0001,642.87,1591.02,1414.88,21.61,552.39,2388.11,9074.73,47.53,520.99,2388.09,8.4624,394,38.78,23.2801 +50,133,0.0005,-0.0003,643.07,1590.9,1405.64,21.61,553.15,2388.06,9076.85,47.56,521.18,2388.05,8.4557,394,38.71,23.3598 +50,134,-0.0027,-0.0004,642.75,1594.49,1414.12,21.61,553.32,2388.08,9073.39,47.54,521.63,2388.1,8.4541,394,38.81,23.3491 +50,135,0.0033,0.0004,642.9,1596.24,1410.8,21.61,552.8,2388.09,9073.29,47.58,521.08,2388.15,8.4656,393,38.81,23.2899 +50,136,0.0031,0.0001,643.54,1595.47,1411.44,21.61,552.72,2388.11,9087.74,47.45,520.49,2388.06,8.4413,394,38.95,23.226 +50,137,0.0005,-0.0001,643.11,1585.13,1407.97,21.61,553.02,2388.1,9083.98,47.68,521.11,2388.1,8.4157,394,38.77,23.2591 +50,138,0.0022,-0.0002,643.52,1597.84,1420.15,21.61,552.91,2388.13,9079.03,47.48,521.05,2388.14,8.4711,395,38.62,23.2523 +50,139,-0.0018,0.0001,642.64,1587.2,1408.46,21.61,553.37,2388.1,9081.32,47.62,520.51,2388.08,8.4661,394,38.75,23.1872 +50,140,0.0002,0.0002,642.96,1592.7,1414.87,21.61,552.62,2388.11,9074.22,47.58,521.36,2388.1,8.4336,392,38.73,23.3439 +50,141,-0.0001,-0.0003,642.44,1586.14,1414.46,21.61,553.24,2388.11,9088.0,47.72,521.55,2388.11,8.3914,394,38.81,23.2952 +50,142,-0.0046,-0.0001,643.51,1592.92,1417.52,21.61,553.06,2388.1,9082.1,47.77,521.39,2388.1,8.5048,394,38.7,23.2388 +50,143,0.0008,0.0004,642.26,1596.39,1410.7,21.61,552.72,2388.08,9084.3,47.66,521.42,2388.06,8.4267,395,38.74,23.219 +50,144,-0.0028,-0.0003,642.17,1598.41,1413.07,21.61,553.16,2388.16,9082.8,47.74,520.89,2388.09,8.4727,394,38.79,23.247 +50,145,0.0013,-0.0002,643.11,1585.16,1407.11,21.61,552.86,2388.1,9084.7,47.6,521.28,2388.08,8.46,393,38.93,23.3105 +50,146,-0.0017,0.0001,642.84,1592.44,1411.11,21.61,553.19,2388.09,9080.39,47.54,521.1,2388.12,8.4544,394,38.76,23.3391 +50,147,0.0,-0.0001,643.04,1592.47,1409.15,21.61,553.02,2388.13,9085.3,47.74,521.37,2388.08,8.504,393,38.51,23.2651 +50,148,0.0032,-0.0002,642.13,1593.57,1407.7,21.61,552.1,2388.09,9088.55,47.62,522.19,2388.01,8.4743,395,38.6,23.3118 +50,149,-0.0018,0.0,643.01,1584.21,1410.61,21.61,552.38,2388.09,9088.11,47.59,521.54,2388.08,8.4385,394,38.69,23.2573 +50,150,-0.0008,0.0001,643.37,1590.63,1413.01,21.61,553.05,2388.1,9081.01,47.52,521.4,2388.13,8.4752,394,38.51,23.1816 +50,151,-0.0003,0.0,642.49,1590.38,1415.17,21.61,553.09,2388.12,9085.05,47.6,520.74,2388.07,8.4393,396,38.72,23.3047 +50,152,0.0008,0.0004,642.71,1594.38,1415.78,21.61,553.31,2388.1,9084.92,47.72,520.8,2388.13,8.46,394,38.62,23.201 +50,153,-0.0018,-0.0003,642.6,1586.45,1407.55,21.61,553.0,2388.08,9088.09,47.71,520.96,2388.15,8.4432,395,38.6,23.193 +50,154,0.0023,-0.0001,643.09,1597.35,1416.92,21.61,553.56,2388.08,9090.87,47.68,520.53,2388.14,8.458,394,38.73,23.2003 +50,155,0.0015,-0.0001,642.42,1593.18,1416.79,21.61,553.14,2388.08,9090.82,47.59,520.99,2388.15,8.4548,393,38.69,23.2141 +50,156,0.0041,-0.0003,642.5,1593.73,1408.39,21.61,552.7,2388.11,9091.39,47.6,520.94,2388.12,8.4758,396,38.72,23.1351 +50,157,0.0018,0.0001,643.28,1594.64,1415.82,21.61,553.21,2388.17,9083.52,47.85,521.09,2388.15,8.4821,394,38.56,23.2534 +50,158,0.0,-0.0002,642.75,1598.37,1418.15,21.61,552.23,2388.15,9093.64,47.5,520.71,2388.11,8.4579,395,38.44,23.2506 +50,159,0.0024,0.0002,643.15,1596.77,1415.76,21.61,552.53,2388.1,9092.02,47.74,520.73,2388.11,8.4731,395,38.68,23.2233 +50,160,-0.0009,-0.0004,642.79,1590.19,1419.36,21.61,552.84,2388.08,9089.7,47.7,520.92,2388.13,8.5081,395,38.62,23.2034 +50,161,-0.0018,-0.0006,643.26,1591.34,1415.91,21.61,552.09,2388.13,9090.83,47.75,520.82,2388.13,8.4611,394,38.85,23.2393 +50,162,0.0038,0.0001,643.31,1596.57,1419.83,21.61,553.14,2388.12,9092.19,47.93,520.62,2388.13,8.4701,395,38.75,23.1573 +50,163,-0.0003,-0.0001,643.55,1588.15,1418.66,21.61,553.08,2388.14,9091.82,47.71,521.01,2388.11,8.4401,395,38.66,23.2479 +50,164,-0.0004,-0.0006,642.98,1593.81,1416.02,21.61,552.5,2388.09,9088.76,47.98,520.65,2388.09,8.4823,395,38.62,23.2171 +50,165,0.0011,0.0001,643.32,1597.08,1424.74,21.61,552.64,2388.09,9089.17,47.75,520.62,2388.19,8.4687,396,38.66,23.2858 +50,166,0.0038,-0.0002,643.26,1597.49,1415.92,21.61,552.7,2388.15,9095.28,47.69,521.1,2388.14,8.4701,396,38.8,23.1589 +50,167,-0.0024,-0.0001,643.01,1593.06,1414.23,21.61,553.02,2388.09,9095.57,47.99,521.05,2388.09,8.4827,395,38.64,23.1266 +50,168,0.004,-0.0006,643.47,1598.0,1423.54,21.61,553.2,2388.1,9099.12,47.74,520.75,2388.14,8.4962,394,38.42,23.0698 +50,169,-0.0056,0.0003,643.04,1598.54,1410.54,21.61,552.91,2388.13,9100.45,47.77,520.37,2388.15,8.4664,395,38.55,23.1757 +50,170,-0.0018,-0.0002,642.88,1601.32,1412.15,21.61,552.18,2388.15,9087.36,47.83,520.32,2388.15,8.4937,395,38.65,23.149 +50,171,-0.0009,-0.0001,643.42,1591.19,1420.96,21.61,553.14,2388.11,9091.96,47.8,520.11,2388.14,8.4943,396,38.62,23.1544 +50,172,0.0016,0.0002,643.08,1600.57,1421.22,21.61,553.08,2388.14,9099.32,47.78,520.96,2388.12,8.4396,394,38.54,23.2524 +50,173,-0.0007,0.0002,643.4,1597.41,1420.73,21.61,552.27,2388.15,9103.88,47.79,520.77,2388.15,8.4317,395,38.57,23.1259 +50,174,0.0039,-0.0006,643.32,1600.74,1417.92,21.61,552.26,2388.14,9105.8,47.87,520.56,2388.12,8.5058,396,38.57,23.1725 +50,175,0.0028,0.0002,643.0,1597.26,1417.15,21.61,552.84,2388.12,9100.45,47.69,520.66,2388.17,8.4518,397,38.63,23.0842 +50,176,-0.0009,-0.0,643.56,1599.13,1422.81,21.61,552.87,2388.15,9088.79,47.79,520.56,2388.14,8.515,395,38.64,23.0654 +50,177,-0.0009,-0.0005,643.4,1594.05,1414.26,21.61,552.5,2388.17,9108.73,47.86,520.97,2388.12,8.4537,396,38.68,23.1364 +50,178,-0.0026,-0.0003,642.99,1596.98,1413.86,21.61,551.64,2388.17,9110.88,47.98,520.67,2388.17,8.4935,394,38.49,23.2623 +50,179,-0.0017,-0.0,644.05,1595.72,1417.09,21.61,551.39,2388.15,9105.7,47.89,520.95,2388.12,8.4854,397,38.67,23.0033 +50,180,0.0,0.0002,643.37,1602.04,1423.59,21.61,552.81,2388.16,9111.71,47.99,520.07,2388.17,8.4906,395,38.55,23.0109 +50,181,0.0003,-0.0001,643.35,1598.91,1428.34,21.61,552.14,2388.15,9106.13,47.88,519.87,2388.16,8.5075,396,38.59,23.0827 +50,182,-0.0047,0.0001,643.32,1588.47,1422.34,21.61,551.95,2388.16,9112.74,47.96,519.91,2388.18,8.4997,394,38.47,23.1038 +50,183,0.0031,-0.0001,642.67,1599.99,1419.22,21.61,552.49,2388.14,9112.22,47.98,519.6,2388.1,8.5189,397,38.68,23.0091 +50,184,-0.0013,-0.0004,643.24,1604.23,1425.6,21.61,551.42,2388.16,9116.44,48.01,520.38,2388.14,8.5295,396,38.76,23.1558 +50,185,-0.0012,-0.0001,643.24,1605.9,1422.68,21.61,551.96,2388.19,9114.81,48.01,520.38,2388.15,8.4699,395,38.48,23.1318 +50,186,-0.0003,-0.0002,643.22,1599.08,1420.48,21.61,551.71,2388.21,9114.43,48.07,520.2,2388.09,8.5161,394,38.63,23.0817 +50,187,0.0015,0.0002,643.85,1597.32,1418.55,21.61,552.22,2388.15,9117.37,47.93,520.25,2388.15,8.4821,395,38.4,23.0392 +50,188,0.0007,-0.0005,643.59,1596.38,1423.52,21.61,551.45,2388.16,9105.3,47.98,520.15,2388.18,8.5062,397,38.41,23.065 +50,189,0.0018,-0.0004,643.22,1604.68,1423.37,21.61,551.48,2388.19,9119.31,48.02,519.77,2388.22,8.4782,397,38.3,23.0607 +50,190,-0.0017,-0.0002,643.56,1605.26,1429.34,21.61,551.71,2388.18,9127.29,48.11,519.47,2388.17,8.5261,396,38.59,23.1751 +50,191,-0.0016,-0.0002,643.22,1605.49,1422.66,21.61,551.85,2388.14,9124.24,48.21,520.1,2388.22,8.5208,396,38.55,23.1961 +50,192,-0.0047,-0.0001,643.29,1600.19,1426.15,21.61,551.94,2388.17,9126.5,48.05,520.31,2388.16,8.4568,395,38.48,23.081 +50,193,0.0014,-0.0002,643.95,1599.52,1425.99,21.61,551.54,2388.22,9124.44,48.15,520.06,2388.13,8.5049,397,38.33,23.0002 +50,194,0.0037,0.0004,643.77,1604.93,1423.51,21.61,551.41,2388.18,9128.75,48.16,519.85,2388.19,8.5043,396,38.42,23.0543 +50,195,0.0019,-0.0004,643.33,1605.31,1434.87,21.61,551.25,2388.17,9134.7,48.14,519.33,2388.21,8.5352,395,38.45,23.0191 +50,196,0.002,-0.0002,643.32,1602.26,1430.01,21.61,551.4,2388.19,9129.59,48.24,519.88,2388.17,8.5034,395,38.45,23.0379 +50,197,-0.0026,-0.0001,643.73,1599.94,1432.87,21.61,551.18,2388.19,9132.97,48.22,519.48,2388.2,8.5241,397,38.52,23.0832 +50,198,0.0039,0.0001,643.83,1608.2,1433.88,21.61,552.06,2388.2,9128.91,48.01,520.0,2388.25,8.5002,396,38.43,23.1086 +51,10,0.0044,-0.0003,641.95,1579.59,1395.93,21.61,554.78,2387.99,9061.13,47.13,522.07,2387.98,8.3868,392,39.04,23.4171 +51,11,0.0032,0.0,641.99,1585.7,1393.19,21.61,553.77,2387.97,9068.79,47.34,522.38,2388.02,8.4186,392,38.92,23.4027 +51,12,0.0005,0.0004,642.21,1583.55,1389.2,21.61,554.52,2387.99,9065.9,47.15,522.05,2388.06,8.4291,391,39.1,23.3517 +51,13,-0.0029,0.0005,641.58,1587.14,1396.97,21.61,554.59,2388.03,9071.65,47.24,522.49,2388.04,8.3808,392,39.08,23.4121 +51,14,-0.002,-0.0005,642.45,1579.21,1403.43,21.61,554.42,2388.03,9061.97,47.18,523.01,2387.99,8.4423,392,38.99,23.4162 +51,15,-0.0001,-0.0001,642.06,1584.57,1396.03,21.61,553.91,2388.03,9060.32,47.27,522.01,2388.0,8.4001,392,38.9,23.4238 +51,16,0.0001,-0.0002,641.76,1587.33,1397.08,21.61,554.2,2388.02,9071.14,47.3,522.29,2388.03,8.4088,392,39.12,23.3354 +51,17,-0.0017,-0.0002,642.11,1578.84,1396.02,21.61,554.76,2387.99,9068.06,47.04,521.96,2388.03,8.3953,391,38.87,23.4162 +51,18,-0.0031,0.0003,642.5,1585.74,1390.17,21.61,554.52,2388.01,9065.7,47.17,522.27,2387.96,8.4231,392,39.1,23.3507 +51,19,-0.002,0.0004,641.54,1586.4,1400.69,21.61,554.69,2388.02,9064.79,47.24,522.27,2388.0,8.3937,391,38.82,23.4286 +51,20,-0.0002,0.0003,642.5,1590.56,1399.39,21.61,554.25,2388.03,9058.19,47.41,522.69,2388.04,8.4209,392,39.04,23.2901 +51,21,0.0051,0.0003,642.07,1581.87,1398.51,21.61,554.34,2387.99,9064.35,47.09,522.15,2387.94,8.3907,392,38.99,23.2898 +51,22,-0.0026,0.0001,642.19,1577.01,1402.11,21.61,555.04,2387.98,9062.26,47.18,522.69,2387.99,8.361,392,38.95,23.4309 +51,23,-0.0022,-0.0005,642.38,1584.38,1395.99,21.61,554.79,2388.01,9065.78,47.39,522.6,2388.01,8.415,392,39.06,23.3853 +51,24,0.0006,-0.0001,642.0,1583.36,1399.28,21.61,554.48,2388.01,9063.45,47.29,522.21,2388.02,8.4044,391,38.9,23.3236 +51,25,0.0004,-0.0005,641.87,1587.45,1398.14,21.61,555.07,2388.08,9057.63,47.16,522.59,2387.96,8.3719,392,39.02,23.3845 +51,26,-0.0034,0.0003,641.97,1586.1,1397.02,21.61,554.29,2388.03,9069.78,46.97,522.18,2387.98,8.3953,394,39.04,23.3796 +51,27,-0.0016,-0.0005,642.43,1587.92,1397.9,21.61,554.5,2388.01,9065.78,47.25,522.21,2388.01,8.3918,393,39.05,23.4449 +51,28,-0.0007,-0.0004,642.21,1580.72,1394.09,21.61,553.34,2387.99,9066.77,47.21,522.67,2388.03,8.3837,392,39.08,23.3686 +51,29,-0.0013,-0.0001,642.0,1589.57,1395.6,21.61,554.25,2388.0,9069.51,47.23,522.35,2388.03,8.3822,392,39.02,23.4774 +51,30,0.0006,0.0001,642.44,1583.31,1397.49,21.61,554.14,2387.97,9064.15,47.12,522.53,2387.97,8.4299,392,38.98,23.3854 +51,31,-0.0026,-0.0002,642.57,1589.98,1394.81,21.61,553.31,2388.01,9069.88,47.06,522.6,2388.03,8.3994,392,39.02,23.3859 +51,32,0.0007,0.0004,641.9,1588.91,1402.73,21.61,553.6,2388.03,9069.05,47.15,521.96,2388.07,8.4454,391,39.01,23.3623 +51,33,-0.001,0.0001,642.38,1580.28,1402.87,21.61,555.11,2388.0,9071.64,47.18,522.39,2388.07,8.4054,392,38.9,23.4073 +51,34,0.0006,0.0004,642.04,1580.13,1394.64,21.61,554.38,2387.98,9069.82,47.1,522.87,2388.01,8.4032,392,38.93,23.4866 +51,35,-0.001,0.0003,642.07,1584.53,1403.04,21.61,554.02,2388.01,9065.98,47.15,522.16,2388.04,8.3551,393,39.14,23.3543 +51,36,-0.0002,0.0,642.27,1585.42,1400.76,21.61,554.63,2387.97,9065.16,47.08,521.8,2388.01,8.4338,392,39.08,23.4072 +51,37,-0.0062,0.0004,642.31,1578.13,1400.38,21.61,553.93,2387.98,9066.67,47.35,522.41,2388.04,8.4037,393,39.0,23.4549 +51,38,-0.0032,-0.0005,642.53,1578.81,1397.83,21.61,554.25,2387.98,9068.23,47.04,522.25,2388.04,8.3871,391,39.12,23.413 +51,39,-0.0012,-0.0003,642.27,1578.65,1399.7,21.61,554.13,2388.01,9060.11,47.12,522.61,2388.02,8.4055,391,38.94,23.4417 +51,40,0.0005,-0.0001,642.3,1587.11,1401.09,21.61,554.72,2388.0,9066.2,47.14,522.41,2388.01,8.4084,394,39.02,23.5103 +51,41,0.0027,0.0003,642.37,1589.88,1402.95,21.61,554.98,2388.06,9070.69,47.25,522.22,2387.96,8.4242,392,38.92,23.3851 +51,42,-0.0018,0.0001,641.77,1583.89,1406.52,21.61,554.55,2388.03,9066.26,47.1,522.35,2387.99,8.3691,391,39.09,23.4411 +51,43,-0.0023,-0.0004,641.75,1590.87,1390.27,21.6,555.22,2388.01,9065.07,47.05,522.86,2387.99,8.4266,391,39.06,23.3238 +51,44,-0.002,0.0002,642.35,1579.96,1401.64,21.6,554.09,2388.02,9073.44,47.13,522.38,2388.01,8.4022,392,39.1,23.3925 +51,45,-0.0009,0.0004,642.3,1585.72,1407.09,21.61,554.14,2388.0,9063.8,47.25,522.2,2388.0,8.3736,393,38.97,23.3901 +51,46,-0.002,0.0004,642.59,1580.8,1393.9,21.61,554.99,2388.02,9071.14,47.11,522.11,2387.95,8.4039,391,39.16,23.3419 +51,47,0.0012,-0.0005,641.89,1584.02,1394.6,21.6,555.0,2388.05,9063.82,47.35,522.46,2388.05,8.4086,393,39.11,23.4013 +51,48,0.0035,0.0002,641.94,1590.27,1396.94,21.61,554.11,2387.99,9068.28,47.26,522.11,2387.96,8.3985,392,38.84,23.547 +51,49,-0.0004,-0.0005,641.65,1583.44,1397.07,21.61,554.18,2387.95,9068.79,47.21,522.09,2388.05,8.4013,393,39.07,23.3951 +51,50,-0.0015,0.0001,642.14,1583.81,1403.18,21.61,554.37,2388.06,9065.88,47.48,522.39,2387.97,8.4097,391,39.02,23.4311 +51,51,0.0011,-0.0002,641.9,1585.3,1394.31,21.61,553.75,2387.95,9061.92,47.43,522.5,2387.99,8.3889,392,39.14,23.4143 +51,52,-0.0002,0.0002,641.7,1579.66,1396.44,21.6,554.61,2387.98,9066.09,47.29,522.51,2387.94,8.3845,392,39.1,23.4208 +51,53,-0.0045,-0.0,642.38,1583.5,1401.44,21.61,554.73,2388.0,9064.94,47.34,522.26,2388.01,8.3947,391,39.03,23.3348 +51,54,-0.0008,-0.0004,642.14,1580.92,1392.3,21.61,554.15,2387.98,9071.38,47.23,522.8,2388.03,8.435,392,39.13,23.3836 +51,55,0.0038,-0.0,642.36,1584.86,1393.78,21.61,555.01,2388.0,9067.56,47.36,522.33,2388.0,8.4292,390,38.98,23.42 +51,56,0.0001,-0.0002,642.24,1581.96,1401.09,21.61,553.81,2388.02,9070.96,47.09,522.4,2388.05,8.3923,390,38.99,23.3662 +51,57,-0.0006,-0.0004,642.48,1585.54,1397.4,21.61,554.06,2388.05,9064.91,47.05,521.74,2388.0,8.4277,391,39.15,23.4264 +51,58,0.0007,-0.0002,642.25,1574.28,1403.2,21.61,554.46,2388.01,9068.53,47.15,522.15,2388.0,8.43,390,39.09,23.4685 +51,59,-0.0,-0.0002,642.36,1580.13,1395.36,21.61,553.99,2387.97,9070.55,47.25,522.34,2387.97,8.394,392,38.97,23.3901 +51,60,0.0,-0.0003,642.17,1585.85,1396.7,21.61,554.65,2388.04,9065.17,47.46,522.29,2388.01,8.4162,392,38.97,23.5202 +51,61,-0.0044,-0.0,642.4,1588.12,1394.9,21.61,554.05,2387.97,9064.09,47.4,522.08,2387.98,8.4289,392,39.02,23.3826 +51,62,-0.0011,0.0004,641.85,1583.34,1398.23,21.61,554.28,2388.0,9066.45,47.27,521.77,2388.06,8.3997,392,38.94,23.3381 +51,63,-0.0044,0.0001,642.07,1584.81,1396.39,21.61,553.89,2387.98,9061.25,47.28,522.4,2387.98,8.4127,391,38.98,23.364 +51,64,-0.0047,0.0004,642.67,1584.89,1396.9,21.61,554.9,2388.07,9074.75,47.21,522.3,2388.07,8.4155,394,38.93,23.3223 +51,65,0.0006,0.0004,642.07,1575.34,1397.81,21.61,554.12,2387.96,9060.52,47.14,522.43,2388.04,8.4453,391,38.81,23.474 +51,66,-0.0019,-0.0003,641.9,1582.86,1395.43,21.61,554.42,2387.98,9073.89,47.23,522.64,2387.98,8.3891,392,38.99,23.3575 +51,67,0.0019,-0.0003,642.45,1586.96,1402.05,21.6,555.23,2388.02,9067.99,47.18,521.81,2388.03,8.4157,391,38.8,23.43 +51,68,0.0004,0.0001,641.59,1589.74,1404.45,21.61,555.52,2388.01,9068.51,47.41,522.61,2388.04,8.4101,392,38.82,23.4198 +51,69,0.0018,0.0001,642.08,1582.23,1401.39,21.61,554.52,2388.03,9075.63,47.27,522.14,2388.03,8.4112,391,38.91,23.4664 +51,70,-0.0008,-0.0,642.71,1578.36,1402.68,21.61,554.92,2387.97,9069.87,47.2,521.65,2388.04,8.3573,390,38.94,23.3504 +51,71,-0.0009,0.0002,642.21,1584.91,1400.74,21.61,554.81,2387.95,9068.32,47.25,522.2,2388.08,8.4336,393,39.01,23.4582 +51,72,0.0006,-0.0004,642.0,1588.95,1399.19,21.61,554.56,2388.01,9063.88,47.17,522.35,2388.01,8.3796,391,38.74,23.3948 +51,73,0.0019,0.0,642.14,1585.35,1408.19,21.61,554.83,2388.03,9075.32,47.21,522.39,2387.94,8.4103,392,38.87,23.4086 +51,74,-0.0045,0.0003,642.31,1584.92,1403.43,21.61,554.73,2388.1,9068.38,47.29,522.64,2388.07,8.4149,390,39.01,23.3746 +51,75,0.0001,0.0003,641.93,1582.39,1400.59,21.61,554.17,2388.02,9066.07,47.24,522.53,2388.08,8.3727,392,39.23,23.3778 +51,76,0.0004,0.0002,641.4,1587.43,1398.4,21.61,554.59,2387.99,9057.07,47.26,522.17,2387.96,8.3942,393,39.12,23.3601 +51,77,-0.001,-0.0002,641.79,1586.4,1400.69,21.61,553.77,2388.04,9075.6,47.02,522.73,2387.96,8.3924,393,39.11,23.4219 +51,78,0.0053,-0.0001,641.96,1584.84,1399.82,21.61,554.0,2387.99,9066.59,47.26,522.9,2388.05,8.3966,391,39.03,23.3349 +51,79,0.0019,-0.0001,642.06,1591.14,1397.01,21.61,554.57,2388.02,9065.55,47.39,522.28,2387.99,8.4159,393,39.01,23.4976 +51,80,-0.0005,0.0002,642.08,1594.77,1401.76,21.61,553.77,2388.06,9072.78,47.22,522.56,2388.0,8.3913,392,38.81,23.2302 +51,81,-0.0044,-0.0002,642.19,1581.73,1403.82,21.61,554.01,2387.95,9074.76,47.35,522.61,2387.98,8.3954,393,38.99,23.419 +51,82,-0.0011,0.0002,642.66,1581.41,1394.25,21.61,553.75,2388.07,9068.97,47.35,521.94,2387.96,8.4102,392,39.12,23.3876 +51,83,-0.0003,-0.0004,642.22,1593.58,1397.43,21.61,553.86,2388.04,9074.87,47.15,522.01,2387.98,8.4086,392,38.94,23.3264 +51,84,-0.0014,0.0004,642.44,1581.15,1393.56,21.61,553.89,2388.01,9068.25,47.39,521.84,2388.01,8.4292,390,39.01,23.2153 +51,85,0.0006,-0.0003,642.12,1577.38,1404.25,21.61,554.1,2388.05,9069.32,47.37,522.24,2387.97,8.383,392,38.95,23.3788 +51,86,-0.0009,0.0002,642.42,1582.38,1403.02,21.61,554.46,2388.07,9068.33,47.29,522.04,2388.02,8.4191,392,39.09,23.3363 +51,87,-0.0014,0.0003,642.43,1584.33,1399.14,21.6,554.0,2388.02,9077.03,47.37,522.55,2388.09,8.3941,393,38.96,23.4286 +51,88,0.0032,-0.0002,642.17,1582.77,1402.8,21.61,554.32,2387.97,9074.77,47.29,522.36,2388.04,8.3864,392,38.9,23.4065 +51,89,-0.0016,-0.0004,642.02,1588.12,1402.46,21.61,553.83,2387.97,9071.82,47.14,521.94,2387.97,8.3782,390,38.88,23.2981 +51,90,0.0008,0.0002,642.16,1578.5,1413.25,21.61,554.32,2388.02,9077.02,47.39,521.61,2387.97,8.3829,392,39.05,23.3669 +51,91,-0.0038,0.0002,642.68,1588.64,1398.27,21.61,554.43,2387.98,9072.77,47.33,522.29,2387.98,8.403,391,39.06,23.2932 +51,92,0.005,0.0003,642.06,1590.85,1403.14,21.61,554.07,2388.05,9077.28,47.29,521.95,2388.01,8.385,394,38.88,23.3694 +51,93,0.0049,0.0004,642.38,1582.21,1401.24,21.61,554.61,2388.02,9072.8,47.12,522.13,2388.0,8.4206,392,39.16,23.3865 +51,94,-0.0014,0.0002,642.38,1583.13,1394.91,21.61,554.15,2387.98,9073.51,47.16,521.98,2387.99,8.4209,393,38.99,23.3582 +51,95,-0.003,0.0001,642.27,1581.92,1398.07,21.61,554.81,2387.99,9069.59,47.4,521.98,2388.02,8.4089,391,38.98,23.5169 +51,96,0.0012,-0.0001,642.25,1590.46,1403.82,21.61,553.91,2388.01,9075.12,47.22,522.48,2388.0,8.4138,391,39.1,23.3134 +51,97,0.0016,-0.0003,642.43,1584.49,1391.22,21.61,554.22,2388.0,9075.13,47.19,521.95,2387.95,8.3871,392,38.79,23.3716 +51,98,-0.0017,-0.0,642.57,1591.28,1400.26,21.61,554.27,2388.04,9063.5,47.36,522.31,2388.03,8.4095,393,39.0,23.3279 +51,99,-0.0002,0.0,641.83,1584.9,1404.52,21.61,553.9,2387.98,9075.25,47.37,521.89,2388.0,8.381,389,38.9,23.3256 +51,100,0.0009,-0.0005,641.88,1585.76,1397.47,21.61,554.11,2387.95,9067.72,47.17,522.33,2387.97,8.4099,391,39.09,23.4378 +51,101,-0.004,-0.0003,642.36,1585.79,1404.95,21.61,554.35,2388.0,9078.43,47.21,522.36,2388.04,8.4438,392,39.13,23.3591 +51,102,0.0003,0.0002,641.79,1591.13,1400.81,21.61,553.99,2388.04,9074.1,47.34,522.79,2388.01,8.431,391,38.9,23.357 +51,103,0.0006,0.0005,642.04,1584.07,1405.27,21.61,554.33,2387.99,9071.15,47.37,522.43,2387.97,8.4179,391,38.7,23.4433 +51,104,0.0015,0.0002,642.27,1587.61,1406.64,21.61,553.7,2388.0,9069.94,47.27,522.06,2388.01,8.4317,392,38.79,23.4278 +51,105,0.0018,0.0003,642.73,1593.41,1400.67,21.61,554.13,2387.99,9076.54,47.25,522.19,2387.99,8.4159,392,38.87,23.3731 +51,106,0.0007,-0.0001,641.7,1583.71,1400.71,21.61,554.13,2388.02,9083.39,47.35,522.1,2387.97,8.4156,392,39.08,23.3035 +51,107,0.0017,0.0004,642.63,1587.13,1402.66,21.61,554.6,2388.03,9071.22,47.24,521.61,2387.95,8.4211,394,39.0,23.3055 +51,108,-0.0034,-0.0,642.67,1594.21,1401.17,21.6,553.94,2388.05,9077.1,47.28,522.12,2387.97,8.4001,393,39.03,23.4164 +51,109,0.0017,-0.0004,642.19,1582.48,1396.64,21.61,554.7,2388.05,9073.11,47.49,521.95,2388.0,8.4095,392,39.04,23.3123 +51,110,0.0034,0.0004,642.75,1586.65,1395.81,21.61,554.79,2388.02,9079.58,47.07,522.28,2387.99,8.4468,392,38.94,23.3526 +51,111,-0.0035,0.0002,642.75,1588.95,1400.1,21.61,553.52,2387.98,9071.97,47.23,522.29,2388.03,8.417,390,39.09,23.5288 +51,112,-0.0013,-0.0005,641.96,1587.49,1401.44,21.61,554.0,2388.04,9070.88,47.27,521.95,2388.04,8.4294,393,38.87,23.4661 +51,113,0.0056,0.0001,642.45,1585.81,1405.4,21.61,553.87,2387.99,9082.94,47.32,521.97,2388.01,8.4105,393,39.08,23.4839 +51,114,-0.0047,0.0003,641.76,1592.86,1403.26,21.61,554.2,2388.02,9077.61,47.18,522.5,2387.96,8.4169,391,38.84,23.3474 +51,115,-0.0016,0.0005,642.42,1585.85,1401.92,21.61,553.61,2387.99,9077.48,47.43,522.63,2388.01,8.4119,393,39.0,23.3883 +51,116,0.0009,0.0,642.94,1591.19,1400.27,21.61,555.13,2387.96,9076.81,47.41,521.74,2388.03,8.413,392,38.94,23.2972 +51,117,0.0034,-0.0004,641.71,1591.2,1405.29,21.61,554.1,2387.97,9078.91,47.41,522.3,2388.02,8.4245,391,39.09,23.3235 +51,118,0.0032,0.0001,641.93,1584.34,1404.39,21.61,554.28,2387.97,9081.66,47.43,521.6,2387.98,8.3979,392,39.02,23.3296 +51,119,-0.0016,-0.0002,642.54,1582.16,1402.37,21.61,554.7,2387.99,9083.93,47.28,522.57,2388.05,8.4098,391,38.96,23.3908 +51,120,0.0009,-0.0004,642.21,1591.5,1408.52,21.61,554.01,2387.99,9074.05,47.2,522.52,2388.01,8.421,394,38.95,23.3511 +51,121,-0.0002,0.0005,642.2,1585.56,1398.43,21.61,554.86,2388.07,9085.23,47.19,522.15,2388.04,8.3956,392,38.94,23.4239 +51,122,-0.0021,-0.0004,642.8,1579.7,1397.52,21.61,554.41,2388.03,9085.75,46.98,522.09,2388.07,8.451,392,38.98,23.3222 +51,123,0.0001,-0.0002,642.46,1592.13,1404.88,21.61,554.19,2388.05,9084.82,47.24,522.15,2388.03,8.3914,392,38.88,23.4414 +51,124,0.0018,0.0003,642.39,1586.52,1403.43,21.61,553.63,2387.99,9071.95,47.43,521.91,2388.04,8.415,393,38.95,23.3622 +51,125,0.0033,0.0,642.74,1587.06,1405.73,21.61,554.25,2388.01,9082.8,47.43,522.67,2388.02,8.3826,393,38.91,23.4087 +51,126,0.0006,-0.0005,642.42,1584.69,1401.36,21.61,553.61,2388.0,9081.47,47.15,522.02,2387.99,8.419,393,39.0,23.4547 +51,127,0.003,0.0002,642.38,1585.9,1403.21,21.61,554.73,2388.05,9082.92,47.28,522.76,2387.98,8.4258,392,39.0,23.3179 +51,128,0.0008,-0.0003,642.63,1589.79,1408.51,21.61,554.03,2388.0,9079.04,47.27,521.91,2388.0,8.4212,392,38.98,23.4175 +51,129,-0.0005,0.0002,642.36,1587.22,1404.43,21.61,553.49,2388.01,9084.31,47.39,521.73,2388.08,8.4161,393,38.85,23.3681 +51,130,0.0001,0.0002,642.59,1589.78,1404.2,21.61,553.97,2388.01,9081.32,47.23,521.97,2387.98,8.4468,393,38.95,23.4208 +51,131,0.0045,-0.0001,642.48,1587.54,1401.08,21.61,554.51,2388.02,9083.96,47.33,522.31,2388.03,8.4122,393,38.88,23.2615 +51,132,-0.0039,-0.0005,642.2,1591.16,1407.46,21.61,554.21,2387.98,9086.94,47.28,521.46,2387.96,8.4224,393,38.98,23.4509 +51,133,0.0005,0.0004,642.34,1586.2,1398.22,21.61,554.25,2388.04,9087.78,47.24,521.98,2387.99,8.4071,393,39.13,23.3745 +51,134,-0.0019,-0.0001,642.66,1587.71,1399.25,21.61,554.62,2388.04,9088.63,47.41,522.49,2388.01,8.4242,392,38.76,23.4354 +51,135,-0.0013,-0.0002,642.54,1589.22,1408.65,21.61,553.58,2388.03,9089.09,47.36,522.15,2388.05,8.3823,391,39.02,23.3625 +51,136,0.0008,-0.0001,642.29,1592.78,1399.26,21.61,553.76,2388.01,9085.18,47.25,521.95,2388.01,8.3843,392,39.15,23.3036 +51,137,0.0008,0.0001,641.97,1583.39,1406.34,21.61,554.64,2388.0,9092.7,47.36,522.71,2388.05,8.436,392,39.09,23.3903 +51,138,-0.0001,0.0001,642.5,1590.9,1399.65,21.61,554.22,2388.03,9092.68,47.29,522.08,2388.02,8.4106,392,38.94,23.4015 +51,139,0.002,0.0,642.39,1587.85,1402.3,21.61,554.66,2388.07,9090.0,47.47,521.77,2388.05,8.415,391,38.82,23.3566 +51,140,0.0027,0.0,642.15,1591.47,1409.15,21.61,554.02,2388.02,9088.39,47.43,521.71,2388.02,8.4128,393,39.07,23.3123 +51,141,-0.003,0.0003,642.34,1585.16,1402.53,21.61,553.96,2387.98,9087.19,47.32,522.36,2388.02,8.4043,392,39.06,23.3019 +51,142,0.0008,0.0001,642.5,1580.16,1406.16,21.6,553.78,2387.99,9087.81,47.35,521.97,2387.97,8.4142,392,38.81,23.2894 +51,143,0.0025,0.0004,642.21,1585.8,1394.37,21.61,554.3,2387.99,9095.35,47.36,521.65,2388.01,8.4349,393,38.99,23.4394 +51,144,-0.0009,0.0005,642.23,1590.29,1402.01,21.61,553.58,2387.99,9093.95,47.48,522.02,2388.03,8.4146,392,38.87,23.3218 +51,145,-0.0036,-0.0005,642.02,1588.04,1400.15,21.61,553.3,2388.02,9093.42,47.4,522.06,2387.99,8.414,395,38.95,23.3074 +51,146,0.0012,-0.0002,642.38,1586.36,1406.56,21.61,553.14,2387.99,9085.86,47.32,521.78,2388.04,8.4609,391,38.83,23.3914 +51,147,0.0,-0.0005,642.4,1595.14,1398.12,21.61,553.57,2388.05,9090.54,47.31,521.76,2388.01,8.4014,393,38.73,23.3819 +51,148,0.0034,-0.0001,642.52,1587.43,1405.89,21.61,554.03,2388.07,9091.21,47.32,521.52,2387.99,8.4439,393,38.9,23.3775 +51,149,-0.0029,-0.0001,642.67,1589.04,1395.03,21.61,553.72,2388.02,9093.68,47.33,521.54,2388.03,8.4363,392,38.88,23.3705 +51,150,0.0032,-0.0002,642.28,1590.71,1405.13,21.61,553.6,2388.02,9096.87,47.28,522.18,2387.99,8.4452,393,38.95,23.2774 +51,151,-0.0001,0.0002,641.95,1590.87,1400.54,21.61,554.11,2388.03,9089.54,47.41,521.81,2388.03,8.452,392,39.09,23.2743 +51,152,0.0008,-0.0004,642.92,1588.44,1401.51,21.61,553.73,2388.0,9100.27,47.51,522.04,2388.05,8.4183,392,38.84,23.3618 +51,153,-0.0043,0.0001,642.53,1588.27,1406.95,21.61,553.98,2388.03,9096.87,47.32,522.42,2387.98,8.4056,392,38.94,23.4385 +51,154,-0.0024,0.0004,643.0,1591.31,1408.13,21.61,553.43,2388.07,9096.5,47.49,521.97,2388.05,8.4023,392,38.93,23.2865 +51,155,-0.0003,0.0001,642.56,1591.63,1408.54,21.61,553.13,2388.02,9098.37,47.46,521.75,2387.98,8.4317,394,38.84,23.4153 +51,156,0.0034,-0.0001,642.15,1590.95,1402.43,21.61,554.07,2388.06,9104.01,47.42,522.11,2388.05,8.4617,393,38.85,23.238 +51,157,-0.0008,0.0003,642.18,1590.38,1406.88,21.61,553.44,2388.01,9109.01,47.54,522.09,2388.06,8.4442,392,38.96,23.3376 +51,158,-0.0011,0.0003,642.53,1587.2,1410.05,21.61,554.56,2388.02,9099.8,47.48,521.64,2388.05,8.4394,395,38.77,23.2203 +51,159,0.0004,0.0004,642.35,1599.09,1406.3,21.61,553.48,2388.05,9105.0,47.39,522.01,2388.02,8.4451,394,38.91,23.3701 +51,160,-0.0017,-0.0004,642.57,1593.9,1402.03,21.61,554.02,2388.0,9105.99,47.45,521.91,2388.01,8.4396,393,38.83,23.3569 +51,161,0.001,0.0001,642.67,1585.22,1406.39,21.61,553.98,2387.99,9108.36,47.36,522.31,2388.0,8.4457,393,38.84,23.3503 +51,162,0.0008,0.0003,642.71,1591.91,1402.23,21.61,553.88,2388.04,9104.91,47.38,521.62,2388.0,8.4783,393,38.82,23.2362 +51,163,0.0026,-0.0003,642.58,1598.53,1403.95,21.61,553.87,2388.02,9107.92,47.57,522.41,2388.02,8.4227,392,38.98,23.3113 +51,164,-0.0013,0.0001,642.7,1594.44,1400.76,21.61,553.8,2388.05,9106.22,47.39,521.7,2388.01,8.4365,392,38.7,23.345 +51,165,-0.0002,-0.0,642.75,1589.77,1402.01,21.61,553.94,2388.01,9117.76,47.5,521.69,2388.07,8.4114,393,38.89,23.2796 +51,166,-0.0026,-0.0003,642.24,1592.89,1402.76,21.61,553.47,2388.08,9117.35,47.44,521.82,2388.01,8.4129,395,38.82,23.4058 +51,167,-0.0028,-0.0002,642.89,1592.23,1405.19,21.61,553.67,2387.99,9114.24,47.42,521.66,2387.96,8.4571,394,38.94,23.3449 +51,168,-0.0008,-0.0001,642.7,1589.03,1406.07,21.61,553.74,2387.98,9113.9,47.38,522.21,2388.06,8.4168,393,38.93,23.332 +51,169,-0.0011,-0.0002,642.78,1595.33,1402.31,21.61,553.28,2388.06,9114.75,47.22,521.93,2388.02,8.4197,394,38.91,23.3807 +51,170,0.0012,0.0004,642.75,1590.84,1406.16,21.61,552.73,2388.04,9125.18,47.54,521.47,2388.1,8.4649,395,38.92,23.3872 +51,171,-0.001,0.0005,642.55,1591.88,1408.94,21.61,553.5,2388.04,9117.67,47.56,521.46,2388.03,8.4605,394,38.64,23.201 +51,172,0.0042,-0.0003,642.51,1593.21,1409.49,21.61,553.35,2387.99,9117.81,47.49,521.47,2387.98,8.4463,393,38.88,23.2373 +51,173,-0.0016,-0.0,642.59,1596.35,1413.19,21.61,554.27,2388.05,9130.01,47.67,521.43,2388.02,8.4252,393,38.83,23.2935 +51,174,0.0041,0.0001,642.72,1595.45,1407.46,21.61,553.82,2388.03,9125.02,47.63,521.74,2388.07,8.4283,393,39.0,23.3297 +51,175,0.001,-0.0003,642.24,1587.01,1402.65,21.61,553.18,2388.04,9126.91,47.47,521.57,2387.99,8.4367,394,38.69,23.2622 +51,176,-0.0005,-0.0005,642.48,1590.33,1416.04,21.61,553.31,2388.0,9129.1,47.48,521.84,2388.06,8.4313,395,38.81,23.2523 +51,177,0.0013,0.0005,642.15,1594.84,1406.61,21.61,552.97,2388.03,9125.29,47.55,521.79,2388.01,8.4775,396,38.78,23.2656 +51,178,-0.0043,0.0002,642.44,1592.11,1408.93,21.61,553.62,2388.06,9130.21,47.44,521.57,2388.02,8.4579,395,38.79,23.4036 +51,179,0.0009,-0.0004,643.16,1596.79,1406.73,21.61,553.49,2388.03,9132.19,47.42,521.81,2388.02,8.4461,395,38.82,23.2498 +51,180,-0.0033,0.0003,642.74,1592.03,1407.11,21.61,553.41,2388.06,9127.77,47.61,521.78,2388.05,8.4811,393,38.76,23.2609 +51,181,0.0005,-0.0002,643.33,1584.48,1411.82,21.61,553.23,2388.05,9128.9,47.49,521.34,2388.03,8.4755,392,38.72,23.2981 +51,182,-0.0004,-0.0002,642.86,1594.21,1407.05,21.61,553.68,2388.05,9129.03,47.51,521.3,2388.04,8.4659,394,38.66,23.2846 +51,183,0.0016,0.0001,642.99,1592.53,1415.32,21.61,553.68,2388.07,9134.24,47.47,521.57,2388.04,8.4927,393,38.84,23.2264 +51,184,-0.0044,-0.0003,642.32,1597.43,1411.04,21.61,553.02,2388.04,9141.55,47.67,521.17,2387.98,8.4653,394,38.91,23.2087 +51,185,-0.0037,-0.0001,643.13,1594.44,1411.4,21.61,552.84,2388.06,9142.86,47.5,521.24,2388.09,8.4496,395,38.76,23.2431 +51,186,-0.0003,0.0001,643.21,1589.96,1416.87,21.61,552.71,2388.04,9132.56,47.59,521.62,2388.03,8.4684,396,38.79,23.3117 +51,187,0.001,0.0001,642.62,1591.46,1409.26,21.61,553.45,2388.03,9143.57,47.43,520.64,2388.06,8.4535,395,38.65,23.2538 +51,188,0.0004,0.0003,642.98,1596.83,1414.92,21.61,553.01,2388.06,9153.59,47.5,521.42,2388.01,8.4598,394,38.77,23.1368 +51,189,0.0017,-0.0003,642.87,1595.66,1416.32,21.61,553.72,2388.07,9153.17,47.79,520.99,2388.05,8.4627,393,38.8,23.274 +51,190,0.001,-0.0003,643.1,1600.81,1415.55,21.61,552.52,2388.02,9154.05,47.7,521.33,2388.08,8.4591,394,38.69,23.3197 +51,191,-0.0012,0.0,642.74,1584.78,1424.99,21.61,553.27,2388.07,9152.17,47.79,521.46,2387.99,8.4678,394,38.65,23.2786 +51,192,0.0023,0.0002,643.45,1594.21,1410.0,21.61,554.06,2388.04,9158.53,47.77,521.17,2388.08,8.444,395,38.54,23.2994 +51,193,0.002,0.0005,643.08,1591.05,1417.7,21.61,553.06,2388.06,9166.96,47.64,521.58,2388.05,8.4818,395,38.64,23.1821 +51,194,0.0002,-0.0001,643.4,1593.76,1412.87,21.61,552.71,2388.15,9165.02,47.87,521.1,2388.03,8.4651,394,38.65,23.1941 +51,195,0.0012,-0.0001,643.16,1596.05,1413.79,21.61,552.81,2388.08,9164.67,47.83,520.43,2388.03,8.4809,395,38.66,23.1147 +51,196,-0.0019,-0.0002,643.09,1596.96,1416.27,21.61,553.99,2388.08,9167.14,47.62,521.11,2388.1,8.4522,396,38.85,23.212 +51,197,0.0037,0.0001,642.83,1597.94,1418.42,21.61,552.71,2388.12,9179.12,47.66,521.17,2388.04,8.4965,395,38.96,23.1683 +51,198,0.0009,0.0,643.51,1591.09,1418.2,21.61,553.4,2388.07,9175.36,47.78,521.21,2388.08,8.4886,395,38.53,23.1286 +51,199,0.0039,-0.0004,643.19,1592.24,1417.94,21.61,553.05,2388.06,9174.31,47.66,521.0,2388.08,8.4873,395,38.65,23.2985 +51,200,0.0004,-0.0003,642.65,1594.92,1414.82,21.61,552.75,2388.03,9175.16,47.73,520.86,2388.05,8.4732,395,38.69,23.1436 +51,201,0.0009,0.0002,643.27,1605.04,1419.07,21.61,552.89,2388.09,9185.64,47.83,521.23,2388.08,8.4866,395,38.45,23.2067 +51,202,-0.0009,-0.0,643.22,1605.12,1412.48,21.61,552.56,2388.08,9185.22,47.94,520.93,2388.06,8.4987,394,38.82,23.1381 +51,203,-0.0038,-0.0001,643.08,1590.92,1426.12,21.61,552.41,2388.15,9188.26,47.69,520.94,2388.07,8.499,396,38.62,23.0319 +51,204,0.0011,0.0004,643.21,1604.24,1423.73,21.61,552.53,2388.07,9201.99,47.79,521.25,2388.09,8.4982,396,38.67,23.1033 +51,205,0.0023,-0.0,643.31,1592.63,1423.81,21.61,552.69,2388.07,9193.09,47.94,520.58,2388.09,8.4914,393,38.57,23.1452 +51,206,0.003,0.0004,643.44,1601.34,1416.05,21.61,552.53,2388.08,9204.96,48.07,520.38,2388.1,8.4775,397,38.69,23.1276 +51,207,0.0017,-0.0004,643.27,1602.47,1415.91,21.61,552.45,2388.07,9211.23,47.99,520.47,2388.11,8.5021,396,38.56,23.2241 +51,208,-0.0015,0.0004,643.69,1606.39,1422.9,21.61,552.72,2388.14,9210.36,47.94,520.42,2388.12,8.4834,397,38.46,23.2072 +51,209,0.0031,-0.0003,643.81,1604.36,1428.61,21.61,552.49,2388.12,9214.76,47.95,520.78,2388.05,8.5187,396,38.66,23.1217 +51,210,0.0008,0.0005,643.19,1605.01,1430.44,21.61,551.49,2388.11,9213.46,47.94,520.38,2388.14,8.5195,395,38.57,23.0721 +51,211,0.0008,-0.0005,643.68,1609.75,1419.91,21.61,552.63,2388.32,9219.81,48.27,520.24,2388.29,8.5275,398,38.43,23.0668 +51,212,0.0015,0.0005,643.37,1602.44,1432.71,21.61,552.73,2388.46,9226.6,48.09,520.36,2388.49,8.5117,398,38.72,23.0834 +51,213,0.0014,0.0004,644.11,1606.6,1428.55,21.61,551.6,2388.56,9244.59,47.89,520.2,2388.54,8.5306,397,38.39,23.0958 +54,10,0.0004,-0.0004,641.84,1587.73,1397.06,21.61,554.66,2388.04,9064.51,47.11,522.29,2387.99,8.4022,393,39.08,23.3512 +54,11,-0.0023,-0.0002,642.12,1591.03,1395.48,21.61,554.29,2388.01,9058.35,47.09,523.04,2388.03,8.4109,393,39.11,23.3691 +54,12,-0.0002,-0.0005,642.28,1585.08,1400.94,21.61,554.95,2387.98,9063.6,47.12,522.34,2388.03,8.4092,392,38.95,23.3154 +54,13,0.0005,0.0002,642.53,1583.77,1398.01,21.61,554.28,2388.04,9061.23,47.17,522.74,2387.98,8.3972,392,39.03,23.4262 +54,14,-0.0017,-0.0,642.09,1576.44,1400.1,21.61,554.16,2388.0,9056.18,47.24,522.64,2388.02,8.3683,391,38.85,23.3487 +54,15,0.0017,-0.0003,642.06,1583.65,1396.34,21.61,554.91,2387.94,9073.32,46.99,521.85,2387.99,8.3695,392,38.92,23.5147 +54,16,0.0038,-0.0004,642.35,1591.18,1392.85,21.61,555.05,2387.97,9059.68,47.22,522.32,2388.01,8.3986,390,39.15,23.5105 +54,17,0.0004,-0.0003,642.28,1586.23,1394.06,21.61,554.31,2388.02,9067.37,47.04,522.52,2387.98,8.4156,390,39.03,23.3913 +54,18,-0.0002,-0.0005,641.87,1579.23,1393.99,21.61,554.92,2388.03,9064.42,47.23,521.78,2387.98,8.4046,392,38.97,23.4212 +54,19,-0.0029,-0.0,641.95,1584.51,1399.71,21.61,554.63,2387.98,9067.24,47.24,522.98,2387.99,8.38,391,39.05,23.4868 +54,20,0.0004,-0.0003,642.57,1580.06,1404.71,21.61,554.25,2388.04,9054.31,47.28,521.64,2387.99,8.3898,391,38.99,23.462 +54,21,0.0041,0.0002,641.86,1581.29,1398.54,21.61,554.25,2387.98,9061.49,47.17,522.33,2388.02,8.4125,393,38.9,23.4714 +54,22,0.0025,-0.0003,641.99,1587.52,1397.13,21.61,554.91,2388.03,9063.28,47.26,522.67,2388.04,8.4112,394,39.1,23.4519 +54,23,0.0043,0.0003,641.9,1580.25,1400.76,21.61,554.5,2388.02,9067.72,47.2,522.4,2387.98,8.4302,392,39.09,23.4204 +54,24,-0.0027,-0.0002,642.68,1583.76,1396.06,21.6,554.07,2387.98,9068.84,47.2,522.3,2388.06,8.3667,390,38.94,23.3466 +54,25,-0.001,0.0002,642.19,1590.68,1397.93,21.61,555.03,2388.04,9058.55,47.13,522.55,2388.05,8.4197,392,39.02,23.3691 +54,26,-0.0002,-0.0004,642.21,1582.08,1398.27,21.61,553.79,2388.04,9057.48,47.31,522.38,2388.05,8.3774,393,39.04,23.5266 +54,27,-0.0006,0.0003,642.09,1582.84,1394.06,21.61,554.77,2388.01,9053.85,47.11,522.67,2388.02,8.3926,392,38.83,23.3941 +54,28,0.0008,0.0002,641.84,1583.22,1392.16,21.61,554.32,2387.95,9066.71,47.29,522.65,2388.03,8.399,391,39.13,23.4203 +54,29,-0.0023,0.0001,642.16,1590.72,1404.53,21.61,553.43,2388.03,9070.18,47.09,521.76,2387.98,8.3977,393,38.98,23.4736 +54,30,-0.0003,-0.0002,642.08,1583.34,1401.77,21.61,554.51,2388.0,9063.97,47.22,522.29,2387.94,8.3991,393,38.89,23.3667 +54,31,-0.0007,-0.0001,642.05,1586.25,1402.23,21.61,554.76,2387.95,9058.49,47.26,521.87,2387.99,8.3918,393,38.83,23.3516 +54,32,-0.0031,0.0004,642.64,1584.63,1398.24,21.61,553.63,2388.06,9060.06,47.09,522.15,2388.02,8.433,391,39.1,23.4876 +54,33,0.0016,-0.0004,642.29,1578.38,1396.15,21.61,554.87,2388.03,9067.86,47.16,522.49,2388.0,8.3916,392,39.06,23.5014 +54,34,-0.0028,0.0,641.95,1583.94,1392.55,21.61,554.4,2388.05,9058.09,47.19,522.18,2388.04,8.4157,391,38.99,23.4956 +54,35,0.0039,-0.0003,642.01,1574.81,1395.25,21.61,555.49,2387.96,9054.41,47.09,521.79,2387.97,8.4028,391,39.01,23.3685 +54,36,-0.0011,-0.0003,641.76,1584.06,1401.71,21.61,554.01,2388.02,9059.41,47.18,522.23,2388.02,8.418,391,38.92,23.4342 +54,37,-0.0041,-0.0002,641.9,1584.95,1394.68,21.61,555.12,2387.99,9062.65,47.15,522.6,2387.98,8.3932,393,39.02,23.4406 +54,38,0.0031,-0.0003,642.28,1582.82,1397.08,21.61,554.42,2388.05,9072.16,47.16,522.07,2388.03,8.3761,392,39.16,23.374 +54,39,0.0037,0.0003,642.33,1585.26,1393.86,21.61,555.54,2388.05,9057.94,47.27,521.94,2388.04,8.4046,391,39.05,23.4434 +54,40,-0.0021,0.0004,642.09,1585.52,1396.25,21.61,554.35,2388.0,9061.11,47.23,522.05,2388.02,8.3922,391,39.0,23.3844 +54,41,0.0007,0.0004,642.32,1575.94,1398.75,21.61,554.73,2387.95,9053.22,47.42,522.21,2388.01,8.4622,391,39.08,23.4296 +54,42,0.0022,0.0003,642.19,1581.22,1394.76,21.61,554.95,2387.98,9064.97,47.28,522.94,2387.98,8.3681,392,39.14,23.4102 +54,43,-0.0009,0.0,642.06,1581.53,1387.94,21.61,554.79,2387.98,9064.46,47.22,522.31,2388.01,8.4155,393,38.98,23.3245 +54,44,0.001,0.0001,641.91,1586.91,1392.19,21.61,553.85,2388.03,9060.22,47.35,522.59,2388.04,8.4118,390,39.11,23.3904 +54,45,0.0028,-0.0001,642.31,1580.91,1399.13,21.61,554.18,2387.92,9056.38,47.22,522.89,2388.03,8.4111,391,39.09,23.4393 +54,46,-0.0007,-0.0003,642.1,1588.99,1399.51,21.61,554.5,2388.01,9065.35,47.34,522.03,2387.98,8.4026,393,38.99,23.4705 +54,47,-0.0024,0.0003,642.4,1579.86,1392.07,21.61,554.66,2388.0,9054.24,47.14,522.48,2387.92,8.4177,391,39.0,23.4603 +54,48,-0.0036,-0.0003,642.39,1592.11,1393.97,21.61,554.05,2388.04,9053.38,47.26,522.3,2388.02,8.4014,391,38.89,23.2904 +54,49,-0.0026,-0.0004,642.42,1580.66,1405.03,21.61,554.51,2387.98,9068.95,47.11,522.15,2387.99,8.3978,390,39.02,23.3857 +54,50,-0.0025,-0.0003,642.03,1583.54,1397.5,21.61,554.65,2388.0,9059.66,47.2,522.53,2388.01,8.3942,391,39.22,23.397 +54,51,0.0015,-0.0003,642.27,1583.88,1399.23,21.61,554.51,2387.99,9056.86,47.15,522.39,2388.01,8.3969,392,39.14,23.491 +54,52,-0.0033,-0.0001,641.98,1578.4,1400.04,21.61,554.71,2388.08,9062.07,47.21,522.77,2387.99,8.4314,392,39.07,23.4506 +54,53,-0.0022,-0.0005,642.33,1580.99,1407.54,21.61,554.17,2388.01,9062.73,47.21,522.28,2388.02,8.3858,391,39.05,23.5125 +54,54,0.0021,0.0004,642.1,1581.1,1392.46,21.61,553.86,2387.97,9058.68,47.36,522.17,2387.96,8.3969,393,39.08,23.3928 +54,55,-0.0014,0.0003,641.57,1588.91,1400.43,21.61,554.04,2387.95,9065.49,47.14,521.8,2388.06,8.4139,392,39.01,23.3442 +54,56,0.0004,-0.0005,642.49,1583.25,1400.81,21.61,554.53,2388.02,9059.72,47.07,522.57,2387.98,8.3857,391,38.97,23.4216 +54,57,-0.0061,-0.0003,642.39,1580.33,1391.68,21.61,554.68,2388.0,9065.77,47.09,522.04,2387.98,8.3862,391,39.09,23.4079 +54,58,-0.002,-0.0004,642.09,1592.4,1394.56,21.61,554.21,2388.0,9056.27,47.25,522.17,2387.98,8.414,393,38.99,23.425 +54,59,0.0009,0.0004,642.19,1585.77,1403.47,21.61,554.13,2388.04,9057.11,47.31,522.34,2388.04,8.4188,393,38.88,23.4924 +54,60,0.0014,0.0003,641.79,1575.58,1398.54,21.61,554.61,2388.0,9063.28,47.16,522.77,2388.01,8.3943,392,38.8,23.3464 +54,61,-0.0026,0.0,642.11,1579.02,1405.55,21.61,554.44,2388.0,9061.29,47.32,522.05,2388.03,8.4097,389,38.98,23.3442 +54,62,-0.0021,-0.0004,641.95,1581.94,1400.04,21.61,554.73,2388.0,9067.08,47.3,522.47,2387.95,8.4045,390,38.87,23.4563 +54,63,0.0005,-0.0002,642.31,1576.09,1399.97,21.61,554.85,2388.0,9063.07,47.33,522.17,2388.01,8.4121,393,39.02,23.5325 +54,64,-0.0013,0.0004,642.16,1592.19,1388.31,21.61,555.46,2388.02,9060.64,47.21,522.37,2388.0,8.3846,390,39.11,23.3878 +54,65,0.0006,-0.0005,641.92,1593.2,1398.21,21.61,554.32,2388.04,9061.99,47.12,522.18,2388.01,8.3755,392,39.12,23.3815 +54,66,-0.0024,-0.0002,642.56,1583.41,1401.06,21.61,554.51,2388.01,9062.48,47.18,521.99,2388.08,8.3853,392,39.04,23.3567 +54,67,0.0005,0.0004,642.13,1586.19,1402.83,21.61,553.87,2388.05,9068.4,47.27,522.4,2387.97,8.4087,392,38.96,23.3857 +54,68,-0.0034,-0.0003,642.1,1590.38,1400.42,21.61,555.08,2388.07,9070.85,47.31,522.09,2388.02,8.4191,393,39.07,23.4073 +54,69,0.0012,-0.0003,641.76,1581.71,1396.5,21.61,554.04,2388.03,9057.55,47.07,522.12,2388.02,8.4058,392,38.79,23.4817 +54,70,-0.002,-0.0005,642.37,1590.55,1401.26,21.61,553.35,2387.99,9059.93,47.2,522.01,2388.04,8.3866,393,38.95,23.3719 +54,71,0.0011,-0.0005,642.06,1592.71,1401.82,21.61,554.6,2388.03,9065.59,47.12,522.81,2388.0,8.4279,392,38.93,23.3344 +54,72,-0.0007,-0.0,642.25,1585.7,1397.42,21.61,554.09,2388.03,9062.62,47.16,522.36,2388.01,8.4358,393,38.96,23.4335 +54,73,-0.0016,0.0001,642.41,1587.43,1397.45,21.61,553.84,2388.02,9066.6,47.31,522.12,2388.05,8.38,392,38.97,23.4108 +54,74,0.0017,-0.0004,642.13,1579.33,1402.04,21.6,554.93,2388.03,9071.25,47.13,521.69,2388.02,8.4216,392,38.92,23.422 +54,75,0.0008,-0.0002,641.72,1592.22,1402.66,21.61,554.71,2388.03,9059.69,47.34,522.26,2388.04,8.4048,392,39.04,23.3875 +54,76,0.0009,0.0003,642.26,1588.11,1401.24,21.61,553.99,2387.98,9062.54,47.29,522.92,2388.03,8.384,391,38.99,23.3181 +54,77,0.0021,0.0004,641.86,1584.14,1398.2,21.61,554.19,2388.07,9064.28,47.17,522.32,2388.02,8.4038,391,39.26,23.3835 +54,78,0.0013,0.0,642.09,1590.28,1397.2,21.61,554.31,2387.94,9069.94,47.36,522.36,2388.01,8.4292,391,39.0,23.4301 +54,79,0.003,0.0,642.18,1587.41,1400.15,21.61,554.84,2387.98,9058.9,47.21,521.69,2388.07,8.4239,394,38.99,23.4631 +54,80,0.0005,0.0001,642.61,1588.24,1395.51,21.61,554.39,2387.96,9069.63,47.32,522.15,2387.98,8.407,393,39.05,23.3775 +54,81,0.0005,-0.0001,641.95,1581.03,1394.95,21.61,554.35,2387.98,9062.77,47.06,522.12,2387.98,8.4259,389,39.05,23.5036 +54,82,-0.0001,0.0001,641.88,1580.45,1396.24,21.61,553.91,2387.97,9065.21,47.15,521.7,2388.07,8.4136,392,39.09,23.4048 +54,83,0.0005,-0.0003,642.01,1585.08,1399.51,21.6,554.5,2388.02,9062.69,47.1,521.92,2388.05,8.4045,392,38.98,23.4566 +54,84,-0.001,-0.0005,642.62,1585.66,1402.32,21.61,554.87,2387.98,9063.48,47.24,522.08,2387.96,8.3805,392,39.02,23.3948 +54,85,0.0009,-0.0001,642.65,1587.19,1404.67,21.61,554.25,2388.01,9059.81,47.34,522.55,2388.01,8.3897,392,38.85,23.4286 +54,86,0.002,-0.0001,641.66,1587.7,1396.17,21.61,554.17,2387.99,9066.2,47.1,522.44,2388.02,8.3781,392,39.16,23.4151 +54,87,-0.0032,-0.0002,641.7,1582.42,1401.18,21.61,554.52,2387.95,9059.69,47.12,522.92,2388.07,8.4028,391,39.05,23.5472 +54,88,-0.0034,-0.0005,642.16,1592.99,1405.93,21.61,554.04,2388.03,9062.78,47.32,522.15,2388.06,8.438,392,39.02,23.2446 +54,89,-0.0015,0.0003,641.64,1594.32,1404.31,21.61,554.19,2388.05,9063.7,47.24,522.42,2387.98,8.378,391,38.75,23.4034 +54,90,0.0011,-0.0002,642.18,1590.28,1401.61,21.61,553.94,2388.0,9061.52,47.11,522.35,2388.06,8.4034,392,39.22,23.3348 +54,91,0.0013,0.0003,641.97,1582.99,1395.14,21.61,554.7,2388.01,9070.77,47.19,522.2,2388.0,8.4275,392,38.74,23.3724 +54,92,-0.0,-0.0003,641.78,1589.91,1405.57,21.61,554.66,2388.04,9062.56,47.19,522.45,2388.0,8.3814,392,39.09,23.4267 +54,93,0.0045,-0.0001,642.26,1586.87,1399.91,21.61,554.1,2387.98,9060.91,47.35,522.03,2388.0,8.3879,392,39.11,23.3427 +54,94,0.003,-0.0,642.14,1583.67,1398.29,21.61,554.35,2388.01,9065.71,47.22,522.31,2387.99,8.398,391,39.05,23.3228 +54,95,-0.0022,-0.0005,642.57,1584.73,1396.98,21.61,554.53,2388.05,9064.23,47.16,522.36,2387.99,8.3733,391,38.99,23.4781 +54,96,0.0025,0.0004,642.3,1586.66,1406.2,21.61,554.07,2388.07,9070.5,47.2,522.07,2387.95,8.4193,392,38.99,23.4314 +54,97,-0.0017,-0.0004,642.31,1590.24,1399.02,21.61,554.21,2388.05,9063.46,47.25,522.29,2388.02,8.3952,392,38.91,23.3373 +54,98,-0.0019,-0.0003,642.55,1587.71,1399.51,21.61,554.5,2388.03,9070.17,47.1,522.13,2388.04,8.3857,392,38.72,23.3219 +54,99,-0.001,0.0002,642.47,1595.37,1405.55,21.61,553.74,2388.01,9056.66,47.24,522.3,2388.05,8.4277,393,38.96,23.381 +54,100,0.0004,0.0,642.54,1579.7,1399.06,21.61,554.41,2388.05,9067.43,47.27,522.17,2388.01,8.4108,391,38.97,23.3886 +54,101,0.0011,-0.0003,642.37,1583.81,1387.86,21.61,553.75,2388.02,9069.96,47.07,522.16,2387.97,8.4209,393,38.84,23.4414 +54,102,0.002,-0.0003,642.38,1587.64,1396.12,21.61,554.8,2388.03,9067.94,47.23,521.98,2388.04,8.4235,392,38.88,23.3304 +54,103,0.0019,-0.0003,641.94,1578.25,1403.2,21.61,554.08,2387.96,9069.75,47.4,522.15,2388.04,8.3859,392,39.19,23.3539 +54,104,0.0013,-0.0004,641.75,1589.03,1397.57,21.61,554.23,2388.03,9069.25,47.39,522.31,2388.06,8.3931,394,39.18,23.3736 +54,105,0.0007,-0.0,642.38,1590.66,1398.16,21.61,554.63,2387.99,9060.17,47.23,522.14,2388.02,8.4179,392,39.07,23.3302 +54,106,-0.0024,0.0004,642.45,1580.18,1393.81,21.61,554.2,2388.07,9075.17,47.16,522.34,2388.05,8.4206,393,39.03,23.4957 +54,107,-0.0008,0.0,642.07,1591.93,1402.59,21.61,554.58,2387.94,9069.3,47.3,522.18,2388.06,8.4174,391,39.04,23.331 +54,108,-0.0015,-0.0001,641.96,1590.26,1407.44,21.61,553.81,2388.01,9068.16,47.25,521.75,2388.0,8.4114,392,38.95,23.3635 +54,109,-0.0016,0.0,642.21,1580.99,1397.49,21.61,554.58,2388.01,9070.85,47.16,522.23,2388.04,8.4329,392,38.87,23.3467 +54,110,0.0022,0.0004,642.18,1587.56,1395.06,21.6,554.33,2387.99,9064.72,47.23,522.23,2387.96,8.4171,393,39.01,23.3853 +54,111,-0.0009,-0.0001,642.53,1584.33,1401.67,21.61,554.11,2388.04,9071.37,47.27,521.95,2388.08,8.406,392,38.93,23.305 +54,112,-0.0036,-0.0003,642.27,1587.04,1407.03,21.61,554.09,2388.02,9069.43,47.29,521.81,2388.01,8.449,393,38.98,23.4116 +54,113,0.003,0.0004,641.81,1586.81,1404.3,21.61,555.06,2388.01,9070.85,47.23,522.58,2388.04,8.3938,392,38.95,23.3545 +54,114,0.0038,-0.0005,642.07,1579.82,1400.23,21.61,553.86,2388.06,9060.52,47.3,522.02,2388.06,8.373,391,38.83,23.5004 +54,115,0.0021,0.0003,642.53,1585.47,1397.34,21.61,554.41,2388.06,9069.18,47.17,522.67,2388.04,8.431,391,39.07,23.4389 +54,116,-0.005,0.0,642.47,1580.79,1393.06,21.61,553.6,2388.03,9060.95,47.27,522.27,2387.99,8.3741,393,39.01,23.2499 +54,117,-0.0018,-0.0005,642.14,1587.44,1404.3,21.61,554.6,2388.05,9061.4,47.25,522.16,2387.97,8.4072,391,39.13,23.4223 +54,118,-0.0004,-0.0003,642.2,1587.26,1404.7,21.61,554.32,2387.97,9073.33,47.33,522.23,2388.05,8.411,391,38.98,23.3743 +54,119,0.0,-0.0005,642.1,1589.47,1396.47,21.61,554.04,2388.01,9072.04,47.19,521.59,2388.03,8.4074,391,39.22,23.4736 +54,120,0.0055,-0.0004,642.39,1582.88,1400.24,21.61,553.91,2387.96,9060.95,47.3,522.16,2388.05,8.3673,391,39.13,23.4473 +54,121,0.0014,0.0004,642.34,1591.76,1405.67,21.61,554.89,2388.04,9066.2,47.37,522.27,2388.06,8.4211,392,38.88,23.3944 +54,122,0.0009,0.0003,642.3,1593.16,1396.1,21.61,554.1,2388.02,9061.42,47.16,521.98,2388.02,8.4187,391,38.9,23.4504 +54,123,-0.0022,-0.0003,642.24,1590.11,1397.4,21.61,554.14,2388.0,9067.78,47.26,522.31,2388.05,8.3968,391,39.02,23.336 +54,124,-0.0005,0.0004,642.17,1588.28,1400.53,21.61,554.03,2388.01,9069.4,47.25,521.95,2388.04,8.4295,391,38.92,23.4611 +54,125,0.0017,0.0,642.33,1584.97,1398.09,21.61,554.27,2388.06,9064.43,47.29,522.31,2387.98,8.4112,393,38.87,23.2206 +54,126,0.0001,0.0002,642.3,1586.81,1398.05,21.61,554.19,2388.05,9067.42,47.16,521.84,2388.05,8.4258,392,39.04,23.3668 +54,127,-0.0006,-0.0003,642.33,1579.33,1410.12,21.61,553.98,2387.95,9070.64,47.28,521.68,2388.03,8.441,393,39.01,23.351 +54,128,-0.002,-0.0004,642.29,1583.79,1404.52,21.61,554.97,2388.07,9071.47,47.21,521.99,2388.01,8.3677,392,39.03,23.351 +54,129,-0.0011,-0.0004,642.43,1591.09,1397.57,21.61,554.37,2388.0,9068.62,47.35,522.12,2388.08,8.428,391,38.85,23.282 +54,130,-0.0005,-0.0004,642.74,1587.07,1403.03,21.61,554.55,2387.98,9069.19,47.23,521.86,2388.05,8.382,392,39.02,23.4425 +54,131,-0.0013,0.0004,642.34,1596.69,1400.96,21.61,554.2,2388.11,9068.61,47.36,521.66,2388.03,8.3884,392,38.81,23.3771 +54,132,0.0014,-0.0003,642.06,1583.83,1399.96,21.61,554.34,2388.02,9064.83,47.28,522.22,2388.03,8.4442,393,38.85,23.3743 +54,133,-0.0015,-0.0002,642.14,1587.87,1400.45,21.61,553.53,2388.01,9074.02,47.16,521.74,2388.04,8.3995,394,38.84,23.3821 +54,134,0.0022,-0.0004,642.47,1586.43,1400.55,21.61,553.89,2388.03,9067.65,47.36,522.16,2388.0,8.388,393,39.04,23.3264 +54,135,-0.0008,0.0004,642.64,1589.29,1392.75,21.61,554.16,2387.99,9068.1,47.31,522.08,2388.01,8.4363,392,38.93,23.3232 +54,136,-0.0007,-0.0003,642.26,1588.03,1395.93,21.61,553.85,2388.02,9069.66,47.45,522.28,2387.99,8.4654,392,38.87,23.3179 +54,137,0.0005,-0.0,642.59,1594.35,1399.98,21.61,553.76,2388.08,9066.73,47.33,521.6,2388.05,8.4103,393,38.99,23.3654 +54,138,0.0051,-0.0001,642.24,1584.89,1405.58,21.61,553.73,2388.0,9069.42,47.43,521.66,2388.0,8.4226,393,38.83,23.3454 +54,139,0.0015,-0.0001,642.35,1584.74,1402.54,21.61,554.21,2388.06,9074.57,47.23,521.76,2388.02,8.4362,392,38.92,23.3959 +54,140,-0.0018,-0.0002,642.17,1588.78,1399.55,21.61,553.75,2388.05,9066.44,47.36,522.2,2388.04,8.3903,392,38.95,23.3013 +54,141,-0.0026,0.0003,642.12,1583.48,1403.79,21.61,553.9,2387.97,9070.0,47.34,522.1,2388.01,8.3872,392,38.91,23.3524 +54,142,0.0014,-0.0001,642.66,1588.86,1397.51,21.61,554.62,2388.04,9069.49,47.31,522.1,2388.08,8.416,394,38.86,23.3405 +54,143,0.0004,-0.0003,641.99,1584.79,1412.94,21.61,553.71,2388.03,9071.98,47.28,522.36,2388.06,8.4223,392,39.02,23.2956 +54,144,0.0002,-0.0001,642.72,1584.83,1396.31,21.61,553.89,2388.05,9065.46,47.44,522.02,2388.08,8.4307,391,39.02,23.237 +54,145,-0.0042,0.0003,642.52,1581.0,1408.93,21.61,553.37,2388.02,9074.18,47.39,522.33,2388.05,8.4247,392,38.92,23.4516 +54,146,-0.0015,-0.0003,642.17,1593.55,1402.27,21.61,554.11,2387.99,9073.3,47.34,521.44,2388.0,8.3875,392,38.81,23.2543 +54,147,-0.001,0.0004,642.34,1583.4,1399.66,21.61,554.71,2388.06,9071.54,47.3,521.68,2388.01,8.4159,393,38.86,23.3899 +54,148,-0.0025,-0.0002,641.64,1583.9,1398.66,21.61,553.76,2388.07,9072.19,47.48,522.33,2388.02,8.4331,393,38.91,23.3755 +54,149,-0.0026,0.0003,642.39,1587.92,1406.46,21.61,554.05,2388.06,9070.15,47.35,521.77,2388.02,8.3653,392,38.89,23.4141 +54,150,-0.0017,0.0002,642.15,1586.49,1405.82,21.6,553.91,2388.02,9075.81,47.42,521.84,2388.04,8.4025,393,38.94,23.3954 +54,151,-0.0052,-0.0001,642.03,1588.77,1403.9,21.61,553.84,2387.99,9066.23,47.41,522.01,2388.01,8.3811,393,38.67,23.3216 +54,152,0.0042,-0.0001,641.97,1593.09,1402.0,21.61,554.37,2388.06,9082.17,47.39,521.93,2388.02,8.4197,393,39.11,23.3556 +54,153,-0.0004,-0.0004,642.27,1582.42,1405.25,21.61,554.09,2388.03,9079.38,47.42,521.87,2388.03,8.4241,393,38.98,23.366 +54,154,-0.0017,-0.0005,642.07,1590.96,1402.58,21.61,554.39,2388.02,9068.79,47.14,521.87,2388.1,8.4518,393,38.96,23.3386 +54,155,-0.0005,-0.0005,642.68,1592.73,1400.0,21.61,553.87,2388.04,9075.08,47.43,521.75,2387.99,8.4165,392,38.86,23.3823 +54,156,-0.0041,-0.0004,642.32,1586.38,1409.89,21.61,553.81,2388.02,9068.81,47.2,522.25,2388.02,8.414,393,38.86,23.4043 +54,157,-0.001,0.0001,642.9,1579.37,1402.37,21.61,553.9,2388.12,9073.19,47.53,521.6,2388.07,8.43,393,38.84,23.3749 +54,158,0.0007,-0.0004,642.28,1595.5,1408.51,21.61,553.86,2388.06,9075.49,47.26,522.16,2388.08,8.4,393,38.92,23.3093 +54,159,0.0012,-0.0001,642.82,1584.54,1402.11,21.61,553.8,2388.07,9069.69,47.19,521.84,2388.0,8.426,392,38.91,23.3262 +54,160,-0.0006,-0.0004,642.16,1594.12,1406.29,21.61,554.02,2388.03,9078.08,47.57,522.09,2388.06,8.4214,392,38.85,23.4825 +54,161,0.0024,-0.0004,642.76,1596.25,1396.82,21.61,553.86,2388.09,9080.4,47.35,521.99,2388.03,8.4676,393,38.95,23.3271 +54,162,-0.0003,0.0004,642.73,1594.05,1401.81,21.61,553.63,2388.08,9075.65,47.24,522.41,2387.99,8.4103,392,38.97,23.2686 +54,163,-0.0022,0.0003,642.27,1577.69,1403.82,21.61,553.59,2388.05,9077.0,47.28,522.2,2387.99,8.4271,393,38.72,23.2924 +54,164,-0.0004,0.0001,642.44,1587.98,1412.75,21.61,554.23,2388.09,9079.5,47.41,521.36,2388.03,8.4034,393,39.17,23.348 +54,165,0.0008,-0.0002,642.29,1592.6,1402.31,21.61,553.4,2388.03,9073.04,47.41,521.81,2388.05,8.3999,391,38.92,23.2709 +54,166,-0.0003,0.0004,642.65,1584.04,1406.89,21.61,554.04,2388.0,9078.86,47.31,521.93,2388.04,8.4772,393,38.88,23.3116 +54,167,-0.0001,-0.0001,642.75,1590.85,1402.07,21.61,553.58,2388.03,9072.75,47.48,522.6,2388.02,8.402,394,38.97,23.3038 +54,168,0.002,-0.0001,642.63,1587.77,1417.21,21.61,554.41,2388.06,9080.02,47.41,521.92,2388.02,8.456,393,39.06,23.3264 +54,169,0.003,-0.0002,642.63,1587.2,1403.38,21.61,553.49,2388.08,9075.24,47.5,522.01,2388.04,8.4073,394,38.9,23.3549 +54,170,-0.0006,0.0002,642.2,1581.76,1405.77,21.61,553.69,2388.05,9086.69,47.5,521.51,2388.04,8.4475,393,38.83,23.3131 +54,171,-0.0034,-0.0004,642.32,1586.56,1397.52,21.61,553.53,2388.04,9076.98,47.49,522.03,2388.0,8.4224,394,38.93,23.2952 +54,172,-0.0033,0.0001,642.31,1586.36,1402.06,21.61,553.58,2388.04,9066.7,47.48,521.69,2388.05,8.4205,393,38.9,23.4118 +54,173,-0.0024,-0.0001,642.87,1595.46,1394.86,21.61,553.17,2388.04,9081.31,47.37,521.89,2388.03,8.4143,394,38.79,23.2765 +54,174,0.0027,0.0004,642.12,1593.79,1412.06,21.61,554.02,2388.04,9078.92,47.33,522.12,2388.01,8.4478,393,38.97,23.2149 +54,175,0.0002,0.0001,642.32,1587.74,1412.1,21.61,552.82,2388.06,9082.88,47.68,521.74,2388.08,8.4451,394,39.0,23.2459 +54,176,0.0019,0.0003,642.55,1586.65,1403.86,21.61,553.73,2388.06,9074.58,47.55,522.39,2388.02,8.3991,394,38.83,23.3538 +54,177,-0.0001,-0.0001,642.85,1588.93,1400.71,21.61,554.66,2388.05,9077.64,47.4,521.17,2388.01,8.4455,393,38.9,23.3646 +54,178,-0.0011,0.0001,642.52,1588.77,1403.58,21.61,553.68,2388.02,9079.31,47.52,521.87,2388.02,8.4536,393,38.91,23.3806 +54,179,0.0003,0.0003,642.59,1589.93,1403.59,21.61,553.7,2388.0,9079.47,47.38,522.32,2388.03,8.4589,393,38.87,23.3978 +54,180,0.0017,0.0003,642.8,1585.65,1403.98,21.6,554.31,2388.09,9085.11,47.54,521.24,2388.01,8.4211,392,38.79,23.3622 +54,181,0.0034,-0.0003,642.38,1593.9,1408.06,21.61,553.85,2388.03,9088.42,47.36,522.01,2388.02,8.4866,393,38.7,23.4565 +54,182,-0.0048,-0.0,642.08,1589.32,1406.42,21.61,554.0,2387.99,9082.71,47.6,521.77,2388.09,8.4483,393,38.88,23.2687 +54,183,0.0009,-0.0005,642.36,1592.31,1409.14,21.61,553.1,2388.09,9079.39,47.41,520.84,2388.02,8.4848,393,38.88,23.2671 +54,184,0.0009,0.0003,642.61,1587.65,1408.27,21.61,553.72,2388.03,9077.89,47.64,521.76,2388.1,8.4309,394,38.85,23.3196 +54,185,0.0021,-0.0004,643.01,1595.92,1406.98,21.61,553.81,2388.03,9080.16,47.4,522.23,2388.05,8.4115,394,38.89,23.2645 +54,186,0.0028,-0.0002,643.03,1604.66,1405.07,21.61,553.6,2388.08,9088.04,47.54,521.86,2388.05,8.4959,393,38.78,23.2269 +54,187,0.0007,-0.0001,642.56,1593.65,1398.96,21.61,552.76,2388.05,9083.8,47.55,521.57,2388.05,8.4335,393,38.82,23.4252 +54,188,-0.0018,-0.0001,642.56,1590.17,1403.55,21.61,553.47,2388.07,9084.69,47.27,521.69,2388.08,8.4287,392,38.91,23.2308 +54,189,0.0008,-0.0003,642.94,1587.47,1403.43,21.61,554.14,2388.03,9082.7,47.4,522.0,2388.06,8.4449,393,38.89,23.3841 +54,190,-0.0011,0.0001,642.5,1589.67,1406.17,21.61,553.17,2388.06,9091.63,47.64,521.51,2388.08,8.4726,394,38.78,23.2706 +54,191,-0.0026,-0.0002,642.43,1590.09,1404.74,21.61,553.44,2388.05,9087.73,47.58,521.68,2388.05,8.4535,393,38.84,23.2742 +54,192,-0.0016,0.0001,642.44,1592.39,1408.25,21.61,554.31,2388.05,9087.84,47.48,521.36,2388.06,8.4564,393,38.8,23.3072 +54,193,-0.0012,-0.0003,643.42,1592.58,1403.39,21.61,553.69,2388.04,9086.92,47.44,521.53,2388.08,8.4464,393,38.92,23.2317 +54,194,0.002,-0.0005,643.16,1592.93,1405.97,21.61,553.69,2388.04,9092.74,47.51,521.34,2388.05,8.4634,393,38.89,23.3434 +54,195,-0.0012,-0.0003,642.64,1594.47,1408.78,21.61,553.89,2388.07,9088.16,47.59,520.91,2388.08,8.4262,393,38.88,23.2129 +54,196,0.0016,0.0001,642.97,1588.71,1414.7,21.61,553.5,2388.02,9090.39,47.55,521.19,2388.05,8.4304,393,38.8,23.3512 +54,197,-0.0004,-0.0003,642.99,1590.12,1405.62,21.61,553.08,2388.04,9092.27,47.55,521.71,2388.09,8.4623,392,38.69,23.3391 +54,198,0.0023,-0.0003,642.9,1590.87,1412.63,21.61,553.66,2388.02,9096.75,47.45,521.32,2388.08,8.4266,395,38.78,23.2779 +54,199,-0.0026,0.0001,643.12,1590.4,1409.22,21.61,553.34,2388.03,9091.01,47.5,521.26,2388.05,8.4447,393,38.99,23.2359 +54,200,-0.0024,0.0004,642.68,1590.26,1410.77,21.61,552.22,2388.03,9096.32,47.4,521.33,2388.06,8.4296,392,38.84,23.2173 +54,201,0.0003,-0.0001,642.93,1599.22,1413.82,21.61,553.48,2388.04,9088.67,47.64,521.23,2388.13,8.4575,394,38.69,23.2093 +54,202,-0.0017,-0.0005,642.3,1593.24,1406.89,21.61,553.01,2388.04,9090.59,47.56,521.49,2388.06,8.4915,393,38.8,23.2904 +54,203,0.0024,-0.0001,643.31,1591.71,1409.21,21.61,553.3,2388.05,9091.31,47.6,521.58,2388.06,8.4493,395,38.79,23.3513 +54,204,0.0049,-0.0004,642.95,1589.13,1412.56,21.61,552.55,2388.04,9092.94,47.56,521.52,2388.03,8.3975,392,38.81,23.1431 +54,205,-0.0013,0.0002,642.21,1593.81,1412.58,21.61,552.93,2388.02,9096.7,47.46,521.9,2388.02,8.4708,392,38.62,23.1516 +54,206,0.0001,0.0001,642.28,1584.04,1411.97,21.61,552.97,2388.04,9093.99,47.67,521.82,2388.1,8.4358,395,38.75,23.1888 +54,207,0.001,-0.0005,642.67,1596.18,1413.16,21.61,553.01,2388.1,9097.98,47.47,521.1,2388.14,8.4318,394,38.81,23.2654 +54,208,0.0013,-0.0002,642.9,1594.94,1415.7,21.61,552.87,2388.11,9084.56,47.55,521.48,2388.08,8.468,394,38.69,23.2625 +54,209,-0.0005,0.0003,642.86,1590.57,1405.05,21.61,553.11,2388.08,9095.65,47.63,521.29,2388.07,8.4543,395,38.58,23.1898 +54,210,-0.0023,0.0004,642.7,1597.82,1413.54,21.61,553.19,2388.09,9097.13,47.55,520.7,2388.07,8.4521,393,38.83,23.2972 +54,211,-0.0021,0.0002,643.01,1595.22,1414.33,21.61,552.88,2388.06,9100.53,47.77,521.28,2388.06,8.4404,393,38.67,23.1791 +54,212,-0.0009,0.0002,643.19,1598.56,1413.03,21.61,553.48,2388.11,9103.47,47.61,521.37,2388.1,8.4394,395,38.54,23.2135 +54,213,-0.0013,0.0004,643.32,1599.83,1408.44,21.61,552.55,2388.05,9093.72,47.64,520.71,2388.09,8.4466,394,38.79,23.2957 +54,214,0.005,0.0004,643.08,1592.65,1418.8,21.61,552.62,2388.12,9099.9,47.62,521.03,2388.12,8.4448,395,38.63,23.2359 +54,215,-0.0032,-0.0003,642.62,1594.85,1419.14,21.61,552.76,2388.04,9103.91,47.72,521.3,2388.08,8.4297,395,38.63,23.2884 +54,216,0.0007,-0.0004,642.38,1602.84,1414.6,21.61,553.24,2388.09,9105.68,47.62,520.78,2388.1,8.4452,393,38.65,23.1998 +54,217,-0.0002,0.0004,643.39,1595.79,1420.62,21.61,552.7,2388.07,9105.49,47.68,520.64,2388.1,8.4669,392,38.61,23.2486 +54,218,-0.0,-0.0005,643.05,1596.68,1421.33,21.61,552.07,2388.08,9103.68,47.79,521.28,2388.03,8.4545,393,38.66,23.3336 +54,219,-0.0031,-0.0002,642.33,1601.75,1409.63,21.61,553.22,2388.02,9111.46,47.54,521.21,2388.09,8.4807,394,38.9,23.2256 +54,220,-0.0035,-0.0001,642.75,1594.81,1414.54,21.61,552.57,2388.09,9106.26,47.63,521.76,2388.08,8.4773,396,38.91,23.2725 +54,221,0.0004,-0.0002,643.34,1596.92,1408.19,21.61,553.16,2388.05,9102.89,47.75,521.54,2388.12,8.4553,395,38.51,23.2132 +54,222,0.0001,0.0003,643.07,1597.61,1417.76,21.61,552.96,2388.07,9110.27,47.74,521.16,2388.07,8.4867,396,38.64,23.2965 +54,223,-0.0007,-0.0001,642.91,1596.45,1411.03,21.61,553.37,2388.1,9111.82,47.78,521.24,2388.13,8.4706,396,38.79,23.2558 +54,224,-0.0017,0.0001,643.04,1597.27,1419.4,21.61,552.81,2388.07,9109.83,47.66,521.05,2388.13,8.4377,393,38.74,23.1277 +54,225,0.0001,0.0003,643.46,1595.86,1415.16,21.61,553.15,2388.07,9113.06,47.86,521.04,2388.09,8.4831,395,38.76,23.2511 +54,226,0.0002,-0.0003,642.8,1602.52,1416.28,21.61,552.53,2388.08,9112.59,47.81,520.25,2388.06,8.4846,396,38.89,23.1647 +54,227,-0.0033,-0.0002,643.36,1594.94,1422.99,21.61,552.41,2388.08,9110.51,47.72,520.74,2388.1,8.4757,395,38.55,23.2584 +54,228,-0.001,0.0001,642.88,1589.28,1415.8,21.61,552.93,2388.15,9119.68,47.63,520.61,2388.09,8.4615,395,38.71,23.3581 +54,229,0.0011,0.0002,642.8,1595.84,1416.1,21.61,553.32,2388.13,9111.19,47.71,521.04,2388.15,8.4798,395,38.62,23.1657 +54,230,0.0036,-0.0001,642.98,1599.85,1420.21,21.61,552.12,2388.14,9110.96,47.66,520.64,2388.08,8.4809,394,38.74,23.1741 +54,231,0.0001,-0.0005,643.35,1595.99,1416.09,21.61,552.7,2388.1,9121.47,47.65,521.07,2388.16,8.4704,395,38.61,23.1995 +54,232,-0.0022,-0.0004,642.88,1602.41,1417.45,21.61,552.03,2388.13,9122.95,47.87,520.78,2388.13,8.442,395,38.64,23.2829 +54,233,0.0018,0.0002,643.74,1601.33,1415.61,21.61,552.12,2388.09,9121.68,47.59,520.68,2388.08,8.4898,394,38.92,23.1941 +54,234,-0.0022,0.0001,643.16,1600.83,1416.21,21.61,552.19,2388.13,9122.25,47.72,519.96,2388.14,8.5088,395,38.47,23.1889 +54,235,-0.0012,0.0004,643.22,1599.07,1420.38,21.61,553.35,2388.16,9130.75,47.73,520.83,2388.09,8.4494,395,38.58,23.1286 +54,236,-0.0014,0.0001,643.18,1592.95,1419.42,21.61,552.33,2388.14,9124.76,48.02,520.91,2388.13,8.4747,395,38.86,23.2473 +54,237,-0.0033,0.0002,643.01,1599.31,1415.38,21.61,551.82,2388.17,9121.21,47.81,520.52,2388.15,8.4662,395,38.76,23.1451 +54,238,0.0014,-0.0003,644.02,1593.76,1424.77,21.61,552.44,2388.11,9132.31,47.95,520.64,2388.15,8.4917,394,38.65,23.1168 +54,239,0.0028,-0.0003,643.45,1597.12,1422.58,21.61,552.95,2388.17,9131.26,47.97,520.92,2388.11,8.4729,396,38.69,23.128 +54,240,0.0018,-0.0,643.03,1592.03,1428.36,21.61,552.29,2388.11,9131.71,47.88,520.16,2388.18,8.4794,396,38.62,23.1185 +54,241,-0.002,0.0004,643.11,1595.36,1422.58,21.61,552.65,2388.15,9125.74,47.89,520.78,2388.13,8.4856,396,38.71,23.1501 +54,242,-0.0009,-0.0004,643.32,1596.45,1427.83,21.61,552.29,2388.15,9125.38,47.99,520.2,2388.13,8.4805,396,38.78,23.0934 +54,243,0.0011,0.0004,643.39,1595.0,1419.5,21.61,553.06,2388.13,9130.52,47.89,520.41,2388.1,8.4982,395,38.63,23.0876 +54,244,0.0007,-0.0004,643.89,1606.81,1425.86,21.61,552.26,2388.14,9130.31,47.99,520.36,2388.11,8.501,395,38.49,23.0118 +54,245,-0.0016,-0.0002,643.1,1605.07,1423.01,21.61,551.52,2388.15,9128.67,47.84,520.85,2388.14,8.5059,395,38.42,23.0871 +54,246,-0.0015,-0.0001,643.17,1595.48,1418.44,21.61,552.39,2388.12,9130.5,48.07,520.32,2388.1,8.5432,396,38.64,23.1938 +54,247,0.0002,0.0004,643.62,1599.48,1425.05,21.61,552.59,2388.16,9141.0,48.02,520.85,2388.11,8.5183,395,38.48,23.126 +54,248,-0.0003,-0.0004,643.35,1597.52,1424.14,21.61,551.83,2388.13,9133.83,48.0,520.0,2388.14,8.5001,396,38.41,23.1075 +54,249,-0.0012,0.0003,643.67,1602.33,1424.88,21.61,552.03,2388.15,9145.77,48.04,519.72,2388.19,8.4857,397,38.32,23.039 +54,250,-0.0004,0.0004,643.81,1600.81,1425.69,21.61,552.31,2388.15,9137.77,47.99,520.25,2388.13,8.5006,396,38.48,23.092 +54,251,0.0017,0.0001,643.56,1601.33,1420.83,21.61,552.03,2388.14,9143.94,48.1,520.03,2388.19,8.5129,397,38.57,23.1984 +54,252,0.0019,0.0004,643.21,1608.14,1425.75,21.61,551.65,2388.13,9148.74,48.03,520.5,2388.12,8.5395,397,38.34,22.9746 +54,253,-0.0021,-0.0,643.18,1603.81,1425.78,21.61,551.59,2388.21,9143.34,48.07,520.64,2388.19,8.5366,396,38.54,23.0378 +54,254,-0.0059,0.0004,643.88,1607.47,1426.06,21.61,551.88,2388.18,9145.76,48.07,519.81,2388.17,8.5097,396,38.46,23.1485 +54,255,-0.0015,-0.0003,644.27,1608.6,1427.77,21.61,550.96,2388.11,9153.65,48.03,520.29,2388.17,8.4924,398,38.65,23.1079 +54,256,-0.0001,0.0002,643.26,1603.84,1426.84,21.61,551.63,2388.18,9148.5,48.01,520.01,2388.14,8.5171,397,38.46,23.0356 +54,257,-0.0009,-0.0003,643.8,1601.79,1433.26,21.61,551.37,2388.16,9155.85,48.15,519.57,2388.15,8.5295,395,38.3,23.05 +55,10,-0.0024,0.0001,642.43,1589.78,1398.95,21.61,553.54,2388.08,9052.89,47.38,521.66,2388.07,8.4329,392,38.94,23.1844 +55,11,0.0001,0.0002,642.76,1583.23,1402.85,21.61,553.95,2388.09,9052.67,47.55,521.93,2388.07,8.417,393,38.78,23.3875 +55,12,0.0013,-0.0004,642.1,1592.64,1403.54,21.61,553.45,2388.11,9050.97,47.37,521.57,2388.12,8.4243,392,38.95,23.2287 +55,13,-0.0039,-0.0002,642.1,1595.2,1401.58,21.61,553.31,2388.12,9044.03,47.41,521.45,2388.09,8.4336,392,38.88,23.1794 +55,14,-0.0007,0.0002,642.31,1591.19,1403.01,21.61,554.31,2388.09,9046.62,47.36,521.02,2388.08,8.4327,394,38.74,23.368 +55,15,0.0002,0.0001,642.85,1580.98,1401.38,21.61,553.45,2388.08,9049.05,47.44,521.55,2388.11,8.4628,393,38.77,23.2677 +55,16,-0.0008,0.0,642.82,1597.64,1410.09,21.61,553.78,2388.05,9051.28,47.65,522.1,2388.07,8.4224,393,38.83,23.2318 +55,17,0.002,-0.0004,642.36,1590.75,1403.37,21.61,554.47,2388.1,9047.83,47.41,521.61,2388.08,8.4455,392,38.88,23.1939 +55,18,-0.0027,0.0003,642.59,1591.03,1403.35,21.61,553.15,2388.07,9049.0,47.34,521.83,2388.1,8.4243,392,38.93,23.4089 +55,19,-0.0024,-0.0002,643.03,1589.11,1410.26,21.61,554.21,2388.02,9057.1,47.37,521.87,2388.08,8.4019,391,38.78,23.3245 +55,20,0.0011,-0.0003,642.44,1593.78,1410.96,21.61,553.66,2388.11,9046.73,47.53,521.69,2388.09,8.425,393,38.97,23.3576 +55,21,0.0004,-0.0001,642.5,1581.61,1403.02,21.61,553.49,2388.02,9053.8,47.24,521.56,2388.08,8.4221,394,38.9,23.3596 +55,22,0.002,0.0005,643.07,1583.91,1409.29,21.61,554.05,2388.1,9057.18,47.27,521.03,2388.07,8.453,392,38.63,23.2477 +55,23,-0.0035,-0.0002,642.71,1588.78,1411.58,21.61,553.88,2388.07,9055.32,47.52,521.69,2388.1,8.4265,392,38.87,23.3842 +55,24,0.0025,0.0002,641.71,1590.36,1404.45,21.61,553.23,2388.1,9043.58,47.62,522.08,2388.02,8.4445,393,39.05,23.3608 +55,25,-0.0023,0.0004,642.24,1586.67,1408.9,21.61,554.11,2388.11,9057.0,47.47,521.59,2388.08,8.4511,393,39.04,23.4263 +55,26,-0.0013,-0.0003,642.07,1585.16,1400.53,21.61,553.27,2388.1,9050.07,47.38,521.24,2388.2,8.4353,392,38.9,23.3291 +55,27,-0.0029,-0.0001,642.31,1589.68,1412.27,21.61,553.87,2388.13,9052.08,47.37,521.97,2388.1,8.4145,393,38.82,23.2553 +55,28,0.0007,0.0,642.55,1589.38,1404.99,21.61,553.21,2388.15,9054.49,47.54,521.67,2388.14,8.439,393,38.91,23.3018 +55,29,-0.0013,0.0003,642.53,1589.68,1408.66,21.61,553.37,2388.07,9051.26,47.42,521.43,2388.06,8.4321,392,38.73,23.2784 +55,30,-0.0033,-0.0002,642.07,1590.39,1403.38,21.61,553.45,2388.01,9049.39,47.52,522.28,2388.03,8.4076,393,38.91,23.2435 +55,31,0.0015,0.0004,642.59,1590.3,1399.6,21.61,553.71,2388.1,9050.09,47.38,521.99,2388.06,8.4548,393,38.85,23.2838 +55,32,0.0003,0.0003,642.44,1591.72,1404.47,21.61,553.31,2388.09,9052.16,47.17,521.76,2388.08,8.4529,392,38.99,23.3315 +55,33,0.0013,0.0002,642.7,1587.7,1412.03,21.61,553.62,2388.12,9050.47,47.35,521.98,2388.12,8.4289,394,39.04,23.2675 +55,34,-0.0022,0.0003,642.55,1586.17,1401.31,21.61,553.23,2388.07,9054.37,47.41,521.21,2388.08,8.44,393,39.04,23.3541 +55,35,-0.0007,-0.0004,642.71,1591.51,1405.42,21.61,554.22,2388.09,9050.64,47.41,521.66,2388.11,8.4237,393,38.9,23.364 +55,36,0.0009,0.0003,642.42,1586.16,1400.94,21.61,553.74,2388.12,9040.33,47.48,521.44,2388.16,8.434,391,38.81,23.2812 +55,37,-0.0002,-0.0001,642.34,1590.66,1399.72,21.61,553.8,2388.12,9052.45,47.38,521.6,2388.05,8.4126,394,38.85,23.4516 +55,38,-0.0004,-0.0002,643.03,1587.43,1405.96,21.61,553.86,2388.07,9056.19,47.41,521.56,2388.13,8.3921,393,38.78,23.2366 +55,39,0.0001,0.0005,643.21,1587.54,1407.22,21.61,554.64,2388.1,9052.09,47.5,521.69,2388.08,8.4453,392,39.02,23.3673 +55,40,-0.0015,-0.0003,642.54,1584.95,1400.48,21.61,554.19,2388.09,9054.94,47.23,522.42,2388.09,8.4506,392,38.93,23.2373 +55,41,-0.002,-0.0002,642.5,1588.53,1417.32,21.61,553.05,2388.12,9054.32,47.65,521.36,2388.07,8.4549,392,39.0,23.3044 +55,42,0.0009,0.0003,642.46,1593.49,1403.59,21.61,553.84,2388.03,9056.68,47.25,521.56,2388.07,8.4449,393,38.75,23.4016 +55,43,-0.0002,-0.0002,642.71,1586.63,1404.7,21.61,552.75,2388.08,9044.79,47.32,521.83,2388.12,8.4453,393,39.0,23.2492 +55,44,0.0013,-0.0001,642.2,1587.01,1401.61,21.61,553.75,2388.06,9050.6,47.34,521.3,2388.05,8.4178,392,38.92,23.3216 +55,45,-0.0015,-0.0003,643.06,1585.46,1399.45,21.61,553.46,2388.05,9061.86,47.25,522.26,2388.1,8.4312,394,38.99,23.178 +55,46,0.0005,-0.0005,642.3,1588.39,1404.44,21.61,553.59,2388.08,9051.27,47.4,521.79,2388.12,8.4243,392,38.87,23.2873 +55,47,0.0001,0.0005,642.5,1583.4,1403.73,21.61,553.28,2388.07,9048.47,47.32,521.79,2388.07,8.426,392,38.71,23.3041 +55,48,0.0057,-0.0,642.44,1589.78,1406.0,21.61,553.47,2388.1,9055.99,47.31,521.32,2388.09,8.4148,393,39.28,23.3804 +55,49,0.0002,-0.0,642.5,1590.36,1408.59,21.61,554.29,2388.09,9049.58,47.34,521.82,2388.06,8.421,393,38.92,23.2912 +55,50,0.0042,0.0005,642.84,1583.56,1404.47,21.61,553.3,2388.1,9048.67,47.54,521.75,2388.11,8.4072,392,38.7,23.2224 +55,51,-0.0017,-0.0001,642.96,1589.7,1403.49,21.61,553.4,2388.09,9058.62,47.4,521.78,2388.05,8.4431,392,38.96,23.3578 +55,52,-0.0003,-0.0001,642.32,1587.98,1405.09,21.61,554.29,2388.12,9058.43,47.36,521.34,2388.12,8.4278,391,38.97,23.3521 +55,53,-0.0026,-0.0001,642.34,1591.16,1408.01,21.61,554.45,2388.07,9057.05,47.33,521.17,2388.1,8.4087,394,38.78,23.3443 +55,54,-0.0025,-0.0004,642.66,1594.07,1405.22,21.61,553.84,2388.12,9054.41,47.5,522.56,2388.12,8.4552,394,38.77,23.2679 +55,55,0.0028,0.0005,642.75,1593.89,1403.02,21.61,553.7,2388.05,9049.91,47.45,521.35,2388.09,8.4497,392,38.79,23.2812 +55,56,-0.0,0.0001,642.35,1590.24,1409.91,21.61,553.26,2388.05,9054.46,47.44,521.85,2388.1,8.4744,394,38.78,23.3575 +55,57,0.0008,0.0002,642.89,1588.72,1402.71,21.61,554.03,2388.07,9046.66,47.41,521.32,2388.08,8.46,392,38.89,23.3371 +55,58,0.0011,-0.0001,642.24,1590.47,1398.28,21.61,552.92,2388.1,9055.03,47.35,521.41,2388.06,8.4191,394,38.92,23.2837 +55,59,-0.0017,-0.0004,642.57,1591.21,1408.89,21.61,554.72,2388.08,9054.57,47.45,521.77,2388.11,8.445,391,38.87,23.3368 +55,60,-0.0007,-0.0,642.49,1592.26,1409.02,21.61,553.5,2388.09,9051.9,47.57,521.67,2388.1,8.435,392,38.98,23.3491 +55,61,0.0003,0.0001,642.94,1585.62,1401.48,21.61,553.61,2388.07,9050.36,47.46,521.58,2388.07,8.4297,394,38.98,23.2973 +55,62,-0.0006,0.0003,642.78,1583.55,1412.35,21.61,553.67,2388.05,9054.46,47.55,522.13,2388.12,8.4568,393,38.9,23.3323 +55,63,-0.0029,0.0003,642.66,1590.91,1413.15,21.61,552.99,2388.07,9051.97,47.47,521.38,2388.06,8.4209,392,39.01,23.3115 +55,64,0.0042,0.0005,642.3,1579.07,1407.78,21.61,553.09,2388.07,9052.77,47.24,521.45,2388.17,8.4201,393,38.83,23.352 +55,65,0.0031,0.0002,642.62,1586.74,1401.08,21.61,553.26,2388.1,9054.94,47.52,521.57,2388.05,8.4539,392,38.9,23.2526 +55,66,-0.0012,-0.0001,642.62,1583.04,1400.59,21.61,553.92,2388.11,9054.8,47.37,521.44,2388.08,8.4234,392,38.82,23.3839 +55,67,-0.0022,0.0005,642.6,1592.75,1399.91,21.61,554.08,2388.09,9049.36,47.39,521.96,2388.08,8.4392,392,38.76,23.3759 +55,68,0.0008,-0.0003,642.16,1586.02,1403.38,21.61,553.77,2388.07,9056.67,47.5,522.0,2388.14,8.4437,393,38.97,23.3935 +55,69,0.0007,0.0005,642.64,1585.44,1410.41,21.61,552.72,2388.07,9056.0,47.5,521.67,2388.11,8.408,395,38.88,23.3587 +55,70,0.0009,-0.0,642.99,1592.12,1399.18,21.61,554.11,2388.08,9051.23,47.49,522.15,2388.08,8.4442,393,39.0,23.3108 +55,71,0.0025,0.0003,642.73,1588.9,1415.51,21.61,552.9,2388.12,9054.38,47.6,521.79,2388.14,8.4587,393,38.7,23.3675 +55,72,-0.0024,0.0,642.76,1583.57,1403.71,21.61,553.67,2388.1,9049.4,47.51,521.77,2388.1,8.4435,393,38.86,23.3164 +55,73,-0.0002,0.0002,642.14,1588.68,1403.74,21.61,553.61,2388.08,9050.99,47.38,521.72,2388.08,8.4248,393,38.91,23.2623 +55,74,-0.0024,0.0005,642.22,1595.04,1403.01,21.61,552.94,2388.1,9058.27,47.48,521.4,2388.1,8.4187,395,38.55,23.3329 +55,75,-0.0018,0.0001,643.37,1593.63,1409.8,21.61,553.47,2388.08,9063.08,47.41,521.38,2388.08,8.4541,392,38.89,23.2689 +55,76,-0.0017,0.0001,642.89,1585.87,1404.59,21.61,553.14,2388.09,9056.22,47.3,521.69,2388.05,8.4534,393,38.87,23.33 +55,77,0.0021,0.0003,642.94,1586.69,1409.27,21.61,553.67,2388.07,9054.83,47.41,521.79,2388.09,8.4282,392,38.67,23.3956 +55,78,-0.0026,-0.0003,642.71,1586.63,1400.89,21.61,553.92,2388.12,9055.48,47.27,521.57,2388.13,8.4073,393,38.79,23.3374 +55,79,0.0022,0.0002,642.11,1583.81,1407.54,21.61,554.43,2388.08,9059.35,47.41,521.82,2388.08,8.4901,392,38.98,23.3602 +55,80,-0.0003,-0.0,642.09,1591.77,1402.03,21.61,553.14,2388.07,9059.79,47.67,521.8,2388.08,8.4346,393,38.79,23.3715 +55,81,0.0011,0.0001,643.15,1593.2,1398.25,21.61,553.69,2388.13,9060.15,47.41,521.93,2388.11,8.4142,393,38.99,23.2949 +55,82,0.0033,-0.0,642.14,1580.88,1401.86,21.61,553.12,2388.03,9058.54,47.58,521.35,2388.02,8.4554,392,38.97,23.3539 +55,83,0.0021,-0.0003,642.39,1593.43,1413.33,21.61,553.38,2388.07,9063.65,47.5,521.18,2388.1,8.4434,392,38.84,23.32 +55,84,-0.0,0.0001,642.88,1589.07,1405.1,21.61,553.15,2388.06,9047.47,47.63,521.18,2388.1,8.4417,393,38.94,23.3036 +55,85,-0.0012,-0.0004,642.32,1590.05,1407.64,21.61,554.21,2388.14,9060.74,47.46,522.16,2388.07,8.4295,390,38.85,23.2302 +55,86,0.0001,0.0003,642.65,1591.96,1403.18,21.61,552.93,2388.12,9060.32,47.42,521.42,2388.07,8.4515,395,38.95,23.2536 +55,87,-0.002,-0.0004,642.36,1584.24,1405.89,21.61,553.15,2388.07,9057.75,47.54,521.39,2388.08,8.4084,395,39.01,23.3704 +55,88,-0.0033,0.0004,642.43,1589.3,1405.85,21.61,554.02,2388.11,9059.86,47.54,521.61,2388.12,8.4211,391,38.73,23.244 +55,89,0.0005,0.0004,642.51,1584.39,1406.59,21.61,553.56,2388.06,9058.67,47.48,521.51,2388.09,8.4438,391,39.0,23.3053 +55,90,0.0002,-0.0003,642.73,1593.85,1407.56,21.61,553.22,2388.15,9072.0,47.38,521.2,2388.07,8.4428,392,38.78,23.357 +55,91,0.0018,0.0003,642.51,1587.86,1403.36,21.61,553.08,2388.08,9055.41,47.2,521.54,2388.04,8.4075,392,38.87,23.2617 +55,92,0.0017,0.0001,642.37,1596.03,1408.65,21.61,552.9,2388.11,9055.57,47.41,521.91,2388.09,8.4092,392,38.95,23.3063 +55,93,0.0026,-0.0,642.69,1586.82,1408.05,21.61,553.92,2388.11,9058.76,47.43,522.11,2388.08,8.4462,394,39.01,23.2548 +55,94,0.0,0.0,641.84,1587.43,1405.93,21.61,553.61,2388.06,9060.05,47.45,521.45,2388.08,8.4144,392,38.69,23.2884 +55,95,0.0009,0.0003,642.68,1595.63,1410.05,21.61,553.76,2388.12,9059.92,47.36,521.48,2388.12,8.4296,394,38.82,23.4112 +55,96,-0.0035,0.0002,643.13,1591.41,1406.37,21.61,553.43,2388.12,9064.84,47.34,521.62,2388.08,8.4415,393,39.07,23.286 +55,97,0.0021,-0.0003,642.8,1590.84,1407.78,21.61,553.73,2388.05,9069.45,47.53,521.66,2388.1,8.4258,394,38.84,23.3534 +55,98,-0.0034,0.0003,642.08,1592.72,1411.59,21.61,553.36,2388.1,9065.09,47.61,521.7,2388.08,8.4297,394,38.8,23.277 +55,99,-0.0015,0.0001,642.58,1593.06,1407.28,21.61,553.73,2388.09,9059.98,47.46,521.52,2388.1,8.4478,392,38.73,23.2968 +55,100,-0.0059,-0.0005,642.19,1596.67,1413.72,21.61,553.4,2388.14,9061.71,47.3,521.4,2388.1,8.4105,393,38.84,23.3006 +55,101,0.0008,-0.0002,642.7,1584.46,1412.5,21.61,554.08,2388.1,9062.28,47.52,521.16,2388.07,8.4521,394,38.89,23.3918 +55,102,0.0012,0.0001,642.62,1581.68,1398.5,21.61,553.46,2388.11,9059.86,47.43,521.24,2388.09,8.3906,392,38.7,23.2673 +55,103,0.002,0.0,642.68,1584.27,1401.89,21.61,553.65,2388.03,9059.1,47.44,521.57,2388.08,8.4426,393,38.85,23.3911 +55,104,-0.0011,0.0004,642.48,1587.57,1405.24,21.61,552.98,2388.07,9060.15,47.44,521.13,2388.08,8.4281,395,39.01,23.3334 +55,105,0.0003,-0.0002,642.55,1586.78,1402.1,21.61,552.96,2388.05,9062.54,47.6,521.63,2388.11,8.4045,394,38.98,23.3129 +55,106,0.0024,-0.0001,643.26,1592.36,1412.56,21.61,552.92,2388.05,9065.82,47.62,521.85,2388.12,8.4178,393,38.69,23.2537 +55,107,0.005,-0.0004,642.02,1586.51,1408.59,21.61,553.63,2388.05,9063.04,47.51,521.73,2388.08,8.4622,392,39.04,23.3281 +55,108,0.0007,-0.0004,642.56,1587.67,1413.36,21.61,554.1,2388.06,9063.3,47.43,521.42,2388.16,8.4583,394,38.73,23.2382 +55,109,0.0015,-0.0001,642.33,1584.97,1409.02,21.61,553.48,2388.07,9063.96,47.49,521.4,2388.09,8.4535,393,38.83,23.3957 +55,110,0.0007,0.0003,642.73,1592.47,1412.48,21.61,552.79,2388.14,9066.66,47.33,521.72,2388.15,8.4531,393,38.86,23.3357 +55,111,-0.0036,-0.0003,642.83,1591.15,1404.46,21.61,553.05,2388.11,9065.42,47.58,521.55,2388.08,8.4354,391,38.88,23.3767 +55,112,0.0031,0.0005,642.87,1585.11,1411.59,21.61,553.55,2388.12,9061.6,47.44,521.8,2388.06,8.4105,393,38.73,23.2428 +55,113,-0.0019,-0.0003,642.35,1589.86,1407.43,21.61,553.95,2388.08,9063.31,47.72,521.75,2388.08,8.459,393,38.7,23.3378 +55,114,-0.0001,0.0001,642.76,1585.83,1402.95,21.61,553.37,2388.1,9068.7,47.47,521.37,2388.08,8.4481,394,38.99,23.3033 +55,115,0.001,-0.0002,642.54,1590.64,1408.19,21.61,553.3,2388.1,9068.78,47.42,521.61,2388.03,8.4055,394,38.94,23.3777 +55,116,-0.0015,0.0005,642.55,1592.31,1415.36,21.61,553.72,2388.08,9067.33,47.42,520.98,2388.05,8.4263,393,38.86,23.3278 +55,117,-0.0004,0.0004,643.14,1584.12,1409.93,21.61,554.17,2388.14,9068.09,47.4,521.68,2388.1,8.4589,392,38.88,23.3305 +55,118,-0.002,0.0001,642.92,1581.42,1409.37,21.61,553.85,2388.13,9070.13,47.52,521.41,2388.09,8.4185,393,38.88,23.2728 +55,119,0.0002,0.0003,642.6,1586.61,1408.51,21.61,553.11,2388.08,9068.68,47.54,521.71,2388.07,8.4103,393,38.77,23.303 +55,120,0.0036,-0.0,642.42,1587.74,1403.25,21.61,553.08,2388.06,9062.98,47.43,520.64,2388.12,8.446,393,38.91,23.3065 +55,121,0.0019,-0.0004,642.61,1596.47,1408.81,21.61,552.8,2388.08,9066.33,47.53,520.77,2388.06,8.4261,393,38.78,23.349 +55,122,0.0025,0.0004,642.31,1589.76,1410.14,21.61,553.43,2388.12,9071.9,47.48,521.45,2388.07,8.4166,394,38.72,23.2606 +55,123,0.0021,-0.0001,642.89,1587.19,1400.24,21.61,553.88,2388.08,9068.91,47.34,521.15,2388.11,8.467,393,38.89,23.3212 +55,124,0.0003,0.0002,642.37,1589.57,1405.01,21.61,553.91,2388.11,9069.72,47.49,521.77,2388.12,8.4689,393,38.8,23.2596 +55,125,-0.0015,-0.0001,642.57,1587.4,1411.02,21.61,552.74,2388.14,9068.41,47.49,521.7,2388.12,8.4253,394,39.01,23.4306 +55,126,0.0009,0.0003,642.59,1589.12,1407.49,21.61,554.13,2388.08,9077.01,47.71,521.98,2388.08,8.4333,393,38.73,23.3047 +55,127,0.0046,0.0004,642.29,1588.75,1416.24,21.61,553.43,2388.1,9070.39,47.53,520.71,2388.06,8.4579,393,38.82,23.2878 +55,128,-0.0033,0.0004,642.18,1589.23,1408.37,21.61,554.08,2388.08,9079.89,47.26,521.5,2388.09,8.4519,393,38.79,23.3714 +55,129,0.0027,-0.0004,642.87,1593.23,1415.28,21.61,553.68,2388.07,9074.97,47.55,521.68,2388.11,8.4213,394,38.73,23.2198 +55,130,0.0005,0.0001,643.01,1585.13,1416.33,21.61,553.13,2388.09,9072.2,47.68,521.75,2388.08,8.4564,393,38.69,23.2138 +55,131,0.0012,0.0005,642.19,1597.37,1406.76,21.61,554.27,2388.07,9078.81,47.76,521.78,2388.08,8.4275,394,38.9,23.2221 +55,132,0.0002,-0.0003,642.48,1588.38,1413.84,21.61,553.38,2388.08,9077.05,47.61,521.11,2388.1,8.4447,394,38.76,23.3597 +55,133,-0.0018,0.0002,642.98,1590.68,1410.11,21.61,553.32,2388.12,9073.66,47.57,521.08,2388.11,8.4626,393,38.71,23.332 +55,134,-0.0004,-0.0002,642.02,1594.72,1415.02,21.61,553.48,2388.05,9073.08,47.36,521.87,2388.08,8.4955,393,38.7,23.2386 +55,135,0.0011,-0.0,643.3,1588.01,1409.81,21.61,553.1,2388.07,9083.13,47.53,521.36,2388.02,8.4374,394,38.97,23.2518 +55,136,-0.0012,-0.0003,642.21,1588.73,1411.09,21.61,553.17,2388.11,9078.58,47.78,521.11,2388.07,8.4767,393,38.84,23.2813 +55,137,-0.0002,0.0005,642.03,1595.69,1404.53,21.61,552.77,2388.09,9090.11,47.38,521.11,2388.07,8.4335,395,38.85,23.3662 +55,138,0.0012,0.0003,642.83,1596.59,1410.59,21.61,553.29,2388.1,9081.94,47.48,521.36,2388.1,8.4516,393,38.64,23.3185 +55,139,-0.0009,0.0005,642.59,1592.34,1411.75,21.61,553.6,2388.08,9085.12,47.58,521.1,2388.08,8.4121,394,38.92,23.3268 +55,140,0.0033,0.0001,642.74,1589.54,1412.05,21.61,552.85,2388.08,9084.15,47.56,521.52,2388.07,8.4654,393,38.66,23.1677 +55,141,0.0011,0.0001,642.5,1593.92,1410.82,21.61,553.22,2388.05,9086.58,47.53,521.5,2388.07,8.4405,393,38.7,23.2895 +55,142,0.0004,-0.0,642.36,1588.12,1406.88,21.61,552.96,2388.03,9082.21,47.59,521.45,2388.08,8.4824,392,38.82,23.3661 +55,143,-0.0017,0.0005,642.69,1590.15,1421.33,21.61,553.12,2388.09,9092.7,47.71,521.43,2388.13,8.4406,393,38.67,23.3507 +55,144,-0.0034,-0.0004,642.46,1592.35,1408.55,21.61,553.06,2388.05,9090.5,47.51,521.86,2388.07,8.4472,394,38.68,23.304 +55,145,-0.0008,0.0003,643.29,1589.33,1410.1,21.61,553.4,2388.14,9085.25,47.49,521.04,2388.09,8.4596,393,38.82,23.1081 +55,146,0.0013,0.0001,642.81,1593.24,1414.97,21.61,552.61,2388.06,9090.05,47.61,520.92,2388.09,8.4693,393,38.67,23.2328 +55,147,0.0,0.0005,643.04,1592.89,1412.3,21.61,553.29,2388.12,9087.63,47.49,521.27,2388.11,8.4026,394,38.97,23.234 +55,148,0.0001,-0.0001,643.37,1594.68,1412.65,21.61,553.14,2388.06,9090.13,47.68,521.51,2388.03,8.492,395,38.91,23.2346 +55,149,0.001,-0.0003,642.91,1591.84,1418.87,21.61,553.53,2388.11,9097.44,47.62,521.12,2388.08,8.461,392,38.78,23.2883 +55,150,0.0002,-0.0002,643.05,1595.6,1416.18,21.61,553.21,2388.06,9093.45,47.52,521.42,2388.07,8.4293,394,38.78,23.283 +55,151,0.0001,-0.0,642.57,1594.96,1413.07,21.61,553.68,2388.07,9088.89,47.63,521.7,2388.08,8.4672,395,38.92,23.0812 +55,152,-0.001,-0.0001,642.95,1588.97,1410.69,21.61,553.47,2388.09,9095.51,47.61,521.22,2388.07,8.4524,396,38.63,23.3328 +55,153,0.0009,0.0001,642.51,1594.5,1416.69,21.61,553.36,2388.07,9093.55,47.73,520.4,2388.06,8.4383,394,38.7,23.1239 +55,154,-0.0021,0.0,642.55,1594.99,1414.14,21.61,553.09,2388.01,9096.93,47.68,521.19,2388.08,8.4713,393,38.92,23.2363 +55,155,-0.0,-0.0001,643.26,1596.05,1410.76,21.61,553.57,2388.12,9106.6,47.62,520.87,2388.05,8.4673,393,38.71,23.3313 +55,156,-0.0002,-0.0004,643.19,1593.73,1415.63,21.61,552.91,2388.09,9100.87,47.68,520.7,2388.08,8.4573,395,38.69,23.2048 +55,157,-0.0014,-0.0004,643.09,1593.53,1415.83,21.61,552.14,2388.09,9102.0,47.68,520.69,2388.04,8.4833,394,38.86,23.1733 +55,158,0.0006,0.0001,643.51,1584.41,1415.04,21.61,553.27,2388.0,9109.86,47.56,521.51,2388.08,8.4939,395,38.84,23.2273 +55,159,-0.001,0.0005,642.57,1599.61,1414.97,21.61,553.22,2388.12,9103.28,47.43,520.96,2388.08,8.4681,395,38.62,23.3258 +55,160,-0.0006,0.0001,643.49,1591.38,1414.7,21.61,553.58,2388.09,9103.29,47.84,521.04,2388.08,8.4503,393,38.66,23.1645 +55,161,0.004,0.0003,642.67,1588.38,1412.6,21.61,553.09,2388.08,9106.12,47.79,521.39,2388.11,8.448,394,38.73,23.0868 +55,162,0.0,-0.0004,643.19,1592.88,1412.84,21.61,552.66,2388.07,9110.28,47.69,521.01,2388.12,8.4757,393,38.71,23.2162 +55,163,-0.0004,0.0005,642.32,1596.07,1406.53,21.61,552.36,2388.11,9110.58,47.63,521.28,2388.07,8.491,395,38.53,23.1546 +55,164,0.001,-0.0001,642.76,1595.75,1409.95,21.61,552.77,2388.08,9112.58,47.73,520.53,2388.01,8.4794,394,38.7,23.1133 +55,165,0.001,0.0005,643.54,1593.31,1420.05,21.61,553.19,2388.1,9117.75,47.7,520.81,2388.08,8.4595,394,38.58,23.2078 +55,166,-0.0022,0.0002,643.32,1593.15,1417.8,21.61,552.92,2388.08,9119.84,47.85,520.62,2388.09,8.4755,396,38.56,23.191 +55,167,-0.0037,0.0002,643.24,1588.13,1417.8,21.61,553.06,2388.08,9123.84,47.6,521.11,2388.07,8.462,395,38.62,23.2583 +55,168,0.0003,0.0003,642.83,1594.65,1412.62,21.61,553.25,2388.1,9122.87,47.77,520.5,2388.06,8.4425,394,38.66,23.0913 +55,169,0.0004,0.0004,643.26,1597.91,1418.22,21.61,553.39,2388.1,9124.04,47.7,521.3,2388.06,8.4821,394,38.58,23.2369 +55,170,-0.0008,0.0002,643.41,1595.6,1421.72,21.61,553.2,2388.04,9124.14,47.81,521.01,2388.09,8.4801,394,38.64,23.2321 +55,171,-0.0021,0.0002,642.35,1593.12,1414.04,21.61,552.32,2388.07,9125.65,47.69,520.96,2388.07,8.4796,395,38.49,23.1221 +55,172,0.0013,0.0004,643.19,1601.67,1420.08,21.61,552.61,2388.09,9128.64,47.73,520.82,2388.11,8.4914,395,38.67,23.3222 +55,173,-0.0001,-0.0005,643.24,1605.51,1418.59,21.61,552.31,2388.15,9136.46,47.58,520.98,2388.13,8.4964,395,38.48,23.1558 +55,174,0.0024,-0.0001,643.56,1594.55,1416.72,21.61,552.56,2388.12,9139.83,47.64,520.97,2388.11,8.4667,395,38.64,23.0817 +55,175,0.0023,0.0001,643.58,1591.38,1410.57,21.61,552.45,2388.07,9139.52,47.83,521.17,2388.09,8.4673,395,38.7,23.0965 +55,176,0.0019,-0.0002,643.04,1598.13,1418.55,21.61,552.89,2388.09,9138.72,47.85,520.82,2388.09,8.5171,395,38.65,23.2217 +55,177,0.0,-0.0003,643.07,1601.48,1421.75,21.61,552.79,2388.09,9145.61,48.07,521.39,2388.09,8.4586,397,38.61,23.1507 +55,178,0.002,-0.0004,643.18,1596.41,1426.51,21.61,552.36,2388.11,9144.12,47.76,521.47,2388.12,8.5042,395,38.72,23.0995 +55,179,-0.0028,-0.0004,643.68,1604.72,1423.69,21.61,552.22,2388.13,9151.5,47.94,520.9,2388.15,8.4868,394,38.68,23.1158 +55,180,-0.0037,0.0005,643.04,1602.17,1426.88,21.61,552.02,2388.08,9156.54,48.05,520.2,2388.13,8.4855,397,38.53,23.0755 +55,181,0.0018,-0.0004,643.54,1605.78,1422.39,21.61,552.25,2388.13,9157.93,48.0,520.33,2388.12,8.5119,397,38.54,23.0392 +55,182,0.001,-0.0001,643.61,1603.56,1426.26,21.61,552.13,2388.07,9155.03,48.07,520.87,2388.11,8.5025,396,38.61,23.2726 +55,183,-0.0006,-0.0004,643.39,1602.98,1422.22,21.61,552.43,2388.13,9164.05,48.05,520.49,2388.11,8.4886,397,38.41,23.1429 +55,184,-0.0037,0.0002,643.28,1594.2,1430.58,21.61,552.1,2388.12,9171.87,48.02,520.68,2388.17,8.5087,396,38.6,23.0658 +55,185,-0.0036,0.0003,643.37,1596.77,1428.37,21.61,552.98,2388.13,9164.27,47.93,520.85,2388.1,8.5296,397,38.56,23.1223 +55,186,0.0015,-0.0004,643.76,1597.46,1421.37,21.61,551.42,2388.15,9166.46,48.08,520.59,2388.14,8.5535,396,38.51,23.0703 +55,187,0.0016,0.0003,643.85,1598.54,1427.47,21.61,552.04,2388.1,9179.24,47.94,520.51,2388.13,8.4885,397,38.66,23.0386 +55,188,-0.0008,-0.0001,643.59,1601.81,1421.49,21.61,553.18,2388.12,9173.13,48.31,520.44,2388.23,8.4851,396,38.52,23.0339 +55,189,-0.0023,-0.0001,643.64,1607.33,1433.9,21.61,552.37,2388.14,9182.51,48.12,520.38,2388.15,8.5094,397,38.58,23.1408 +55,190,-0.0006,-0.0004,643.69,1604.96,1438.1,21.61,551.76,2388.18,9188.23,48.24,520.25,2388.19,8.5474,398,38.49,23.0235 +55,191,0.0011,0.0,643.43,1602.96,1427.08,21.61,552.63,2388.13,9188.11,47.8,520.3,2388.11,8.5371,396,38.51,23.18 +55,192,0.0007,-0.0,643.59,1600.12,1427.12,21.61,550.78,2388.17,9194.97,48.2,520.13,2388.14,8.5137,395,38.5,23.0127 +55,193,0.0033,0.0,644.01,1605.12,1433.56,21.61,551.8,2388.14,9202.75,48.19,520.36,2388.16,8.531,397,38.49,23.1604 +57,10,-0.0006,-0.0003,642.7,1583.95,1402.36,21.61,554.38,2388.08,9056.1,47.39,522.26,2388.06,8.4475,392,38.91,23.4265 +57,11,0.0026,0.0001,642.46,1584.69,1402.15,21.61,554.0,2388.07,9047.78,47.34,522.33,2388.06,8.4025,393,38.99,23.3497 +57,12,-0.0003,-0.0002,642.66,1585.84,1405.32,21.61,553.98,2388.03,9052.31,47.41,521.82,2388.05,8.4294,393,38.98,23.4722 +57,13,0.0014,-0.0001,642.02,1584.93,1401.05,21.61,554.23,2388.08,9051.1,47.44,521.85,2388.12,8.4206,391,39.09,23.3077 +57,14,0.0014,-0.0001,642.74,1585.87,1400.77,21.61,553.89,2388.12,9056.15,47.13,521.85,2388.11,8.4345,393,39.04,23.3957 +57,15,-0.0006,0.0004,641.95,1590.39,1403.26,21.61,553.44,2388.14,9053.76,47.36,521.43,2388.06,8.4061,392,39.03,23.3704 +57,16,-0.0003,-0.0002,642.25,1583.06,1394.64,21.61,553.98,2388.08,9043.8,47.13,522.47,2388.08,8.3969,394,38.94,23.382 +57,17,0.001,-0.0005,642.35,1585.93,1404.35,21.61,553.63,2388.04,9052.89,47.31,521.76,2388.14,8.3926,391,39.02,23.4033 +57,18,-0.0004,-0.0005,642.01,1587.74,1405.64,21.61,553.51,2388.04,9047.0,47.3,522.18,2388.09,8.4117,393,38.82,23.3115 +57,19,-0.0011,0.0002,642.16,1587.96,1403.47,21.61,553.49,2388.11,9052.3,47.59,521.63,2388.07,8.3961,392,38.88,23.3028 +57,20,0.0026,-0.0005,642.74,1587.18,1406.77,21.61,554.12,2388.03,9043.82,47.3,522.28,2388.06,8.403,392,38.92,23.4218 +57,21,0.0004,0.0001,642.3,1586.16,1403.1,21.61,553.98,2388.05,9046.63,47.21,521.83,2388.06,8.4349,392,38.91,23.355 +57,22,-0.0032,0.0002,642.33,1579.32,1397.23,21.61,554.28,2388.09,9052.72,47.35,521.55,2388.11,8.4293,391,39.03,23.3531 +57,23,0.0003,0.0003,642.77,1588.33,1399.28,21.61,554.12,2388.05,9050.2,47.29,521.87,2388.0,8.4297,392,38.88,23.2694 +57,24,0.0033,-0.0,642.65,1586.97,1405.22,21.61,553.79,2388.01,9046.42,47.32,521.99,2388.05,8.4177,392,39.0,23.3688 +57,25,0.0017,0.0001,642.65,1584.95,1404.09,21.61,554.45,2388.09,9061.65,47.63,521.68,2388.1,8.4187,392,39.08,23.3005 +57,26,0.0028,0.0004,642.01,1584.39,1409.99,21.6,554.35,2388.01,9045.58,47.3,522.07,2388.05,8.3846,393,38.97,23.4061 +57,27,-0.0003,0.0002,642.24,1586.8,1396.78,21.61,554.28,2388.08,9047.77,47.33,522.28,2388.07,8.3978,393,38.82,23.406 +57,28,0.0038,-0.0005,642.43,1585.55,1401.98,21.61,553.22,2388.16,9047.27,47.23,521.8,2388.03,8.456,393,38.9,23.4147 +57,29,-0.0039,0.0004,642.47,1584.86,1404.57,21.61,553.76,2388.03,9044.86,47.23,521.88,2388.05,8.3828,392,38.88,23.4126 +57,30,-0.0051,0.0001,642.19,1592.99,1390.35,21.61,553.93,2388.06,9039.8,47.28,521.74,2388.07,8.434,393,38.95,23.2258 +57,31,-0.0011,0.0001,642.37,1581.17,1405.48,21.61,554.31,2388.08,9049.6,47.57,521.38,2388.08,8.3972,391,38.91,23.2808 +57,32,-0.0039,-0.0004,642.7,1589.06,1410.09,21.61,554.31,2388.08,9053.0,47.37,521.77,2388.02,8.4152,393,39.03,23.454 +57,33,0.002,-0.0002,642.59,1580.61,1393.08,21.61,553.5,2388.08,9051.66,47.28,522.28,2388.06,8.4128,391,39.02,23.3196 +57,34,-0.0018,-0.0001,641.84,1590.6,1403.72,21.61,553.83,2388.06,9058.15,47.53,521.6,2388.12,8.4007,392,38.92,23.3577 +57,35,-0.0003,-0.0,642.13,1588.52,1407.28,21.61,554.24,2388.06,9043.47,47.48,522.32,2388.07,8.3933,393,38.85,23.4341 +57,36,0.0023,0.0,642.32,1585.56,1401.31,21.61,553.46,2388.07,9053.06,47.52,521.24,2388.1,8.452,391,38.98,23.3515 +57,37,-0.0012,-0.0002,641.97,1588.01,1406.09,21.61,553.43,2388.06,9044.76,47.21,522.15,2388.1,8.4486,393,38.75,23.4992 +57,38,0.0019,-0.0004,642.62,1585.32,1399.73,21.61,553.94,2388.08,9048.47,47.37,522.37,2388.08,8.4218,392,39.23,23.3812 +57,39,-0.0009,0.0001,642.37,1591.21,1403.75,21.61,553.6,2388.01,9054.2,47.28,522.21,2388.08,8.4272,392,38.86,23.3355 +57,40,0.001,-0.0002,641.68,1579.67,1405.19,21.61,553.48,2388.08,9047.11,47.43,521.81,2388.07,8.4074,393,38.9,23.4048 +57,41,0.0021,0.0004,642.1,1593.06,1402.96,21.61,553.63,2388.1,9048.5,47.21,521.7,2388.11,8.4208,393,38.9,23.3181 +57,42,-0.0002,0.0002,642.54,1584.14,1397.7,21.61,554.37,2388.08,9043.62,47.18,521.99,2388.08,8.4267,392,38.82,23.3376 +57,43,-0.0044,-0.0004,641.59,1586.15,1406.06,21.61,553.52,2388.12,9049.8,47.34,521.5,2388.06,8.3896,394,38.79,23.2991 +57,44,-0.0008,-0.0004,642.48,1585.91,1401.68,21.61,553.57,2388.08,9038.72,47.18,522.06,2388.07,8.3731,393,39.07,23.3478 +57,45,0.0035,-0.0,642.76,1584.91,1410.21,21.61,554.17,2388.07,9052.16,47.49,522.23,2388.07,8.4499,392,38.71,23.444 +57,46,0.002,0.0,642.74,1582.19,1397.98,21.61,554.34,2388.08,9054.63,47.31,521.61,2388.11,8.4277,392,39.04,23.3469 +57,47,-0.0003,-0.0002,642.39,1584.87,1400.91,21.61,553.26,2388.15,9050.06,47.28,521.65,2388.09,8.4619,392,38.91,23.3216 +57,48,-0.0031,-0.0005,642.17,1585.84,1402.14,21.61,554.01,2388.07,9047.5,47.5,521.73,2388.09,8.414,394,38.78,23.3214 +57,49,-0.0019,0.0002,642.56,1585.47,1401.05,21.61,553.98,2388.07,9046.34,47.49,521.89,2388.08,8.4004,392,38.86,23.3607 +57,50,0.0047,-0.0005,642.89,1590.75,1397.95,21.61,554.36,2388.1,9053.31,47.39,521.79,2388.03,8.4036,392,38.79,23.3338 +57,51,0.0004,0.0002,642.9,1584.9,1403.85,21.61,553.62,2388.02,9041.5,47.26,522.2,2388.06,8.4287,392,38.87,23.4168 +57,52,-0.0017,0.0003,642.56,1589.78,1399.83,21.61,554.32,2388.12,9044.18,47.33,522.17,2388.04,8.3995,393,38.87,23.2895 +57,53,-0.0007,0.0004,642.84,1596.23,1399.12,21.61,553.21,2388.11,9044.98,47.39,521.71,2388.08,8.4385,393,39.09,23.3639 +57,54,-0.0004,-0.0002,642.47,1589.25,1398.54,21.61,553.76,2388.09,9043.06,47.43,521.8,2388.12,8.4309,394,39.03,23.3659 +57,55,-0.0011,0.0003,642.23,1583.01,1395.66,21.61,553.71,2388.04,9055.25,47.5,522.35,2388.0,8.4146,391,38.86,23.3669 +57,56,-0.004,-0.0003,642.5,1593.52,1402.15,21.61,553.03,2388.03,9053.58,47.41,522.37,2388.1,8.3997,392,38.77,23.3993 +57,57,-0.0016,-0.0001,642.42,1590.41,1403.39,21.61,554.27,2388.11,9048.37,47.46,521.97,2388.09,8.4397,393,38.93,23.2477 +57,58,0.0027,0.0004,643.22,1589.56,1397.41,21.61,553.55,2388.14,9053.13,47.37,521.8,2388.11,8.4278,393,38.83,23.3732 +57,59,0.0005,0.0001,642.67,1583.4,1410.26,21.61,553.12,2388.03,9047.23,47.49,521.43,2388.1,8.44,392,38.81,23.3404 +57,60,0.0067,-0.0002,642.94,1588.28,1403.23,21.61,553.15,2388.09,9041.66,47.36,521.83,2388.1,8.4618,393,38.92,23.4183 +57,61,-0.0011,-0.0004,642.25,1590.3,1400.96,21.6,553.29,2388.11,9050.49,47.53,521.4,2388.14,8.4407,392,38.9,23.234 +57,62,0.0016,0.0003,642.4,1594.44,1404.98,21.61,553.22,2388.06,9044.93,47.5,521.56,2388.09,8.4625,394,38.97,23.3897 +57,63,-0.0005,-0.0002,642.38,1587.46,1413.64,21.61,553.97,2388.06,9048.51,47.42,521.33,2388.09,8.4324,392,38.87,23.4107 +57,64,-0.0032,-0.0001,642.5,1582.95,1405.42,21.61,553.75,2388.12,9044.63,47.51,521.62,2388.04,8.4606,394,38.93,23.3744 +57,65,0.0023,0.0001,643.1,1591.13,1408.48,21.61,553.34,2388.06,9050.49,47.59,522.25,2388.12,8.4163,392,39.0,23.2173 +57,66,-0.0013,0.0002,642.07,1590.99,1409.49,21.61,553.73,2388.11,9049.42,47.31,521.77,2388.09,8.4225,391,38.8,23.2473 +57,67,-0.0002,-0.0004,642.66,1588.57,1397.84,21.61,553.35,2388.16,9054.67,47.61,521.63,2388.09,8.4603,392,38.89,23.4041 +57,68,0.0011,-0.0005,641.96,1588.22,1401.69,21.61,553.38,2388.14,9049.76,47.46,521.04,2388.09,8.45,393,39.09,23.2718 +57,69,0.0025,0.0002,642.53,1594.01,1408.35,21.61,553.72,2388.08,9047.57,47.34,522.23,2388.13,8.4154,394,38.82,23.3204 +57,70,-0.0007,0.0001,642.53,1593.73,1402.87,21.61,553.62,2388.08,9039.63,47.4,521.76,2388.08,8.4098,391,38.99,23.1992 +57,71,-0.0038,0.0001,641.88,1589.41,1408.89,21.61,554.0,2388.09,9052.57,47.36,521.35,2388.11,8.4045,393,39.0,23.2634 +57,72,0.0028,0.0004,642.13,1589.23,1403.38,21.61,553.67,2388.04,9047.88,47.45,522.01,2388.11,8.4149,394,38.88,23.352 +57,73,-0.001,0.0004,642.78,1584.77,1410.85,21.61,554.22,2388.13,9044.28,47.57,520.94,2388.13,8.426,395,38.77,23.2394 +57,74,-0.0041,0.0001,642.75,1587.18,1403.99,21.61,553.8,2388.12,9048.42,47.51,521.58,2388.15,8.4271,393,38.76,23.3394 +57,75,0.0066,0.0005,642.48,1591.09,1403.25,21.61,553.65,2388.12,9047.74,47.41,521.31,2388.08,8.4321,393,38.86,23.2441 +57,76,0.0009,0.0,642.92,1601.85,1409.0,21.61,553.93,2388.11,9045.3,47.56,521.33,2388.13,8.4467,394,38.75,23.2092 +57,77,-0.0022,-0.0,642.5,1580.1,1403.4,21.61,553.43,2388.05,9053.47,47.66,522.06,2388.16,8.4066,392,38.94,23.2951 +57,78,0.0008,0.0001,642.58,1587.8,1406.62,21.61,553.7,2388.09,9048.9,47.47,521.27,2388.1,8.4598,394,38.84,23.259 +57,79,-0.0017,0.0001,642.5,1584.98,1405.57,21.61,553.57,2388.12,9048.12,47.56,521.2,2388.12,8.4236,394,38.89,23.2973 +57,80,0.0018,-0.0002,642.75,1592.43,1402.17,21.61,553.97,2388.13,9047.35,47.36,521.53,2388.14,8.4222,394,38.88,23.1531 +57,81,0.0015,0.0,643.23,1588.45,1407.0,21.61,553.68,2388.13,9043.75,47.6,521.51,2388.1,8.4404,393,38.89,23.1935 +57,82,0.0037,0.0004,643.1,1586.93,1407.37,21.61,553.59,2388.06,9048.08,47.57,521.3,2388.13,8.4398,393,38.97,23.3651 +57,83,0.0056,-0.0002,642.56,1586.05,1405.66,21.61,553.23,2388.1,9051.55,47.46,521.85,2388.04,8.4136,393,39.1,23.2385 +57,84,0.0029,-0.0004,642.32,1587.27,1406.76,21.61,553.56,2388.15,9047.42,47.72,521.96,2388.04,8.4423,391,38.85,23.3075 +57,85,0.0006,-0.0005,643.23,1591.86,1410.13,21.61,553.58,2388.13,9038.29,47.5,521.48,2388.13,8.4204,392,38.74,23.2924 +57,86,-0.003,-0.0001,642.47,1592.56,1399.88,21.61,553.6,2388.12,9038.8,47.31,521.24,2388.15,8.462,392,38.69,23.2527 +57,87,-0.0005,0.0004,642.8,1588.81,1402.26,21.61,553.61,2388.06,9038.87,47.58,521.55,2388.1,8.4544,393,38.8,23.3064 +57,88,-0.0028,-0.0003,642.75,1599.27,1408.98,21.61,553.58,2388.14,9045.86,47.64,521.61,2388.12,8.4413,393,38.91,23.2624 +57,89,0.0042,-0.0004,642.46,1592.36,1404.99,21.61,552.99,2388.1,9046.01,47.59,521.63,2388.13,8.4667,395,38.75,23.3636 +57,90,0.0048,0.0001,642.65,1597.61,1411.84,21.61,553.84,2388.13,9045.14,47.39,521.36,2388.13,8.4446,394,38.85,23.3086 +57,91,0.0009,-0.0005,642.35,1589.37,1406.06,21.61,552.97,2388.16,9052.0,47.39,520.76,2388.16,8.4437,394,38.8,23.2717 +57,92,-0.0033,0.0,643.01,1593.74,1407.3,21.61,552.93,2388.14,9049.45,47.52,521.02,2388.1,8.4573,392,38.78,23.2635 +57,93,-0.0009,0.0004,642.98,1588.27,1418.15,21.61,552.56,2388.09,9047.78,47.7,521.35,2388.1,8.4601,392,38.88,23.368 +57,94,-0.0003,-0.0002,642.91,1590.64,1409.46,21.61,553.26,2388.16,9045.39,47.66,521.16,2388.14,8.4087,394,38.89,23.3145 +57,95,-0.001,-0.0003,642.41,1587.08,1405.52,21.61,554.0,2388.04,9043.3,47.58,521.27,2388.08,8.4611,393,38.9,23.3544 +57,96,0.0055,0.0002,642.76,1594.76,1408.29,21.61,553.26,2388.12,9044.48,47.62,521.37,2388.14,8.4391,396,38.8,23.2794 +57,97,-0.0027,-0.0005,643.38,1591.7,1411.89,21.61,552.69,2388.17,9043.14,47.55,520.98,2388.13,8.4607,393,38.57,23.2508 +57,98,0.0018,-0.0004,642.63,1590.07,1411.66,21.61,552.9,2388.15,9041.05,47.65,521.48,2388.14,8.4761,394,38.85,23.303 +57,99,-0.0039,-0.0001,642.75,1590.26,1405.13,21.61,553.15,2388.17,9047.66,47.56,521.7,2388.15,8.4651,392,39.0,23.2346 +57,100,-0.0026,-0.0004,642.75,1592.96,1412.69,21.61,553.95,2388.12,9043.93,47.62,520.76,2388.18,8.468,394,38.8,23.1595 +57,101,-0.0015,0.0001,643.06,1592.18,1409.28,21.61,553.4,2388.18,9047.85,47.77,520.58,2388.17,8.441,393,38.91,23.3392 +57,102,0.0006,0.0002,642.63,1594.27,1415.28,21.61,552.49,2388.18,9048.84,47.61,521.02,2388.17,8.4499,396,38.75,23.1909 +57,103,0.0013,0.0,642.6,1595.82,1411.74,21.61,553.19,2388.13,9040.78,47.63,521.04,2388.17,8.4515,394,38.65,23.1925 +57,104,0.001,-0.0002,642.76,1594.99,1416.7,21.61,553.03,2388.13,9046.2,47.66,521.16,2388.22,8.4696,395,38.69,23.3088 +57,105,-0.0015,-0.0003,643.19,1585.36,1415.03,21.61,553.61,2388.17,9049.94,47.78,520.96,2388.19,8.4737,392,38.73,23.2044 +57,106,-0.0017,0.0003,642.78,1592.44,1417.99,21.61,553.42,2388.19,9042.35,47.68,521.23,2388.14,8.4841,394,38.44,23.2652 +57,107,0.0023,0.0003,643.24,1592.31,1413.01,21.61,552.5,2388.15,9048.24,47.73,520.54,2388.17,8.459,394,38.74,23.2979 +57,108,-0.0018,-0.0001,642.42,1593.71,1413.3,21.61,553.11,2388.18,9044.3,47.78,520.76,2388.21,8.4752,394,38.75,23.1364 +57,109,-0.0036,-0.0,643.55,1592.04,1413.98,21.61,552.12,2388.18,9052.47,47.7,520.94,2388.17,8.4891,395,38.56,23.2547 +57,110,-0.0012,-0.0004,643.03,1601.55,1413.33,21.61,552.6,2388.19,9038.25,47.64,520.52,2388.16,8.4334,394,38.61,23.3253 +57,111,-0.0005,0.0001,642.52,1587.57,1414.44,21.61,552.73,2388.14,9035.52,47.65,520.69,2388.14,8.4909,396,38.75,23.1645 +57,112,-0.0036,-0.0005,642.84,1590.21,1416.74,21.61,552.74,2388.18,9045.59,47.61,520.44,2388.14,8.4924,394,38.72,23.1206 +57,113,-0.0018,0.0001,642.84,1593.2,1420.49,21.61,552.74,2388.2,9039.73,47.88,520.46,2388.21,8.4457,395,38.6,23.2425 +57,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286 +57,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983 +57,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789 +57,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321 +57,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151 +57,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646 +57,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435 +57,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313 +57,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251 +57,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253 +57,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192 +57,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055 +57,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789 +57,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994 +57,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706 +57,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568 +57,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014 +57,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205 +57,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338 +57,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866 +57,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414 +57,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252 +57,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046 +57,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412 +58,10,-0.002,-0.0005,641.86,1580.31,1405.86,21.61,553.11,2388.06,9062.61,47.41,522.12,2388.06,8.3926,391,39.04,23.5128 +58,11,-0.0003,-0.0005,642.02,1587.24,1396.24,21.61,554.03,2388.08,9061.95,47.36,521.82,2388.08,8.4095,394,38.84,23.311 +58,12,0.0039,0.0002,642.07,1591.21,1402.25,21.61,553.95,2388.03,9070.55,47.38,521.93,2388.08,8.4077,393,39.1,23.2931 +58,13,-0.0012,-0.0005,643.05,1588.88,1404.52,21.61,554.0,2388.01,9063.62,47.47,522.33,2388.04,8.4022,391,39.01,23.2346 +58,14,-0.0002,0.0002,643.05,1582.9,1394.69,21.61,554.17,2388.03,9066.98,47.45,522.1,2388.03,8.4014,390,38.88,23.3799 +58,15,-0.0024,-0.0003,642.27,1583.34,1405.36,21.61,554.08,2388.03,9063.22,47.4,521.65,2388.02,8.4141,392,38.91,23.364 +58,16,0.0017,-0.0001,642.33,1591.22,1400.87,21.61,553.7,2388.01,9064.49,47.34,521.77,2388.06,8.4039,392,39.06,23.2707 +58,17,-0.0,-0.0003,642.59,1582.01,1401.08,21.61,553.73,2388.08,9069.3,47.3,522.16,2388.06,8.4518,393,38.93,23.3628 +58,18,-0.0017,-0.0002,642.49,1589.98,1401.49,21.61,553.9,2387.98,9058.1,47.31,521.62,2388.04,8.4498,391,38.98,23.4576 +58,19,0.0009,-0.0005,641.58,1598.84,1401.43,21.61,554.24,2388.08,9065.52,47.26,521.7,2388.04,8.436,391,39.06,23.406 +58,20,-0.0003,0.0003,642.16,1588.21,1398.46,21.61,553.99,2388.02,9064.44,47.26,521.84,2388.01,8.4245,392,38.87,23.4072 +58,21,-0.0013,0.0001,642.54,1592.01,1401.75,21.61,554.32,2388.04,9067.65,47.38,522.09,2388.01,8.4377,392,39.05,23.4713 +58,22,-0.0034,0.0,642.86,1588.05,1407.54,21.61,553.01,2388.11,9061.87,47.35,521.81,2388.08,8.442,392,38.95,23.3168 +58,23,-0.0016,0.0004,642.73,1588.91,1399.14,21.61,553.42,2388.03,9064.61,47.21,522.35,2388.03,8.4065,392,39.0,23.3572 +58,24,0.0001,0.0002,642.67,1592.14,1407.04,21.61,553.24,2388.05,9066.2,47.44,522.04,2388.04,8.4067,391,38.93,23.3207 +58,25,-0.0027,0.0001,642.5,1590.75,1403.68,21.61,553.81,2388.04,9069.54,47.48,522.45,2388.06,8.4276,392,38.93,23.3306 +58,26,-0.004,0.0001,642.37,1598.31,1402.54,21.61,553.8,2388.01,9065.84,47.57,521.96,2388.06,8.4114,392,39.08,23.3497 +58,27,0.0004,-0.0,642.66,1587.88,1396.46,21.61,553.84,2388.07,9061.12,47.18,521.69,2388.07,8.3984,392,38.84,23.3886 +58,28,-0.0017,0.0001,642.0,1590.0,1409.81,21.61,553.76,2387.99,9066.79,47.31,522.51,2388.05,8.4077,392,39.13,23.4317 +58,29,0.0015,0.0,642.42,1590.61,1403.78,21.61,553.45,2388.07,9065.36,47.34,521.46,2388.07,8.4324,392,38.88,23.2306 +58,30,-0.0029,-0.0004,642.86,1588.46,1403.65,21.61,554.38,2388.07,9069.03,47.33,521.96,2388.04,8.4084,391,39.06,23.3015 +58,31,0.0003,-0.0,642.5,1591.23,1405.79,21.61,554.24,2388.09,9056.0,47.22,521.98,2388.08,8.4182,393,38.87,23.2809 +58,32,0.0021,-0.0005,642.3,1582.64,1400.88,21.61,553.9,2388.05,9061.94,47.34,521.94,2388.06,8.4299,391,39.14,23.433 +58,33,-0.0022,0.0002,641.82,1585.41,1401.47,21.61,553.85,2388.01,9072.37,47.3,522.07,2388.02,8.435,392,38.89,23.4138 +58,34,-0.0041,-0.0005,642.38,1583.1,1395.59,21.61,554.01,2388.02,9071.37,47.36,522.14,2388.03,8.4584,393,38.99,23.4256 +58,35,0.0013,-0.0001,642.82,1590.34,1403.64,21.61,554.2,2388.04,9062.28,47.34,522.26,2388.09,8.4218,394,39.02,23.4101 +58,36,-0.0055,0.0004,642.8,1589.18,1402.1,21.61,553.84,2388.14,9060.63,47.38,521.76,2388.04,8.409,393,39.0,23.4206 +58,37,0.0028,-0.0001,641.9,1588.94,1403.49,21.61,553.1,2388.03,9068.16,47.2,522.24,2388.09,8.4216,392,38.72,23.4423 +58,38,0.0016,0.0002,642.59,1586.97,1404.17,21.61,554.53,2388.0,9066.04,47.52,521.89,2387.99,8.4355,392,38.74,23.376 +58,39,0.005,-0.0,641.68,1588.58,1411.78,21.61,554.61,2388.05,9057.63,47.43,521.78,2388.06,8.4908,391,38.84,23.4197 +58,40,-0.0025,-0.0002,642.26,1589.31,1411.44,21.61,553.52,2388.09,9059.81,47.4,521.56,2388.01,8.4183,393,38.81,23.4656 +58,41,-0.0049,0.0004,642.49,1591.7,1403.21,21.61,554.15,2388.09,9058.87,47.34,521.26,2388.02,8.4173,392,38.87,23.3199 +58,42,-0.0033,-0.0005,641.95,1587.77,1408.32,21.61,554.15,2388.06,9062.85,47.21,521.48,2388.1,8.3991,393,38.65,23.4807 +58,43,0.0015,-0.0003,643.14,1588.53,1407.16,21.61,553.59,2388.05,9062.75,47.32,522.02,2388.1,8.4206,391,38.87,23.3472 +58,44,0.0025,0.0004,642.88,1592.66,1395.1,21.61,554.31,2388.09,9061.41,47.43,521.73,2388.04,8.433,394,38.93,23.3056 +58,45,-0.0002,0.0001,642.8,1577.14,1399.9,21.61,554.07,2388.02,9061.62,47.29,521.73,2388.07,8.391,392,38.93,23.2825 +58,46,0.0012,-0.0005,642.51,1588.35,1406.91,21.61,552.84,2388.08,9065.81,47.37,522.1,2388.09,8.4128,393,39.02,23.2679 +58,47,0.0021,-0.0005,642.7,1591.51,1404.46,21.61,553.82,2388.01,9062.6,47.24,522.26,2388.02,8.4183,391,38.93,23.3569 +58,48,0.0003,-0.0004,642.85,1590.34,1404.82,21.61,554.31,2388.04,9068.24,47.39,522.23,2388.07,8.419,393,38.86,23.4273 +58,49,-0.0017,0.0,642.36,1585.2,1397.92,21.61,554.07,2388.02,9064.86,47.53,521.36,2388.14,8.4683,392,39.09,23.4328 +58,50,-0.0002,0.0002,642.45,1585.79,1404.24,21.61,554.03,2388.06,9064.16,47.51,521.89,2388.06,8.3835,391,38.91,23.2407 +58,51,0.0015,-0.0,642.46,1585.51,1403.97,21.61,553.5,2388.03,9061.72,47.26,521.98,2388.02,8.4146,392,39.06,23.3559 +58,52,0.0016,-0.0,642.59,1581.31,1401.15,21.61,553.61,2388.07,9065.41,47.34,522.24,2388.07,8.435,392,38.93,23.3741 +58,53,-0.0008,-0.0001,642.32,1590.99,1409.69,21.61,553.98,2388.07,9069.89,47.36,522.31,2388.07,8.4061,394,38.91,23.354 +58,54,-0.0003,0.0004,642.19,1584.19,1402.12,21.61,553.58,2388.04,9062.08,47.44,521.96,2388.07,8.45,391,38.98,23.3205 +58,55,0.0025,0.0001,642.08,1591.35,1402.98,21.61,554.8,2388.05,9064.45,47.52,521.85,2388.01,8.4531,392,38.8,23.4486 +58,56,-0.0007,-0.0005,642.23,1590.48,1405.53,21.61,553.75,2388.04,9060.95,47.29,521.35,2388.05,8.4033,393,38.75,23.3247 +58,57,0.0029,-0.0001,642.25,1580.03,1408.31,21.61,553.57,2388.06,9054.65,47.3,522.39,2388.09,8.4277,392,38.67,23.4323 +58,58,0.0006,0.0001,642.66,1584.18,1405.63,21.61,553.04,2388.06,9060.82,47.5,522.23,2388.08,8.4517,393,38.86,23.3487 +58,59,0.0023,-0.0001,642.18,1592.14,1406.82,21.61,553.53,2388.11,9065.66,47.45,522.36,2388.05,8.4747,393,38.92,23.367 +58,60,0.0016,-0.0002,642.99,1585.27,1412.64,21.61,553.77,2388.06,9065.29,47.4,521.94,2388.05,8.4209,392,39.04,23.3723 +58,61,-0.0015,-0.0004,641.88,1589.62,1396.84,21.61,553.73,2388.08,9063.24,47.33,521.72,2388.1,8.4373,395,38.94,23.3591 +58,62,0.0022,-0.0,642.58,1583.31,1409.23,21.61,553.89,2388.06,9063.08,47.39,522.61,2388.07,8.4152,393,38.86,23.3407 +58,63,0.0011,-0.0004,642.68,1592.5,1406.59,21.61,553.21,2388.12,9068.94,47.48,521.52,2388.08,8.4382,393,39.1,23.3847 +58,64,-0.0004,-0.0005,642.49,1585.67,1404.76,21.61,553.62,2388.11,9054.04,47.34,522.25,2388.03,8.4378,393,38.99,23.3758 +58,65,0.0013,0.0001,642.85,1585.97,1405.22,21.61,554.39,2388.06,9062.04,47.32,521.31,2388.04,8.4059,392,39.06,23.2332 +58,66,0.0021,-0.0001,642.41,1589.48,1397.56,21.61,553.22,2388.1,9065.71,47.21,521.9,2388.1,8.4488,393,38.93,23.4014 +58,67,0.0013,-0.0002,642.43,1588.68,1410.72,21.61,553.62,2388.08,9060.72,47.28,521.41,2388.05,8.4305,393,38.91,23.3711 +58,68,0.0013,-0.0001,642.76,1590.98,1410.74,21.61,554.19,2388.06,9061.66,47.61,521.74,2388.06,8.4171,394,38.89,23.3808 +58,69,-0.0038,-0.0003,642.18,1588.84,1401.97,21.61,553.14,2388.1,9058.63,47.24,521.95,2388.08,8.413,393,38.85,23.3779 +58,70,-0.004,-0.0003,642.62,1589.57,1399.27,21.61,553.32,2388.01,9062.69,47.43,521.61,2388.06,8.3892,394,38.91,23.2446 +58,71,-0.0009,-0.0002,642.1,1584.99,1406.44,21.61,553.42,2388.09,9054.48,47.6,521.82,2388.08,8.4144,391,38.9,23.2534 +58,72,-0.0007,0.0004,642.56,1587.27,1409.68,21.61,553.23,2388.11,9064.08,47.47,521.8,2388.08,8.4064,394,38.86,23.3192 +58,73,0.0034,-0.0005,642.03,1584.02,1399.46,21.61,553.54,2388.1,9053.37,47.42,521.25,2388.03,8.4042,392,38.98,23.2953 +58,74,0.0015,-0.0005,642.52,1586.97,1405.85,21.61,553.93,2388.03,9062.75,47.59,521.14,2388.04,8.435,392,38.82,23.3757 +58,75,0.0034,0.0003,642.34,1590.13,1404.16,21.61,553.41,2388.07,9064.96,47.34,521.38,2388.09,8.3889,392,38.71,23.3704 +58,76,0.0013,0.0,642.77,1592.82,1407.45,21.61,553.36,2388.09,9059.68,47.42,521.62,2388.08,8.4156,392,38.88,23.329 +58,77,-0.0029,0.0003,642.39,1584.46,1408.96,21.61,553.29,2388.11,9059.94,47.38,521.76,2388.0,8.4062,393,38.72,23.3334 +58,78,0.0023,-0.0005,642.59,1586.26,1411.34,21.61,553.31,2388.08,9054.34,47.48,521.86,2388.07,8.4563,394,38.79,23.314 +58,79,-0.0001,0.0004,642.36,1585.16,1409.04,21.61,553.55,2388.04,9063.13,47.51,521.75,2388.03,8.4138,392,38.87,23.293 +58,80,0.0032,-0.0002,642.89,1588.88,1407.68,21.61,553.24,2388.04,9067.74,47.65,521.38,2388.09,8.4299,393,38.78,23.2322 +58,81,0.0009,-0.0003,642.45,1588.46,1404.52,21.61,553.84,2388.07,9058.7,47.61,521.55,2388.09,8.4283,394,38.97,23.3264 +58,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767 +58,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562 +58,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253 +58,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762 +58,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623 +58,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447 +58,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638 +58,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328 +58,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538 +58,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059 +58,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621 +58,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493 +58,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756 +58,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907 +58,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507 +58,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297 +58,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317 +58,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092 +58,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163 +58,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055 +58,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679 +58,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441 +58,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827 +58,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318 +58,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331 +58,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972 +58,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725 +58,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255 +58,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467 +58,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111 +58,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826 +58,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989 +58,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937 +58,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446 +58,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957 +58,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223 +58,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193 +58,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466 +58,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433 +58,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424 +58,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957 +58,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559 +58,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184 +58,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074 +58,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867 +58,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422 +58,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397 +58,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383 +58,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293 +58,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771 +58,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201 +58,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794 +58,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702 +58,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114 +58,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882 +58,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609 +58,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793 +58,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517 +58,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697 +58,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128 +58,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459 +58,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447 +58,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495 +58,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548 +58,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961 +58,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185 +60,10,0.0028,-0.0002,642.46,1591.97,1411.79,21.61,553.24,2388.03,9054.97,47.49,521.58,2388.08,8.3946,393,38.88,23.429 +60,11,-0.0006,-0.0002,642.49,1585.55,1403.58,21.61,554.03,2388.1,9050.53,47.59,521.96,2388.06,8.4247,393,38.91,23.3262 +60,12,0.0026,-0.0003,643.33,1588.89,1407.71,21.61,553.15,2388.08,9054.65,47.52,521.59,2388.1,8.4066,394,38.75,23.3193 +60,13,0.0005,0.0003,642.96,1588.41,1401.59,21.61,554.25,2388.08,9058.96,47.27,521.47,2388.04,8.4144,394,38.95,23.2478 +60,14,0.0022,0.0001,643.09,1584.49,1400.98,21.61,554.27,2388.04,9050.07,47.51,521.58,2388.09,8.4358,394,39.02,23.2697 +60,15,0.0001,0.0003,642.4,1580.48,1406.37,21.61,554.39,2388.14,9056.42,47.5,521.72,2387.98,8.4241,392,38.96,23.3323 +60,16,0.0014,-0.0004,643.08,1594.84,1405.9,21.61,554.13,2388.09,9061.88,47.32,521.63,2388.08,8.4041,393,38.97,23.2768 +60,17,-0.001,-0.0003,642.63,1581.38,1402.37,21.61,553.87,2388.04,9057.68,47.49,521.85,2388.05,8.3793,393,39.03,23.2617 +60,18,0.0013,-0.0005,642.55,1584.62,1401.8,21.61,553.85,2388.11,9056.39,47.34,521.99,2388.09,8.4304,394,39.0,23.3598 +60,19,0.0022,0.0003,642.65,1585.16,1401.74,21.61,553.72,2388.1,9049.18,47.18,521.58,2388.1,8.4135,392,38.8,23.471 +60,20,0.001,0.0004,642.62,1589.33,1410.94,21.61,553.84,2388.04,9054.02,47.42,521.46,2388.09,8.4509,393,38.79,23.256 +60,21,0.0026,-0.0004,642.68,1591.44,1407.02,21.61,553.36,2388.09,9051.5,47.53,521.46,2388.08,8.4351,392,38.96,23.2967 +60,22,0.0026,-0.0003,642.69,1590.2,1402.06,21.61,553.93,2388.09,9062.25,47.55,521.54,2388.08,8.4588,391,38.86,23.2582 +60,23,0.0027,0.0002,642.64,1586.31,1403.05,21.61,553.89,2388.04,9050.75,47.4,521.82,2388.08,8.4232,393,38.92,23.4326 +60,24,0.0002,-0.0002,643.12,1585.76,1399.39,21.61,553.18,2388.13,9046.47,47.45,521.42,2388.09,8.4293,393,38.99,23.3995 +60,25,-0.0004,0.0004,642.88,1591.03,1396.96,21.61,552.73,2388.09,9058.47,47.44,521.41,2388.07,8.4058,393,38.87,23.3572 +60,26,-0.0005,-0.0,642.9,1586.17,1405.04,21.61,553.55,2388.11,9047.03,47.53,521.37,2388.09,8.4342,392,39.02,23.4094 +60,27,0.0022,-0.0001,642.57,1582.8,1408.74,21.61,553.95,2388.15,9056.78,47.53,521.45,2388.11,8.4271,393,38.88,23.3326 +60,28,-0.001,0.0002,642.53,1584.89,1407.07,21.61,553.47,2387.98,9048.83,47.39,521.76,2388.09,8.4429,394,38.72,23.2892 +60,29,0.0006,-0.0002,642.69,1588.32,1405.24,21.61,553.56,2388.1,9059.57,47.4,521.68,2388.13,8.42,393,38.72,23.3482 +60,30,-0.0005,-0.0005,642.61,1589.44,1405.61,21.61,553.9,2387.99,9056.83,47.65,521.13,2388.06,8.4442,392,38.84,23.2398 +60,31,0.0034,-0.0001,642.42,1583.82,1405.05,21.61,553.72,2388.06,9049.8,47.35,521.82,2388.13,8.4217,393,38.95,23.3924 +60,32,-0.004,0.0,642.29,1587.91,1408.66,21.61,553.0,2388.09,9058.73,47.49,521.92,2388.07,8.4101,392,39.01,23.3438 +60,33,-0.0009,0.0003,642.19,1586.51,1401.11,21.61,554.04,2388.06,9056.19,47.31,521.47,2388.04,8.4186,392,39.12,23.4086 +60,34,-0.0037,-0.0001,642.55,1586.15,1408.11,21.61,553.31,2388.07,9053.71,47.36,521.63,2388.15,8.4326,393,38.92,23.3377 +60,35,-0.0034,-0.0003,642.5,1585.77,1404.51,21.61,553.89,2388.05,9050.01,47.37,521.84,2388.03,8.4279,392,38.91,23.3598 +60,36,-0.001,-0.0,642.22,1592.15,1411.93,21.61,553.42,2388.0,9044.31,47.46,521.25,2388.15,8.4441,392,38.91,23.356 +60,37,0.0038,0.0002,642.79,1585.3,1406.96,21.61,553.38,2388.13,9053.42,47.35,522.25,2388.1,8.4495,393,38.92,23.2589 +60,38,0.0027,-0.0004,642.54,1583.17,1405.01,21.61,553.36,2388.11,9048.53,47.51,522.39,2388.09,8.4264,394,39.0,23.1759 +60,39,0.001,-0.0004,642.87,1589.74,1402.28,21.61,553.81,2388.14,9051.08,47.48,521.79,2388.04,8.4485,392,38.67,23.3824 +60,40,-0.0017,-0.0,642.43,1591.92,1409.06,21.61,554.14,2388.07,9050.64,47.49,521.36,2388.14,8.4151,393,38.99,23.3045 +60,41,0.0005,0.0002,642.5,1590.12,1404.31,21.61,554.33,2388.08,9050.83,47.3,521.46,2388.12,8.4204,394,38.9,23.322 +60,42,-0.0038,-0.0004,642.3,1591.12,1406.26,21.61,553.95,2388.06,9056.48,47.49,521.33,2388.07,8.4492,392,38.9,23.299 +60,43,-0.0003,-0.0003,642.08,1595.6,1396.66,21.61,553.92,2388.09,9052.01,47.43,521.86,2388.12,8.4607,394,38.96,23.4068 +60,44,-0.0011,-0.0004,642.35,1590.0,1405.38,21.61,552.95,2388.09,9047.74,47.64,521.51,2388.09,8.4333,393,38.87,23.3188 +60,45,-0.0023,-0.0,642.26,1584.41,1405.56,21.61,554.66,2388.08,9057.41,47.48,521.71,2388.04,8.4623,394,38.82,23.3781 +60,46,-0.0027,0.0001,642.72,1583.27,1404.31,21.61,553.78,2388.09,9049.58,47.71,521.67,2388.14,8.4426,392,39.13,23.3543 +60,47,-0.0024,-0.0003,642.47,1592.7,1407.69,21.61,553.22,2388.09,9055.9,47.39,521.5,2388.1,8.4185,393,38.94,23.2281 +60,48,-0.0001,-0.0001,642.29,1582.93,1404.54,21.61,552.99,2388.09,9061.48,47.6,521.62,2388.09,8.4264,394,38.83,23.1595 +60,49,0.0021,0.0001,642.19,1598.5,1401.84,21.61,553.57,2388.08,9057.73,47.45,521.64,2388.04,8.4628,393,38.86,23.3232 +60,50,0.0016,-0.0,642.71,1577.76,1405.06,21.61,553.2,2388.12,9059.47,47.58,521.52,2388.08,8.4519,392,38.88,23.2795 +60,51,0.0039,0.0003,642.64,1584.72,1415.17,21.61,553.91,2388.07,9048.45,47.58,521.88,2388.04,8.4269,392,38.88,23.2593 +60,52,0.002,0.0001,642.38,1585.92,1412.02,21.61,553.52,2388.1,9056.13,47.46,521.06,2388.05,8.4747,392,38.78,23.2637 +60,53,-0.0036,-0.0005,642.64,1585.77,1403.92,21.61,553.1,2388.08,9048.18,47.45,521.48,2388.13,8.4371,393,38.78,23.3264 +60,54,-0.0026,-0.0003,642.25,1588.5,1404.14,21.61,554.72,2388.09,9053.83,47.37,521.75,2388.1,8.4047,394,38.74,23.4052 +60,55,0.0052,0.0001,642.59,1589.74,1403.18,21.61,554.11,2388.08,9047.67,47.48,521.74,2388.05,8.4028,392,38.8,23.3363 +60,56,-0.0015,-0.0001,642.57,1589.2,1398.14,21.61,553.27,2388.09,9057.11,47.68,521.78,2388.1,8.3963,393,39.07,23.4159 +60,57,-0.0016,-0.0004,642.39,1589.9,1399.21,21.61,553.27,2388.1,9054.27,47.39,521.89,2388.1,8.4713,392,38.82,23.3174 +60,58,-0.0011,-0.0001,642.74,1588.23,1411.0,21.61,554.02,2388.05,9061.51,47.57,521.25,2388.14,8.4305,393,38.91,23.3908 +60,59,0.0,0.0002,642.48,1587.68,1406.69,21.61,553.21,2388.08,9054.89,47.43,521.47,2388.08,8.4778,392,39.03,23.3373 +60,60,0.0033,0.0,642.3,1587.31,1404.39,21.61,552.82,2388.08,9054.11,47.56,521.68,2388.05,8.4377,392,38.83,23.2594 +60,61,-0.0003,-0.0005,642.88,1590.93,1402.93,21.61,553.55,2388.11,9054.35,47.4,521.93,2388.09,8.4296,392,38.8,23.3212 +60,62,-0.0004,-0.0005,642.91,1584.11,1411.56,21.61,553.58,2388.03,9061.07,47.43,521.56,2388.11,8.4387,393,38.67,23.3777 +60,63,-0.0023,-0.0005,642.53,1585.47,1408.66,21.61,553.38,2388.07,9050.62,47.29,521.21,2388.11,8.446,392,38.83,23.3433 +60,64,-0.0004,0.0004,642.62,1587.04,1403.72,21.61,553.13,2388.09,9048.27,47.56,521.15,2388.11,8.4224,392,38.76,23.2791 +60,65,-0.0026,0.0004,643.1,1590.29,1419.87,21.61,553.02,2388.08,9055.96,47.43,521.44,2388.05,8.4251,393,38.78,23.2634 +60,66,-0.0015,-0.0002,642.45,1589.17,1404.86,21.61,554.4,2388.12,9051.54,47.55,520.96,2388.13,8.4743,394,38.75,23.3067 +60,67,0.0039,0.0003,642.17,1587.3,1402.94,21.61,552.76,2388.06,9058.4,47.63,521.53,2388.09,8.4374,396,38.89,23.1706 +60,68,0.0001,-0.0004,642.47,1584.26,1408.68,21.61,553.11,2388.12,9057.75,47.6,521.52,2388.07,8.4326,393,38.84,23.3267 +60,69,-0.001,-0.0,642.81,1587.11,1409.76,21.61,553.94,2388.11,9053.12,47.53,521.7,2388.06,8.4451,392,38.85,23.2355 +60,70,-0.003,-0.0001,642.59,1594.65,1409.92,21.61,553.84,2388.09,9058.81,47.5,521.34,2388.07,8.4375,394,38.99,23.3392 +60,71,-0.0018,-0.0004,642.48,1590.17,1403.92,21.61,554.27,2388.11,9053.08,47.55,521.26,2388.09,8.4199,392,38.75,23.3169 +60,72,-0.0039,-0.0003,642.58,1590.69,1403.56,21.61,553.17,2388.12,9054.62,47.45,521.15,2388.15,8.4293,395,38.93,23.22 +60,73,-0.0025,0.0,642.89,1591.5,1409.54,21.61,553.63,2388.09,9045.88,47.28,521.32,2388.01,8.4345,392,38.74,23.1732 +60,74,0.0021,-0.0003,642.57,1584.33,1406.79,21.61,553.84,2388.08,9060.88,47.46,521.69,2388.13,8.4231,393,38.99,23.2808 +60,75,0.0023,-0.0,642.71,1590.34,1402.72,21.61,553.23,2388.07,9054.75,47.65,521.33,2388.08,8.3943,393,39.01,23.2827 +60,76,-0.002,-0.0003,642.1,1588.98,1405.72,21.61,553.95,2388.03,9063.7,47.36,521.43,2388.12,8.4303,392,38.97,23.3629 +60,77,-0.0017,-0.0005,643.31,1590.56,1408.98,21.61,553.24,2388.13,9061.59,47.7,521.47,2388.08,8.4462,392,38.73,23.3321 +60,78,-0.0004,-0.0002,643.26,1584.5,1399.87,21.61,553.54,2388.12,9057.8,47.49,521.26,2388.11,8.4375,391,38.95,23.2266 +60,79,0.0001,-0.0003,642.56,1589.95,1411.1,21.61,553.86,2388.08,9057.23,47.44,521.75,2388.09,8.4239,394,38.84,23.2801 +60,80,0.0025,-0.0004,642.84,1595.45,1406.51,21.61,553.02,2388.16,9052.21,47.47,521.73,2388.09,8.483,392,38.7,23.4935 +60,81,0.0014,0.0001,642.71,1590.54,1406.2,21.61,552.75,2388.1,9057.67,47.61,521.19,2388.16,8.4545,393,38.72,23.3879 +60,82,0.0031,0.0002,642.79,1585.05,1408.53,21.61,552.76,2388.07,9067.67,47.52,521.94,2388.1,8.4244,394,38.81,23.3402 +60,83,0.0033,-0.0001,642.24,1589.99,1404.68,21.61,552.72,2388.1,9061.55,47.45,521.71,2388.13,8.4413,394,38.81,23.2702 +60,84,0.0,0.0003,642.03,1589.82,1410.36,21.61,553.54,2388.01,9059.28,47.43,521.5,2388.05,8.4371,394,38.81,23.3668 +60,85,0.0001,-0.0003,642.49,1587.62,1407.37,21.61,553.13,2388.11,9058.96,47.44,521.88,2388.08,8.4021,394,38.8,23.2185 +60,86,0.0011,-0.0004,642.59,1589.61,1400.67,21.61,553.63,2388.09,9063.15,47.43,522.08,2388.1,8.4452,393,38.74,23.3103 +60,87,-0.0018,-0.0002,643.16,1589.59,1410.81,21.61,553.66,2388.05,9056.42,47.48,521.13,2388.09,8.4121,393,38.83,23.3153 +60,88,0.0013,0.0003,642.81,1589.63,1407.24,21.61,553.92,2388.09,9065.87,47.38,521.59,2388.1,8.4232,393,38.73,23.3286 +60,89,-0.0,-0.0002,642.3,1603.74,1410.34,21.61,553.11,2388.1,9057.85,47.7,521.02,2388.04,8.3921,393,38.74,23.2692 +60,90,-0.0011,-0.0004,642.69,1590.54,1404.47,21.61,554.29,2388.09,9064.83,47.36,521.1,2388.06,8.4537,393,38.8,23.2696 +60,91,-0.0041,-0.0001,642.86,1588.89,1403.53,21.61,553.11,2388.08,9058.69,47.51,522.05,2388.1,8.4689,392,38.68,23.2542 +60,92,0.0003,-0.0002,643.35,1592.58,1405.79,21.61,553.76,2388.09,9061.21,47.67,521.44,2388.08,8.4545,394,38.71,23.3524 +60,93,-0.001,0.0001,642.54,1582.42,1406.59,21.61,553.78,2388.08,9060.35,47.43,521.13,2388.06,8.4475,393,38.85,23.3505 +60,94,0.0021,-0.0,642.5,1587.1,1412.45,21.61,553.5,2388.06,9065.0,47.44,521.75,2388.12,8.469,393,38.87,23.102 +60,95,-0.0006,0.0001,642.51,1591.07,1407.51,21.61,554.12,2388.14,9059.89,47.6,521.27,2388.11,8.4657,393,38.81,23.3185 +60,96,0.0009,-0.0004,642.72,1589.67,1415.13,21.61,553.77,2388.11,9059.38,47.31,521.71,2388.07,8.462,393,38.77,23.2764 +60,97,-0.0004,0.0,642.36,1589.06,1412.54,21.61,553.23,2388.1,9062.67,47.57,521.33,2388.08,8.4645,394,38.7,23.2482 +60,98,0.0017,-0.0002,642.68,1586.01,1416.64,21.61,553.34,2388.1,9064.94,47.54,521.31,2388.06,8.4774,394,38.67,23.2896 +60,99,0.0029,-0.0004,642.71,1589.22,1412.3,21.61,553.2,2388.12,9066.58,47.56,521.51,2388.14,8.4628,394,38.84,23.3365 +60,100,-0.0001,-0.0003,642.47,1587.22,1407.08,21.61,553.25,2388.1,9067.84,47.59,521.37,2388.07,8.4418,393,38.67,23.2864 +60,101,0.0035,-0.0004,643.24,1590.59,1409.48,21.61,552.7,2388.03,9065.84,47.36,521.43,2388.1,8.4569,394,38.87,23.2161 +60,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671 +60,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327 +60,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522 +60,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025 +60,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917 +60,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783 +60,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807 +60,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013 +60,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262 +60,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958 +60,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286 +60,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086 +60,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735 +60,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267 +60,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716 +60,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779 +60,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381 +60,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238 +60,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008 +60,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712 +60,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756 +60,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641 +60,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732 +60,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735 +60,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664 +60,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263 +60,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718 +60,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551 +60,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274 +60,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466 +60,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271 +60,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095 +60,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176 +60,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795 +60,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745 +60,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652 +60,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655 +60,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684 +60,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201 +60,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168 +60,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223 +60,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419 +60,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181 +60,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871 +60,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987 +60,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111 +60,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724 +60,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713 +60,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672 +60,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649 +60,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546 +60,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331 +60,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594 +60,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001 +60,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307 +60,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836 +60,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506 +60,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807 +60,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486 +60,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713 +60,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078 +60,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444 +60,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113 +60,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497 +60,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767 +60,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666 +60,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102 +60,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611 +60,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791 +60,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279 +60,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954 +61,10,-0.0011,-0.0004,642.0,1580.05,1391.52,21.61,554.61,2387.96,9059.7,46.95,522.99,2387.93,8.38,390,39.21,23.5685 +61,11,-0.0037,-0.0004,642.05,1575.01,1401.0,21.6,554.23,2387.97,9056.57,47.01,523.0,2388.03,8.3805,392,38.96,23.3606 +61,12,-0.0015,0.0,642.55,1587.68,1395.53,21.61,554.7,2388.0,9057.47,47.15,522.36,2387.97,8.3746,392,39.08,23.4503 +61,13,0.0023,-0.0003,642.31,1585.1,1397.64,21.61,553.9,2387.98,9061.94,47.25,522.13,2388.03,8.4255,392,39.07,23.4047 +61,14,-0.001,0.0002,641.96,1587.93,1400.13,21.61,555.1,2388.0,9064.92,47.1,522.07,2387.95,8.3739,391,39.26,23.4843 +61,15,-0.0024,0.0003,642.0,1585.8,1397.46,21.61,554.76,2387.98,9058.39,47.26,522.11,2388.01,8.3552,391,39.1,23.4815 +61,16,0.0011,0.0002,641.89,1581.62,1397.98,21.61,554.14,2388.03,9065.41,47.12,522.91,2387.95,8.4071,391,39.04,23.4515 +61,17,-0.0032,0.0002,642.53,1586.79,1396.9,21.61,554.42,2387.94,9063.86,47.27,522.88,2387.99,8.4034,390,39.14,23.4869 +61,18,0.0033,0.0001,642.6,1575.71,1396.89,21.61,555.31,2387.98,9060.89,46.88,522.61,2387.99,8.3795,389,39.07,23.3292 +61,19,0.0024,-0.0005,641.74,1582.14,1395.31,21.61,555.05,2388.01,9064.97,46.97,522.42,2387.99,8.3878,390,39.14,23.4077 +61,20,-0.0007,-0.0005,641.97,1587.01,1391.93,21.61,555.09,2388.08,9057.3,47.2,522.19,2388.0,8.4138,390,39.08,23.3209 +61,21,0.0026,-0.0004,642.09,1582.89,1393.75,21.61,554.28,2388.07,9057.04,46.94,522.2,2388.0,8.3585,391,39.18,23.4199 +61,22,0.0013,-0.0001,642.7,1581.77,1395.37,21.61,555.13,2387.93,9058.36,47.15,522.7,2388.02,8.3578,390,38.94,23.4023 +61,23,0.0037,0.0004,641.81,1580.59,1404.09,21.61,554.78,2388.01,9065.9,47.27,523.13,2387.98,8.3866,390,38.93,23.4079 +61,24,-0.0015,-0.0005,641.85,1577.6,1397.46,21.61,554.63,2388.0,9066.97,47.08,522.76,2387.95,8.4012,390,39.14,23.4993 +61,25,-0.0005,-0.0005,641.85,1578.67,1396.31,21.61,555.86,2387.96,9064.74,47.26,523.12,2388.02,8.3949,392,39.16,23.3639 +61,26,0.0011,0.0,642.24,1583.09,1399.38,21.6,553.89,2388.02,9062.13,47.11,522.1,2387.98,8.4021,392,39.08,23.4386 +61,27,-0.003,-0.0001,642.25,1581.72,1396.4,21.61,554.33,2388.02,9067.63,47.18,522.15,2388.0,8.3937,392,39.16,23.5115 +61,28,0.0011,-0.0,641.91,1582.38,1391.54,21.61,554.47,2387.99,9062.91,47.2,522.52,2387.97,8.402,390,39.13,23.4566 +61,29,0.0023,0.0001,641.79,1575.95,1396.08,21.61,554.18,2388.01,9067.56,47.06,522.49,2387.99,8.4149,392,39.05,23.4149 +61,30,0.0001,0.0001,642.08,1585.37,1401.37,21.6,554.43,2388.01,9063.39,47.05,522.98,2388.01,8.3939,392,38.96,23.4509 +61,31,-0.0013,-0.0002,642.33,1585.71,1396.31,21.61,554.58,2388.03,9060.66,47.18,522.75,2388.01,8.3444,391,39.02,23.375 +61,32,-0.0032,-0.0,642.28,1583.93,1398.32,21.61,554.3,2387.98,9069.6,47.24,522.52,2387.97,8.3807,393,39.19,23.3665 +61,33,0.0015,-0.0001,642.21,1590.48,1392.19,21.61,555.39,2387.97,9071.34,47.13,522.78,2387.96,8.3923,391,39.02,23.5131 +61,34,-0.0042,-0.0002,641.99,1584.07,1403.92,21.6,554.38,2388.0,9065.63,47.15,522.54,2387.96,8.4201,390,39.11,23.4399 +61,35,-0.0002,-0.0005,642.07,1587.29,1389.4,21.61,554.25,2388.01,9062.01,47.15,521.72,2388.01,8.3906,391,39.23,23.332 +61,36,0.0032,-0.0005,642.39,1584.89,1396.22,21.61,554.54,2388.01,9065.36,47.04,522.61,2387.97,8.3573,391,39.31,23.5103 +61,37,-0.0008,0.0,642.13,1581.72,1393.46,21.61,554.3,2388.01,9070.21,47.26,522.18,2387.98,8.4442,391,39.02,23.4485 +61,38,0.0048,-0.0004,641.21,1589.07,1394.77,21.61,554.33,2387.97,9065.17,47.14,522.35,2388.01,8.3642,392,38.97,23.4614 +61,39,0.0041,0.0001,642.09,1584.27,1393.72,21.61,555.02,2387.98,9060.8,47.03,522.37,2388.02,8.395,391,39.18,23.3393 +61,40,-0.0035,-0.0002,641.85,1583.34,1400.9,21.6,554.79,2387.93,9060.33,47.02,522.32,2387.97,8.3994,393,39.08,23.3248 +61,41,-0.0037,-0.0005,641.97,1587.64,1401.65,21.61,554.85,2388.0,9063.74,47.21,522.39,2387.96,8.4249,391,39.1,23.5359 +61,42,-0.0017,0.0003,641.62,1591.73,1394.91,21.61,554.25,2387.94,9056.02,47.18,522.2,2388.02,8.3768,391,39.19,23.4075 +61,43,0.0047,0.0001,641.91,1589.55,1398.73,21.61,555.57,2387.96,9072.56,47.1,522.13,2388.01,8.34,390,38.9,23.4371 +61,44,0.0015,-0.0003,642.05,1578.17,1401.28,21.61,555.3,2388.02,9056.16,47.08,522.38,2388.0,8.3719,391,38.94,23.4357 +61,45,-0.0032,-0.0,641.65,1586.51,1402.3,21.61,554.9,2388.0,9061.12,47.05,522.37,2387.99,8.3898,393,38.96,23.4382 +61,46,-0.0018,-0.0004,642.19,1588.03,1402.73,21.61,554.57,2388.0,9062.32,46.86,522.74,2387.98,8.3876,392,39.05,23.3767 +61,47,0.0022,-0.0004,641.67,1588.11,1403.35,21.61,554.74,2387.99,9063.26,47.18,522.27,2387.99,8.4041,392,38.94,23.382 +61,48,-0.0001,0.0003,641.84,1581.37,1405.84,21.61,554.26,2388.04,9062.75,47.06,522.56,2388.02,8.3623,390,38.84,23.3452 +61,49,0.0007,-0.0002,641.76,1588.59,1399.53,21.61,554.41,2388.0,9058.58,47.16,522.28,2387.95,8.3832,390,39.03,23.4995 +61,50,0.0022,0.0,642.18,1582.93,1399.9,21.61,554.42,2388.04,9058.16,47.08,522.25,2388.01,8.3822,391,39.41,23.338 +61,51,-0.0007,-0.0002,641.99,1579.3,1393.16,21.61,554.59,2387.96,9053.83,47.22,522.21,2388.04,8.4142,392,39.1,23.4035 +61,52,-0.0029,-0.0003,641.86,1580.56,1392.33,21.61,554.23,2388.0,9068.06,47.22,521.84,2388.02,8.365,391,39.01,23.4896 +61,53,0.0007,-0.0003,642.47,1586.23,1388.09,21.61,554.15,2387.94,9061.41,47.17,522.04,2387.96,8.3936,393,38.95,23.5414 +61,54,-0.0001,0.0002,642.38,1586.48,1396.48,21.61,555.23,2388.04,9056.31,46.95,522.49,2387.99,8.435,392,39.05,23.3583 +61,55,0.0019,-0.0005,641.72,1585.31,1398.49,21.6,555.09,2387.98,9058.83,47.09,522.33,2388.04,8.4087,391,38.92,23.425 +61,56,0.0013,-0.0003,641.93,1590.56,1396.88,21.61,553.98,2388.02,9060.36,47.11,521.93,2388.04,8.4214,393,39.08,23.3475 +61,57,-0.0015,0.0003,642.11,1591.0,1400.87,21.61,554.46,2387.96,9062.44,47.31,522.11,2388.03,8.3901,391,39.15,23.3537 +61,58,0.0035,0.0003,642.38,1577.57,1396.23,21.61,554.3,2388.06,9052.57,47.31,522.37,2388.02,8.4206,392,38.95,23.3917 +61,59,0.0005,0.0,641.83,1578.49,1399.7,21.6,554.14,2388.03,9060.23,47.28,522.14,2387.99,8.376,393,39.1,23.372 +61,60,0.0003,0.0,642.02,1589.47,1397.64,21.61,554.26,2387.96,9060.38,47.02,522.3,2387.97,8.3747,391,38.98,23.3717 +61,61,-0.0014,-0.0003,641.75,1586.87,1396.24,21.61,553.33,2387.96,9057.46,47.06,522.47,2387.99,8.4035,391,38.95,23.2719 +61,62,-0.0034,-0.0002,641.97,1586.62,1400.16,21.61,554.32,2388.06,9057.86,47.34,522.25,2388.05,8.3937,391,39.08,23.3947 +61,63,0.0025,0.0003,642.33,1578.93,1394.74,21.6,555.39,2388.03,9055.95,47.17,522.47,2388.0,8.3907,392,38.92,23.3971 +61,64,0.0043,-0.0001,641.85,1578.78,1396.47,21.61,554.03,2388.02,9063.05,47.03,522.59,2387.97,8.3881,391,39.13,23.4913 +61,65,-0.0005,0.0004,641.92,1593.04,1400.82,21.6,554.8,2388.01,9060.45,47.05,522.58,2388.02,8.3848,391,39.13,23.4534 +61,66,-0.0026,0.0004,641.82,1579.52,1397.36,21.61,554.86,2388.06,9057.61,47.17,522.73,2388.06,8.4221,392,39.01,23.5495 +61,67,0.0004,0.0004,641.98,1587.95,1401.4,21.61,554.55,2388.01,9060.32,47.47,522.46,2388.0,8.3937,391,38.98,23.451 +61,68,0.0015,-0.0002,642.33,1581.95,1400.42,21.61,553.83,2388.03,9063.57,47.1,522.07,2388.01,8.4226,391,39.12,23.4829 +61,69,0.0044,-0.0005,642.52,1586.61,1403.65,21.61,553.82,2388.05,9055.67,47.24,522.22,2388.0,8.423,392,39.05,23.392 +61,70,0.0004,-0.0002,641.92,1583.42,1397.31,21.61,554.57,2387.97,9070.17,47.16,522.01,2387.92,8.4042,391,39.22,23.4178 +61,71,-0.0017,0.0001,642.07,1585.89,1404.7,21.61,554.38,2388.01,9057.7,47.33,522.28,2388.02,8.3964,391,39.02,23.3521 +61,72,0.0012,-0.0002,641.76,1584.05,1402.17,21.61,553.74,2388.01,9061.97,47.18,523.0,2388.0,8.4001,391,39.08,23.2993 +61,73,0.001,0.0004,642.0,1582.83,1405.02,21.61,554.5,2388.01,9065.76,47.2,522.41,2388.03,8.4301,392,38.96,23.4232 +61,74,-0.0009,0.0003,641.93,1591.63,1400.38,21.61,554.43,2387.95,9063.02,47.23,522.68,2387.98,8.4179,390,38.95,23.3088 +61,75,-0.0006,0.0004,641.81,1578.93,1402.13,21.61,554.35,2387.96,9060.9,47.15,522.15,2388.02,8.4335,392,38.86,23.3315 +61,76,0.0014,-0.0004,641.9,1586.43,1404.36,21.61,553.85,2388.06,9060.61,47.28,522.46,2387.96,8.4246,392,39.05,23.4147 +61,77,-0.0037,-0.0002,642.0,1586.88,1400.62,21.61,554.98,2387.97,9059.13,47.28,522.49,2388.04,8.4016,392,38.95,23.4299 +61,78,-0.0012,0.0004,642.26,1591.1,1396.19,21.61,554.76,2388.03,9066.6,47.26,522.05,2387.99,8.4035,392,38.88,23.3449 +61,79,0.0007,0.0003,642.24,1586.79,1402.17,21.61,554.68,2388.05,9058.85,47.27,522.56,2388.0,8.3551,391,38.86,23.4763 +61,80,-0.0008,-0.0001,641.89,1587.15,1399.65,21.61,555.12,2388.08,9059.53,47.24,521.99,2388.04,8.4408,392,39.03,23.3492 +61,81,-0.0012,-0.0,641.88,1586.76,1400.8,21.61,554.67,2387.99,9064.49,47.35,521.86,2388.01,8.3919,391,38.89,23.4553 +61,82,-0.0033,0.0004,642.8,1574.88,1402.7,21.61,554.61,2388.02,9058.68,47.15,522.71,2388.06,8.3809,392,38.91,23.2813 +61,83,-0.0014,-0.0003,642.04,1583.72,1397.8,21.6,555.02,2388.04,9061.62,47.11,521.92,2388.02,8.4119,392,39.05,23.4335 +61,84,0.0038,-0.0003,642.09,1586.25,1404.03,21.61,554.27,2388.06,9061.07,47.22,521.7,2388.01,8.4244,391,38.96,23.3025 +61,85,-0.0012,-0.0004,642.28,1588.18,1397.96,21.61,554.18,2388.0,9060.37,47.23,522.36,2388.05,8.4345,393,39.0,23.4344 +61,86,-0.0011,-0.0001,642.57,1590.3,1399.43,21.61,554.58,2388.02,9061.3,47.32,522.41,2388.08,8.3969,391,39.03,23.4054 +61,87,-0.0032,-0.0001,642.54,1585.19,1398.61,21.61,554.57,2388.01,9065.1,47.24,522.33,2388.01,8.4166,392,38.99,23.4356 +61,88,-0.0004,-0.0002,642.04,1585.31,1394.35,21.61,554.33,2387.96,9063.46,47.33,522.11,2388.02,8.43,392,38.99,23.4389 +61,89,-0.0007,-0.0002,642.26,1582.51,1396.37,21.61,554.34,2388.07,9061.86,47.34,522.23,2388.02,8.4174,392,39.05,23.4227 +61,90,0.0011,-0.0003,642.21,1587.9,1404.52,21.61,555.15,2388.03,9058.38,47.21,522.01,2388.07,8.3782,393,39.11,23.3875 +61,91,0.0034,-0.0004,642.37,1589.64,1398.29,21.61,554.21,2388.05,9058.34,47.18,522.55,2388.04,8.41,393,38.8,23.3863 +61,92,0.0002,-0.0002,642.0,1587.8,1401.47,21.61,554.08,2388.04,9058.16,47.39,522.02,2387.98,8.4022,392,38.94,23.4212 +61,93,-0.0011,0.0001,642.0,1586.87,1396.28,21.61,554.15,2388.02,9062.66,47.2,522.27,2388.05,8.413,390,38.95,23.4661 +61,94,-0.0,0.0004,642.82,1582.0,1396.38,21.61,554.18,2388.06,9056.46,47.37,522.12,2388.03,8.4016,391,38.98,23.3647 +61,95,-0.0002,0.0003,642.63,1584.47,1398.67,21.61,554.37,2388.01,9064.19,47.29,522.04,2388.07,8.3972,392,39.02,23.4434 +61,96,0.0016,0.0004,641.62,1584.04,1398.23,21.61,553.98,2388.05,9061.39,47.28,522.14,2388.05,8.4311,392,38.97,23.4796 +61,97,0.0041,-0.0003,642.41,1579.94,1399.27,21.61,554.18,2388.03,9055.66,47.39,522.04,2388.02,8.4489,391,38.92,23.3827 +61,98,0.0008,0.0,641.96,1587.57,1398.53,21.61,555.13,2388.05,9054.43,47.28,522.49,2388.01,8.4185,393,39.08,23.4339 +61,99,-0.001,-0.0,642.37,1590.9,1403.36,21.61,554.38,2388.01,9057.88,47.17,522.72,2387.99,8.369,391,39.08,23.4081 +61,100,0.0014,-0.0003,642.69,1578.91,1396.85,21.61,554.65,2388.04,9057.43,47.26,522.6,2388.0,8.3907,393,38.95,23.4197 +61,101,0.0027,-0.0001,642.62,1590.11,1398.84,21.61,553.96,2388.0,9063.7,47.37,522.41,2388.09,8.4301,392,38.9,23.3394 +61,102,0.0043,-0.0003,641.55,1585.13,1402.19,21.61,553.98,2388.02,9059.86,47.12,522.54,2388.08,8.3845,394,38.89,23.4023 +61,103,0.0001,-0.0002,641.96,1588.47,1397.25,21.61,554.44,2388.02,9058.46,47.2,522.35,2388.05,8.4257,393,38.76,23.3521 +61,104,0.0004,0.0002,642.4,1587.35,1397.83,21.61,554.0,2388.02,9060.36,47.35,522.57,2388.07,8.4298,393,39.06,23.3494 +61,105,0.0044,0.0003,641.59,1582.51,1400.92,21.61,553.74,2388.03,9059.92,47.26,522.11,2388.05,8.4149,393,39.05,23.3943 +61,106,0.0006,-0.0002,642.01,1584.72,1404.63,21.61,554.34,2388.08,9070.63,47.29,522.42,2388.12,8.4242,391,38.99,23.4024 +61,107,-0.0018,0.0002,642.56,1577.88,1398.53,21.6,554.33,2388.02,9058.21,47.31,521.63,2388.07,8.4177,391,38.91,23.3566 +61,108,-0.0032,-0.0004,642.41,1585.26,1402.59,21.61,553.98,2388.05,9060.98,47.24,522.52,2388.05,8.4148,392,38.97,23.3691 +61,109,-0.0008,-0.0003,642.25,1585.13,1406.46,21.61,554.2,2388.0,9056.47,47.32,522.23,2388.1,8.3877,392,39.0,23.3645 +61,110,-0.0001,-0.0001,641.52,1587.14,1397.78,21.61,554.15,2388.03,9052.39,47.34,521.67,2388.02,8.3902,393,38.91,23.3898 +61,111,-0.0003,-0.0004,642.64,1587.55,1396.42,21.61,553.27,2388.02,9060.37,47.42,521.69,2388.13,8.422,392,38.92,23.3457 +61,112,-0.0022,-0.0004,642.29,1580.31,1404.73,21.61,554.96,2388.11,9062.57,47.16,521.61,2388.1,8.4012,392,39.0,23.4581 +61,113,-0.0001,-0.0002,642.22,1586.42,1406.71,21.61,554.41,2388.08,9057.44,47.41,521.88,2387.99,8.4051,392,39.07,23.3838 +61,114,0.0002,0.0,642.5,1596.95,1392.25,21.61,554.26,2388.0,9060.06,47.5,521.82,2388.03,8.4625,393,39.21,23.3436 +61,115,-0.0004,-0.0003,642.28,1578.34,1405.75,21.61,553.99,2388.04,9062.59,47.26,521.91,2388.02,8.4128,393,38.88,23.2298 +61,116,0.0041,0.0,642.39,1584.02,1403.28,21.61,553.7,2388.07,9054.36,47.28,522.32,2387.99,8.4249,392,38.87,23.3671 +61,117,-0.0001,0.0,642.48,1589.61,1407.1,21.61,554.76,2388.14,9058.53,47.41,522.18,2388.07,8.393,393,38.81,23.2653 +61,118,-0.0005,-0.0,642.67,1589.2,1399.26,21.61,553.94,2388.11,9057.38,47.46,522.57,2388.03,8.4027,394,38.63,23.3522 +61,119,0.0053,0.0002,642.57,1588.33,1407.42,21.61,553.86,2388.11,9058.2,47.32,521.7,2388.07,8.4089,393,38.95,23.3214 +61,120,-0.0019,0.0001,642.79,1588.86,1403.68,21.61,553.74,2388.04,9061.98,47.3,521.67,2388.02,8.4048,393,38.78,23.4025 +61,121,0.0027,-0.0001,642.54,1586.19,1396.3,21.61,553.65,2388.08,9057.97,47.44,521.66,2388.07,8.3932,392,38.96,23.389 +61,122,0.0015,-0.0003,642.08,1592.66,1398.86,21.61,553.25,2388.12,9056.11,47.51,521.85,2388.07,8.4072,393,39.21,23.3079 +61,123,0.0053,-0.0002,642.79,1580.27,1400.69,21.61,553.9,2388.05,9058.28,47.47,521.61,2388.05,8.4489,393,38.97,23.3207 +61,124,0.0029,-0.0003,642.6,1580.15,1405.36,21.61,554.68,2388.06,9054.8,47.35,521.28,2388.08,8.3814,393,39.08,23.4229 +61,125,-0.0028,0.0,642.25,1590.8,1405.23,21.61,553.64,2388.07,9048.06,47.54,521.5,2388.07,8.4093,392,39.01,23.2626 +61,126,0.0005,-0.0005,642.65,1587.32,1405.49,21.61,553.57,2388.11,9049.47,47.52,521.41,2388.07,8.4376,393,38.96,23.3716 +61,127,0.0013,-0.0002,642.58,1594.83,1409.0,21.61,553.55,2388.11,9055.58,47.35,522.25,2388.08,8.4251,392,38.85,23.3192 +61,128,-0.0028,-0.0004,642.26,1589.29,1401.69,21.61,553.67,2388.07,9052.42,47.37,521.8,2388.05,8.4726,392,39.0,23.2664 +61,129,-0.0005,0.0002,642.43,1587.57,1399.33,21.61,553.06,2388.08,9053.34,47.5,521.77,2388.13,8.4348,394,38.84,23.3223 +61,130,-0.0008,-0.0001,642.41,1585.21,1402.25,21.61,553.46,2388.14,9054.38,47.45,521.57,2388.08,8.3941,393,38.95,23.379 +61,131,0.0007,0.0003,642.46,1592.28,1401.76,21.61,552.88,2388.14,9055.45,47.45,521.7,2388.07,8.4292,394,38.76,23.3029 +61,132,-0.0021,0.0004,642.0,1588.64,1410.25,21.61,554.09,2388.09,9054.29,47.53,521.73,2388.02,8.419,391,38.77,23.2453 +61,133,0.0005,-0.0002,642.47,1592.35,1400.26,21.61,553.61,2388.11,9048.33,47.24,521.72,2388.08,8.4334,391,39.14,23.1841 +61,134,0.0015,0.0003,642.36,1582.26,1405.94,21.61,553.44,2388.05,9050.27,47.53,521.56,2388.06,8.3946,394,38.82,23.3037 +61,135,0.0025,0.0004,643.21,1596.33,1412.85,21.61,553.22,2388.09,9060.0,47.72,521.41,2388.03,8.4134,394,38.84,23.3687 +61,136,-0.0003,0.0003,642.43,1591.76,1405.66,21.61,553.44,2388.1,9058.8,47.54,521.77,2388.08,8.4686,393,38.77,23.2441 +61,137,-0.0008,-0.0001,642.95,1587.27,1413.21,21.61,553.4,2388.11,9050.48,47.47,521.31,2388.15,8.4121,392,38.69,23.3268 +61,138,-0.0025,-0.0001,642.61,1598.31,1412.76,21.61,553.16,2388.13,9050.08,47.66,521.4,2388.12,8.4482,393,38.75,23.2923 +61,139,-0.0022,-0.0004,642.62,1591.71,1403.04,21.61,553.06,2388.15,9057.78,47.54,521.57,2388.15,8.4594,393,38.85,23.2507 +61,140,-0.0016,-0.0001,642.5,1587.3,1411.6,21.61,553.66,2388.12,9054.73,47.68,521.51,2388.17,8.4524,393,38.89,23.3631 +61,141,-0.0025,0.0004,642.5,1587.49,1404.87,21.61,553.33,2388.15,9062.22,47.57,521.39,2388.08,8.4425,393,38.89,23.2607 +61,142,0.0001,0.0004,642.85,1590.69,1407.85,21.61,553.44,2388.14,9051.08,47.6,522.02,2388.1,8.4312,391,38.69,23.3209 +61,143,-0.0015,-0.0003,642.43,1593.67,1409.01,21.61,552.84,2388.12,9053.95,47.7,520.59,2388.07,8.4455,393,38.94,23.3478 +61,144,-0.0018,-0.0005,642.58,1588.43,1414.42,21.61,553.64,2388.15,9045.64,47.51,521.91,2388.06,8.4544,392,38.65,23.3413 +61,145,0.0,-0.0002,642.45,1597.18,1415.04,21.61,553.59,2388.11,9052.42,47.64,520.91,2388.13,8.4111,393,38.74,23.294 +61,146,-0.0036,-0.0001,642.53,1589.26,1408.49,21.61,553.81,2388.14,9059.52,47.56,521.53,2388.09,8.4072,392,38.77,23.2152 +61,147,-0.0017,-0.0002,643.1,1594.81,1409.27,21.61,553.28,2388.12,9055.66,47.52,521.49,2388.12,8.4345,391,38.87,23.2855 +61,148,-0.0007,0.0002,642.86,1592.12,1406.07,21.61,552.8,2388.1,9046.08,47.74,520.79,2388.14,8.4674,392,38.79,23.279 +61,149,-0.0027,0.0003,643.05,1582.65,1420.79,21.61,553.29,2388.09,9049.53,47.62,521.51,2388.08,8.4577,393,38.67,23.2531 +61,150,0.0028,0.0004,642.94,1598.53,1415.22,21.61,552.49,2388.08,9056.41,47.64,520.9,2388.12,8.4621,392,38.65,23.1929 +61,151,-0.0008,-0.0001,642.88,1595.61,1402.92,21.61,553.62,2388.15,9051.67,47.66,521.57,2388.11,8.4295,393,38.83,23.2362 +61,152,-0.0018,-0.0001,642.62,1592.97,1411.75,21.61,553.27,2388.19,9051.3,47.75,520.78,2388.11,8.4453,394,38.66,23.2097 +61,153,0.0033,-0.0005,642.38,1584.55,1412.92,21.61,553.78,2388.18,9052.16,47.47,520.77,2388.17,8.5074,393,38.75,23.3532 +61,154,-0.0013,0.0003,643.68,1592.9,1413.98,21.61,552.81,2388.17,9049.59,47.64,521.38,2388.2,8.4393,394,38.77,23.3135 +61,155,0.0009,-0.0001,642.72,1597.17,1411.1,21.61,552.58,2388.08,9050.47,47.62,521.02,2388.17,8.4733,393,38.72,23.1678 +61,156,-0.0013,0.0001,642.85,1599.96,1414.85,21.61,552.4,2388.1,9049.66,47.84,520.86,2388.13,8.4336,395,38.93,23.2228 +61,157,0.0001,-0.0003,642.9,1592.84,1408.91,21.61,551.73,2388.14,9053.1,47.63,520.34,2388.23,8.4633,395,38.69,23.1621 +61,158,-0.001,-0.0001,642.99,1590.46,1410.7,21.61,552.91,2388.16,9048.46,47.52,520.5,2388.09,8.4536,394,38.87,23.1819 +61,159,0.0004,-0.0004,642.73,1593.46,1412.19,21.61,552.53,2388.19,9047.98,47.84,521.23,2388.16,8.4958,394,38.53,23.121 +61,160,-0.0008,0.0001,642.79,1593.67,1412.2,21.61,552.36,2388.13,9046.52,47.74,520.17,2388.22,8.4714,393,38.73,23.2185 +61,161,-0.0001,-0.0005,642.44,1595.51,1420.18,21.61,552.29,2388.18,9049.07,47.78,520.83,2388.17,8.4614,394,38.66,23.2307 +61,162,-0.0004,0.0004,643.0,1588.71,1408.61,21.61,552.79,2388.18,9049.9,47.71,520.78,2388.17,8.453,395,38.81,23.1875 +61,163,-0.0015,-0.0004,642.88,1603.46,1414.8,21.61,552.5,2388.12,9054.77,47.72,520.74,2388.18,8.473,395,38.55,23.2401 +61,164,-0.0009,-0.0003,642.63,1595.29,1418.16,21.61,552.18,2388.18,9045.26,47.73,520.48,2388.21,8.4917,394,38.56,23.1946 +61,165,-0.0042,-0.0003,643.41,1592.72,1424.72,21.61,551.71,2388.2,9045.8,47.96,520.77,2388.16,8.4988,396,38.56,23.2553 +61,166,0.0007,0.0003,643.19,1588.26,1417.55,21.61,552.32,2388.18,9043.71,47.87,520.72,2388.23,8.4349,394,38.5,23.1544 +61,167,0.0008,-0.0002,642.91,1598.37,1420.92,21.61,552.45,2388.23,9039.3,47.73,520.42,2388.26,8.4654,395,38.71,23.2732 +61,168,0.0034,0.0001,643.16,1596.01,1421.04,21.61,552.31,2388.22,9044.53,48.0,520.98,2388.18,8.4966,394,38.61,23.3654 +61,169,-0.0015,-0.0,642.98,1597.45,1415.84,21.61,551.96,2388.2,9047.95,47.89,520.3,2388.24,8.4752,397,38.7,23.2252 +61,170,0.0015,-0.0005,643.34,1594.38,1420.64,21.61,552.61,2388.24,9050.07,47.62,520.71,2388.2,8.4989,397,38.72,23.0212 +61,171,0.0,-0.0003,643.46,1596.99,1422.42,21.61,551.07,2388.23,9044.71,47.85,520.49,2388.22,8.4697,396,38.44,23.1927 +61,172,-0.0006,-0.0003,643.26,1602.37,1416.4,21.61,552.33,2388.23,9041.21,47.89,520.44,2388.24,8.4881,395,38.62,23.1052 +61,173,-0.0008,0.0004,643.77,1597.09,1423.02,21.61,551.95,2388.25,9046.24,48.02,520.46,2388.22,8.4641,395,38.5,23.1417 +61,174,-0.0004,0.0001,643.32,1603.31,1422.98,21.61,551.88,2388.25,9041.33,48.07,520.29,2388.28,8.4862,396,38.54,23.0664 +61,175,0.0002,-0.0001,643.19,1597.03,1424.3,21.61,551.69,2388.28,9047.52,48.0,520.11,2388.25,8.4936,396,38.5,23.1427 +61,176,0.0,-0.0003,643.43,1596.56,1431.19,21.61,551.45,2388.27,9042.44,48.16,519.8,2388.28,8.5378,396,38.52,23.1043 +61,177,-0.0075,-0.0004,643.12,1599.93,1419.31,21.61,551.77,2388.25,9047.94,47.94,519.55,2388.24,8.5089,394,38.64,23.2137 +61,178,-0.0066,0.0001,643.61,1595.91,1420.18,21.61,551.92,2388.27,9036.28,47.95,519.76,2388.3,8.461,396,38.58,23.1987 +61,179,-0.0006,0.0003,643.28,1598.9,1428.14,21.61,550.75,2388.28,9041.05,48.19,519.7,2388.26,8.4991,395,38.66,23.0977 +61,180,-0.0009,-0.0004,643.52,1599.75,1421.91,21.61,550.73,2388.27,9043.28,48.02,519.33,2388.36,8.5139,394,38.45,23.004 +61,181,0.001,-0.0005,643.78,1604.19,1420.72,21.61,552.09,2388.3,9044.23,48.1,519.44,2388.23,8.5026,395,38.46,23.1098 +61,182,0.0018,0.0003,644.06,1606.3,1430.19,21.61,551.3,2388.3,9038.76,48.19,519.72,2388.33,8.5286,396,38.6,22.9853 +61,183,0.0014,0.0,643.48,1609.91,1423.4,21.61,551.48,2388.28,9034.33,48.21,519.65,2388.31,8.5365,395,38.55,23.1324 +61,184,0.0009,-0.0005,643.93,1596.35,1425.73,21.61,551.31,2388.26,9038.33,48.25,519.62,2388.32,8.5217,396,38.53,23.1414 +61,185,-0.0049,0.0,643.39,1604.83,1426.0,21.61,551.12,2388.26,9038.93,48.23,519.82,2388.27,8.519,397,38.34,22.984 +62,10,-0.0026,0.0002,642.0,1594.78,1406.07,21.61,553.38,2388.1,9056.02,47.83,520.74,2388.12,8.4353,393,38.72,23.3199 +62,11,0.0035,0.0001,643.0,1588.03,1411.29,21.61,553.09,2388.13,9053.53,47.74,521.05,2388.1,8.4644,393,38.71,23.3129 +62,12,0.0004,0.0004,642.5,1587.15,1411.1,21.61,553.51,2388.09,9060.59,47.53,521.08,2388.16,8.4513,392,38.88,23.1887 +62,13,0.0016,0.0004,642.91,1585.28,1412.85,21.61,553.58,2388.17,9067.54,47.8,521.17,2388.14,8.4616,392,38.73,23.2376 +62,14,0.0037,-0.0003,642.75,1595.56,1406.94,21.61,552.91,2388.06,9055.2,47.6,521.84,2388.11,8.4511,392,38.69,23.3035 +62,15,0.0002,0.0002,642.66,1591.3,1406.98,21.61,553.61,2388.15,9054.87,47.63,521.17,2388.09,8.4489,393,38.79,23.2675 +62,16,-0.0008,0.0004,642.49,1590.6,1415.43,21.61,553.46,2388.1,9055.03,47.61,521.4,2388.11,8.4956,392,38.81,23.2082 +62,17,0.0022,-0.0002,642.79,1594.19,1398.21,21.61,553.15,2388.12,9059.33,47.46,521.73,2388.2,8.4168,391,38.88,23.3373 +62,18,0.0019,0.0001,643.01,1591.88,1406.25,21.61,552.93,2388.11,9057.93,47.7,521.42,2388.06,8.4038,394,38.71,23.3272 +62,19,-0.0009,0.0002,642.36,1582.75,1407.26,21.61,553.63,2388.17,9053.46,47.74,521.14,2388.08,8.4299,393,38.86,23.2892 +62,20,0.0018,0.0004,642.91,1585.24,1414.27,21.61,553.65,2388.08,9060.28,47.63,521.21,2388.13,8.4684,394,38.81,23.1553 +62,21,0.0015,-0.0003,642.53,1590.73,1409.23,21.61,553.39,2388.17,9070.01,47.55,521.33,2388.13,8.4538,393,38.74,23.1925 +62,22,-0.0018,0.0003,642.21,1591.23,1407.09,21.61,552.39,2388.08,9055.42,47.57,521.41,2388.16,8.4825,392,38.8,23.3909 +62,23,-0.002,-0.0002,642.35,1593.99,1404.89,21.61,553.13,2388.13,9058.76,47.53,521.0,2388.1,8.4256,392,38.81,23.3098 +62,24,0.0039,-0.0004,643.05,1589.14,1408.05,21.61,553.06,2388.1,9061.7,47.61,521.33,2388.09,8.479,393,38.86,23.3371 +62,25,0.0012,-0.0,642.63,1592.98,1406.74,21.61,552.47,2388.08,9050.07,47.62,521.26,2388.09,8.4096,394,39.02,23.2612 +62,26,-0.0005,0.0005,643.04,1593.21,1408.69,21.61,552.64,2388.11,9056.43,47.5,521.39,2388.07,8.4435,393,38.92,23.2603 +62,27,0.0033,0.0001,643.02,1594.89,1414.84,21.61,553.17,2388.13,9056.94,47.43,521.04,2388.15,8.4319,393,38.83,23.2148 +62,28,-0.0001,0.0003,642.37,1587.16,1409.02,21.61,552.98,2388.12,9053.39,47.4,521.34,2388.13,8.4379,393,38.85,23.2734 +62,29,0.0026,0.0001,642.78,1595.36,1410.11,21.61,553.33,2388.19,9060.39,47.6,521.77,2388.15,8.4882,393,38.77,23.263 +62,30,-0.001,0.0005,642.5,1591.94,1412.14,21.61,552.99,2388.12,9060.53,47.65,521.75,2388.13,8.4135,393,38.67,23.3297 +62,31,0.0031,-0.0,643.11,1598.06,1410.57,21.61,552.63,2388.1,9060.52,47.59,521.22,2388.06,8.4183,393,38.76,23.1726 +62,32,-0.0023,-0.0002,642.68,1591.31,1411.31,21.61,553.47,2388.15,9057.44,47.5,521.2,2388.11,8.4488,392,38.99,23.3329 +62,33,-0.0033,0.0004,642.24,1590.59,1411.03,21.61,553.95,2388.14,9050.12,47.62,521.38,2388.05,8.4512,393,38.84,23.2909 +62,34,-0.0005,-0.0004,642.25,1590.12,1416.58,21.61,553.16,2388.15,9056.04,47.49,521.41,2388.16,8.4759,393,38.94,23.2215 +62,35,0.0035,-0.0002,642.88,1591.24,1409.62,21.61,553.99,2388.08,9052.1,47.62,520.87,2388.12,8.4333,393,38.8,23.2969 +62,36,0.0029,0.0004,642.47,1584.89,1409.3,21.61,552.42,2388.05,9056.56,47.45,521.54,2388.11,8.422,392,38.83,23.3676 +62,37,0.0017,0.0004,642.2,1592.17,1411.42,21.61,552.75,2388.15,9056.32,47.69,521.3,2388.1,8.4486,393,38.67,23.2645 +62,38,-0.0027,0.0002,642.24,1590.42,1413.17,21.61,553.03,2388.11,9058.6,47.83,520.72,2388.12,8.4496,392,38.98,23.3147 +62,39,-0.0028,0.0003,642.79,1594.87,1414.58,21.61,553.8,2388.12,9060.09,47.78,521.03,2388.11,8.4785,394,38.88,23.2311 +62,40,-0.0014,0.0006,643.09,1590.73,1404.55,21.61,553.29,2388.12,9058.08,47.73,521.36,2388.12,8.4408,394,38.9,23.3245 +62,41,0.0025,-0.0002,642.24,1596.1,1406.87,21.61,553.31,2388.1,9059.22,47.76,521.34,2388.12,8.4444,393,38.88,23.3163 +62,42,-0.0029,-0.0001,642.51,1596.25,1407.3,21.61,553.49,2388.13,9056.64,47.59,521.52,2388.13,8.442,395,38.83,23.3433 +62,43,-0.0039,-0.0001,643.39,1584.8,1409.41,21.61,552.97,2388.13,9057.27,47.53,521.22,2388.15,8.4477,394,38.8,23.2545 +62,44,0.0044,-0.0001,642.64,1593.48,1409.52,21.61,554.17,2388.13,9055.18,47.63,521.57,2388.15,8.4407,394,38.83,23.2683 +62,45,-0.0015,0.0,642.69,1586.3,1409.73,21.61,553.62,2388.12,9050.9,47.47,521.52,2388.06,8.4485,394,38.8,23.3059 +62,46,-0.0023,0.0004,643.05,1596.44,1410.74,21.61,553.58,2388.11,9061.54,47.55,520.98,2388.11,8.468,394,38.74,23.2349 +62,47,-0.0005,0.0002,642.51,1595.96,1413.37,21.61,553.01,2388.1,9059.6,47.62,521.19,2388.06,8.4528,393,38.83,23.291 +62,48,0.0014,0.0003,642.34,1593.0,1410.81,21.61,554.08,2388.1,9057.6,47.44,520.99,2388.09,8.463,393,38.74,23.2814 +62,49,-0.0016,-0.0003,643.12,1582.68,1416.11,21.61,552.94,2388.1,9060.98,47.53,521.22,2388.11,8.424,394,38.85,23.3831 +62,50,-0.0034,0.0002,642.4,1580.85,1414.34,21.61,553.18,2388.1,9049.71,47.55,521.41,2388.09,8.4255,393,38.78,23.3653 +62,51,0.0019,-0.0004,642.5,1586.58,1412.15,21.61,553.54,2388.1,9053.41,47.55,521.33,2388.17,8.4696,394,38.62,23.298 +62,52,-0.002,0.0002,642.83,1584.12,1408.3,21.61,553.08,2388.13,9058.36,47.67,521.12,2388.14,8.4263,394,38.84,23.3222 +62,53,-0.0043,0.0001,642.67,1592.03,1400.45,21.61,553.63,2388.11,9051.45,47.78,521.63,2388.17,8.4582,394,38.83,23.205 +62,54,0.0013,0.0001,642.91,1590.54,1402.89,21.61,553.11,2388.05,9066.16,47.63,521.17,2388.16,8.421,393,38.78,23.2184 +62,55,-0.0031,0.0001,643.17,1597.46,1411.69,21.61,552.85,2388.14,9053.27,47.54,520.97,2388.13,8.4886,394,38.7,23.1645 +62,56,0.0006,-0.0001,642.62,1597.66,1413.29,21.61,553.01,2388.07,9052.82,47.6,521.32,2388.09,8.4613,395,38.74,23.2325 +62,57,-0.0023,-0.0004,642.59,1592.83,1411.37,21.61,552.52,2388.05,9055.15,47.61,521.0,2388.13,8.449,394,38.92,23.3139 +62,58,0.0017,0.0001,643.42,1591.58,1414.19,21.61,553.43,2388.15,9063.38,47.63,521.24,2388.09,8.4351,395,38.74,23.348 +62,59,-0.0051,-0.0001,642.67,1590.46,1414.86,21.61,553.0,2388.12,9059.45,47.69,521.22,2388.11,8.4566,395,38.83,23.2699 +62,60,0.0006,0.0006,642.48,1590.01,1400.12,21.61,552.69,2388.13,9058.95,47.6,521.44,2388.13,8.4901,392,38.78,23.2481 +62,61,-0.0008,0.0002,642.64,1599.65,1411.67,21.61,553.28,2388.15,9064.75,47.68,521.01,2388.12,8.4438,394,38.83,23.2186 +62,62,0.0012,-0.0001,641.87,1592.34,1407.17,21.61,552.88,2388.05,9052.72,47.67,520.87,2388.13,8.4641,393,38.84,23.2188 +62,63,0.0064,-0.0003,642.95,1595.39,1406.49,21.61,553.11,2388.15,9051.74,47.77,520.94,2388.14,8.4213,395,38.88,23.1989 +62,64,-0.0003,0.0004,642.85,1589.33,1408.97,21.61,553.73,2388.13,9060.32,47.61,521.0,2388.1,8.4675,395,38.55,23.1978 +62,65,0.0009,0.0005,642.76,1586.38,1409.1,21.61,553.12,2388.07,9060.0,47.62,521.21,2388.16,8.4293,393,38.73,23.2452 +62,66,0.0018,-0.0003,642.88,1590.08,1411.81,21.61,553.46,2388.14,9049.81,47.67,521.14,2388.16,8.4345,395,38.83,23.3 +62,67,0.0023,0.0002,643.3,1589.33,1414.17,21.61,553.59,2388.13,9056.55,47.75,521.67,2388.11,8.4754,393,38.97,23.292 +62,68,0.0009,0.0005,642.67,1586.54,1409.61,21.61,553.43,2388.1,9057.22,47.52,521.12,2388.09,8.4254,393,38.88,23.1945 +62,69,-0.0038,0.0004,642.97,1600.87,1410.2,21.61,553.3,2388.09,9060.4,47.61,520.79,2388.14,8.4403,393,38.75,23.3407 +62,70,0.0027,-0.0001,642.73,1599.06,1404.95,21.61,553.53,2388.17,9058.52,47.56,520.91,2388.15,8.4668,392,38.76,23.3064 +62,71,0.0007,-0.0003,643.33,1588.17,1406.7,21.61,553.55,2388.09,9059.1,47.52,520.92,2388.11,8.4382,393,38.94,23.3558 +62,72,-0.0007,0.0006,643.05,1592.31,1416.16,21.61,552.58,2388.17,9055.27,47.67,521.2,2388.16,8.4809,393,38.62,23.2661 +62,73,0.0027,0.0004,642.06,1590.58,1412.89,21.61,552.58,2388.1,9054.89,47.72,521.11,2388.12,8.4307,394,38.74,23.3154 +62,74,0.0044,0.0002,642.77,1591.98,1414.85,21.61,553.09,2388.08,9060.16,47.58,521.05,2388.16,8.483,394,38.71,23.3155 +62,75,0.0032,0.0003,642.95,1589.64,1413.87,21.61,552.5,2388.16,9056.66,47.64,521.58,2388.14,8.4544,394,38.65,23.3848 +62,76,-0.0011,0.0004,643.06,1593.76,1412.05,21.61,552.44,2388.21,9057.2,47.61,521.18,2388.13,8.4648,394,38.92,23.2772 +62,77,0.0015,-0.0001,642.88,1589.94,1416.65,21.61,553.35,2388.16,9054.12,47.56,521.86,2388.11,8.4294,393,38.73,23.2382 +62,78,0.0022,-0.0001,643.39,1587.9,1409.14,21.61,552.79,2388.15,9057.91,47.6,521.44,2388.08,8.4233,394,38.84,23.3637 +62,79,-0.0002,-0.0001,642.51,1587.18,1411.4,21.61,552.17,2388.13,9047.97,47.81,521.48,2388.18,8.4046,394,38.72,23.3528 +62,80,0.0022,-0.0001,642.85,1591.43,1418.28,21.61,553.45,2388.14,9058.31,47.69,521.12,2388.16,8.4469,393,38.9,23.2274 +62,81,-0.0006,0.0004,642.63,1594.07,1413.66,21.61,552.72,2388.1,9049.85,47.64,521.38,2388.14,8.4431,393,38.73,23.2581 +62,82,-0.0032,0.0004,642.62,1598.45,1413.04,21.61,553.37,2388.16,9056.91,47.62,520.89,2388.13,8.4292,392,38.88,23.2267 +62,83,0.0001,-0.0003,642.22,1591.26,1413.15,21.61,553.92,2388.11,9058.68,47.57,521.14,2388.13,8.4564,393,38.69,23.246 +62,84,0.0012,0.0005,642.92,1594.76,1410.54,21.61,553.96,2388.13,9053.85,47.49,521.22,2388.13,8.4201,394,38.7,23.1463 +62,85,-0.0045,-0.0002,642.79,1599.03,1413.38,21.61,553.77,2388.11,9054.5,47.62,521.38,2388.15,8.4926,394,38.86,23.34 +62,86,0.0034,-0.0004,643.22,1589.18,1407.39,21.61,553.34,2388.17,9052.09,47.56,520.78,2388.07,8.4522,393,38.55,23.1726 +62,87,0.0035,0.0003,643.07,1588.57,1419.23,21.61,553.19,2388.11,9057.72,47.84,520.88,2388.17,8.4229,393,38.73,23.2408 +62,88,-0.0016,-0.0001,642.63,1590.16,1405.56,21.61,553.05,2388.07,9054.82,47.64,521.57,2388.11,8.4892,393,38.77,23.1595 +62,89,-0.0019,-0.0001,642.72,1586.41,1410.79,21.61,553.94,2388.16,9054.96,47.74,520.94,2388.11,8.4431,393,38.64,23.2372 +62,90,0.0011,-0.0001,642.68,1595.35,1408.34,21.61,552.05,2388.11,9058.31,47.67,520.84,2388.14,8.4246,395,38.81,23.2076 +62,91,-0.0043,-0.0,642.86,1592.3,1412.59,21.61,553.07,2388.11,9055.67,47.71,521.04,2388.19,8.4715,394,38.78,23.247 +62,92,0.003,-0.0003,643.39,1595.1,1408.1,21.61,553.08,2388.12,9058.91,47.78,521.23,2388.15,8.4626,391,38.87,23.1775 +62,93,0.0012,0.0001,642.68,1595.48,1405.98,21.61,552.8,2388.13,9055.38,47.79,520.77,2388.12,8.4611,395,38.81,23.2444 +62,94,-0.0021,-0.0001,643.02,1594.51,1407.31,21.61,553.05,2388.16,9055.52,47.49,521.31,2388.13,8.4598,394,38.45,23.1474 +62,95,0.005,-0.0002,642.98,1598.53,1411.22,21.61,552.81,2388.14,9052.38,47.53,521.12,2388.11,8.4947,394,38.84,23.2248 +62,96,-0.0005,0.0,642.76,1592.77,1416.87,21.61,553.19,2388.15,9050.48,47.68,521.08,2388.14,8.4399,395,38.6,23.2269 +62,97,-0.0012,0.0004,642.67,1595.83,1418.07,21.61,552.97,2388.16,9063.28,47.7,520.66,2388.15,8.4954,393,38.83,23.2593 +62,98,-0.0008,0.0005,642.52,1589.76,1409.98,21.61,553.35,2388.14,9060.92,47.77,521.13,2388.04,8.4606,393,38.81,23.2063 +62,99,-0.0024,0.0003,642.78,1594.26,1415.34,21.61,553.14,2388.22,9056.32,47.64,520.81,2388.2,8.4749,395,38.69,23.1551 +62,100,0.003,0.0,642.75,1599.32,1410.55,21.61,552.84,2388.12,9058.0,47.71,521.08,2388.19,8.4475,395,38.89,23.1755 +62,101,0.0008,-0.0003,643.1,1597.38,1414.79,21.61,553.15,2388.18,9050.88,47.62,521.34,2388.15,8.4636,393,38.65,23.2016 +62,102,0.0006,-0.0002,642.6,1592.13,1412.29,21.61,553.49,2388.12,9059.15,47.64,521.26,2388.17,8.4713,394,38.79,23.3083 +62,103,0.0009,-0.0001,643.45,1590.9,1415.37,21.61,552.46,2388.14,9059.14,47.84,521.66,2388.15,8.4578,393,38.65,23.2811 +62,104,-0.0038,-0.0003,642.66,1586.58,1417.13,21.61,553.28,2388.15,9051.34,47.74,520.96,2388.12,8.4525,394,38.73,23.2646 +62,105,0.0011,0.0005,642.6,1594.29,1413.35,21.61,552.46,2388.16,9054.4,47.7,520.86,2388.16,8.4252,393,38.88,23.2931 +62,106,-0.0021,-0.0001,643.1,1591.36,1412.83,21.61,552.96,2388.15,9059.08,47.55,520.81,2388.2,8.4609,393,38.73,23.1762 +62,107,0.0013,0.0004,643.1,1593.23,1411.13,21.61,553.42,2388.1,9060.33,47.55,521.2,2388.16,8.4787,394,38.83,23.3228 +62,108,-0.001,-0.0002,642.81,1590.27,1407.61,21.61,553.2,2388.13,9063.95,47.66,520.64,2388.19,8.4736,391,38.79,23.1893 +62,109,0.0017,-0.0002,643.17,1596.08,1414.77,21.61,553.2,2388.18,9051.93,47.78,521.2,2388.12,8.4604,394,38.72,23.1983 +62,110,0.0019,0.0004,642.98,1590.93,1417.33,21.61,552.7,2388.12,9054.04,48.02,521.13,2388.15,8.4408,393,39.01,23.2666 +62,111,-0.0017,0.0004,643.39,1593.92,1415.12,21.61,552.87,2388.17,9062.56,47.71,521.25,2388.13,8.4494,396,38.79,23.157 +62,112,-0.0012,-0.0001,642.51,1592.29,1413.9,21.61,552.54,2388.17,9056.78,47.8,520.58,2388.21,8.4403,395,38.65,23.2259 +62,113,-0.0044,-0.0004,642.95,1590.52,1414.98,21.61,553.04,2388.13,9060.99,47.82,520.83,2388.13,8.484,392,38.74,23.2042 +62,114,-0.0007,0.0005,643.1,1584.61,1414.03,21.61,552.93,2388.16,9058.08,47.86,520.96,2388.18,8.4338,395,38.64,23.1717 +62,115,0.001,-0.0003,642.5,1590.07,1412.89,21.61,553.29,2388.17,9057.09,47.76,520.59,2388.16,8.4704,394,38.64,23.3771 +62,116,-0.0018,-0.0002,643.27,1591.83,1416.79,21.61,553.07,2388.18,9054.67,47.67,520.92,2388.09,8.439,395,38.72,23.2497 +62,117,-0.0019,0.0004,643.28,1595.14,1412.28,21.61,551.99,2388.2,9051.56,47.63,520.5,2388.17,8.4645,393,38.69,23.2363 +62,118,0.0003,0.0001,643.02,1596.58,1416.25,21.61,552.5,2388.15,9056.23,47.8,520.96,2388.2,8.4467,395,38.68,23.2386 +62,119,0.0002,0.0,642.8,1597.84,1423.39,21.61,553.25,2388.13,9057.04,47.62,520.5,2388.12,8.4728,393,38.64,23.2475 +62,120,0.0006,0.0001,643.0,1592.77,1415.12,21.61,552.87,2388.17,9050.41,47.75,520.46,2388.13,8.4501,394,38.72,23.299 +62,121,0.003,0.0004,642.59,1592.77,1417.1,21.61,553.25,2388.14,9053.26,47.94,521.09,2388.15,8.444,394,38.66,23.2232 +62,122,0.0011,0.0003,642.9,1600.17,1416.72,21.61,552.67,2388.18,9054.54,47.76,521.06,2388.11,8.4499,394,38.56,23.2031 +62,123,0.0046,0.0003,643.05,1591.99,1409.42,21.61,552.8,2388.11,9052.94,47.58,521.26,2388.18,8.4623,395,38.83,23.2613 +62,124,-0.0033,-0.0002,643.28,1595.49,1415.36,21.61,552.12,2388.18,9061.61,47.76,520.86,2388.16,8.4633,394,38.79,23.2333 +62,125,-0.0005,0.0001,643.03,1593.71,1418.66,21.61,552.4,2388.24,9050.13,47.9,520.77,2388.15,8.4455,393,38.61,23.2072 +62,126,-0.0029,-0.0002,643.6,1596.16,1418.26,21.61,552.66,2388.21,9055.35,47.76,521.02,2388.24,8.5184,394,38.64,23.2842 +62,127,0.0013,0.0005,643.36,1589.77,1418.87,21.61,552.53,2388.17,9050.42,47.83,520.64,2388.15,8.5125,394,38.76,23.1652 +62,128,-0.0003,0.0004,643.39,1594.36,1418.73,21.61,552.38,2388.24,9056.17,47.9,520.47,2388.18,8.4745,393,38.54,23.1425 +62,129,-0.0051,-0.0003,643.13,1591.62,1415.35,21.61,552.96,2388.17,9061.81,47.83,521.01,2388.19,8.4765,394,38.81,23.2219 +62,130,-0.0005,0.0002,642.75,1587.89,1415.56,21.61,552.77,2388.21,9057.77,47.73,520.65,2388.19,8.5065,395,38.6,23.3333 +62,131,-0.0029,-0.0002,643.32,1598.59,1424.62,21.61,552.38,2388.15,9061.44,47.61,520.2,2388.19,8.4787,392,38.67,23.2124 +62,132,-0.0024,-0.0003,642.54,1594.05,1414.36,21.61,552.28,2388.19,9055.71,47.72,520.75,2388.24,8.4638,395,38.6,23.1657 +62,133,0.0006,0.0001,643.41,1591.25,1414.19,21.61,552.4,2388.18,9052.03,47.74,520.82,2388.2,8.4303,395,38.8,23.1958 +62,134,-0.0004,0.0005,642.86,1599.92,1413.52,21.61,552.86,2388.23,9047.38,47.8,520.44,2388.17,8.4718,396,38.51,23.1037 +62,135,-0.0042,-0.0004,642.85,1586.27,1414.56,21.61,552.29,2388.17,9057.47,47.84,520.22,2388.18,8.5068,395,38.82,23.1756 +62,136,-0.002,-0.0,642.52,1592.01,1413.11,21.61,552.45,2388.18,9056.33,47.92,520.35,2388.18,8.4873,395,38.66,23.2115 +62,137,-0.0002,-0.0004,642.85,1590.56,1411.41,21.61,551.97,2388.15,9059.88,47.8,520.87,2388.2,8.4825,395,38.71,23.1141 +62,138,0.0002,-0.0,643.21,1592.78,1417.85,21.61,552.16,2388.19,9053.57,47.96,520.51,2388.23,8.4345,396,38.64,23.2016 +62,139,-0.0013,0.0004,642.88,1598.87,1421.41,21.61,551.42,2388.17,9055.42,47.61,520.21,2388.22,8.5034,395,38.56,23.1834 +62,140,0.0004,0.0003,642.84,1592.96,1424.22,21.61,552.3,2388.18,9051.64,47.62,520.67,2388.2,8.4637,394,38.81,23.1805 +62,141,-0.0003,-0.0001,643.11,1601.42,1414.9,21.61,552.51,2388.17,9047.32,47.89,521.06,2388.18,8.4645,395,38.78,23.1438 +62,142,0.0015,-0.0,642.76,1585.62,1421.04,21.61,552.38,2388.25,9048.69,47.75,520.6,2388.19,8.4868,395,38.63,23.1652 +62,143,-0.001,0.0005,643.63,1603.86,1420.05,21.61,552.21,2388.22,9051.72,47.92,520.34,2388.28,8.527,396,38.63,23.2553 +62,144,-0.0048,-0.0001,642.65,1593.37,1419.42,21.61,552.16,2388.23,9049.97,47.76,520.83,2388.16,8.5017,393,38.92,23.1588 +62,145,-0.0012,0.0003,643.08,1592.88,1416.1,21.61,551.88,2388.2,9053.9,47.94,520.41,2388.24,8.4683,394,38.68,23.2054 +62,146,-0.0036,0.0003,643.09,1599.77,1423.12,21.61,553.17,2388.17,9055.57,47.81,520.39,2388.25,8.524,394,38.41,23.129 +62,147,0.0019,-0.0003,643.43,1600.54,1414.54,21.61,551.95,2388.24,9053.63,47.95,520.03,2388.25,8.4974,396,38.79,23.1169 +62,148,0.0036,-0.0001,643.02,1597.38,1418.73,21.61,551.66,2388.22,9059.03,47.92,520.32,2388.22,8.4928,394,38.43,23.121 +62,149,0.0008,0.0004,642.86,1598.72,1415.52,21.61,552.19,2388.22,9052.1,47.89,520.63,2388.18,8.494,395,38.55,23.2028 +62,150,-0.0007,0.0002,643.13,1596.74,1425.08,21.61,552.37,2388.18,9048.8,47.93,520.67,2388.22,8.4811,394,38.55,23.3169 +62,151,-0.0007,0.0003,643.17,1602.16,1419.74,21.61,551.65,2388.28,9044.4,47.94,520.46,2388.23,8.4941,395,38.47,23.1563 +62,152,-0.0014,-0.0004,642.97,1592.93,1420.19,21.61,553.1,2388.24,9051.23,48.04,520.35,2388.22,8.4939,396,38.52,23.2851 +62,153,0.0037,0.0001,643.09,1594.93,1424.44,21.61,552.15,2388.2,9050.45,47.94,520.1,2388.22,8.5179,395,38.53,23.1438 +62,154,-0.0003,-0.0002,643.6,1598.29,1418.29,21.61,551.88,2388.2,9050.34,47.82,520.06,2388.21,8.4769,394,38.72,23.143 +62,155,-0.0006,0.0,643.21,1592.44,1422.98,21.61,552.41,2388.19,9049.09,47.91,520.31,2388.24,8.5069,396,38.73,23.1973 +62,156,0.0035,0.0006,643.4,1599.79,1420.36,21.61,552.49,2388.23,9041.56,48.01,520.37,2388.18,8.4572,394,38.77,23.1708 +62,157,-0.0018,0.0006,642.99,1595.81,1424.62,21.61,552.78,2388.19,9053.27,47.91,520.01,2388.21,8.5332,395,38.59,23.1676 +62,158,0.0048,0.0003,643.63,1600.27,1415.64,21.61,551.99,2388.21,9049.01,47.91,520.13,2388.21,8.4946,394,38.56,23.2017 +62,159,-0.0014,-0.0002,643.25,1596.99,1419.18,21.61,551.99,2388.22,9046.79,47.98,519.76,2388.29,8.4797,395,38.63,23.1619 +62,160,-0.0015,0.0002,643.74,1597.7,1430.64,21.61,551.56,2388.21,9046.54,47.94,520.08,2388.24,8.499,395,38.65,23.103 +62,161,0.0005,0.0005,643.48,1604.01,1419.38,21.61,551.99,2388.21,9050.0,47.85,520.17,2388.27,8.4967,394,38.47,23.0845 +62,162,-0.0003,-0.0003,643.07,1596.57,1421.9,21.61,551.56,2388.23,9050.45,47.8,520.21,2388.28,8.4946,396,38.46,23.2615 +62,163,0.0006,0.0,643.57,1600.35,1421.51,21.61,552.29,2388.23,9054.19,48.04,519.97,2388.24,8.4978,396,38.47,23.0817 +62,164,-0.0013,0.0005,643.65,1600.28,1429.69,21.61,551.52,2388.27,9045.64,48.09,519.71,2388.24,8.5167,395,38.45,23.0537 +62,165,-0.002,0.0004,642.88,1597.62,1421.31,21.61,551.43,2388.22,9052.19,48.11,520.14,2388.24,8.4989,394,38.51,23.077 +62,166,0.0001,0.0003,643.91,1599.85,1424.66,21.61,551.65,2388.28,9052.45,48.0,519.76,2388.22,8.4761,396,38.59,23.1572 +62,167,-0.0004,0.0002,643.09,1594.7,1425.57,21.61,551.25,2388.27,9049.23,48.06,519.58,2388.28,8.5092,394,38.63,23.0802 +62,168,0.0011,0.0002,643.27,1601.12,1424.28,21.61,552.38,2388.32,9044.7,47.87,519.51,2388.29,8.4991,397,38.47,23.0546 +62,169,-0.0025,0.0001,642.75,1607.03,1420.12,21.61,551.76,2388.31,9044.8,48.25,520.12,2388.28,8.5283,395,38.52,23.0111 +62,170,0.0021,0.0003,643.72,1598.12,1425.68,21.61,551.62,2388.31,9045.19,48.29,520.07,2388.33,8.5269,396,38.46,23.0544 +62,171,-0.0019,0.0004,643.44,1599.43,1424.08,21.61,552.14,2388.25,9050.31,48.21,520.26,2388.21,8.5255,394,38.39,23.0042 +62,172,-0.001,-0.0003,643.78,1601.16,1423.58,21.61,552.07,2388.31,9049.98,48.04,519.63,2388.28,8.5055,395,38.41,23.0184 +62,173,-0.0001,-0.0004,643.67,1601.42,1431.48,21.61,552.49,2388.29,9045.5,48.12,519.87,2388.31,8.5266,395,38.48,23.1565 +62,174,-0.0011,0.0006,643.51,1601.38,1425.56,21.61,551.09,2388.31,9047.5,48.06,519.49,2388.32,8.5124,395,38.5,23.0207 +62,175,-0.0005,-0.0004,643.23,1598.92,1429.41,21.61,551.33,2388.26,9050.64,48.26,519.81,2388.29,8.5292,397,38.45,22.9532 +62,176,0.0026,-0.0002,643.37,1600.36,1432.64,21.61,551.45,2388.3,9043.24,48.01,520.05,2388.29,8.5216,394,38.3,23.0983 +62,177,-0.0029,-0.0002,643.66,1595.0,1424.88,21.61,551.84,2388.24,9045.38,48.0,519.7,2388.24,8.5401,395,38.44,23.0416 +62,178,-0.0005,-0.0,643.22,1601.35,1421.8,21.61,551.47,2388.27,9051.6,48.1,519.81,2388.25,8.5187,396,38.57,23.0534 +62,179,0.003,-0.0002,643.54,1603.55,1423.67,21.61,550.96,2388.28,9043.93,48.27,519.84,2388.37,8.5452,395,38.64,23.0212 +62,180,-0.0026,-0.0002,643.49,1595.1,1427.51,21.61,551.09,2388.28,9037.02,48.16,519.68,2388.31,8.5442,396,38.35,23.0042 +63,10,0.0015,-0.0004,642.32,1586.36,1413.78,21.61,553.61,2388.09,9058.88,47.46,522.16,2388.05,8.3979,392,38.9,23.2731 +63,11,-0.0012,-0.0003,642.18,1579.97,1407.38,21.61,554.16,2388.11,9062.53,47.36,522.04,2388.09,8.4264,393,38.98,23.3233 +63,12,-0.0012,-0.0003,642.6,1586.14,1406.98,21.61,554.24,2388.09,9060.87,47.59,521.7,2388.06,8.4486,393,38.89,23.3231 +63,13,0.0012,-0.0,642.63,1586.02,1405.53,21.61,553.78,2388.08,9056.79,47.29,522.27,2388.08,8.4231,392,38.98,23.277 +63,14,-0.0015,0.0005,642.55,1588.64,1407.18,21.61,553.89,2388.11,9062.15,47.38,521.71,2388.08,8.4222,392,38.81,23.3437 +63,15,0.0,0.0001,642.54,1595.45,1402.24,21.61,554.62,2388.08,9053.05,47.51,521.8,2388.06,8.4354,392,38.88,23.2272 +63,16,0.0005,0.0002,643.16,1588.1,1406.88,21.61,553.2,2388.1,9054.25,47.6,521.71,2388.1,8.4311,393,39.03,23.4545 +63,17,0.0025,-0.0,642.06,1581.34,1408.52,21.61,554.39,2388.09,9059.59,47.67,521.14,2388.05,8.4445,391,38.86,23.391 +63,18,-0.0021,-0.0,642.64,1593.26,1409.26,21.61,553.39,2388.04,9056.31,47.36,521.17,2388.09,8.4219,393,38.83,23.0453 +63,19,-0.0002,0.0002,642.76,1584.69,1407.84,21.61,553.61,2388.12,9056.18,47.31,521.6,2388.08,8.4443,393,38.91,23.3216 +63,20,0.0004,-0.0004,642.66,1588.4,1397.29,21.61,554.14,2388.1,9051.0,47.42,522.18,2388.12,8.4242,392,38.9,23.4307 +63,21,0.0024,0.0,642.53,1588.08,1409.94,21.61,554.53,2388.06,9060.73,47.48,521.35,2388.04,8.4192,393,39.06,23.3518 +63,22,0.0021,-0.0004,642.23,1579.97,1411.07,21.61,553.71,2388.1,9057.48,47.45,521.5,2388.11,8.4302,393,38.84,23.3918 +63,23,0.0021,0.0003,642.99,1592.95,1401.63,21.61,553.78,2388.07,9054.25,47.42,521.48,2388.11,8.4512,392,38.92,23.2857 +63,24,0.002,0.0003,642.84,1588.6,1404.91,21.61,554.08,2388.06,9056.68,47.45,521.46,2388.08,8.3822,393,38.9,23.3423 +63,25,0.0029,0.0003,642.55,1583.62,1406.0,21.61,554.16,2388.04,9056.01,47.46,521.92,2388.05,8.4381,392,38.78,23.3139 +63,26,0.0009,-0.0002,642.17,1589.3,1408.13,21.61,553.69,2388.1,9068.49,47.46,521.31,2388.12,8.4375,391,38.8,23.3081 +63,27,-0.0014,0.0004,642.26,1587.05,1409.2,21.61,553.94,2388.05,9059.25,47.57,521.74,2388.0,8.4508,394,38.92,23.353 +63,28,0.0001,-0.0003,641.95,1587.86,1408.06,21.61,552.85,2388.07,9053.76,47.39,521.5,2388.05,8.4557,392,38.81,23.2689 +63,29,-0.0012,0.0003,642.55,1579.07,1398.82,21.61,553.74,2388.02,9060.98,47.34,521.28,2388.06,8.442,393,38.88,23.3618 +63,30,0.0007,-0.0,642.37,1585.54,1410.0,21.61,553.75,2388.1,9056.41,47.52,522.08,2388.15,8.4458,392,38.85,23.3697 +63,31,0.0004,-0.0003,642.33,1595.69,1410.76,21.61,553.22,2388.06,9058.44,47.55,522.31,2388.07,8.4467,393,38.93,23.4287 +63,32,-0.0009,-0.0003,642.74,1592.55,1406.72,21.61,554.16,2388.08,9058.37,47.47,521.44,2388.08,8.4228,393,38.93,23.3022 +63,33,-0.0007,0.0001,642.65,1586.61,1400.47,21.61,552.91,2388.03,9057.01,47.6,521.81,2388.05,8.409,393,38.93,23.3823 +63,34,0.0007,-0.0003,643.24,1586.18,1409.54,21.61,554.34,2388.06,9057.59,47.58,521.36,2388.06,8.4818,392,38.93,23.3219 +63,35,-0.0008,0.0001,642.5,1587.64,1409.16,21.61,553.43,2388.1,9059.41,47.3,521.63,2388.08,8.4206,394,39.04,23.3259 +63,36,0.0017,0.0001,642.76,1585.36,1414.87,21.61,553.03,2388.13,9059.16,47.56,521.88,2388.1,8.3808,393,38.83,23.2547 +63,37,-0.0013,-0.0001,642.42,1584.89,1401.88,21.61,553.96,2388.11,9056.2,47.44,522.06,2388.08,8.3872,392,38.81,23.2723 +63,38,0.0034,0.0002,642.99,1595.37,1409.91,21.61,553.93,2388.11,9061.43,47.52,521.9,2388.09,8.4208,391,38.9,23.2345 +63,39,0.0048,-0.0002,642.25,1587.72,1403.99,21.61,553.5,2388.09,9059.19,47.53,521.23,2388.07,8.4108,392,38.77,23.4026 +63,40,0.001,-0.0,642.31,1582.4,1404.36,21.61,553.43,2388.12,9055.53,47.41,521.63,2388.08,8.4628,393,38.91,23.3214 +63,41,-0.0031,0.0004,642.21,1585.67,1409.05,21.61,553.23,2388.08,9062.53,47.39,521.56,2388.09,8.4119,393,38.88,23.2994 +63,42,-0.0017,0.0003,641.93,1575.0,1408.74,21.61,553.75,2388.06,9053.36,47.49,521.53,2388.14,8.4298,394,38.71,23.2958 +63,43,0.0036,0.0003,643.23,1587.99,1403.78,21.61,553.32,2388.06,9053.33,47.45,521.86,2388.11,8.4211,392,38.79,23.4082 +63,44,0.0033,0.0005,642.51,1582.46,1402.64,21.61,553.46,2388.11,9060.96,47.37,521.69,2388.06,8.3958,393,38.98,23.2904 +63,45,-0.0049,0.0002,642.95,1598.14,1405.24,21.61,554.37,2388.07,9062.22,47.41,521.42,2388.05,8.4157,393,38.98,23.3761 +63,46,0.0021,0.0004,642.8,1591.24,1405.02,21.61,553.57,2388.1,9058.63,47.53,521.44,2388.1,8.4361,395,38.81,23.3302 +63,47,0.0003,0.0,642.6,1586.08,1406.3,21.61,553.84,2388.04,9061.69,47.48,521.57,2388.04,8.4019,393,38.9,23.3668 +63,48,0.0004,-0.0004,642.13,1581.25,1403.47,21.61,553.66,2388.07,9065.86,47.57,522.15,2388.03,8.431,392,38.83,23.306 +63,49,0.0001,0.0004,642.82,1583.45,1401.34,21.61,553.11,2388.09,9057.26,47.37,521.51,2388.11,8.4857,392,39.02,23.3586 +63,50,0.001,-0.0003,642.45,1588.4,1407.39,21.61,554.3,2388.11,9059.89,47.61,521.6,2388.1,8.4788,394,38.76,23.4488 +63,51,-0.0002,0.0001,642.08,1589.83,1407.12,21.61,552.87,2388.12,9057.69,47.35,521.87,2388.08,8.4131,393,38.79,23.2774 +63,52,-0.0062,0.0001,642.21,1588.31,1401.69,21.61,553.75,2388.05,9060.81,47.54,521.83,2388.07,8.4467,393,39.0,23.3795 +63,53,-0.0013,0.0003,642.83,1585.62,1408.63,21.61,553.78,2388.13,9060.73,47.5,521.87,2388.13,8.4396,392,38.81,23.4105 +63,54,-0.0021,0.0005,642.07,1593.8,1403.69,21.61,553.79,2388.08,9064.11,47.38,521.73,2388.1,8.4366,393,38.89,23.3641 +63,55,-0.001,-0.0003,641.99,1591.21,1405.3,21.61,553.29,2388.1,9059.17,47.27,521.77,2388.11,8.3903,394,38.9,23.3873 +63,56,-0.0022,-0.0003,642.82,1593.11,1412.3,21.61,554.13,2388.08,9062.01,47.57,521.28,2388.12,8.4012,392,38.9,23.2706 +63,57,-0.0008,0.0002,642.63,1591.94,1405.69,21.61,553.15,2388.03,9064.94,47.45,521.94,2388.13,8.4288,393,38.87,23.3018 +63,58,0.0007,0.0002,643.01,1585.3,1407.32,21.61,554.12,2388.05,9067.72,47.59,521.6,2388.04,8.4326,395,38.78,23.3312 +63,59,0.0003,-0.0002,642.2,1591.51,1400.91,21.61,554.24,2388.1,9063.46,47.27,521.51,2388.09,8.4285,392,38.76,23.3741 +63,60,0.002,-0.0004,642.61,1590.24,1417.57,21.61,553.59,2388.06,9059.07,47.47,521.73,2388.06,8.4193,395,38.82,23.3222 +63,61,-0.002,0.0,642.48,1584.18,1409.68,21.61,553.54,2388.08,9056.54,47.4,521.35,2388.1,8.4483,392,38.87,23.2895 +63,62,-0.0024,-0.0003,642.49,1595.49,1407.12,21.61,553.06,2388.16,9052.21,47.59,521.41,2388.08,8.415,393,38.7,23.3009 +63,63,0.0011,0.0,642.69,1590.95,1412.99,21.61,553.03,2388.12,9057.73,47.48,521.06,2388.04,8.4612,393,38.89,23.4076 +63,64,-0.0024,0.0003,642.56,1590.49,1406.18,21.61,552.88,2388.11,9065.44,47.48,521.08,2388.11,8.4293,392,38.98,23.3718 +63,65,-0.0034,0.0006,642.54,1588.54,1407.06,21.61,553.54,2388.05,9060.39,47.68,521.44,2388.03,8.4513,392,39.03,23.2668 +63,66,0.002,-0.0004,642.53,1594.99,1408.08,21.61,552.99,2388.03,9065.13,47.49,521.01,2388.11,8.4491,392,38.79,23.2956 +63,67,-0.0023,0.0004,642.39,1583.66,1410.4,21.61,553.63,2388.07,9060.15,47.56,521.28,2388.1,8.4512,392,38.92,23.3494 +63,68,0.0028,-0.0001,642.41,1584.2,1405.9,21.61,553.79,2388.05,9054.7,47.56,521.61,2388.08,8.4076,391,38.95,23.3429 +63,69,0.0008,0.0005,642.34,1589.76,1406.41,21.61,554.12,2388.06,9062.9,47.49,521.47,2388.08,8.4493,393,38.65,23.3838 +63,70,0.0008,0.0006,643.03,1596.95,1405.36,21.61,553.69,2388.08,9066.37,47.65,521.97,2388.03,8.4342,393,38.85,23.2736 +63,71,0.0012,-0.0001,642.4,1591.61,1408.79,21.61,553.73,2388.06,9062.1,47.43,521.6,2388.09,8.4243,392,39.01,23.258 +63,72,0.0012,0.0002,642.37,1593.96,1409.63,21.61,553.82,2388.07,9060.16,47.55,521.63,2388.08,8.4078,393,38.84,23.3882 +63,73,0.0002,0.0002,642.55,1588.89,1409.39,21.61,552.81,2388.02,9054.28,47.39,522.06,2388.05,8.4392,392,38.93,23.3122 +63,74,-0.0049,-0.0001,642.74,1598.76,1403.81,21.61,553.61,2388.1,9060.95,47.5,521.59,2388.1,8.4559,394,38.81,23.4572 +63,75,-0.002,0.0001,642.22,1594.91,1407.94,21.61,553.78,2388.12,9054.43,47.6,521.47,2388.07,8.4538,392,38.76,23.3412 +63,76,-0.0013,0.0002,642.54,1595.64,1407.83,21.61,553.75,2388.1,9067.27,47.56,521.84,2388.06,8.427,392,38.76,23.3009 +63,77,0.001,0.0004,642.2,1584.1,1404.65,21.61,553.97,2388.09,9073.22,47.4,521.95,2388.03,8.438,392,38.78,23.3788 +63,78,-0.0016,0.0004,642.13,1594.0,1403.51,21.61,554.17,2388.08,9064.92,47.6,521.71,2388.04,8.4358,394,38.73,23.3198 +63,79,-0.0034,-0.0003,642.64,1587.46,1406.33,21.61,553.7,2388.06,9066.72,47.36,521.43,2388.07,8.4273,394,38.96,23.32 +63,80,-0.0014,0.0003,642.82,1587.87,1403.56,21.61,552.75,2388.02,9067.0,47.41,521.61,2388.04,8.4179,393,38.84,23.2739 +63,81,0.0014,0.0005,643.47,1599.49,1412.56,21.61,553.26,2388.03,9065.57,47.58,521.42,2388.09,8.4364,393,38.91,23.2206 +63,82,0.002,0.0004,642.92,1587.75,1409.02,21.61,553.72,2388.1,9063.76,47.6,521.06,2388.07,8.4496,392,38.59,23.2256 +63,83,0.0006,-0.0001,642.49,1590.1,1406.79,21.61,553.93,2388.06,9064.79,47.45,522.13,2388.09,8.4271,393,38.84,23.2634 +63,84,0.0011,0.0005,642.54,1597.47,1412.95,21.61,553.03,2388.11,9063.0,47.36,521.54,2388.04,8.3831,393,38.83,23.3583 +63,85,0.0038,-0.0003,642.46,1588.63,1407.49,21.61,553.04,2388.13,9070.4,47.65,521.33,2388.03,8.416,392,38.98,23.2768 +63,86,-0.0017,0.0,643.0,1590.6,1409.38,21.61,553.97,2388.06,9062.41,47.48,521.7,2388.08,8.432,392,38.77,23.2928 +63,87,-0.0016,-0.0002,642.67,1586.9,1414.92,21.61,553.86,2388.08,9066.09,47.69,521.49,2388.07,8.4608,393,38.93,23.3412 +63,88,-0.0013,-0.0003,642.38,1585.34,1414.19,21.61,553.43,2388.11,9062.11,47.56,521.48,2388.07,8.4378,393,38.78,23.3061 +63,89,-0.0029,-0.0003,642.65,1593.33,1402.2,21.61,553.57,2388.08,9068.13,47.44,521.58,2388.09,8.4382,394,38.79,23.2979 +63,90,0.0024,0.0003,642.53,1584.06,1407.81,21.61,554.17,2388.06,9057.95,47.71,521.53,2388.11,8.4458,393,38.96,23.4223 +63,91,-0.0002,0.0001,642.84,1592.21,1416.19,21.61,553.35,2388.11,9063.56,47.78,521.74,2388.02,8.4384,392,38.84,23.3298 +63,92,0.0026,0.0003,642.37,1592.27,1408.12,21.61,553.74,2388.09,9068.32,47.53,521.35,2388.06,8.4347,392,38.76,23.2929 +63,93,0.0025,-0.0003,642.42,1592.85,1400.04,21.61,554.27,2388.07,9076.72,47.41,521.93,2388.12,8.4468,394,38.85,23.2468 +63,94,-0.0006,-0.0004,642.4,1588.46,1413.29,21.61,554.52,2388.08,9067.37,47.53,521.81,2388.08,8.4077,392,38.98,23.321 +63,95,0.0057,0.0003,642.79,1591.82,1411.51,21.61,553.84,2388.07,9061.56,47.58,521.86,2388.09,8.4561,392,38.89,23.397 +63,96,0.0009,0.0001,642.07,1593.57,1406.57,21.61,554.35,2388.03,9070.99,47.38,521.63,2388.1,8.3954,393,38.78,23.2521 +63,97,0.0034,-0.0003,642.48,1592.44,1417.12,21.61,553.31,2388.12,9073.88,47.64,521.32,2388.09,8.45,392,38.89,23.2779 +63,98,0.0019,0.0006,642.66,1587.25,1415.19,21.61,552.24,2388.11,9068.71,47.54,521.23,2388.1,8.4804,393,38.83,23.2497 +63,99,-0.0012,0.0004,643.17,1591.83,1411.39,21.61,553.33,2388.03,9066.28,47.57,521.35,2387.99,8.4248,395,38.67,23.2759 +63,100,-0.0007,0.0002,642.62,1597.18,1406.09,21.61,553.53,2388.08,9066.98,47.85,520.85,2388.07,8.4239,393,38.8,23.3166 +63,101,-0.0026,0.0001,642.59,1593.82,1412.66,21.61,553.57,2388.04,9065.53,47.55,521.48,2388.13,8.4319,392,38.84,23.4029 +63,102,-0.0007,-0.0002,642.67,1591.63,1404.44,21.61,553.73,2388.05,9065.69,47.53,521.18,2388.04,8.4393,394,38.79,23.2819 +63,103,0.0025,0.0005,642.74,1594.84,1413.8,21.61,552.93,2388.08,9068.47,47.5,520.87,2388.1,8.4791,394,38.83,23.3546 +63,104,-0.0007,0.0004,642.27,1595.86,1412.19,21.61,553.21,2388.1,9067.69,47.67,521.56,2388.09,8.4389,392,38.97,23.3161 +63,105,-0.0009,0.0001,643.23,1592.0,1415.99,21.61,552.65,2388.07,9075.37,47.5,521.52,2388.08,8.4339,394,38.93,23.2887 +63,106,0.0004,0.0005,642.81,1590.76,1412.18,21.61,553.11,2388.08,9068.16,47.52,521.75,2388.11,8.449,394,38.8,23.2125 +63,107,-0.0015,-0.0002,642.66,1598.6,1405.06,21.61,553.16,2388.02,9074.24,47.62,521.28,2388.05,8.4392,394,38.76,23.3313 +63,108,-0.0003,0.0,643.05,1591.53,1406.39,21.61,553.7,2388.07,9068.37,47.52,521.24,2388.06,8.481,393,38.67,23.2416 +63,109,-0.0004,0.0,642.51,1584.53,1406.56,21.61,553.04,2388.09,9074.22,47.47,521.28,2388.08,8.4587,394,38.75,23.2314 +63,110,-0.0037,0.0006,642.77,1598.25,1413.02,21.61,553.62,2388.07,9071.24,47.55,521.56,2388.11,8.4774,395,38.64,23.206 +63,111,-0.0022,0.0005,642.83,1593.36,1410.94,21.61,552.94,2388.1,9072.56,47.5,521.07,2388.09,8.4347,393,38.76,23.261 +63,112,-0.0015,0.0002,642.68,1597.77,1413.22,21.61,553.04,2388.13,9075.76,47.72,521.45,2388.13,8.457,393,38.63,23.3135 +63,113,-0.0007,-0.0002,642.98,1590.69,1402.08,21.61,553.3,2388.12,9079.71,47.35,521.21,2388.07,8.4685,393,38.7,23.1859 +63,114,-0.0046,0.0005,642.56,1586.7,1405.69,21.61,553.78,2388.06,9074.1,47.63,521.57,2388.09,8.4524,395,38.77,23.3222 +63,115,0.0037,0.0003,642.53,1590.64,1410.05,21.61,553.55,2388.12,9076.86,47.78,521.37,2388.09,8.471,395,38.63,23.1651 +63,116,-0.0048,0.0001,642.32,1597.28,1412.79,21.61,553.1,2388.1,9072.29,47.73,521.18,2388.09,8.4495,393,38.82,23.308 +63,117,-0.0011,0.0005,642.7,1588.18,1410.98,21.61,552.89,2388.09,9079.24,47.46,520.95,2388.11,8.442,395,38.68,23.3027 +63,118,0.001,-0.0003,642.94,1595.36,1412.67,21.61,552.81,2388.08,9080.07,47.59,521.88,2388.1,8.4542,390,38.74,23.2121 +63,119,-0.0013,0.0001,642.6,1597.6,1409.75,21.61,553.3,2388.1,9081.31,47.48,520.94,2388.1,8.4698,394,38.79,23.2105 +63,120,0.0017,0.0001,642.78,1596.94,1415.19,21.61,553.53,2388.11,9081.86,47.48,521.81,2388.11,8.382,393,38.59,23.2371 +63,121,-0.0031,-0.0003,642.49,1591.68,1412.84,21.61,553.07,2388.09,9084.13,47.64,521.01,2388.18,8.4515,395,38.76,23.2853 +63,122,0.0016,-0.0002,643.03,1589.73,1414.77,21.61,552.94,2388.12,9075.46,47.69,521.32,2388.05,8.4373,393,38.78,23.153 +63,123,0.0023,0.0003,642.9,1589.53,1413.12,21.61,553.18,2388.08,9082.1,47.68,521.29,2388.08,8.4471,394,38.79,23.3256 +63,124,0.0044,0.0001,642.65,1588.99,1412.93,21.61,553.31,2388.11,9080.59,47.45,520.81,2388.08,8.4549,394,38.67,23.2275 +63,125,-0.0003,-0.0004,642.79,1598.45,1418.57,21.61,553.31,2388.1,9084.29,47.71,521.66,2388.06,8.4563,394,38.66,23.2807 +63,126,-0.0006,-0.0003,642.99,1589.62,1418.26,21.61,553.22,2388.14,9082.03,47.53,520.93,2388.07,8.4811,394,38.62,23.1726 +63,127,0.0025,0.0005,642.61,1598.81,1416.13,21.61,553.43,2388.14,9087.73,47.71,521.35,2388.11,8.4409,393,38.78,23.2306 +63,128,0.0012,-0.0003,643.03,1593.3,1411.09,21.61,552.88,2388.13,9086.58,47.64,521.21,2388.1,8.4566,394,38.7,23.2814 +63,129,-0.0029,0.0002,642.99,1589.17,1410.96,21.61,552.82,2388.06,9084.1,47.66,521.3,2388.05,8.4813,394,38.88,23.1859 +63,130,0.0002,0.0001,642.82,1594.82,1414.9,21.61,552.79,2388.03,9084.33,47.7,521.43,2388.0,8.4498,394,38.73,23.2774 +63,131,0.0004,0.0004,642.62,1598.02,1412.16,21.61,553.63,2388.04,9094.86,47.74,521.74,2388.04,8.4284,392,38.69,23.2823 +63,132,0.0022,0.0006,642.89,1592.84,1416.67,21.61,553.49,2388.06,9085.08,47.71,520.53,2388.07,8.4404,393,38.83,23.2022 +63,133,-0.0029,-0.0004,642.18,1592.96,1414.35,21.61,553.72,2388.1,9090.31,47.48,521.2,2388.06,8.4668,393,38.61,23.2184 +63,134,-0.0025,-0.0001,642.78,1588.95,1412.85,21.61,552.99,2388.12,9090.08,47.57,521.11,2388.13,8.486,395,38.74,23.2516 +63,135,-0.0006,0.0004,643.12,1592.74,1417.03,21.61,553.12,2388.09,9089.41,47.77,520.96,2388.07,8.4636,395,38.89,23.1694 +63,136,-0.0042,0.0001,642.83,1601.89,1410.86,21.61,552.98,2388.12,9095.92,47.67,520.75,2388.04,8.4762,393,38.83,23.2249 +63,137,-0.0019,0.0,643.01,1600.14,1416.51,21.61,552.8,2388.09,9092.69,47.67,520.82,2388.04,8.4866,393,38.79,23.2557 +63,138,-0.0015,-0.0002,642.59,1589.85,1413.63,21.61,552.9,2388.17,9095.22,47.79,521.07,2388.1,8.4804,395,38.65,23.2474 +63,139,0.0009,-0.0001,643.29,1593.63,1415.81,21.61,552.33,2388.11,9097.77,47.58,521.19,2388.13,8.4635,395,38.66,23.2089 +63,140,-0.0006,-0.0004,642.9,1590.76,1420.81,21.61,553.18,2388.09,9099.87,47.8,521.06,2388.09,8.4546,393,38.6,23.1233 +63,141,-0.0,0.0004,642.44,1591.89,1416.71,21.61,553.19,2388.13,9098.67,47.84,520.94,2388.12,8.4778,395,38.86,23.2223 +63,142,0.0002,0.0004,643.03,1597.29,1412.0,21.61,551.68,2388.03,9099.76,47.76,520.93,2388.11,8.4396,396,38.66,23.1565 +63,143,-0.0024,-0.0,642.55,1594.19,1416.18,21.61,552.38,2388.13,9115.68,47.72,520.76,2388.09,8.4869,393,38.95,23.2405 +63,144,0.0032,-0.0002,643.38,1602.12,1423.84,21.61,551.9,2388.12,9106.01,47.68,521.04,2388.05,8.4674,396,38.72,23.2408 +63,145,0.0008,0.0004,643.25,1594.31,1413.21,21.61,552.74,2388.08,9107.91,47.89,520.83,2388.08,8.4765,394,38.82,23.114 +63,146,-0.006,-0.0001,642.95,1595.82,1413.81,21.61,553.35,2388.12,9103.95,47.93,521.4,2388.12,8.4991,394,38.64,23.1307 +63,147,-0.0004,-0.0003,643.01,1597.83,1421.38,21.61,553.21,2388.13,9104.49,47.89,520.53,2388.11,8.4962,394,38.69,23.2515 +63,148,-0.0035,0.0001,643.3,1599.72,1420.64,21.61,552.57,2388.1,9111.55,47.81,521.48,2388.09,8.4631,393,38.57,23.1995 +63,149,-0.0011,0.0004,643.31,1592.92,1413.1,21.61,552.99,2388.13,9118.46,47.86,520.98,2388.08,8.4539,396,38.57,23.19 +63,150,-0.0014,-0.0001,643.02,1597.29,1417.41,21.61,552.3,2388.01,9113.23,47.69,521.51,2388.08,8.5109,394,38.55,23.1251 +63,151,0.0034,0.0002,642.6,1603.26,1420.86,21.61,551.69,2388.09,9117.26,47.71,521.02,2388.13,8.4479,393,38.74,23.1172 +63,152,-0.0024,-0.0002,643.21,1601.95,1423.41,21.61,551.98,2388.11,9124.06,47.63,520.95,2388.18,8.4493,395,38.5,23.1495 +63,153,-0.0008,0.0004,642.92,1594.72,1414.98,21.61,552.98,2388.15,9114.22,47.65,521.28,2388.1,8.4645,394,38.51,23.2009 +63,154,0.0001,0.0004,643.05,1597.51,1418.06,21.61,553.2,2388.07,9115.13,47.83,520.8,2388.17,8.4902,395,38.67,23.1184 +63,155,0.0026,0.0005,643.02,1598.22,1409.55,21.61,552.93,2388.06,9127.81,47.92,520.55,2388.12,8.4941,396,38.61,23.2125 +63,156,-0.0012,-0.0001,643.52,1603.83,1423.34,21.61,552.92,2388.16,9125.95,47.84,520.52,2388.11,8.5023,395,38.51,23.2323 +63,157,-0.0006,-0.0,643.09,1600.75,1417.32,21.61,552.55,2388.16,9128.84,47.9,520.57,2388.16,8.5097,395,38.57,23.1213 +63,158,0.0014,0.0002,642.83,1599.06,1417.34,21.61,552.4,2388.11,9144.0,47.83,520.59,2388.1,8.4647,396,38.6,23.1845 +63,159,-0.0029,-0.0001,643.17,1598.19,1421.02,21.61,552.26,2388.13,9134.3,47.97,520.65,2388.16,8.4843,395,38.59,23.202 +63,160,0.0021,-0.0002,643.34,1594.61,1417.29,21.61,552.03,2388.14,9144.67,47.95,520.47,2388.13,8.4562,395,38.69,23.2049 +63,161,-0.0018,0.0003,643.28,1597.21,1424.47,21.61,552.92,2388.1,9137.33,48.01,521.35,2388.14,8.472,395,38.54,23.1569 +63,162,-0.0042,0.0002,643.08,1602.01,1420.81,21.61,551.77,2388.16,9144.4,47.7,520.62,2388.14,8.5191,395,38.48,23.1431 +63,163,-0.0007,-0.0001,643.39,1604.5,1418.66,21.61,551.81,2388.1,9145.05,48.03,520.56,2388.09,8.481,397,38.48,23.0691 +63,164,-0.0001,-0.0004,643.98,1594.28,1419.49,21.61,552.34,2388.19,9148.57,47.83,520.64,2388.11,8.5034,396,38.7,23.279 +63,165,-0.0031,0.0001,643.11,1602.24,1431.99,21.61,551.34,2388.09,9146.53,47.93,520.33,2388.14,8.5004,397,38.61,23.1844 +63,166,-0.0008,0.0003,643.73,1600.61,1420.36,21.61,552.16,2388.15,9147.86,47.83,519.97,2388.18,8.537,396,38.43,23.0615 +63,167,0.0033,-0.0001,643.86,1603.43,1421.77,21.61,552.17,2388.14,9157.66,47.96,520.34,2388.15,8.5279,394,38.45,23.0684 +63,168,0.0,-0.0002,643.82,1607.15,1427.47,21.61,552.5,2388.13,9159.54,47.9,520.48,2388.13,8.5061,396,38.46,23.1303 +63,169,-0.0025,0.0003,643.06,1599.04,1426.49,21.61,552.1,2388.19,9162.08,48.17,520.64,2388.15,8.5356,396,38.38,23.0888 +63,170,-0.0003,-0.0002,643.4,1609.06,1426.65,21.61,551.95,2388.12,9165.91,48.12,519.67,2388.12,8.4922,397,38.48,23.0079 +63,171,0.0013,-0.0001,643.52,1599.89,1436.27,21.61,552.11,2388.21,9172.45,48.02,520.16,2388.13,8.5109,397,38.5,23.059 +63,172,-0.0037,-0.0004,643.24,1604.96,1426.43,21.61,551.23,2388.22,9167.75,48.17,520.47,2388.15,8.5118,397,38.38,22.9498 +63,173,-0.0023,-0.0003,643.86,1605.08,1432.1,21.61,551.54,2388.22,9172.54,48.28,519.97,2388.14,8.5099,398,38.4,22.9874 +63,174,-0.0007,-0.0003,643.43,1603.87,1424.72,21.61,551.7,2388.16,9175.01,48.21,520.16,2388.16,8.5265,397,38.31,23.2228 +65,10,0.0003,-0.0001,642.44,1583.31,1402.04,21.61,554.63,2388.02,9066.58,47.29,522.41,2388.09,8.3829,391,38.79,23.2399 +65,11,0.0041,0.0004,642.23,1578.93,1398.67,21.61,554.36,2388.01,9065.7,47.26,522.55,2388.0,8.3986,393,39.06,23.3523 +65,12,-0.0012,0.0005,642.57,1582.23,1396.26,21.61,554.54,2387.99,9057.29,47.24,522.21,2387.97,8.4099,392,39.23,23.3973 +65,13,0.0006,-0.0004,642.06,1584.35,1394.71,21.61,554.05,2388.02,9065.57,47.11,522.53,2388.02,8.3987,390,39.02,23.445 +65,14,0.0008,-0.0004,641.82,1588.73,1397.98,21.61,554.17,2388.03,9057.84,47.35,522.14,2388.0,8.4239,394,38.96,23.3263 +65,15,-0.0022,0.0003,642.19,1576.99,1395.51,21.6,554.24,2387.99,9061.17,47.31,522.21,2388.06,8.4099,391,39.06,23.2863 +65,16,-0.0003,-0.0003,642.52,1583.81,1398.96,21.61,554.75,2388.01,9061.2,47.34,522.43,2388.02,8.3675,392,38.86,23.4538 +65,17,0.0021,-0.0001,642.09,1584.47,1408.99,21.61,554.53,2387.99,9067.34,47.1,522.56,2388.05,8.3942,391,39.17,23.347 +65,18,-0.0005,0.0004,642.66,1586.93,1398.41,21.61,555.07,2387.99,9064.99,47.02,522.03,2387.98,8.4166,391,39.1,23.4334 +65,19,0.0011,-0.0001,641.91,1583.52,1393.44,21.61,554.62,2387.96,9066.07,47.22,522.39,2388.0,8.3833,391,39.1,23.3751 +65,20,-0.0032,0.0001,641.64,1578.53,1398.74,21.61,553.95,2388.04,9053.44,47.09,522.68,2387.99,8.4251,391,38.93,23.353 +65,21,-0.0011,0.0002,642.06,1581.99,1395.18,21.61,554.67,2388.07,9062.63,47.32,521.96,2388.03,8.4245,393,39.0,23.5519 +65,22,-0.0004,-0.0001,642.06,1584.11,1398.84,21.61,554.59,2388.04,9060.91,47.3,521.92,2388.04,8.3996,392,39.06,23.3882 +65,23,0.0014,-0.0002,642.17,1587.24,1400.08,21.61,553.67,2388.05,9057.61,47.35,522.4,2388.0,8.4208,394,39.02,23.4076 +65,24,-0.0002,-0.0001,642.51,1584.95,1402.97,21.61,554.25,2388.01,9051.01,47.28,522.32,2388.04,8.4064,391,39.01,23.4342 +65,25,0.0026,-0.0001,642.14,1581.47,1396.7,21.61,554.4,2388.01,9061.24,47.15,522.13,2388.02,8.3992,391,39.0,23.4705 +65,26,-0.0043,-0.0003,641.76,1580.05,1396.15,21.6,553.84,2387.98,9064.38,47.25,522.29,2388.01,8.3656,391,39.0,23.4348 +65,27,-0.0008,0.0,642.32,1582.39,1399.68,21.61,554.52,2388.05,9063.78,47.21,521.72,2388.06,8.3758,391,39.06,23.4295 +65,28,-0.0023,0.0003,642.37,1586.12,1397.24,21.61,554.55,2388.03,9060.8,47.16,522.37,2388.01,8.3945,392,38.83,23.4577 +65,29,-0.0009,0.0002,642.21,1589.3,1393.27,21.61,554.93,2387.99,9065.19,47.35,522.18,2387.97,8.4261,391,39.12,23.4114 +65,30,-0.004,-0.0002,641.98,1587.54,1404.47,21.61,553.92,2388.02,9061.88,47.28,522.04,2388.06,8.3866,391,39.14,23.4249 +65,31,-0.0007,-0.0002,642.48,1589.18,1398.78,21.6,554.5,2388.01,9058.69,47.3,522.34,2388.04,8.3961,391,38.94,23.4398 +65,32,0.0025,0.0002,641.98,1584.62,1398.58,21.61,553.64,2388.0,9061.0,47.19,521.96,2388.02,8.3691,394,38.93,23.354 +65,33,0.0007,0.0004,641.96,1584.08,1402.64,21.61,554.12,2388.01,9058.33,47.3,522.25,2387.98,8.4019,390,38.84,23.5443 +65,34,0.004,-0.0003,642.42,1582.25,1396.8,21.61,554.6,2388.03,9062.7,47.38,521.99,2388.05,8.3771,391,38.87,23.3753 +65,35,-0.002,0.0002,642.1,1586.79,1396.63,21.61,555.25,2388.03,9066.18,47.4,522.29,2388.0,8.3797,392,39.09,23.3618 +65,36,0.0005,-0.0004,642.36,1586.9,1393.82,21.61,553.46,2388.01,9063.84,47.41,521.89,2388.03,8.3766,392,38.99,23.442 +65,37,0.0017,-0.0001,641.99,1581.52,1392.3,21.61,554.22,2388.01,9061.59,47.26,522.38,2387.99,8.3932,391,39.04,23.3466 +65,38,0.0012,-0.0003,642.21,1584.63,1395.58,21.61,553.09,2388.01,9056.31,47.28,521.47,2387.98,8.4335,392,38.85,23.3588 +65,39,-0.0011,0.0002,642.16,1590.79,1392.99,21.61,554.66,2387.96,9056.12,47.23,522.33,2388.01,8.4302,393,39.12,23.4243 +65,40,-0.0011,0.0002,642.18,1581.15,1396.98,21.61,553.77,2388.0,9060.92,47.2,522.74,2388.02,8.4123,390,38.96,23.4495 +65,41,-0.0032,-0.0003,642.26,1586.91,1403.3,21.61,554.31,2388.03,9053.06,47.18,522.48,2388.02,8.4239,392,39.21,23.3799 +65,42,0.0048,0.0005,642.44,1581.24,1396.97,21.61,553.29,2388.08,9058.92,47.39,521.65,2388.04,8.3664,392,39.06,23.4386 +65,43,0.001,-0.0004,642.13,1585.74,1405.19,21.61,554.16,2388.03,9061.17,47.29,522.27,2388.04,8.4361,394,39.05,23.2935 +65,44,0.0011,-0.0001,642.0,1581.89,1396.59,21.61,554.77,2387.95,9063.68,47.19,522.03,2387.98,8.4057,391,38.88,23.4112 +65,45,0.0023,0.0006,642.23,1587.12,1405.46,21.61,554.72,2388.01,9060.87,46.99,522.75,2388.05,8.3891,391,39.04,23.3672 +65,46,0.0009,-0.0004,642.44,1589.28,1400.44,21.61,554.17,2388.03,9055.66,47.28,522.15,2388.03,8.4115,392,38.97,23.3909 +65,47,-0.0005,0.0003,641.82,1578.14,1396.33,21.61,555.05,2387.97,9054.61,47.25,521.84,2388.02,8.4105,391,38.91,23.4262 +65,48,-0.0018,0.0002,642.82,1582.29,1405.74,21.61,554.38,2388.04,9060.4,47.33,522.08,2388.0,8.4054,392,39.0,23.4352 +65,49,0.004,0.0004,642.38,1591.73,1399.78,21.6,554.38,2388.06,9064.52,47.02,522.62,2388.01,8.412,392,39.1,23.3363 +65,50,0.0009,-0.0003,642.15,1589.11,1396.8,21.61,554.55,2387.97,9057.39,47.21,521.93,2388.03,8.3836,391,39.02,23.3261 +65,51,-0.001,-0.0004,641.99,1580.77,1400.53,21.61,554.59,2388.01,9060.49,47.26,521.93,2388.02,8.4127,392,39.03,23.3782 +65,52,-0.0014,-0.0,641.9,1594.56,1394.55,21.61,553.93,2388.02,9055.96,47.43,522.12,2387.98,8.42,390,39.16,23.4334 +65,53,0.0028,-0.0001,642.13,1584.76,1401.47,21.61,554.4,2388.01,9050.96,47.36,522.47,2388.06,8.3981,391,38.86,23.3472 +65,54,-0.0034,-0.0002,642.37,1580.8,1398.72,21.61,553.44,2388.04,9063.22,47.26,522.34,2388.0,8.4115,391,38.84,23.3688 +65,55,0.0022,-0.0001,642.29,1585.11,1406.56,21.61,554.56,2388.03,9071.85,47.2,522.38,2388.05,8.4392,392,38.97,23.4107 +65,56,0.0025,0.0005,642.57,1585.0,1390.97,21.61,554.3,2387.99,9061.82,47.17,522.73,2388.0,8.4131,393,38.97,23.3405 +65,57,-0.0052,0.0001,642.76,1589.34,1402.4,21.61,555.14,2388.06,9050.6,47.25,521.95,2388.02,8.4261,393,39.01,23.2655 +65,58,0.0011,0.0002,642.21,1588.17,1402.59,21.61,554.66,2388.06,9062.24,47.33,521.97,2388.0,8.3812,391,39.03,23.4303 +65,59,0.0007,-0.0003,642.49,1588.86,1395.47,21.61,554.43,2388.03,9053.21,47.3,521.76,2388.01,8.4378,391,39.17,23.3957 +65,60,0.0012,0.0005,642.55,1584.18,1404.94,21.61,554.08,2387.99,9056.11,47.26,521.84,2388.03,8.4193,392,38.99,23.395 +65,61,0.0002,-0.0004,641.86,1578.79,1398.5,21.61,554.27,2388.05,9054.65,47.18,522.13,2388.06,8.396,394,39.05,23.4124 +65,62,-0.0013,-0.0002,641.97,1589.86,1407.54,21.61,554.28,2388.04,9061.93,47.23,522.1,2388.03,8.3851,392,38.82,23.456 +65,63,-0.0009,-0.0003,642.15,1580.75,1397.82,21.61,554.03,2388.04,9059.94,47.33,522.37,2388.04,8.4073,392,39.17,23.3757 +65,64,-0.0008,-0.0001,642.49,1583.8,1402.8,21.61,554.19,2388.0,9064.65,47.22,522.1,2388.03,8.361,393,39.1,23.3382 +65,65,-0.0015,0.0005,642.31,1582.02,1395.27,21.61,554.22,2388.06,9058.85,47.06,521.89,2388.04,8.403,393,38.82,23.379 +65,66,-0.0044,0.0003,642.39,1589.33,1403.99,21.61,554.03,2388.06,9057.85,47.24,522.17,2388.01,8.4189,393,38.78,23.346 +65,67,0.0005,0.0003,641.99,1593.34,1402.49,21.61,554.14,2388.0,9057.16,47.29,522.27,2388.01,8.3953,394,38.89,23.4619 +65,68,0.0009,0.0001,642.02,1593.28,1402.49,21.61,554.84,2388.05,9052.42,47.31,522.28,2387.97,8.3889,392,38.95,23.3527 +65,69,0.0034,0.0001,641.84,1582.1,1394.79,21.61,553.51,2388.08,9061.25,47.13,522.73,2388.07,8.4324,392,39.03,23.3273 +65,70,-0.0013,0.0003,642.1,1587.58,1403.36,21.61,554.38,2388.03,9062.18,47.27,522.06,2388.03,8.4001,392,38.94,23.3296 +65,71,0.0026,0.0001,642.02,1588.7,1407.64,21.61,553.5,2388.03,9061.9,47.37,522.29,2388.1,8.436,392,38.85,23.2803 +65,72,0.0033,0.0005,642.0,1583.69,1402.21,21.6,553.51,2388.07,9058.55,47.19,521.84,2388.1,8.4007,391,38.96,23.2972 +65,73,0.0009,-0.0002,641.9,1587.48,1401.78,21.61,554.3,2388.07,9062.24,47.38,522.22,2388.01,8.3809,391,39.09,23.4261 +65,74,-0.0034,0.0004,642.33,1587.39,1395.4,21.61,554.25,2388.07,9062.29,47.32,521.94,2388.07,8.417,391,38.89,23.3053 +65,75,0.0004,-0.0001,642.38,1579.38,1399.53,21.61,553.87,2388.04,9062.25,47.36,521.73,2388.0,8.4402,393,39.07,23.3104 +65,76,-0.0001,-0.0001,642.52,1583.39,1404.66,21.61,554.51,2388.01,9053.72,47.23,522.29,2388.02,8.3976,393,39.03,23.2327 +65,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381 +65,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567 +65,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814 +65,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207 +65,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022 +65,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228 +65,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182 +65,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997 +65,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541 +65,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648 +65,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305 +65,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645 +65,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347 +65,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452 +65,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659 +65,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362 +65,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392 +65,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952 +65,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558 +65,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494 +65,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445 +65,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322 +65,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724 +65,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342 +65,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181 +65,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928 +65,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005 +65,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102 +65,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304 +65,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14 +65,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292 +65,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239 +65,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654 +65,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801 +65,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121 +65,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041 +65,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377 +65,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795 +65,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318 +65,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439 +65,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876 +65,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416 +65,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339 +65,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171 +65,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646 +65,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528 +65,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099 +65,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458 +65,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334 +65,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517 +65,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031 +65,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589 +65,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984 +65,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168 +65,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282 +65,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282 +65,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412 +65,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528 +65,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223 +65,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708 +65,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601 +65,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241 +65,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875 +65,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125 +65,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204 +65,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883 +65,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346 +65,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255 +65,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066 +65,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039 +65,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239 +65,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135 +65,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331 +65,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119 +65,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744 +65,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309 +65,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362 +66,10,-0.0006,0.0001,643.01,1585.32,1407.68,21.61,552.93,2388.14,9054.16,47.65,521.1,2388.09,8.4651,394,38.66,23.4151 +66,11,0.002,0.0005,642.68,1597.09,1409.66,21.61,552.51,2388.06,9052.27,47.39,521.22,2388.13,8.4563,393,38.71,23.2859 +66,12,-0.0018,-0.0002,643.35,1585.12,1413.91,21.61,553.44,2388.13,9061.18,47.63,520.83,2388.14,8.4068,395,38.95,23.2115 +66,13,-0.0018,-0.0001,643.01,1592.68,1411.43,21.61,553.53,2388.14,9059.76,47.73,521.09,2388.09,8.4528,393,38.95,23.2095 +66,14,-0.0019,-0.0004,643.1,1589.64,1412.5,21.61,553.5,2388.12,9056.71,47.58,521.25,2388.15,8.4475,393,38.71,23.2269 +66,15,-0.0034,-0.0001,642.96,1591.16,1409.03,21.61,553.47,2388.09,9063.58,47.77,520.82,2388.09,8.465,392,38.79,23.1692 +66,16,-0.0045,0.0002,642.75,1596.49,1409.58,21.61,553.5,2388.14,9056.75,47.55,521.75,2388.13,8.4559,395,38.78,23.1988 +66,17,0.0033,0.0001,642.97,1589.07,1412.03,21.61,553.07,2388.08,9059.87,47.47,520.77,2388.11,8.4574,394,38.93,23.3128 +66,18,0.0032,0.0003,642.98,1593.98,1409.59,21.61,553.59,2388.16,9060.55,47.44,521.32,2388.12,8.4463,392,38.87,23.2896 +66,19,0.0035,0.0003,642.68,1595.57,1412.68,21.61,552.84,2388.03,9066.34,47.49,521.27,2388.13,8.432,394,38.88,23.388 +66,20,0.0037,0.0003,642.51,1587.16,1413.35,21.61,552.46,2388.1,9060.45,47.6,521.41,2388.12,8.4176,393,38.84,23.3693 +66,21,-0.0022,-0.0004,642.41,1594.01,1410.24,21.61,552.6,2388.13,9057.91,47.67,521.62,2388.07,8.445,393,38.68,23.2409 +66,22,0.0013,-0.0003,642.34,1591.67,1407.94,21.61,553.07,2388.17,9066.27,47.46,521.4,2388.14,8.4284,392,38.75,23.4009 +66,23,0.0017,0.0004,642.87,1593.53,1420.02,21.61,553.33,2388.1,9058.75,47.68,521.2,2388.1,8.4516,393,38.8,23.3824 +66,24,0.0016,-0.0002,642.48,1586.77,1405.83,21.61,553.37,2388.15,9060.56,47.65,521.53,2388.07,8.4074,393,38.97,23.3852 +66,25,-0.0022,-0.0004,642.82,1591.1,1416.26,21.61,553.22,2388.08,9058.37,47.6,520.8,2388.11,8.4524,393,38.75,23.1491 +66,26,-0.0029,0.0001,642.52,1592.06,1409.87,21.61,553.49,2388.09,9058.18,47.5,521.83,2388.12,8.4647,393,38.85,23.2384 +66,27,-0.0003,-0.0002,642.84,1584.97,1415.65,21.61,552.73,2388.13,9066.67,47.55,520.78,2388.08,8.4371,394,38.79,23.3053 +66,28,-0.0019,-0.0002,642.27,1586.41,1415.54,21.61,553.62,2388.08,9058.81,47.56,521.52,2388.09,8.4652,393,38.55,23.3794 +66,29,-0.0003,-0.0002,642.88,1578.03,1415.63,21.61,553.27,2388.16,9064.34,47.59,521.36,2388.11,8.4152,393,38.83,23.2144 +66,30,-0.0028,0.0005,642.33,1593.33,1404.77,21.61,553.24,2388.12,9057.26,47.61,521.39,2388.11,8.4608,394,38.75,23.2144 +66,31,-0.0017,-0.0001,643.07,1596.34,1401.68,21.61,553.75,2388.12,9060.3,47.55,521.38,2388.11,8.4565,392,38.9,23.3183 +66,32,0.0012,0.0002,642.24,1583.19,1408.02,21.61,553.59,2388.13,9053.72,47.54,521.27,2388.11,8.44,393,38.89,23.2433 +66,33,0.001,0.0001,642.53,1595.44,1409.96,21.61,553.41,2388.12,9062.43,47.32,521.57,2388.13,8.4341,392,38.83,23.3394 +66,34,0.002,-0.0,642.84,1593.96,1409.91,21.61,552.43,2388.09,9060.99,47.58,520.97,2388.12,8.4607,392,38.76,23.2984 +66,35,-0.003,0.0002,642.43,1591.41,1416.38,21.61,553.43,2388.12,9062.4,47.52,521.02,2388.13,8.4554,395,38.66,23.3328 +66,36,-0.0036,0.0004,642.38,1578.44,1412.53,21.61,553.0,2388.11,9061.67,47.49,521.37,2388.09,8.4497,394,38.8,23.2919 +66,37,0.0028,0.0003,642.74,1593.29,1406.74,21.61,553.05,2388.13,9046.72,47.56,521.63,2388.12,8.4495,394,38.83,23.208 +66,38,-0.0038,0.0002,642.95,1597.33,1410.17,21.61,553.06,2388.11,9057.99,47.42,521.49,2388.11,8.5098,393,38.77,23.2678 +66,39,-0.0057,-0.0001,642.75,1591.05,1408.61,21.61,552.99,2388.11,9059.74,47.5,521.49,2388.13,8.459,394,38.82,23.2896 +66,40,0.003,0.0003,642.74,1588.86,1412.18,21.61,552.75,2388.12,9064.13,47.72,521.08,2388.09,8.4348,394,38.73,23.2737 +66,41,-0.0031,0.0005,642.81,1591.27,1410.36,21.61,553.17,2388.13,9053.62,47.51,520.95,2388.11,8.4284,394,38.79,23.3166 +66,42,-0.0004,0.0002,642.99,1586.7,1404.56,21.61,552.74,2388.11,9057.03,47.44,521.6,2388.12,8.4496,393,38.83,23.2515 +66,43,-0.0014,0.0002,642.43,1596.57,1405.88,21.61,552.94,2388.15,9063.8,47.5,521.85,2388.11,8.4728,393,38.72,23.3286 +66,44,-0.0007,0.0004,642.64,1585.61,1415.51,21.61,553.21,2388.11,9052.49,47.56,521.02,2388.1,8.4453,393,38.64,23.3008 +66,45,0.0001,0.0003,642.91,1593.34,1414.97,21.61,553.38,2388.08,9060.31,47.83,521.22,2388.15,8.4486,393,38.77,23.2148 +66,46,0.0041,0.0002,642.76,1585.52,1408.89,21.61,553.36,2388.12,9052.33,47.71,521.4,2388.14,8.4494,393,38.71,23.2489 +66,47,-0.0016,-0.0,642.95,1591.55,1408.93,21.61,553.15,2388.13,9062.54,47.43,521.36,2388.13,8.4544,394,38.74,23.2815 +66,48,-0.0016,0.0003,642.87,1588.45,1409.54,21.61,553.06,2388.15,9060.28,47.47,521.23,2388.12,8.4226,394,38.82,23.1818 +66,49,0.0014,0.0,642.84,1588.26,1417.22,21.61,552.79,2388.17,9060.24,47.47,521.08,2388.11,8.442,394,38.77,23.2633 +66,50,-0.0049,0.0001,642.17,1583.51,1403.1,21.61,553.14,2388.13,9067.4,47.55,521.61,2388.11,8.4307,394,38.68,23.2547 +66,51,0.0016,-0.0001,642.69,1589.82,1409.71,21.61,553.29,2388.12,9056.34,47.47,521.8,2388.12,8.4679,394,38.42,23.3029 +66,52,0.0009,0.0002,642.74,1592.39,1414.12,21.61,553.9,2388.11,9055.65,47.55,521.41,2388.09,8.4129,394,38.83,23.2568 +66,53,-0.0016,-0.0,642.86,1593.67,1408.88,21.61,552.92,2388.12,9059.56,47.73,521.03,2388.15,8.4671,395,38.84,23.1943 +66,54,0.0007,-0.0003,642.76,1592.62,1416.68,21.61,553.9,2388.08,9055.4,47.53,520.88,2388.13,8.4681,393,38.71,23.2738 +66,55,0.0001,-0.0001,643.04,1590.8,1415.68,21.61,553.57,2388.13,9052.59,47.67,520.55,2388.12,8.4184,393,38.84,23.2539 +66,56,-0.0017,0.0004,642.49,1594.37,1408.46,21.61,553.04,2388.19,9059.12,47.6,521.08,2388.16,8.4717,393,39.07,23.2673 +66,57,-0.0015,0.0004,643.03,1590.41,1402.9,21.61,552.9,2388.16,9060.24,47.54,520.84,2388.17,8.445,393,38.65,23.3415 +66,58,0.0008,0.0,642.65,1592.64,1403.32,21.61,552.78,2388.07,9058.83,47.63,521.54,2388.14,8.4731,393,38.76,23.3335 +66,59,-0.0012,0.0,643.51,1583.68,1400.97,21.6,552.59,2388.08,9061.22,47.57,521.29,2388.13,8.442,394,38.77,23.3047 +66,60,0.0026,-0.0002,642.62,1590.24,1409.74,21.61,553.68,2388.16,9060.11,47.44,521.12,2388.11,8.4498,393,38.81,23.1931 +66,61,-0.0006,0.0005,643.07,1592.59,1417.56,21.61,552.48,2388.15,9049.6,47.7,520.96,2388.11,8.4475,393,38.69,23.271 +66,62,0.0008,-0.0004,643.13,1592.7,1402.78,21.61,553.25,2388.15,9058.88,47.47,521.65,2388.08,8.444,393,38.77,23.3647 +66,63,-0.0057,-0.0004,642.39,1593.77,1409.87,21.61,552.71,2388.14,9055.66,47.45,520.53,2388.16,8.4613,394,38.88,23.2543 +66,64,0.0013,0.0003,642.67,1590.56,1409.16,21.61,553.61,2388.12,9058.02,47.65,521.17,2388.15,8.4548,392,38.69,23.2712 +66,65,-0.0023,0.0005,642.58,1590.41,1414.62,21.61,552.51,2388.09,9060.44,47.7,521.41,2388.16,8.4466,394,38.79,23.2587 +66,66,-0.0017,0.0,642.25,1589.61,1407.56,21.61,553.12,2388.14,9058.21,47.59,521.37,2388.1,8.4447,393,38.7,23.2472 +66,67,0.0032,-0.0,642.94,1588.9,1409.7,21.61,553.03,2388.17,9059.8,47.39,521.4,2388.13,8.4281,394,38.8,23.3265 +66,68,0.0016,0.0003,642.92,1591.56,1416.1,21.61,552.73,2388.09,9057.72,47.66,521.35,2388.13,8.4586,393,38.87,23.2804 +66,69,-0.0029,-0.0004,642.56,1598.29,1416.27,21.61,553.28,2388.14,9060.21,47.81,521.14,2388.17,8.4774,396,38.8,23.1921 +66,70,-0.0009,0.0005,642.86,1595.19,1413.74,21.61,553.08,2388.16,9058.48,47.61,520.57,2388.1,8.4445,395,38.73,23.204 +66,71,0.0034,0.0002,642.8,1597.82,1418.16,21.61,553.43,2388.13,9063.98,47.61,521.22,2388.12,8.4825,393,38.71,23.2272 +66,72,-0.001,-0.0,643.05,1595.28,1405.17,21.61,553.33,2388.14,9062.7,47.57,520.67,2388.11,8.4708,394,38.77,23.3511 +66,73,0.0002,-0.0003,642.49,1594.25,1402.3,21.61,552.8,2388.14,9050.38,47.76,521.17,2388.14,8.4468,393,38.75,23.1808 +66,74,0.001,0.0004,642.84,1594.0,1412.25,21.61,553.62,2388.13,9065.44,47.83,520.88,2388.07,8.4377,391,38.75,23.2573 +66,75,0.0018,-0.0,642.4,1583.47,1409.56,21.61,553.05,2388.14,9055.93,47.54,520.67,2388.11,8.4897,394,38.51,23.2773 +66,76,0.0018,-0.0002,643.01,1593.29,1414.12,21.61,552.81,2388.17,9059.05,47.53,521.18,2388.13,8.4501,395,38.65,23.2404 +66,77,-0.0007,-0.0003,643.35,1587.93,1416.03,21.61,554.19,2388.12,9062.67,47.72,521.26,2388.16,8.4648,396,38.8,23.21 +66,78,-0.0004,-0.0,642.6,1591.0,1414.81,21.61,553.62,2388.12,9056.67,47.49,521.19,2388.1,8.4339,394,38.95,23.2255 +66,79,0.0018,0.0004,642.73,1587.76,1415.86,21.61,553.42,2388.16,9060.69,47.54,521.08,2388.1,8.4597,395,38.57,23.2807 +66,80,-0.0017,-0.0003,643.03,1594.31,1409.21,21.61,552.71,2388.19,9057.19,47.61,521.43,2388.16,8.4394,395,38.75,23.2244 +66,81,-0.0007,0.0005,642.49,1591.3,1411.62,21.61,553.2,2388.1,9060.08,47.74,521.1,2388.13,8.4399,395,38.97,23.2573 +66,82,0.0009,0.0001,642.81,1594.7,1417.75,21.61,553.82,2388.13,9057.91,47.59,521.12,2388.13,8.4704,394,38.64,23.2523 +66,83,0.0033,0.0003,642.72,1593.91,1413.06,21.61,553.4,2388.14,9064.88,47.81,520.55,2388.15,8.4451,394,38.82,23.3822 +66,84,-0.0008,-0.0004,642.85,1588.81,1405.82,21.61,552.79,2388.1,9064.7,47.63,521.19,2388.17,8.4846,394,38.69,23.2592 +66,85,0.002,0.0004,642.39,1587.04,1411.98,21.61,552.9,2388.14,9058.99,47.68,521.17,2388.12,8.4344,394,38.82,23.2869 +66,86,-0.0009,-0.0,642.72,1596.02,1412.75,21.61,552.93,2388.13,9063.71,47.76,520.97,2388.09,8.4785,393,38.51,23.3101 +66,87,-0.0025,-0.0003,643.06,1591.39,1413.86,21.61,552.63,2388.17,9062.01,47.67,521.11,2388.12,8.4382,395,38.7,23.1691 +66,88,-0.0007,-0.0,643.25,1597.1,1410.91,21.61,553.72,2388.1,9059.84,47.58,521.35,2388.17,8.4497,393,38.8,23.2787 +66,89,-0.0035,-0.0001,642.67,1591.93,1415.66,21.61,553.15,2388.12,9061.46,47.9,520.96,2388.09,8.4524,393,38.63,23.2547 +66,90,0.0019,0.0004,642.96,1595.04,1414.86,21.61,553.25,2388.11,9058.6,47.64,521.32,2388.11,8.4287,394,38.72,23.2608 +66,91,-0.0024,-0.0001,642.88,1590.59,1414.37,21.61,553.17,2388.17,9060.47,47.75,521.0,2388.16,8.4128,395,38.96,23.3443 +66,92,0.0011,-0.0003,642.97,1592.3,1404.11,21.61,552.9,2388.14,9060.41,47.8,520.49,2388.15,8.4608,393,38.66,23.2315 +66,93,-0.0002,0.0003,642.85,1594.16,1411.15,21.61,553.2,2388.12,9062.02,47.86,520.78,2388.12,8.4515,394,38.63,23.2976 +66,94,0.0006,-0.0003,642.4,1589.59,1419.34,21.61,553.62,2388.14,9068.26,47.66,521.56,2388.1,8.4745,394,38.77,23.3304 +66,95,0.0031,0.0004,642.76,1595.63,1412.0,21.61,553.4,2388.13,9063.0,47.47,521.17,2388.16,8.4248,396,38.74,23.2198 +66,96,0.0019,0.0004,642.84,1590.28,1411.8,21.61,552.41,2388.12,9066.07,47.65,520.92,2388.15,8.4746,393,38.63,23.2604 +66,97,-0.0037,0.0004,643.46,1593.91,1414.21,21.61,553.34,2388.11,9069.06,47.61,520.9,2388.12,8.5105,394,38.64,23.2791 +66,98,0.0011,0.0004,642.63,1592.27,1412.73,21.61,551.88,2388.13,9058.0,47.78,520.7,2388.14,8.4678,393,38.68,23.1751 +66,99,-0.0019,-0.0003,642.92,1593.69,1419.54,21.61,552.34,2388.16,9063.38,47.91,521.12,2388.17,8.453,394,38.57,23.2433 +66,100,0.0004,-0.0005,642.47,1594.55,1414.52,21.61,552.69,2388.09,9061.1,47.56,521.3,2388.14,8.4624,394,38.52,23.3214 +66,101,0.0018,-0.0003,642.99,1596.66,1420.26,21.61,553.09,2388.11,9055.47,47.67,521.2,2388.14,8.4544,392,38.74,23.3497 +66,102,-0.0,-0.0004,643.0,1596.19,1413.87,21.61,552.98,2388.15,9060.1,47.63,520.74,2388.16,8.4824,394,38.91,23.2184 +66,103,0.0014,0.0002,642.1,1592.25,1416.52,21.61,553.56,2388.11,9061.9,47.73,520.89,2388.15,8.415,393,38.56,23.2684 +66,104,0.0014,-0.0002,643.52,1590.94,1415.8,21.61,552.85,2388.15,9061.71,47.46,521.19,2388.15,8.4582,394,38.78,23.2951 +66,105,-0.0015,0.0003,643.03,1590.39,1408.71,21.61,552.22,2388.12,9065.97,47.51,521.64,2388.15,8.4581,395,38.77,23.2741 +66,106,-0.0,-0.0004,642.73,1591.57,1407.56,21.61,552.49,2388.13,9067.69,47.82,521.37,2388.1,8.4583,396,38.79,23.1354 +66,107,-0.001,0.0,643.08,1592.71,1410.4,21.61,552.66,2388.14,9054.77,47.77,520.89,2388.08,8.4657,393,38.8,23.3389 +66,108,0.0039,0.0005,642.92,1598.06,1424.91,21.61,553.35,2388.18,9064.41,47.77,521.24,2388.17,8.4988,394,38.59,23.2784 +66,109,0.001,-0.0003,642.84,1593.7,1416.95,21.61,552.88,2388.09,9063.88,47.74,521.26,2388.12,8.4708,395,38.87,23.2588 +66,110,0.0005,-0.0003,642.64,1592.69,1415.97,21.61,552.3,2388.09,9064.26,47.64,520.87,2388.1,8.4598,394,38.7,23.2856 +66,111,0.0004,0.0005,642.46,1589.54,1411.27,21.61,552.81,2388.13,9061.62,47.69,520.65,2388.13,8.4786,394,38.77,23.1634 +66,112,-0.0034,-0.0001,642.96,1592.14,1414.03,21.61,552.76,2388.2,9057.58,47.49,521.07,2388.18,8.46,395,38.91,23.1704 +66,113,0.0005,0.0004,643.38,1587.21,1409.87,21.61,552.8,2388.1,9066.9,47.57,521.01,2388.14,8.4542,394,38.66,23.0468 +66,114,-0.0022,-0.0004,642.96,1591.93,1408.49,21.61,554.14,2388.12,9065.7,47.75,520.87,2388.14,8.4339,395,38.72,23.2465 +66,115,0.0009,-0.0004,643.11,1587.97,1417.39,21.61,552.21,2388.13,9063.2,47.83,519.89,2388.15,8.4419,394,38.8,23.2338 +66,116,-0.0032,0.0,642.57,1604.59,1416.41,21.61,552.84,2388.13,9060.63,47.67,520.94,2388.16,8.503,394,38.81,23.1902 +66,117,-0.0,0.0003,642.75,1590.27,1412.77,21.61,552.35,2388.14,9068.35,47.59,521.88,2388.14,8.4263,394,38.89,23.2963 +66,118,0.0026,0.0,643.13,1600.86,1419.06,21.61,552.79,2388.15,9062.46,47.72,521.44,2388.18,8.4408,394,38.75,23.1515 +66,119,0.0001,-0.0,642.71,1592.43,1417.38,21.61,552.22,2388.17,9062.0,47.76,520.55,2388.14,8.4678,393,38.61,23.1895 +66,120,0.0008,-0.0001,642.91,1598.67,1422.37,21.61,551.69,2388.14,9062.33,47.62,520.91,2388.18,8.4812,396,38.74,23.3044 +66,121,0.0014,0.0004,642.68,1592.98,1414.32,21.61,553.09,2388.16,9063.8,47.8,520.9,2388.19,8.4524,394,38.61,23.2779 +66,122,-0.0008,-0.0001,642.91,1588.52,1413.46,21.61,552.98,2388.14,9060.46,47.64,521.01,2388.14,8.4636,393,38.79,23.3088 +66,123,0.0024,-0.0002,643.2,1591.23,1415.26,21.61,553.2,2388.2,9060.27,47.83,521.07,2388.08,8.45,395,38.63,23.2762 +66,124,0.0008,0.0002,643.24,1591.37,1419.95,21.61,553.41,2388.18,9055.93,47.75,520.93,2388.19,8.4742,395,38.57,23.1313 +66,125,-0.0026,-0.0001,642.96,1594.81,1421.01,21.61,552.43,2388.13,9070.17,47.66,521.15,2388.17,8.4656,393,38.62,23.291 +66,126,-0.0043,0.0003,643.17,1588.41,1419.02,21.61,552.45,2388.2,9059.16,47.74,520.71,2388.1,8.4869,394,38.69,23.2647 +66,127,0.0003,-0.0002,643.2,1597.3,1422.39,21.61,552.43,2388.19,9066.86,47.75,520.87,2388.17,8.4927,393,38.7,23.2664 +66,128,-0.0,0.0003,643.06,1592.22,1417.57,21.61,552.24,2388.15,9064.82,47.8,520.53,2388.16,8.4474,394,38.78,23.2567 +66,129,0.001,-0.0003,643.16,1596.23,1410.47,21.61,553.39,2388.09,9058.84,47.73,520.13,2388.16,8.4682,392,38.76,23.2738 +66,130,-0.0014,0.0,643.19,1589.35,1413.36,21.61,552.69,2388.16,9064.78,47.83,520.84,2388.14,8.4586,393,38.69,23.3396 +66,131,-0.0036,0.0003,642.7,1590.86,1406.56,21.61,552.43,2388.16,9059.3,47.98,521.24,2388.11,8.4815,395,38.76,23.2253 +66,132,0.0002,0.0002,642.8,1596.19,1408.12,21.61,552.28,2388.13,9058.62,47.88,520.75,2388.15,8.4716,395,38.61,23.2315 +66,133,0.0005,0.0002,642.83,1592.18,1419.62,21.61,552.28,2388.1,9062.54,47.88,520.14,2388.17,8.4992,396,38.78,23.1822 +66,134,-0.001,0.0001,642.8,1592.84,1415.18,21.61,552.55,2388.16,9068.98,47.74,520.71,2388.14,8.4808,395,38.63,23.2054 +66,135,-0.0014,-0.0001,642.85,1596.31,1415.79,21.61,552.26,2388.18,9073.15,47.78,520.46,2388.14,8.4666,392,38.66,23.2248 +66,136,-0.0002,0.0,642.68,1596.87,1417.48,21.61,552.9,2388.16,9070.69,47.81,520.56,2388.12,8.4465,392,38.72,23.2477 +66,137,-0.0007,0.0005,642.74,1598.05,1421.71,21.61,553.24,2388.17,9056.47,47.94,520.89,2388.1,8.477,394,38.8,23.311 +66,138,0.0006,0.0004,643.13,1592.62,1409.1,21.61,553.06,2388.16,9060.8,47.75,521.04,2388.16,8.4619,395,38.84,23.1605 +66,139,0.0014,0.0004,642.83,1598.96,1413.41,21.61,553.1,2388.17,9063.01,47.76,520.97,2388.15,8.4995,395,38.74,23.2345 +66,140,-0.0007,0.0005,643.19,1585.92,1415.92,21.61,552.44,2388.1,9065.47,47.88,520.92,2388.16,8.4526,395,38.8,23.2401 +66,141,0.0001,-0.0001,642.6,1594.96,1417.8,21.61,551.62,2388.14,9059.61,47.84,520.34,2388.15,8.476,393,38.55,23.2957 +66,142,0.0011,-0.0004,642.54,1589.71,1414.81,21.61,553.17,2388.14,9069.69,47.94,520.9,2388.15,8.4578,394,38.51,23.2085 +66,143,0.0025,0.0,642.99,1594.82,1419.5,21.61,552.29,2388.18,9066.22,47.66,520.61,2388.16,8.4577,396,38.77,23.1781 +66,144,0.0008,0.0003,643.18,1596.42,1424.16,21.61,551.89,2388.14,9057.48,47.67,520.34,2388.14,8.4973,395,38.76,23.1494 +66,145,-0.0016,-0.0003,642.64,1596.62,1423.21,21.61,553.07,2388.16,9067.37,47.75,520.87,2388.13,8.4644,393,38.75,23.2505 +66,146,0.0031,0.0001,643.0,1598.01,1416.72,21.61,552.51,2388.17,9066.46,48.01,520.22,2388.16,8.4699,397,38.67,23.3421 +66,147,-0.002,0.0004,642.87,1596.97,1406.65,21.61,551.55,2388.17,9062.84,47.81,520.55,2388.12,8.4919,394,38.59,23.0992 +66,148,0.0012,0.0001,642.87,1591.66,1418.66,21.61,552.68,2388.17,9066.51,47.84,520.62,2388.14,8.469,394,38.47,23.2967 +66,149,-0.0016,0.0003,642.45,1589.23,1414.91,21.61,551.77,2388.19,9066.78,47.83,520.6,2388.17,8.4372,395,38.66,23.2616 +66,150,-0.0016,0.0004,643.49,1600.5,1419.76,21.61,552.68,2388.13,9063.8,47.8,520.62,2388.15,8.4942,394,38.64,23.1884 +66,151,-0.0012,0.0,643.01,1596.46,1419.09,21.61,552.87,2388.18,9068.31,47.89,520.45,2388.15,8.4948,394,38.55,23.2189 +66,152,-0.001,0.0004,643.41,1594.81,1421.02,21.61,552.2,2388.2,9069.14,47.6,520.93,2388.19,8.4759,396,38.69,23.2067 +66,153,0.0013,-0.0004,643.36,1600.05,1415.28,21.61,552.16,2388.19,9071.17,47.86,520.64,2388.12,8.4999,394,38.78,23.2127 +66,154,-0.0007,0.0005,643.15,1596.78,1417.85,21.61,552.49,2388.16,9066.41,47.75,520.09,2388.15,8.4818,394,38.68,23.2545 +66,155,-0.0,0.0005,643.24,1592.27,1415.53,21.61,552.36,2388.19,9059.23,47.98,520.51,2388.17,8.4715,394,38.5,23.2333 +66,156,-0.0009,0.0002,643.32,1591.09,1420.74,21.61,551.6,2388.16,9067.04,47.82,520.5,2388.12,8.4989,394,38.73,23.1317 +66,157,0.0019,-0.0002,643.15,1598.25,1421.25,21.61,551.99,2388.18,9063.43,47.83,520.69,2388.19,8.4552,395,38.56,23.1973 +66,158,-0.0003,0.0002,642.93,1599.6,1419.9,21.61,552.39,2388.17,9066.07,47.93,520.43,2388.15,8.4841,396,38.56,23.1794 +66,159,0.003,-0.0001,643.45,1596.72,1420.58,21.61,552.43,2388.11,9069.03,47.88,520.7,2388.19,8.5028,395,38.66,23.1644 +66,160,0.0007,0.0005,643.18,1601.61,1415.26,21.61,551.86,2388.14,9069.04,47.64,520.49,2388.16,8.5108,394,38.61,23.088 +66,161,0.0031,-0.0004,643.42,1590.04,1429.6,21.61,552.66,2388.22,9073.96,47.93,520.6,2388.12,8.4925,394,38.72,23.275 +66,162,-0.0006,0.0003,643.19,1601.94,1416.59,21.61,551.07,2388.18,9066.74,47.84,520.58,2388.14,8.4878,394,38.55,23.2219 +66,163,0.0011,0.0003,643.4,1596.43,1419.21,21.61,552.21,2388.22,9068.66,47.91,520.62,2388.2,8.4651,395,38.67,23.1543 +66,164,0.0022,0.0005,643.31,1598.15,1420.32,21.61,551.87,2388.21,9065.5,47.78,520.12,2388.2,8.5046,397,38.57,23.2115 +66,165,-0.0007,0.0002,642.87,1599.03,1425.76,21.61,551.94,2388.21,9066.27,48.04,520.26,2388.21,8.4755,395,38.76,23.1956 +66,166,-0.0024,-0.0001,643.3,1595.73,1418.03,21.61,552.11,2388.16,9063.1,48.03,520.96,2388.19,8.4823,396,38.63,23.1222 +66,167,0.0022,0.0005,643.44,1599.56,1418.23,21.61,552.24,2388.16,9063.69,47.85,520.18,2388.16,8.5379,395,38.72,23.0667 +66,168,-0.001,-0.0002,643.28,1598.71,1418.4,21.61,551.6,2388.23,9068.96,47.85,520.42,2388.21,8.5061,395,38.71,23.0721 +66,169,0.0025,0.0004,643.24,1601.51,1420.05,21.61,552.21,2388.16,9063.12,47.91,520.15,2388.18,8.4889,395,38.44,23.2362 +66,170,0.0014,-0.0002,643.15,1599.32,1419.86,21.61,552.25,2388.18,9063.88,47.92,520.46,2388.2,8.5163,396,38.41,23.1193 +66,171,0.0002,0.0001,643.18,1596.93,1420.62,21.61,552.39,2388.21,9072.58,48.08,520.06,2388.21,8.4847,395,38.51,23.1056 +66,172,-0.0014,-0.0002,642.9,1596.66,1425.51,21.61,552.54,2388.15,9072.12,47.94,520.47,2388.18,8.5346,395,38.54,23.1045 +66,173,-0.0005,0.0002,643.28,1593.14,1421.27,21.61,552.4,2388.22,9066.98,47.82,520.44,2388.21,8.4888,396,38.35,23.1389 +66,174,-0.0019,0.0005,643.36,1598.8,1419.28,21.61,552.17,2388.2,9073.07,47.9,520.57,2388.21,8.4928,394,38.78,23.2622 +66,175,-0.002,-0.0002,643.3,1600.35,1423.58,21.61,552.57,2388.19,9066.12,48.04,519.96,2388.19,8.5161,393,38.53,23.1516 +66,176,0.0027,-0.0004,643.46,1597.68,1420.84,21.61,552.13,2388.23,9069.49,48.02,520.85,2388.2,8.4722,394,38.58,23.105 +66,177,0.0011,0.0002,643.42,1604.56,1419.93,21.61,551.87,2388.21,9072.37,47.93,519.71,2388.2,8.5005,395,38.53,23.0751 +66,178,0.0023,0.0004,643.72,1595.63,1421.71,21.61,551.96,2388.21,9066.94,48.08,520.44,2388.2,8.4975,395,38.61,23.2215 +66,179,-0.004,-0.0004,643.99,1599.32,1424.47,21.61,552.02,2388.15,9074.82,47.77,520.33,2388.25,8.4591,395,38.62,23.0994 +66,180,0.005,0.0004,643.35,1596.28,1422.79,21.61,551.81,2388.25,9073.91,48.17,520.21,2388.19,8.5092,396,38.57,23.2195 +66,181,-0.0002,0.0004,643.34,1591.98,1428.92,21.61,551.94,2388.2,9077.12,47.83,519.83,2388.21,8.5068,397,38.55,23.0904 +66,182,0.0017,-0.0004,643.11,1601.35,1425.6,21.61,552.14,2388.16,9081.19,48.0,519.96,2388.23,8.5067,396,38.48,23.1849 +66,183,0.0012,-0.0004,643.8,1602.49,1429.44,21.61,551.92,2388.18,9074.69,47.89,520.04,2388.2,8.5367,395,38.55,23.1005 +66,184,0.0009,-0.0005,643.48,1597.75,1437.07,21.61,551.37,2388.19,9077.42,47.91,520.25,2388.17,8.4956,396,38.66,23.1035 +66,185,0.0011,-0.0003,643.67,1597.24,1424.0,21.61,552.34,2388.17,9068.9,48.09,519.82,2388.22,8.505,396,38.55,23.1959 +66,186,-0.0003,0.0001,642.99,1600.63,1419.24,21.61,551.63,2388.19,9065.7,47.98,519.83,2388.19,8.4989,396,38.63,23.1281 +66,187,-0.0004,-0.0004,643.44,1596.66,1427.54,21.61,552.1,2388.15,9070.75,48.06,520.19,2388.23,8.5204,396,38.45,23.0466 +66,188,0.0035,0.0003,643.43,1601.28,1423.66,21.61,551.36,2388.19,9073.87,48.1,520.36,2388.25,8.5068,395,38.68,23.0917 +66,189,0.0002,0.0003,643.76,1605.79,1426.83,21.61,552.12,2388.22,9071.12,48.21,520.13,2388.23,8.5018,396,38.44,23.1488 +66,190,0.0058,-0.0003,644.04,1596.5,1426.16,21.61,551.67,2388.25,9065.47,48.05,519.9,2388.26,8.5197,396,38.58,23.0412 +66,191,-0.0026,-0.0001,643.22,1600.93,1425.71,21.61,551.74,2388.23,9072.43,47.99,519.83,2388.26,8.531,397,38.45,23.0688 +66,192,0.0014,-0.0002,643.56,1603.09,1425.65,21.61,551.2,2388.26,9075.68,48.24,519.84,2388.26,8.4995,396,38.54,23.0324 +66,193,0.001,0.0004,644.0,1593.62,1428.99,21.61,551.91,2388.23,9076.2,48.14,519.87,2388.24,8.4859,395,38.47,23.1854 +66,194,0.0019,-0.0,642.98,1597.2,1429.25,21.61,551.57,2388.24,9078.85,48.17,520.3,2388.18,8.5307,397,38.31,22.9917 +66,195,-0.0002,0.0001,643.73,1598.27,1426.74,21.61,551.89,2388.22,9078.36,48.07,519.58,2388.27,8.5285,396,38.41,23.1756 +66,196,0.0035,0.0002,643.5,1603.22,1422.52,21.61,551.58,2388.21,9079.1,48.0,519.85,2388.24,8.5333,396,38.33,23.091 +66,197,-0.0008,-0.0003,643.24,1602.18,1434.96,21.61,551.35,2388.28,9078.31,48.28,519.82,2388.23,8.5088,397,38.54,23.1617 +66,198,0.0013,-0.0,643.37,1604.07,1424.13,21.61,550.99,2388.22,9075.72,47.98,519.3,2388.2,8.5147,396,38.58,23.1127 +66,199,0.0002,0.0004,643.43,1605.43,1430.21,21.61,551.22,2388.23,9078.0,48.15,519.89,2388.25,8.4984,397,38.52,23.0267 +66,200,-0.0014,-0.0003,643.66,1595.1,1431.68,21.61,551.1,2388.16,9077.16,48.13,519.5,2388.26,8.5277,395,38.46,23.0516 +66,201,-0.0011,0.0003,643.02,1599.4,1429.37,21.61,551.13,2388.29,9074.71,48.31,519.56,2388.23,8.5424,395,38.42,22.9784 +66,202,-0.0038,0.0004,643.88,1607.66,1429.38,21.61,551.53,2388.23,9071.25,48.19,519.38,2388.25,8.5382,396,38.38,23.1412 +67,10,0.0047,0.0003,641.96,1581.35,1406.78,21.61,553.05,2388.04,9058.78,47.42,521.88,2388.08,8.3857,392,38.9,23.3331 +67,11,0.0036,-0.0001,641.95,1590.54,1400.88,21.61,553.92,2388.09,9056.72,47.24,522.33,2388.05,8.4332,394,39.16,23.3903 +67,12,-0.0015,0.0,642.52,1589.2,1398.12,21.61,553.63,2388.02,9063.19,47.41,521.69,2388.04,8.3826,393,39.05,23.3721 +67,13,0.0017,-0.0002,642.14,1587.24,1404.68,21.61,554.04,2388.1,9068.16,47.28,521.97,2388.05,8.4271,393,38.89,23.3479 +67,14,-0.0005,-0.0002,642.85,1591.59,1403.96,21.61,553.65,2388.08,9066.08,47.51,521.67,2388.07,8.3974,391,38.96,23.3415 +67,15,0.0006,-0.0,642.7,1588.66,1404.09,21.61,554.36,2388.09,9061.94,47.47,521.4,2388.01,8.4485,392,38.98,23.3592 +67,16,-0.0018,0.0005,642.17,1587.7,1402.98,21.61,553.72,2388.05,9068.27,47.24,521.43,2388.04,8.3969,393,38.95,23.4165 +67,17,-0.0027,0.0004,642.44,1589.76,1398.96,21.61,554.55,2388.03,9061.57,47.32,521.76,2388.09,8.4572,393,39.02,23.3873 +67,18,0.0004,0.0,643.23,1582.39,1401.05,21.61,553.7,2387.98,9065.24,47.41,521.96,2388.1,8.4449,392,38.7,23.4166 +67,19,-0.0037,-0.0004,642.4,1583.06,1402.67,21.61,554.38,2388.03,9064.2,47.33,522.49,2388.02,8.4132,392,38.88,23.3814 +67,20,0.0009,0.0004,642.28,1586.77,1408.78,21.61,554.04,2388.04,9062.55,47.33,521.34,2388.05,8.4208,393,38.89,23.3844 +67,21,-0.0003,0.0004,642.6,1585.35,1405.31,21.61,553.73,2388.01,9071.19,47.4,521.12,2388.03,8.3852,392,39.01,23.4221 +67,22,0.0009,0.0001,641.89,1592.69,1401.01,21.61,554.14,2388.05,9064.81,47.51,522.15,2388.05,8.4196,393,38.86,23.4419 +67,23,-0.0003,0.0004,642.37,1590.12,1404.88,21.61,553.08,2388.05,9062.69,47.32,521.34,2388.03,8.428,394,38.86,23.3601 +67,24,-0.0011,-0.0002,642.64,1573.58,1402.23,21.61,554.35,2388.05,9067.25,47.41,522.21,2388.06,8.4191,391,39.13,23.3537 +67,25,-0.0032,-0.0,642.27,1586.41,1403.55,21.61,553.83,2388.07,9072.62,47.43,521.92,2388.06,8.4035,391,39.07,23.3928 +67,26,0.0001,0.0003,642.25,1594.71,1406.44,21.61,554.38,2388.08,9068.83,47.41,521.92,2388.06,8.4408,392,38.85,23.3136 +67,27,-0.0013,0.0002,642.51,1592.83,1399.7,21.61,554.06,2388.01,9063.93,47.68,521.64,2388.04,8.434,392,38.81,23.3395 +67,28,-0.0025,0.0003,642.71,1595.54,1408.01,21.61,553.88,2388.04,9066.58,47.43,521.61,2388.04,8.4167,391,38.83,23.4591 +67,29,0.0044,0.0001,642.57,1580.96,1408.16,21.61,554.6,2388.07,9060.51,47.51,522.37,2388.01,8.3978,394,38.97,23.3693 +67,30,-0.0002,-0.0001,642.67,1578.2,1413.82,21.61,553.17,2388.02,9064.37,47.38,521.62,2388.1,8.4273,394,39.04,23.3409 +67,31,-0.0022,0.0005,642.62,1589.85,1398.18,21.61,553.53,2388.05,9061.49,47.4,521.67,2388.05,8.4283,392,39.0,23.3836 +67,32,0.0016,0.0005,642.8,1588.21,1404.26,21.61,553.55,2388.06,9061.85,47.3,521.6,2388.08,8.4452,392,38.74,23.2932 +67,33,0.0014,-0.0003,642.04,1586.72,1398.94,21.61,553.75,2388.01,9063.22,47.35,521.99,2388.03,8.4203,393,38.92,23.3595 +67,34,0.0004,0.0002,642.25,1585.43,1399.27,21.61,553.78,2388.06,9062.39,47.47,521.61,2388.05,8.3896,394,39.0,23.3112 +67,35,-0.0004,0.0001,642.5,1590.25,1398.77,21.61,553.53,2388.11,9070.99,47.59,521.68,2388.06,8.42,391,38.89,23.3141 +67,36,-0.0007,0.0002,642.72,1592.5,1403.38,21.61,553.58,2388.01,9063.05,47.33,521.92,2388.09,8.4532,393,38.8,23.3022 +67,37,0.0035,-0.0,642.34,1582.27,1398.8,21.61,553.36,2388.06,9058.48,47.36,522.05,2388.0,8.4271,392,38.81,23.2336 +67,38,0.0018,-0.0004,642.43,1587.25,1406.64,21.61,554.0,2388.07,9064.0,47.48,522.37,2388.01,8.4275,392,38.9,23.4425 +67,39,0.002,-0.0004,642.18,1584.33,1398.47,21.61,553.58,2388.05,9066.8,47.44,521.69,2388.03,8.417,391,38.98,23.3586 +67,40,-0.0002,0.0,642.4,1577.7,1405.7,21.61,553.16,2388.07,9060.04,47.28,521.57,2388.04,8.3888,392,38.93,23.2687 +67,41,0.0008,-0.0003,642.79,1588.31,1403.61,21.61,553.97,2388.04,9061.91,47.18,522.33,2388.04,8.409,393,38.89,23.3984 +67,42,-0.0013,0.0003,642.32,1586.77,1399.03,21.61,554.1,2388.04,9064.66,47.47,522.01,2388.01,8.4472,392,39.06,23.372 +67,43,-0.0027,0.0005,642.45,1589.83,1400.39,21.61,554.28,2388.05,9057.62,47.37,521.63,2388.05,8.4135,392,39.08,23.3985 +67,44,0.0002,0.0005,641.91,1590.29,1402.09,21.61,553.71,2388.1,9063.6,47.32,521.83,2388.07,8.3834,392,38.94,23.3666 +67,45,0.004,0.0,642.2,1586.25,1404.07,21.61,554.11,2388.03,9061.75,47.31,521.28,2388.05,8.4168,391,38.72,23.3902 +67,46,0.0002,-0.0002,642.23,1596.15,1407.95,21.61,553.7,2388.05,9065.58,47.35,522.05,2388.03,8.3849,394,38.82,23.3054 +67,47,-0.0,0.0003,642.69,1585.13,1412.07,21.61,553.57,2388.05,9057.16,47.51,522.6,2388.12,8.4189,392,38.77,23.3956 +67,48,0.0016,0.0001,642.59,1589.61,1399.78,21.61,553.16,2388.09,9062.81,47.5,521.55,2388.02,8.4532,393,38.95,23.3201 +67,49,0.0018,0.0001,641.88,1590.62,1404.1,21.61,553.19,2388.0,9065.42,47.3,521.71,2388.07,8.4252,391,39.1,23.3253 +67,50,-0.0011,0.0001,643.35,1590.34,1408.79,21.61,553.51,2388.12,9064.85,47.47,521.8,2388.05,8.4051,390,38.89,23.2832 +67,51,-0.0004,0.0005,642.78,1588.87,1403.38,21.61,554.19,2387.97,9066.56,47.24,521.64,2388.08,8.4093,392,39.08,23.4427 +67,52,-0.0029,-0.0,642.64,1590.69,1405.64,21.61,554.16,2388.03,9069.43,47.3,521.84,2388.11,8.4428,394,38.99,23.3491 +67,53,-0.0023,-0.0003,642.71,1581.02,1408.18,21.61,552.92,2388.01,9068.95,47.31,521.38,2388.08,8.4186,393,38.96,23.3091 +67,54,0.0029,-0.0002,642.7,1590.35,1405.6,21.61,553.72,2388.1,9072.25,47.47,521.77,2388.02,8.3976,392,38.86,23.3766 +67,55,0.0008,-0.0,642.19,1589.47,1400.32,21.61,553.95,2388.05,9065.06,47.42,521.73,2388.09,8.4211,393,38.9,23.3838 +67,56,-0.0009,-0.0,642.18,1589.49,1408.1,21.61,553.92,2388.1,9063.21,47.49,521.7,2388.13,8.4536,392,38.83,23.4379 +67,57,0.0005,-0.0002,642.22,1586.82,1402.28,21.61,553.2,2388.07,9069.0,47.22,521.75,2388.04,8.4153,392,38.91,23.2453 +67,58,0.0005,-0.0,642.25,1585.95,1405.64,21.61,553.4,2388.09,9066.99,47.45,521.83,2388.05,8.4208,394,38.86,23.3355 +67,59,0.0005,0.0004,642.38,1593.05,1406.06,21.61,553.46,2388.04,9062.83,47.49,521.97,2388.07,8.4289,392,38.98,23.1961 +67,60,-0.0002,-0.0002,642.37,1595.2,1404.73,21.61,553.49,2388.05,9066.63,47.43,521.57,2388.08,8.4365,393,39.03,23.3669 +67,61,0.0011,0.0005,642.56,1578.74,1402.94,21.61,554.61,2388.06,9072.09,47.37,521.95,2388.07,8.414,391,38.81,23.3885 +67,62,0.003,0.0005,642.87,1587.4,1403.68,21.61,554.17,2388.08,9069.63,47.54,521.3,2388.06,8.4311,394,38.85,23.4949 +67,63,-0.0045,-0.0001,642.96,1582.58,1401.13,21.61,554.34,2388.13,9064.44,47.28,521.44,2388.04,8.3832,395,39.08,23.3354 +67,64,0.0016,0.0002,642.51,1590.84,1408.74,21.61,553.32,2388.09,9061.42,47.45,522.39,2388.1,8.4233,393,39.03,23.4402 +67,65,-0.0032,-0.0004,642.24,1593.31,1403.29,21.61,553.55,2388.09,9065.06,47.36,521.79,2388.05,8.4517,392,38.85,23.2815 +67,66,0.0019,-0.0001,642.27,1586.0,1409.07,21.61,554.48,2388.02,9069.33,47.53,521.98,2388.04,8.4107,393,38.97,23.3633 +67,67,0.0014,-0.0004,642.59,1594.94,1409.5,21.61,553.72,2388.04,9065.78,47.47,521.78,2388.02,8.4094,393,38.95,23.31 +67,68,0.0005,0.0005,642.01,1590.53,1400.86,21.61,553.61,2388.02,9060.67,47.5,521.81,2388.08,8.4107,393,39.15,23.3811 +67,69,0.002,-0.0,641.94,1587.23,1404.71,21.61,553.76,2388.12,9065.8,47.23,521.76,2388.01,8.3822,393,38.94,23.2498 +67,70,0.0011,-0.0003,642.5,1589.26,1409.24,21.61,553.24,2388.02,9067.54,47.16,521.14,2388.08,8.448,393,39.04,23.344 +67,71,0.0005,0.0005,642.71,1590.43,1404.46,21.61,554.25,2388.04,9065.41,47.25,521.98,2388.05,8.4377,392,38.84,23.2443 +67,72,-0.0014,-0.0003,642.26,1591.56,1406.18,21.61,554.62,2388.06,9060.85,47.39,522.34,2388.07,8.453,393,39.02,23.303 +67,73,0.0008,0.0001,642.64,1589.12,1398.19,21.61,553.07,2388.06,9062.34,47.32,521.94,2388.08,8.4403,392,38.77,23.3354 +67,74,-0.0017,0.0,642.51,1587.06,1412.06,21.61,553.85,2388.02,9058.23,47.67,521.34,2388.06,8.4257,392,38.84,23.3911 +67,75,0.0029,0.0003,642.44,1580.16,1409.33,21.61,553.54,2388.08,9062.29,47.18,521.95,2388.09,8.3983,393,38.84,23.2568 +67,76,-0.0024,0.0004,642.44,1590.81,1399.94,21.61,553.04,2388.03,9069.69,47.35,522.09,2388.09,8.4504,392,38.94,23.3246 +67,77,0.001,-0.0002,642.59,1585.42,1406.37,21.61,553.46,2388.08,9062.04,47.25,521.51,2388.07,8.4111,393,38.97,23.3908 +67,78,0.0022,-0.0002,642.71,1591.74,1405.9,21.61,553.98,2388.02,9067.07,47.39,521.96,2388.08,8.4469,391,39.0,23.275 +67,79,-0.0003,-0.0004,642.36,1591.8,1411.48,21.61,553.6,2388.11,9066.55,47.55,522.04,2388.01,8.4136,393,38.99,23.4068 +67,80,-0.0011,-0.0003,642.73,1587.92,1400.6,21.61,553.57,2388.04,9061.31,47.56,521.68,2388.06,8.4336,392,38.94,23.2658 +67,81,0.0007,-0.0,642.17,1587.67,1398.93,21.61,554.56,2388.11,9069.15,47.32,521.6,2388.04,8.3879,393,38.79,23.3059 +67,82,0.0009,0.0005,642.9,1589.33,1406.44,21.61,553.78,2388.03,9066.51,47.38,521.97,2388.07,8.427,394,38.79,23.2496 +67,83,0.0012,0.0002,642.32,1587.02,1404.77,21.61,553.95,2388.08,9065.89,47.29,521.83,2388.07,8.4158,394,38.88,23.4015 +67,84,-0.0002,0.0005,641.88,1587.5,1402.89,21.61,553.78,2388.11,9067.69,47.22,521.92,2388.06,8.439,395,38.97,23.3589 +67,85,0.0009,-0.0002,642.21,1584.79,1402.14,21.61,552.35,2388.05,9067.78,47.57,521.49,2388.06,8.444,394,38.96,23.2785 +67,86,0.0007,0.0,641.82,1590.72,1405.72,21.61,553.9,2388.09,9059.66,47.47,522.17,2388.05,8.421,392,38.96,23.3375 +67,87,-0.0012,-0.0004,642.44,1590.49,1399.92,21.61,553.29,2388.06,9065.45,47.34,521.55,2388.07,8.3873,392,38.84,23.295 +67,88,-0.0038,0.0005,642.51,1583.23,1405.0,21.61,554.91,2388.05,9070.99,47.38,521.87,2388.05,8.403,392,38.78,23.3352 +67,89,-0.0001,-0.0004,642.5,1585.45,1407.88,21.6,553.5,2388.06,9062.6,47.46,522.16,2388.08,8.4073,392,38.84,23.2502 +67,90,-0.0008,0.0001,642.08,1586.08,1399.6,21.61,553.51,2388.01,9067.87,47.45,522.16,2388.07,8.4342,392,38.77,23.2637 +67,91,0.0004,-0.0002,642.48,1590.35,1399.6,21.61,553.94,2388.02,9061.65,47.44,522.28,2388.07,8.4451,391,38.89,23.3365 +67,92,-0.0001,-0.0002,642.68,1589.75,1402.65,21.61,553.06,2388.02,9066.26,47.32,521.58,2388.08,8.4074,393,38.83,23.3145 +67,93,0.0023,-0.0003,642.61,1592.7,1403.13,21.61,553.63,2388.04,9061.9,47.36,521.46,2388.05,8.3906,392,38.67,23.2988 +67,94,0.0009,0.0004,642.32,1585.58,1404.8,21.61,553.26,2388.02,9064.44,47.3,522.28,2388.04,8.4027,393,38.9,23.4014 +67,95,-0.0,0.0002,642.22,1593.53,1405.28,21.61,553.97,2388.04,9065.82,47.51,521.62,2388.08,8.4759,390,38.94,23.3461 +67,96,0.0007,-0.0004,642.45,1582.95,1399.93,21.61,553.42,2388.06,9071.11,47.53,521.88,2388.03,8.4311,392,38.89,23.4547 +67,97,-0.0027,-0.0004,642.49,1591.88,1402.22,21.61,553.92,2388.06,9064.21,47.5,522.29,2388.09,8.4094,392,38.98,23.3718 +67,98,-0.001,-0.0001,642.37,1590.02,1407.13,21.61,553.49,2388.08,9068.04,47.25,522.35,2388.06,8.4181,393,39.14,23.3484 +67,99,-0.0005,-0.0,641.88,1590.83,1407.25,21.61,553.55,2388.06,9062.44,47.25,521.21,2388.06,8.4613,393,38.88,23.3056 +67,100,-0.0023,0.0,642.6,1586.95,1404.07,21.61,554.35,2388.05,9068.84,47.36,521.89,2388.07,8.4665,392,38.91,23.3637 +67,101,0.0013,-0.0004,642.46,1588.21,1407.55,21.61,553.72,2388.09,9066.47,47.39,521.39,2388.04,8.4055,392,38.92,23.5021 +67,102,0.0022,0.0005,642.33,1597.12,1407.97,21.61,553.31,2388.05,9067.58,47.35,521.54,2388.04,8.4081,394,38.91,23.3142 +67,103,-0.001,-0.0004,642.28,1585.44,1406.7,21.61,553.45,2388.02,9069.78,47.34,521.76,2388.06,8.448,393,38.93,23.3125 +67,104,-0.001,-0.0002,642.22,1588.19,1401.5,21.61,553.44,2388.06,9060.43,47.42,521.65,2388.06,8.4487,392,38.95,23.2945 +67,105,0.0002,-0.0003,642.79,1590.31,1404.09,21.61,553.6,2388.07,9065.92,47.36,521.44,2388.06,8.4241,392,39.03,23.355 +67,106,-0.0018,0.0004,642.53,1586.53,1408.71,21.61,553.8,2388.04,9061.48,47.4,521.76,2388.07,8.4005,392,39.02,23.2773 +67,107,0.0003,-0.0004,642.35,1584.43,1404.3,21.61,553.23,2388.05,9063.56,47.5,521.07,2388.07,8.429,394,38.94,23.3011 +67,108,0.0014,-0.0003,642.43,1591.59,1406.95,21.61,553.79,2387.99,9063.55,47.48,522.13,2388.1,8.4541,394,38.76,23.338 +67,109,-0.0008,-0.0003,642.5,1594.07,1413.16,21.61,553.61,2388.07,9072.21,47.43,521.63,2388.05,8.4375,391,38.94,23.2227 +67,110,0.0013,0.0003,642.52,1591.88,1409.87,21.61,553.5,2388.06,9067.24,47.45,522.37,2388.02,8.4253,392,38.78,23.3177 +67,111,-0.0045,-0.0003,642.42,1587.84,1402.17,21.61,553.59,2388.05,9067.48,47.35,521.87,2388.01,8.4232,393,38.87,23.3387 +67,112,0.0019,0.0,642.46,1589.02,1404.93,21.61,553.45,2388.14,9067.11,47.5,521.56,2388.11,8.4248,393,38.79,23.3671 +67,113,-0.0031,0.0004,642.29,1593.2,1405.49,21.61,553.87,2388.07,9066.89,47.42,521.37,2388.14,8.405,392,38.8,23.2939 +67,114,-0.0008,0.0,642.15,1588.52,1400.84,21.61,554.28,2388.06,9064.27,47.41,521.57,2388.05,8.4237,392,38.9,23.3138 +67,115,-0.0003,0.0001,642.6,1587.88,1404.23,21.61,553.13,2388.1,9071.74,47.33,522.13,2388.07,8.4296,394,38.84,23.402 +67,116,-0.0015,0.0002,642.27,1588.76,1405.84,21.61,553.68,2388.08,9061.28,47.49,521.78,2388.08,8.4236,393,38.93,23.2735 +67,117,0.002,-0.0002,641.98,1584.4,1404.06,21.61,553.54,2388.13,9062.1,47.48,521.9,2388.09,8.3914,392,38.77,23.3726 +67,118,0.001,0.0,642.38,1584.5,1407.9,21.61,553.52,2388.05,9062.85,47.37,521.58,2388.04,8.4219,394,38.97,23.2808 +67,119,0.0003,0.0002,642.84,1586.58,1407.62,21.61,553.37,2388.02,9062.92,47.44,521.81,2388.13,8.4466,393,38.75,23.3604 +67,120,-0.0018,-0.0002,642.41,1596.29,1409.19,21.61,553.36,2388.05,9066.21,47.43,521.92,2388.06,8.4634,393,38.95,23.3585 +67,121,-0.0009,-0.0004,642.35,1587.34,1404.58,21.61,553.53,2388.03,9065.83,47.45,521.63,2388.08,8.4831,393,38.73,23.3501 +67,122,-0.0018,-0.0002,642.66,1590.35,1408.18,21.61,553.32,2388.07,9069.4,47.35,521.54,2388.02,8.4328,394,38.91,23.2908 +67,123,-0.0036,0.0004,642.52,1595.76,1405.97,21.61,554.05,2388.02,9061.58,47.38,521.72,2388.06,8.4194,393,38.83,23.2977 +67,124,-0.0023,0.0002,642.39,1592.79,1404.48,21.61,553.29,2388.04,9061.99,47.63,521.71,2388.05,8.4357,396,38.93,23.3571 +67,125,-0.001,0.0,642.69,1581.66,1399.19,21.61,553.45,2388.08,9062.49,47.54,521.63,2388.07,8.4197,392,39.0,23.2431 +67,126,-0.0009,-0.0004,642.42,1591.71,1408.23,21.61,553.44,2388.04,9064.56,47.3,520.94,2388.07,8.4262,393,38.75,23.4273 +67,127,-0.0015,-0.0001,642.64,1594.39,1407.04,21.61,554.02,2388.05,9064.54,47.47,521.64,2388.09,8.4538,393,38.87,23.2842 +67,128,-0.003,0.0002,642.92,1591.38,1410.31,21.61,554.0,2388.07,9071.28,47.36,521.41,2388.07,8.4458,391,38.77,23.2479 +67,129,-0.0016,0.0002,642.91,1587.72,1407.58,21.61,553.49,2388.07,9065.1,47.6,521.81,2388.13,8.4312,394,38.69,23.3183 +67,130,-0.0024,-0.0004,642.48,1588.23,1403.34,21.61,553.42,2388.06,9065.02,47.54,521.2,2388.11,8.4311,392,38.82,23.3978 +67,131,0.0017,0.0003,642.33,1588.98,1407.09,21.61,553.78,2388.03,9075.82,47.36,521.77,2388.07,8.455,394,38.98,23.3698 +67,132,-0.0004,0.0005,642.43,1587.43,1404.42,21.61,553.56,2388.09,9063.72,47.59,521.18,2388.12,8.458,393,38.79,23.2672 +67,133,-0.0016,-0.0002,642.81,1594.65,1413.31,21.61,553.5,2388.04,9064.71,47.57,521.63,2388.07,8.4429,394,38.77,23.2818 +67,134,-0.0017,0.0005,642.47,1581.1,1408.24,21.61,553.27,2388.05,9068.47,47.32,521.45,2388.09,8.4187,392,38.93,23.363 +67,135,0.0009,0.0001,642.7,1584.68,1408.39,21.61,553.47,2388.06,9072.95,47.59,521.3,2388.04,8.4337,393,38.83,23.3926 +67,136,0.0012,-0.0004,642.25,1593.26,1402.91,21.61,553.77,2388.02,9067.17,47.49,521.46,2388.07,8.4264,392,38.93,23.3764 +67,137,-0.004,0.0001,642.46,1589.05,1399.89,21.61,553.61,2388.07,9061.1,47.36,521.78,2388.04,8.4321,394,38.9,23.3459 +67,138,0.0018,0.0005,643.14,1592.0,1405.07,21.61,553.75,2388.05,9063.69,47.46,521.81,2388.06,8.4543,393,38.7,23.3461 +67,139,-0.0039,0.0003,642.04,1581.35,1408.48,21.61,553.56,2388.01,9067.71,47.5,521.19,2388.03,8.417,393,38.93,23.4178 +67,140,0.0011,0.0002,641.95,1593.87,1408.24,21.61,553.36,2388.05,9070.74,47.33,521.73,2388.07,8.4229,393,38.87,23.204 +67,141,0.0019,0.0,642.49,1582.17,1410.72,21.61,553.7,2388.13,9067.6,47.35,521.66,2388.04,8.4567,393,38.66,23.2886 +67,142,0.0043,0.0,642.82,1584.54,1408.08,21.61,553.38,2388.08,9063.09,47.44,521.32,2388.07,8.4129,393,38.69,23.3835 +67,143,-0.0004,0.0005,642.14,1585.24,1405.62,21.61,554.08,2388.04,9069.18,47.47,521.75,2388.04,8.4694,392,38.81,23.2625 +67,144,-0.0015,-0.0004,642.29,1589.32,1401.53,21.61,553.71,2388.09,9070.09,47.38,521.22,2388.06,8.4364,392,38.86,23.2834 +67,145,-0.0011,0.0004,642.06,1592.04,1405.31,21.61,553.92,2388.03,9064.62,47.57,521.3,2388.12,8.4107,394,38.86,23.3844 +67,146,-0.001,-0.0002,642.85,1588.36,1412.36,21.61,553.46,2388.09,9069.25,47.43,521.38,2388.07,8.4613,394,38.7,23.2195 +67,147,-0.0057,0.0002,642.43,1590.37,1413.62,21.61,553.61,2388.11,9071.65,47.79,521.29,2388.07,8.412,392,38.83,23.3641 +67,148,0.002,0.0005,643.18,1591.79,1401.35,21.61,554.04,2388.1,9075.71,47.35,521.61,2388.08,8.4213,394,38.8,23.3211 +67,149,0.0008,0.0002,642.08,1592.67,1406.57,21.61,553.4,2388.06,9066.12,47.5,520.91,2388.07,8.4329,393,38.79,23.1149 +67,150,0.001,-0.0002,642.56,1590.28,1405.45,21.61,553.57,2388.04,9066.99,47.31,521.14,2388.03,8.4374,393,38.89,23.3828 +67,151,-0.0012,-0.0,642.44,1592.17,1406.76,21.61,554.0,2388.05,9070.44,47.57,521.88,2388.06,8.3997,393,38.99,23.2688 +67,152,0.0018,-0.0004,642.55,1589.31,1410.3,21.61,552.81,2388.09,9067.1,47.43,521.72,2388.0,8.4721,394,38.75,23.3296 +67,153,0.0006,0.0003,642.71,1592.22,1400.66,21.61,553.8,2388.11,9065.11,47.4,520.93,2388.06,8.4432,393,38.81,23.3365 +67,154,0.0024,-0.0001,642.42,1593.58,1407.52,21.61,554.1,2388.05,9068.89,47.57,522.21,2388.08,8.4287,393,38.99,23.216 +67,155,0.0031,-0.0002,642.52,1586.69,1405.64,21.61,554.0,2388.07,9067.23,47.56,521.61,2388.05,8.4639,393,38.8,23.4189 +67,156,-0.0024,0.0005,642.32,1593.99,1411.75,21.61,552.84,2388.1,9066.03,47.37,521.11,2388.09,8.425,395,38.94,23.4137 +67,157,0.0012,0.0005,641.67,1591.35,1413.04,21.61,553.5,2388.08,9067.97,47.47,521.28,2388.1,8.4531,394,38.86,23.3455 +67,158,0.0016,0.0003,642.4,1587.51,1406.76,21.61,553.02,2388.11,9072.51,47.61,521.44,2388.07,8.4286,392,38.92,23.298 +67,159,-0.0027,0.0002,642.04,1594.64,1402.42,21.61,553.54,2388.06,9068.46,47.67,521.76,2388.09,8.4454,390,38.91,23.2458 +67,160,-0.002,0.0001,643.35,1591.65,1405.79,21.61,554.01,2388.09,9060.94,47.61,521.48,2388.09,8.431,393,39.01,23.2761 +67,161,0.0003,0.0002,642.89,1591.64,1403.71,21.61,553.22,2388.07,9061.21,47.42,521.56,2388.11,8.408,393,38.76,23.2704 +67,162,-0.0038,0.0001,642.51,1586.02,1409.72,21.61,553.86,2388.1,9061.6,47.72,522.06,2388.11,8.401,392,39.02,23.2851 +67,163,-0.0017,0.0003,642.93,1587.79,1403.62,21.61,554.3,2388.09,9069.65,47.55,522.15,2388.05,8.4486,392,38.85,23.3336 +67,164,0.0003,0.0003,642.61,1582.16,1405.26,21.61,553.8,2388.06,9066.91,47.6,521.62,2388.11,8.4338,393,38.98,23.2849 +67,165,0.0005,0.0003,642.7,1589.34,1404.62,21.61,553.82,2388.07,9066.23,47.24,521.66,2388.01,8.4487,393,38.73,23.3287 +67,166,-0.0023,0.0002,642.7,1587.93,1407.44,21.61,552.75,2388.15,9069.52,47.56,521.35,2388.08,8.4053,393,38.76,23.2423 +67,167,0.0052,0.0001,642.45,1587.46,1404.35,21.61,553.67,2388.07,9071.77,47.65,521.79,2388.08,8.4505,394,38.87,23.224 +67,168,-0.0004,0.0005,642.95,1593.59,1406.02,21.61,553.89,2388.09,9062.45,47.41,521.78,2388.06,8.4323,392,38.8,23.2637 +67,169,-0.0005,-0.0003,643.14,1590.64,1408.23,21.61,553.54,2388.07,9072.96,47.55,521.62,2388.06,8.4426,393,38.85,23.3656 +67,170,0.004,0.0001,643.56,1591.02,1409.24,21.61,553.72,2388.12,9070.92,47.59,521.47,2388.07,8.4325,393,38.67,23.2956 +67,171,0.0019,0.0,642.35,1583.32,1410.58,21.61,553.38,2388.08,9070.39,47.3,521.58,2388.09,8.4206,393,39.0,23.3274 +67,172,-0.0029,0.0002,642.62,1591.53,1412.38,21.61,553.88,2388.05,9064.92,47.45,521.41,2388.15,8.4094,392,38.75,23.2347 +67,173,-0.0015,-0.0003,642.44,1596.9,1409.66,21.61,553.31,2388.1,9068.54,47.44,521.3,2388.04,8.4362,393,38.7,23.3783 +67,174,-0.0019,0.0005,642.6,1592.09,1406.54,21.61,553.45,2388.09,9067.65,47.66,521.42,2388.1,8.455,395,38.91,23.2458 +67,175,-0.0008,0.0003,642.2,1578.18,1413.43,21.61,553.49,2388.15,9060.89,47.6,521.73,2388.13,8.3991,392,38.81,23.3088 +67,176,-0.001,0.0005,642.8,1585.62,1409.53,21.61,553.58,2388.11,9072.62,47.48,521.19,2388.08,8.4629,395,38.88,23.3587 +67,177,0.0006,0.0002,643.0,1581.72,1399.44,21.61,553.5,2388.09,9062.25,47.58,521.54,2388.09,8.4018,391,38.85,23.3276 +67,178,0.0055,-0.0003,642.63,1591.4,1407.15,21.61,553.32,2388.08,9069.11,47.5,520.97,2388.1,8.4186,394,38.79,23.2364 +67,179,0.0018,0.0001,642.7,1586.69,1413.55,21.61,553.55,2388.09,9068.7,47.47,521.42,2388.11,8.437,393,39.0,23.3136 +67,180,-0.0025,-0.0,642.53,1586.6,1406.88,21.61,553.27,2388.06,9071.41,47.57,521.71,2388.08,8.4516,393,38.95,23.2001 +67,181,0.0012,-0.0004,642.72,1591.88,1413.54,21.61,553.23,2388.1,9060.75,47.55,520.96,2388.03,8.4642,393,38.8,23.3124 +67,182,0.0013,-0.0003,643.01,1588.62,1408.47,21.61,553.47,2388.1,9065.74,47.42,521.13,2388.05,8.4433,393,38.9,23.2474 +67,183,0.0027,-0.0001,642.57,1594.01,1407.54,21.61,553.44,2388.08,9069.84,47.43,521.42,2388.12,8.4236,393,38.79,23.2802 +67,184,0.0014,0.0003,642.02,1595.51,1411.01,21.61,552.94,2388.17,9064.05,47.5,521.5,2388.13,8.4234,394,38.88,23.2944 +67,185,-0.0006,0.0003,643.57,1586.31,1407.38,21.61,553.34,2388.13,9069.65,47.72,521.0,2388.12,8.4317,395,38.76,23.1788 +67,186,0.0024,-0.0003,643.01,1589.4,1407.34,21.61,553.92,2388.09,9066.92,47.48,521.24,2388.06,8.4422,393,38.71,23.2452 +67,187,-0.0027,-0.0001,642.76,1598.03,1403.4,21.61,553.48,2388.11,9070.22,47.38,521.29,2388.14,8.4547,395,38.97,23.406 +67,188,-0.0001,-0.0001,642.04,1588.36,1407.56,21.61,553.12,2388.12,9069.39,47.54,521.13,2388.07,8.4089,393,38.91,23.3588 +67,189,-0.0005,-0.0003,643.16,1587.31,1414.54,21.61,552.67,2388.14,9069.01,47.5,521.15,2388.1,8.4198,393,38.67,23.2659 +67,190,-0.0017,0.0001,643.33,1591.95,1411.94,21.61,552.69,2388.06,9060.74,47.64,522.17,2388.06,8.4861,393,38.99,23.3619 +67,191,0.0007,0.0005,642.4,1586.17,1405.65,21.61,553.06,2388.08,9064.37,47.62,521.35,2388.16,8.4661,392,38.74,23.2598 +67,192,0.0025,-0.0002,643.29,1593.13,1414.77,21.61,552.65,2388.09,9067.35,47.61,520.6,2388.06,8.432,395,38.97,23.2102 +67,193,-0.0019,0.0001,642.58,1591.98,1407.88,21.61,553.77,2388.07,9064.81,47.67,521.46,2388.04,8.4401,394,38.88,23.2911 +67,194,-0.0018,0.0001,642.21,1596.73,1405.27,21.61,553.22,2388.11,9072.22,47.59,521.07,2388.12,8.4607,394,38.86,23.2368 +67,195,-0.0025,-0.0,643.04,1596.59,1414.53,21.61,553.59,2388.06,9070.36,47.48,521.22,2388.09,8.4434,393,38.74,23.3897 +67,196,0.0006,-0.0001,642.85,1588.94,1408.38,21.61,553.55,2388.08,9071.54,47.56,521.18,2388.08,8.4249,392,38.92,23.2941 +67,197,-0.0004,-0.0004,642.34,1594.12,1405.38,21.61,552.46,2388.09,9067.41,47.58,520.3,2388.1,8.4569,392,38.57,23.3414 +67,198,0.0013,-0.0,642.21,1588.65,1407.58,21.61,553.14,2388.01,9063.89,47.5,521.62,2388.14,8.4434,393,38.85,23.3256 +67,199,-0.001,-0.0001,642.53,1595.04,1404.84,21.61,552.84,2388.08,9067.46,47.58,520.96,2388.07,8.4715,394,38.74,23.2298 +67,200,-0.0042,0.0004,642.62,1585.67,1410.52,21.61,552.79,2388.13,9067.11,47.55,520.96,2388.12,8.4485,393,38.76,23.3264 +67,201,-0.003,-0.0,643.12,1587.94,1411.31,21.61,553.28,2388.13,9068.3,47.69,521.37,2388.07,8.4713,392,38.72,23.3057 +67,202,-0.0027,0.0004,642.33,1588.16,1406.02,21.61,552.55,2388.1,9065.48,47.73,521.66,2388.12,8.4286,393,38.81,23.3362 +67,203,-0.0045,-0.0004,642.17,1589.11,1415.55,21.61,552.79,2388.09,9065.47,47.49,521.47,2388.09,8.4553,393,38.94,23.2976 +67,204,-0.0003,0.0002,642.43,1591.16,1418.18,21.61,553.31,2388.09,9063.94,47.64,521.29,2388.1,8.4536,395,38.79,23.3098 +67,205,0.0024,0.0,643.27,1590.74,1413.87,21.61,552.74,2388.08,9067.96,47.54,521.21,2388.11,8.3974,393,38.82,23.3102 +67,206,-0.0015,-0.0003,643.22,1594.23,1410.31,21.61,552.14,2388.09,9066.51,47.64,521.07,2388.07,8.4507,392,38.76,23.2787 +67,207,-0.0004,-0.0004,643.0,1595.18,1404.56,21.61,552.96,2388.13,9066.59,47.62,521.45,2388.08,8.4428,393,38.87,23.1902 +67,208,0.0031,-0.0004,643.18,1594.83,1399.59,21.61,553.18,2388.11,9070.72,47.46,521.17,2388.09,8.4265,394,38.77,23.3106 +67,209,-0.0009,0.0001,642.62,1589.85,1411.47,21.61,553.48,2388.11,9068.88,47.68,521.28,2388.11,8.4716,395,38.55,23.273 +67,210,0.0008,0.0004,642.83,1589.64,1413.05,21.61,554.13,2388.08,9068.51,47.63,520.86,2388.1,8.4126,395,38.99,23.266 +67,211,-0.0013,0.0003,642.86,1595.27,1410.17,21.61,553.43,2388.18,9064.75,47.64,521.68,2388.09,8.4619,395,38.69,23.2727 +67,212,-0.0037,-0.0001,642.96,1590.64,1410.93,21.61,553.38,2388.14,9070.07,47.67,521.19,2388.12,8.4795,394,38.87,23.2741 +67,213,0.001,0.0005,643.11,1592.69,1410.1,21.61,553.29,2388.08,9073.89,47.51,521.4,2388.09,8.4701,394,38.71,23.2023 +67,214,-0.0004,0.0002,642.57,1591.26,1414.19,21.61,553.38,2388.05,9069.35,47.65,521.4,2388.15,8.433,392,38.77,23.2326 +67,215,-0.0016,0.0001,642.66,1590.22,1414.82,21.61,553.4,2388.13,9069.08,47.65,521.26,2388.13,8.4568,394,38.63,23.2355 +67,216,-0.0021,0.0,642.82,1591.98,1414.17,21.61,552.9,2388.1,9069.43,47.57,520.89,2388.11,8.4514,394,38.92,23.2122 +67,217,-0.0011,0.0001,642.23,1587.66,1412.24,21.61,553.03,2388.12,9066.0,47.53,521.38,2388.13,8.4578,396,38.69,23.3033 +67,218,0.0004,-0.0001,642.99,1591.35,1414.43,21.61,553.04,2388.1,9066.67,47.64,520.75,2388.12,8.4521,393,38.82,23.2613 +67,219,0.0012,0.0005,643.22,1595.32,1412.55,21.61,553.32,2388.1,9066.47,47.81,521.34,2388.15,8.4938,394,38.76,23.3011 +67,220,0.0019,0.0003,643.29,1595.18,1409.98,21.61,552.38,2388.09,9068.05,47.46,522.12,2388.14,8.4533,394,38.85,23.2304 +67,221,-0.001,0.0,642.74,1592.67,1413.06,21.61,552.69,2388.12,9074.94,47.67,520.9,2388.17,8.4318,393,38.86,23.2118 +67,222,0.0004,-0.0002,642.51,1593.59,1400.03,21.61,552.61,2388.09,9069.36,47.6,521.81,2388.1,8.4515,393,38.85,23.3132 +67,223,-0.0002,-0.0003,642.67,1591.9,1409.15,21.61,552.53,2388.15,9067.09,47.59,521.55,2388.08,8.4484,394,38.62,23.1451 +67,224,-0.0016,-0.0003,642.98,1589.29,1415.4,21.61,553.26,2388.14,9078.72,47.54,521.49,2388.09,8.5096,394,38.68,23.1838 +67,225,-0.0007,0.0005,643.26,1590.35,1413.55,21.61,553.42,2388.07,9071.82,47.65,521.24,2388.1,8.4554,394,38.73,23.2365 +67,226,0.0005,-0.0002,642.88,1592.24,1414.05,21.61,553.27,2388.12,9062.88,47.51,521.26,2388.12,8.487,392,38.79,23.2206 +67,227,-0.0007,0.0003,642.79,1597.73,1408.0,21.61,553.15,2388.16,9071.3,47.66,520.85,2388.06,8.4769,394,38.69,23.3049 +67,228,0.0002,-0.0001,642.97,1589.54,1412.14,21.61,552.68,2388.13,9056.61,47.72,521.04,2388.12,8.4785,393,38.7,23.193 +67,229,0.0018,0.0004,642.76,1599.5,1417.09,21.61,553.04,2388.12,9060.96,47.69,520.7,2388.12,8.4453,394,38.77,23.2146 +67,230,-0.0002,-0.0,642.83,1595.06,1412.68,21.61,551.97,2388.09,9073.13,47.72,520.93,2388.08,8.4371,393,38.65,23.2056 +67,231,0.0022,-0.0001,642.63,1584.94,1412.29,21.61,553.32,2388.13,9078.28,47.76,521.38,2388.13,8.4417,395,38.82,23.3352 +67,232,0.0013,-0.0001,643.27,1585.42,1408.78,21.61,552.81,2388.1,9070.8,47.75,520.66,2388.13,8.4467,394,38.68,23.2328 +67,233,0.0001,0.0005,643.17,1589.98,1418.59,21.61,553.2,2388.07,9071.0,47.63,520.86,2388.16,8.4724,396,38.79,23.3291 +67,234,0.0024,-0.0003,643.11,1598.88,1412.65,21.61,552.3,2388.15,9064.96,47.66,520.98,2388.09,8.4473,393,38.64,23.2993 +67,235,-0.001,0.0005,642.65,1593.43,1407.56,21.61,552.99,2388.15,9066.91,47.88,521.03,2388.17,8.5006,393,38.8,23.2822 +67,236,-0.0027,-0.0002,643.08,1588.06,1403.93,21.61,552.33,2388.12,9067.4,47.87,520.61,2388.14,8.457,393,38.86,23.2682 +67,237,0.0007,-0.0003,642.98,1595.76,1411.47,21.61,552.41,2388.12,9072.52,47.6,521.02,2388.11,8.4748,393,38.81,23.2704 +67,238,-0.0027,0.0001,642.75,1599.76,1415.64,21.61,552.54,2388.11,9070.42,47.71,520.72,2388.14,8.4641,393,38.81,23.2341 +67,239,-0.0019,0.0003,642.69,1587.28,1417.14,21.61,552.54,2388.14,9075.45,47.66,520.48,2388.17,8.5041,393,38.95,23.2493 +67,240,-0.0008,-0.0003,642.88,1595.57,1419.65,21.61,552.63,2388.15,9070.93,47.57,521.31,2388.12,8.4484,395,38.63,23.2025 +67,241,0.0024,-0.0,642.68,1593.74,1416.66,21.61,552.63,2388.2,9070.12,47.58,520.3,2388.16,8.4898,396,38.63,23.2605 +67,242,0.0028,-0.0003,643.28,1597.21,1412.77,21.61,552.25,2388.17,9075.34,47.84,520.98,2388.12,8.5127,393,38.66,23.08 +67,243,0.0017,0.0004,642.94,1598.45,1420.19,21.61,553.54,2388.11,9072.34,47.7,520.74,2388.14,8.4754,393,38.65,23.2006 +67,244,-0.0031,0.0001,642.8,1592.05,1419.01,21.61,553.58,2388.08,9067.49,47.75,521.14,2388.14,8.4682,393,38.68,23.2201 +67,245,-0.0014,0.0003,642.8,1598.22,1415.24,21.61,553.3,2388.11,9076.53,47.84,520.95,2388.16,8.4766,395,38.82,23.12 +67,246,-0.0022,-0.0001,642.43,1589.53,1412.82,21.61,553.59,2388.17,9071.85,47.71,520.52,2388.12,8.4535,392,38.69,23.1875 +67,247,-0.0027,-0.0004,643.04,1595.3,1415.73,21.61,552.3,2388.17,9073.25,47.78,520.95,2388.17,8.4773,394,38.76,23.2244 +67,248,0.0023,-0.0004,642.84,1582.84,1413.89,21.61,553.31,2388.21,9078.24,47.63,520.82,2388.11,8.487,394,38.84,23.199 +67,249,-0.0004,0.0004,642.69,1595.37,1417.38,21.61,551.99,2388.11,9066.63,47.78,520.27,2388.12,8.45,394,38.69,23.1637 +67,250,0.0025,-0.0001,643.18,1595.97,1414.12,21.61,552.55,2388.15,9069.94,47.77,521.09,2388.13,8.4969,395,38.9,23.2547 +67,251,0.0024,0.0001,643.23,1590.03,1416.3,21.61,552.73,2388.17,9070.79,47.71,520.32,2388.16,8.4545,395,38.76,23.2027 +67,252,0.002,-0.0003,642.69,1599.56,1410.6,21.61,553.48,2388.18,9069.88,47.66,520.8,2388.1,8.4664,394,38.63,23.2736 +67,253,-0.0,-0.0003,643.03,1598.26,1415.87,21.61,552.79,2388.12,9067.91,47.67,521.07,2388.15,8.4699,394,38.75,23.2075 +67,254,0.0012,0.0001,642.75,1587.43,1416.38,21.61,552.48,2388.12,9064.29,47.9,520.31,2388.12,8.4766,394,38.59,23.1635 +67,255,0.0014,0.0001,643.47,1596.55,1419.41,21.61,552.91,2388.1,9073.5,47.77,520.93,2388.12,8.4671,394,38.69,23.2194 +67,256,0.0023,0.0005,642.75,1602.05,1420.66,21.61,552.66,2388.16,9064.63,47.73,520.85,2388.11,8.4787,394,38.72,23.2252 +67,257,-0.0032,0.0001,643.22,1592.25,1419.45,21.61,553.13,2388.15,9065.79,47.8,520.82,2388.08,8.4841,394,38.62,23.2587 +67,258,-0.0007,0.0005,643.12,1592.89,1418.95,21.61,552.1,2388.16,9069.71,47.73,520.46,2388.19,8.4895,394,38.77,23.1184 +67,259,-0.0013,-0.0001,643.29,1600.46,1420.21,21.61,552.64,2388.16,9077.54,47.7,520.94,2388.15,8.4572,395,38.56,23.1598 +67,260,-0.0011,-0.0003,642.94,1599.55,1415.08,21.61,552.03,2388.12,9070.48,47.96,521.19,2388.14,8.46,396,38.68,23.2286 +67,261,-0.0014,0.0002,643.64,1597.1,1420.31,21.61,552.88,2388.15,9077.16,47.89,520.97,2388.13,8.4875,394,38.7,23.1442 +67,262,0.0003,-0.0002,643.62,1599.98,1418.85,21.61,552.49,2388.15,9075.3,47.97,520.71,2388.12,8.4961,395,38.58,23.2283 +67,263,0.001,-0.0003,643.52,1599.01,1419.32,21.61,552.59,2388.21,9071.53,47.88,520.57,2388.18,8.4569,394,38.66,23.1458 +67,264,0.002,-0.0004,643.2,1595.02,1423.63,21.61,551.92,2388.14,9070.35,47.9,520.69,2388.19,8.4797,395,38.68,23.2163 +67,265,0.001,-0.0001,643.13,1596.61,1412.31,21.61,552.49,2388.12,9067.23,47.95,520.49,2388.18,8.4504,394,38.74,23.3509 +67,266,-0.0021,0.0003,642.88,1591.87,1417.61,21.61,552.65,2388.13,9075.09,47.81,520.66,2388.19,8.4568,395,38.73,23.1815 +67,267,0.0018,-0.0001,643.39,1596.98,1421.7,21.61,551.7,2388.13,9070.1,47.89,519.95,2388.16,8.4941,396,38.75,23.2707 +67,268,0.0008,0.0002,643.91,1599.06,1415.13,21.61,552.79,2388.17,9070.05,47.89,520.44,2388.15,8.5148,394,38.71,23.1268 +67,269,0.0011,-0.0003,643.36,1592.94,1414.6,21.61,552.6,2388.18,9066.51,47.75,521.19,2388.16,8.484,395,38.75,23.2022 +67,270,0.0038,-0.0002,642.92,1596.2,1421.71,21.61,552.54,2388.18,9069.09,47.89,520.76,2388.16,8.4582,394,38.54,23.1834 +67,271,-0.0003,-0.0004,643.37,1595.6,1412.0,21.61,552.56,2388.15,9072.88,47.94,520.47,2388.23,8.5021,397,38.87,23.174 +67,272,-0.0018,0.0,643.0,1601.78,1412.07,21.61,552.62,2388.2,9075.68,47.85,520.83,2388.16,8.4677,395,38.66,23.1387 +67,273,-0.0033,0.0,643.79,1592.16,1416.15,21.61,551.67,2388.21,9068.76,47.87,520.41,2388.15,8.4822,395,38.59,23.1514 +67,274,-0.0011,0.0004,643.27,1600.42,1424.83,21.61,552.79,2388.19,9071.16,47.81,520.55,2388.15,8.5031,396,38.79,23.0925 +67,275,0.0018,-0.0002,642.85,1603.39,1417.96,21.61,552.56,2388.18,9071.9,47.81,520.94,2388.18,8.4925,395,38.44,23.0624 +67,276,-0.0026,-0.0001,643.82,1600.4,1418.26,21.61,552.37,2388.2,9064.76,47.9,520.25,2388.2,8.5015,395,38.6,23.1886 +67,277,-0.0024,-0.0002,643.25,1595.78,1422.12,21.61,552.14,2388.15,9071.46,47.91,520.31,2388.16,8.4855,395,38.51,23.1381 +67,278,-0.0001,-0.0003,643.22,1601.43,1421.85,21.61,552.62,2388.17,9071.09,47.82,520.42,2388.22,8.5042,397,38.71,23.2301 +67,279,-0.0006,0.0005,643.29,1600.74,1429.94,21.61,551.81,2388.14,9069.45,48.02,520.57,2388.15,8.4641,394,38.56,23.1972 +67,280,-0.0036,0.0001,643.76,1598.26,1425.35,21.61,551.95,2388.18,9071.82,48.0,520.13,2388.22,8.5108,396,38.55,23.0819 +67,281,-0.0017,0.0002,643.45,1594.16,1414.08,21.61,552.08,2388.18,9070.13,47.92,520.03,2388.18,8.5119,394,38.58,23.1945 +67,282,-0.0,0.0002,643.38,1599.31,1422.98,21.61,552.23,2388.13,9068.2,48.02,520.58,2388.14,8.5051,395,38.58,23.1495 +67,283,-0.005,0.0002,643.98,1595.7,1422.52,21.61,551.47,2388.21,9076.18,48.07,520.13,2388.2,8.4757,395,38.52,23.0871 +67,284,-0.0007,0.0004,643.84,1594.78,1415.82,21.61,552.74,2388.19,9070.07,48.01,519.8,2388.21,8.5058,396,38.51,23.141 +67,285,0.0028,-0.0003,643.11,1596.19,1420.49,21.61,551.71,2388.15,9072.02,47.77,520.41,2388.19,8.5061,395,38.65,23.0908 +67,286,0.0022,0.0003,643.5,1597.98,1421.47,21.61,551.81,2388.15,9067.28,47.97,520.16,2388.17,8.5185,395,38.45,23.1018 +67,287,0.0023,0.0005,643.85,1598.86,1427.22,21.61,552.03,2388.13,9073.44,47.98,519.99,2388.19,8.4729,396,38.62,23.1262 +67,288,-0.0009,0.0003,643.24,1596.43,1420.24,21.61,551.65,2388.19,9075.28,47.84,520.27,2388.21,8.4989,397,38.63,23.0942 +67,289,0.0002,0.0003,643.68,1596.19,1419.19,21.61,551.87,2388.19,9072.74,48.18,520.87,2388.14,8.4768,395,38.62,23.1663 +67,290,0.0028,0.0004,643.37,1598.6,1411.52,21.61,551.88,2388.18,9072.3,47.87,520.34,2388.17,8.501,395,38.74,23.2099 +67,291,-0.0044,0.0003,642.84,1594.42,1430.38,21.61,551.61,2388.23,9074.59,48.07,520.01,2388.15,8.5021,396,38.57,23.1356 +67,292,-0.0033,-0.0004,643.24,1607.08,1426.02,21.61,551.52,2388.2,9075.14,48.12,520.44,2388.15,8.4906,397,38.75,23.1778 +67,293,0.0008,0.0004,642.87,1600.54,1424.81,21.61,551.94,2388.21,9074.38,48.07,520.09,2388.22,8.4794,395,38.44,23.0708 +67,294,0.0008,-0.0,643.62,1600.45,1422.07,21.61,551.56,2388.19,9080.76,48.15,519.61,2388.23,8.4701,396,38.55,23.0545 +67,295,0.0022,0.0004,643.56,1601.74,1418.79,21.61,551.62,2388.2,9076.58,47.97,520.08,2388.16,8.503,394,38.53,23.1931 +67,296,-0.002,0.0001,643.04,1610.32,1425.52,21.61,552.67,2388.22,9075.53,48.07,519.89,2388.2,8.5363,397,38.59,23.1769 +67,297,0.0001,-0.0001,644.19,1600.7,1424.99,21.61,551.75,2388.2,9084.55,48.07,519.24,2388.19,8.5129,395,38.4,23.0046 +67,298,-0.0028,-0.0004,643.34,1604.82,1431.85,21.61,552.09,2388.21,9076.23,47.88,520.06,2388.23,8.5054,397,38.7,23.0541 +67,299,0.0027,-0.0001,643.65,1600.05,1419.12,21.61,551.1,2388.23,9082.87,48.03,520.11,2388.2,8.5026,395,38.52,23.098 +67,300,-0.0044,-0.0004,643.58,1602.18,1424.93,21.61,551.47,2388.22,9078.07,48.2,520.16,2388.24,8.5007,395,38.51,22.9934 +67,301,-0.0018,0.0004,643.3,1609.85,1431.12,21.61,551.51,2388.21,9077.22,48.09,519.84,2388.26,8.5087,396,38.44,23.2062 +67,302,-0.0018,0.0002,643.78,1593.7,1422.47,21.61,551.08,2388.13,9075.35,48.07,520.03,2388.17,8.5311,395,38.6,23.1844 +67,303,-0.0016,-0.0003,643.28,1602.62,1430.3,21.61,551.86,2388.22,9079.31,47.91,519.99,2388.21,8.5157,397,38.49,23.0572 +67,304,0.003,-0.0001,644.14,1598.36,1426.61,21.61,552.31,2388.23,9077.61,48.26,519.68,2388.19,8.5339,396,38.37,23.071 +67,305,0.0015,0.0001,643.17,1602.43,1427.97,21.61,552.15,2388.21,9073.04,47.89,520.34,2388.26,8.5665,397,38.46,23.1 +67,306,-0.0015,-0.0,643.35,1595.82,1424.8,21.61,551.29,2388.22,9075.28,48.2,520.11,2388.21,8.5205,397,38.57,23.0662 +67,307,-0.0012,-0.0004,643.76,1600.55,1426.73,21.61,551.92,2388.27,9073.28,47.92,519.77,2388.27,8.5162,395,38.64,23.1415 +67,308,-0.0015,0.0004,643.72,1603.45,1429.87,21.61,550.48,2388.27,9081.02,48.02,520.24,2388.26,8.4953,396,38.65,23.0674 +67,309,-0.0002,0.0001,643.64,1596.88,1426.89,21.61,551.1,2388.26,9072.93,48.18,519.52,2388.3,8.5246,397,38.52,23.0712 +67,310,0.002,0.0003,643.17,1606.73,1436.56,21.61,550.92,2388.25,9069.83,48.18,520.18,2388.2,8.4953,394,38.52,23.0628 +67,311,-0.0003,0.0002,643.83,1603.88,1423.76,21.61,551.71,2388.26,9079.55,48.02,519.68,2388.19,8.5315,395,38.49,23.0542 +67,312,-0.001,-0.0002,643.4,1599.47,1434.77,21.61,551.29,2388.22,9077.67,48.17,520.07,2388.28,8.5342,396,38.44,23.1478 +67,313,0.0009,-0.0003,643.57,1599.78,1424.96,21.61,551.3,2388.29,9074.14,48.28,520.29,2388.21,8.5668,397,38.45,23.1288 +69,10,-0.0007,-0.0001,642.2,1586.82,1405.68,21.61,553.92,2388.04,9063.43,47.42,522.31,2388.02,8.4457,393,38.88,23.3153 +69,11,0.0,-0.0003,642.5,1594.77,1406.42,21.61,554.17,2388.05,9056.9,47.43,522.29,2388.1,8.4304,393,38.92,23.4431 +69,12,-0.0025,0.0,642.22,1588.72,1399.64,21.61,553.62,2388.11,9060.31,47.31,522.23,2388.05,8.4514,392,38.84,23.2182 +69,13,0.0003,-0.0004,642.34,1589.66,1398.65,21.61,553.81,2388.1,9056.77,47.35,521.6,2388.04,8.4058,391,38.92,23.4015 +69,14,0.0022,0.0003,642.17,1591.26,1402.76,21.61,553.88,2388.06,9055.95,47.18,521.53,2388.11,8.4368,392,38.9,23.3457 +69,15,-0.0059,0.0001,642.06,1585.51,1404.58,21.61,553.62,2388.05,9054.82,47.47,521.72,2388.02,8.4268,390,38.98,23.3993 +69,16,0.0004,0.0002,642.51,1583.93,1406.63,21.61,553.9,2388.08,9067.7,47.29,522.37,2388.03,8.4132,391,38.85,23.3434 +69,17,-0.0023,-0.0002,642.09,1586.48,1402.52,21.61,554.32,2388.06,9053.41,47.27,522.14,2388.05,8.4084,392,38.98,23.521 +69,18,0.0016,0.0004,642.63,1593.01,1398.91,21.61,554.41,2388.08,9063.0,47.33,521.94,2388.02,8.4055,392,38.87,23.424 +69,19,0.0018,-0.0001,642.48,1583.71,1402.07,21.61,554.34,2388.03,9063.62,47.41,521.54,2388.06,8.4271,392,38.99,23.4281 +69,20,-0.0005,-0.0002,642.95,1580.85,1401.35,21.61,553.46,2388.03,9058.34,47.41,522.3,2388.03,8.3883,392,38.89,23.4506 +69,21,0.001,-0.0001,642.61,1582.64,1400.83,21.61,554.47,2388.04,9061.93,47.31,521.45,2388.02,8.4128,392,38.98,23.2773 +69,22,-0.0011,0.0005,642.47,1583.51,1408.57,21.61,553.72,2387.99,9059.64,47.3,522.15,2388.04,8.4106,390,38.9,23.392 +69,23,0.0014,0.0002,641.96,1587.87,1398.51,21.61,553.85,2388.07,9060.78,47.21,522.08,2388.07,8.4135,391,38.98,23.243 +69,24,0.0013,-0.0004,642.03,1594.35,1404.97,21.61,553.7,2388.04,9059.9,47.25,521.44,2388.05,8.406,393,39.01,23.4064 +69,25,-0.0006,-0.0002,642.98,1582.81,1402.96,21.61,553.52,2388.0,9067.34,47.3,521.81,2388.05,8.3933,392,39.04,23.4213 +69,26,0.0006,0.0004,643.05,1582.02,1401.56,21.61,553.55,2388.05,9050.56,47.4,521.81,2388.03,8.4684,392,38.9,23.4005 +69,27,0.0005,0.0004,642.46,1589.72,1397.94,21.61,553.9,2388.03,9053.93,47.24,521.82,2388.0,8.4161,391,38.93,23.4205 +69,28,-0.0053,-0.0004,642.39,1583.78,1397.51,21.61,555.41,2388.02,9051.95,47.39,521.73,2388.09,8.3993,392,38.89,23.4389 +69,29,-0.0006,-0.0001,642.02,1591.48,1403.56,21.61,553.71,2388.04,9062.09,47.3,522.26,2388.03,8.4371,390,39.07,23.4161 +69,30,0.0017,0.0003,642.11,1596.64,1401.98,21.61,554.4,2388.03,9060.93,47.44,521.7,2388.04,8.4127,393,39.13,23.4085 +69,31,0.0001,-0.0001,641.76,1585.94,1403.47,21.61,553.86,2388.05,9060.57,47.21,521.91,2388.06,8.4403,392,38.94,23.3638 +69,32,0.0006,-0.0004,642.54,1583.83,1396.26,21.61,553.75,2388.01,9058.88,47.27,521.63,2388.04,8.4476,392,38.94,23.3449 +69,33,0.0012,0.0001,642.39,1586.62,1396.31,21.61,554.17,2388.03,9060.05,47.11,521.76,2388.05,8.424,391,38.84,23.4213 +69,34,-0.0003,0.0,642.26,1587.22,1402.87,21.61,553.68,2388.05,9052.74,47.61,521.8,2388.07,8.4184,393,38.7,23.274 +69,35,-0.0015,-0.0,642.5,1588.12,1406.54,21.61,553.92,2388.05,9064.29,47.2,522.25,2388.07,8.4128,392,39.01,23.4004 +69,36,0.0024,0.0,642.96,1584.06,1400.27,21.61,553.08,2388.0,9056.93,47.24,522.36,2388.05,8.3762,391,38.91,23.4458 +69,37,-0.0026,-0.0002,642.27,1586.96,1403.9,21.61,554.55,2388.02,9057.54,47.41,522.19,2388.01,8.3834,393,38.91,23.3384 +69,38,0.0017,0.0002,642.14,1585.48,1393.38,21.61,553.79,2388.03,9057.85,47.34,521.73,2387.98,8.3927,393,38.91,23.423 +69,39,0.0014,-0.0004,642.94,1594.9,1403.49,21.61,553.69,2388.01,9070.94,47.16,521.75,2388.03,8.4023,391,38.93,23.3212 +69,40,-0.0025,-0.0001,642.37,1579.66,1395.23,21.61,554.98,2388.01,9062.84,47.36,522.49,2388.0,8.3953,392,38.95,23.272 +69,41,-0.0021,-0.0004,642.81,1583.15,1403.22,21.61,554.22,2388.05,9054.53,47.22,522.5,2388.05,8.4235,392,38.93,23.4194 +69,42,-0.0026,-0.0003,642.56,1588.95,1393.94,21.61,553.92,2388.05,9059.64,47.41,522.24,2388.03,8.4167,393,38.85,23.3479 +69,43,0.0009,0.0001,642.48,1590.83,1406.74,21.61,553.36,2388.07,9066.87,47.32,522.04,2388.07,8.395,392,39.0,23.2502 +69,44,-0.0,0.0005,642.08,1590.48,1402.63,21.61,553.59,2388.0,9062.19,47.36,522.08,2388.08,8.4196,392,38.95,23.3222 +69,45,-0.0004,0.0002,642.33,1589.66,1408.84,21.61,554.52,2388.07,9067.54,47.44,521.67,2388.01,8.3736,394,38.86,23.2566 +69,46,-0.0012,0.0005,642.07,1590.88,1400.68,21.61,553.96,2388.04,9056.72,47.15,522.43,2387.99,8.4282,392,39.02,23.3222 +69,47,-0.0015,-0.0002,642.42,1583.93,1400.96,21.61,553.83,2388.05,9052.8,47.17,522.24,2388.06,8.4111,392,38.95,23.454 +69,48,0.0021,-0.0004,642.22,1583.95,1394.68,21.61,553.84,2388.01,9062.15,47.29,522.1,2388.02,8.4212,392,39.1,23.4226 +69,49,0.0025,-0.0001,642.22,1586.24,1401.05,21.61,554.35,2388.03,9053.59,47.43,522.43,2388.02,8.4092,391,38.75,23.4848 +69,50,0.0005,-0.0004,642.7,1589.78,1409.53,21.61,554.36,2388.07,9052.96,47.41,521.93,2388.02,8.4397,393,38.97,23.4748 +69,51,0.0046,0.0003,642.01,1590.52,1413.52,21.61,553.49,2388.06,9057.19,47.37,521.82,2388.06,8.4209,392,38.85,23.369 +69,52,0.0031,0.0001,641.95,1582.78,1400.49,21.61,553.32,2388.07,9060.68,47.37,522.11,2388.04,8.4009,394,39.12,23.2139 +69,53,-0.0013,0.0,642.44,1590.73,1402.65,21.61,553.61,2388.05,9055.7,47.32,521.61,2388.02,8.3999,392,38.9,23.3389 +69,54,0.001,-0.0002,642.22,1592.65,1399.91,21.61,554.06,2388.06,9059.05,47.44,522.23,2388.1,8.4224,394,38.94,23.4411 +69,55,-0.0006,-0.0001,642.31,1589.02,1403.57,21.61,553.39,2388.01,9064.28,47.22,522.0,2388.06,8.4422,391,38.91,23.4376 +69,56,-0.0002,0.0003,642.2,1581.45,1404.68,21.61,553.56,2388.07,9051.54,47.34,522.03,2388.07,8.3976,391,39.0,23.4773 +69,57,0.0017,0.0004,642.68,1593.8,1405.01,21.61,553.22,2388.06,9063.66,47.43,521.24,2388.07,8.4233,393,39.01,23.2959 +69,58,0.0009,0.0002,642.25,1591.74,1400.35,21.61,554.18,2388.04,9061.74,47.39,522.04,2388.06,8.4449,391,39.04,23.4445 +69,59,-0.0022,0.0002,642.43,1591.48,1399.67,21.61,553.6,2388.07,9056.32,47.41,522.12,2388.06,8.4002,394,38.96,23.4055 +69,60,0.0012,0.0003,642.67,1591.24,1404.78,21.61,554.13,2388.02,9062.32,47.34,521.85,2388.06,8.424,392,38.8,23.3268 +69,61,0.0011,-0.0004,642.6,1589.87,1401.64,21.61,553.65,2388.07,9060.28,47.33,522.03,2388.05,8.4468,394,39.13,23.2911 +69,62,0.0027,-0.0004,641.99,1587.1,1402.55,21.61,553.73,2388.11,9065.67,47.31,521.75,2388.02,8.4194,389,38.92,23.3303 +69,63,0.0011,-0.0002,642.42,1588.23,1407.13,21.61,554.05,2388.02,9056.97,47.31,522.24,2388.08,8.3737,392,38.87,23.3459 +69,64,-0.0029,-0.0002,641.78,1583.57,1403.32,21.61,554.73,2388.07,9066.03,47.37,521.62,2388.09,8.4115,391,39.0,23.4353 +69,65,0.0045,0.0003,642.41,1585.43,1404.72,21.61,553.88,2387.99,9059.38,47.33,522.06,2388.05,8.3668,393,38.91,23.3167 +69,66,-0.0042,-0.0004,643.04,1585.75,1402.42,21.61,554.22,2388.07,9061.17,47.33,522.02,2388.02,8.404,392,38.97,23.3391 +69,67,0.0015,-0.0003,642.61,1589.15,1405.42,21.61,554.73,2388.05,9060.32,47.32,521.63,2388.01,8.3821,393,39.03,23.3232 +69,68,0.0,-0.0002,642.52,1588.22,1403.38,21.61,553.93,2388.09,9059.01,47.27,522.47,2388.1,8.4487,391,39.0,23.3992 +69,69,0.0011,0.0003,642.49,1588.58,1402.21,21.61,554.03,2388.05,9052.41,47.21,521.97,2388.01,8.4226,391,38.83,23.3736 +69,70,0.0029,-0.0004,642.1,1587.68,1398.62,21.61,553.66,2388.09,9060.77,47.46,521.39,2388.04,8.4369,392,38.93,23.2777 +69,71,0.0021,0.0003,642.32,1590.15,1394.47,21.6,553.47,2388.01,9056.1,47.33,521.78,2388.05,8.3838,393,38.87,23.4252 +69,72,0.0003,0.0,642.49,1592.29,1397.55,21.61,554.04,2388.05,9056.96,47.15,522.12,2388.05,8.4723,391,38.97,23.3514 +69,73,0.0015,-0.0004,642.78,1588.97,1397.19,21.61,553.97,2388.05,9058.06,47.31,522.25,2388.09,8.4148,394,38.91,23.3846 +69,74,0.002,-0.0001,641.82,1585.45,1396.86,21.61,553.64,2388.1,9063.84,47.39,521.9,2388.09,8.4142,394,38.92,23.3615 +69,75,-0.0008,0.0004,641.93,1584.1,1393.68,21.61,553.75,2388.05,9060.09,47.36,522.24,2388.1,8.4274,391,38.84,23.4059 +69,76,-0.0011,0.0004,642.15,1588.26,1403.48,21.61,554.04,2388.03,9056.32,47.21,522.14,2388.03,8.396,392,38.74,23.3337 +69,77,-0.0008,0.0003,642.26,1581.31,1397.67,21.61,554.36,2388.02,9065.86,47.37,522.26,2388.09,8.4086,392,38.87,23.3905 +69,78,0.0001,-0.0001,642.65,1581.02,1402.1,21.61,554.07,2388.07,9064.15,47.33,522.13,2388.05,8.3867,395,38.94,23.4632 +69,79,-0.0001,0.0002,642.33,1590.07,1400.89,21.61,553.88,2388.06,9055.55,47.26,522.24,2388.05,8.4246,391,38.95,23.3784 +69,80,-0.0002,0.0005,641.95,1588.83,1402.95,21.61,554.36,2388.07,9061.0,47.37,522.0,2388.04,8.4196,392,39.06,23.3386 +69,81,-0.0004,-0.0001,642.7,1589.94,1410.19,21.61,554.13,2388.04,9055.31,47.38,522.5,2388.02,8.4154,391,38.85,23.3222 +69,82,0.0011,0.0,642.46,1582.8,1400.87,21.61,554.14,2388.03,9060.03,47.42,522.06,2388.08,8.4148,392,38.85,23.3736 +69,83,-0.0015,0.0004,642.18,1590.51,1402.62,21.61,554.16,2388.09,9063.2,47.35,522.14,2388.04,8.4277,392,39.06,23.3795 +69,84,0.0004,-0.0001,642.48,1587.83,1411.14,21.61,553.84,2388.1,9067.99,47.28,522.2,2388.07,8.3994,392,38.92,23.4059 +69,85,0.0008,-0.0004,642.81,1588.16,1403.4,21.61,553.54,2388.06,9060.47,47.39,521.82,2388.09,8.4113,392,38.82,23.4197 +69,86,0.0006,-0.0004,642.23,1588.23,1397.46,21.61,553.79,2388.06,9060.07,47.31,521.64,2388.03,8.4236,392,38.84,23.3077 +69,87,-0.0012,-0.0004,642.3,1595.34,1405.94,21.61,554.01,2388.07,9062.3,47.22,521.74,2388.08,8.4021,394,38.93,23.335 +69,88,-0.0003,0.0004,642.75,1586.48,1397.49,21.61,554.44,2388.07,9059.07,47.28,521.98,2388.05,8.3784,392,38.9,23.3965 +69,89,-0.0031,0.0002,642.5,1590.07,1400.68,21.61,554.1,2388.07,9060.09,47.51,521.8,2388.04,8.4236,393,38.89,23.2684 +69,90,0.0006,-0.0003,642.29,1589.44,1400.74,21.61,554.05,2388.06,9059.32,47.29,522.03,2388.07,8.3973,392,39.15,23.3596 +69,91,0.001,-0.0004,642.95,1588.38,1402.11,21.61,553.81,2388.09,9057.6,47.44,522.15,2388.06,8.4392,394,38.98,23.4327 +69,92,-0.0007,-0.0004,642.49,1583.11,1402.98,21.61,553.51,2388.02,9059.25,47.38,522.25,2388.04,8.4064,393,38.86,23.2896 +69,93,-0.0004,-0.0001,642.42,1590.25,1404.13,21.61,553.73,2388.1,9055.71,47.46,522.03,2388.08,8.4407,393,38.96,23.3355 +69,94,0.0006,-0.0004,642.23,1587.91,1407.16,21.6,554.38,2388.03,9061.06,47.35,522.02,2388.08,8.4041,392,39.0,23.4327 +69,95,0.0039,-0.0005,642.7,1586.28,1410.86,21.61,553.12,2388.04,9064.63,47.34,522.0,2388.02,8.4283,393,38.72,23.314 +69,96,-0.0003,-0.0,642.35,1583.22,1397.91,21.61,553.21,2388.09,9065.08,47.35,521.78,2388.04,8.3991,390,38.93,23.2473 +69,97,-0.0011,-0.0004,642.27,1587.87,1406.05,21.61,553.68,2388.05,9054.92,47.35,521.8,2388.04,8.3872,393,39.02,23.4463 +69,98,0.0001,0.0,642.71,1582.37,1405.4,21.61,553.82,2388.05,9064.27,47.56,521.96,2388.03,8.4307,393,39.08,23.3394 +69,99,-0.0006,0.0005,642.65,1585.79,1402.46,21.61,553.89,2388.06,9054.75,47.34,521.93,2388.06,8.4172,391,39.04,23.4417 +69,100,-0.0014,0.0003,642.14,1585.79,1401.43,21.61,554.21,2388.12,9061.06,47.39,521.74,2388.05,8.4533,393,38.93,23.3111 +69,101,-0.0068,0.0001,642.26,1589.04,1402.74,21.61,554.83,2388.05,9058.42,47.37,522.02,2388.11,8.4682,392,38.83,23.4186 +69,102,-0.0031,-0.0002,642.4,1580.86,1408.9,21.61,553.63,2388.1,9053.67,47.4,521.48,2388.03,8.418,392,38.79,23.3209 +69,103,-0.0001,-0.0004,642.82,1590.71,1402.73,21.61,554.17,2388.08,9061.15,47.45,522.03,2388.12,8.4634,394,38.96,23.3319 +69,104,-0.0051,-0.0001,641.95,1583.69,1406.33,21.61,554.34,2388.09,9063.72,47.55,521.75,2388.04,8.398,394,38.84,23.3785 +69,105,-0.001,0.0003,642.46,1583.49,1401.41,21.61,554.13,2388.1,9060.61,47.32,521.4,2388.05,8.4414,393,38.92,23.4095 +69,106,0.0004,0.0004,642.6,1592.78,1405.4,21.61,554.08,2388.08,9063.02,47.23,522.03,2388.05,8.437,392,38.87,23.2928 +69,107,-0.0009,0.0001,642.06,1581.32,1403.28,21.61,554.18,2388.06,9058.46,47.34,521.55,2388.06,8.4116,393,38.91,23.41 +69,108,0.0007,-0.0003,642.55,1590.72,1403.11,21.61,553.81,2388.06,9063.82,47.52,522.02,2388.06,8.3946,393,39.09,23.3653 +69,109,0.0003,0.0003,642.51,1589.1,1402.85,21.6,554.03,2388.05,9057.7,47.29,521.86,2388.02,8.4265,392,38.91,23.343 +69,110,0.0026,0.0002,642.21,1589.67,1397.65,21.61,554.29,2388.04,9064.99,47.32,521.7,2388.11,8.4482,392,38.86,23.384 +69,111,-0.0001,0.0001,641.98,1594.26,1401.35,21.61,554.03,2388.07,9056.52,47.34,521.9,2388.13,8.3717,393,38.78,23.3955 +69,112,0.0009,-0.0004,642.49,1595.04,1407.67,21.61,553.85,2388.07,9057.43,47.37,521.55,2388.1,8.4099,392,38.74,23.3357 +69,113,-0.0002,-0.0002,642.88,1588.63,1413.22,21.61,553.99,2388.05,9062.7,47.48,522.25,2388.05,8.4156,392,38.88,23.4319 +69,114,0.0018,-0.0002,642.29,1587.98,1406.57,21.61,554.17,2388.06,9067.76,47.42,521.68,2388.05,8.4277,392,38.98,23.3578 +69,115,-0.004,0.0002,642.62,1592.14,1403.66,21.61,553.28,2388.07,9055.41,47.4,521.99,2388.05,8.3966,394,38.84,23.287 +69,116,-0.0043,0.0004,642.19,1593.04,1401.12,21.61,553.7,2388.01,9057.86,47.24,522.27,2388.02,8.4027,392,38.95,23.1733 +69,117,-0.0014,0.0001,642.3,1580.92,1403.44,21.61,554.26,2388.07,9067.55,47.39,521.92,2388.05,8.431,392,39.02,23.4317 +69,118,-0.0013,0.0002,642.19,1586.7,1406.53,21.6,554.3,2388.08,9062.57,47.44,521.8,2388.07,8.4094,392,38.84,23.3953 +69,119,-0.0006,-0.0002,642.48,1585.14,1405.6,21.61,553.64,2388.04,9059.14,47.29,521.67,2388.09,8.435,394,38.74,23.3253 +69,120,0.001,0.0004,642.36,1589.23,1403.27,21.61,553.82,2388.08,9064.56,47.45,522.08,2388.05,8.4149,391,38.91,23.2706 +69,121,0.0003,-0.0001,642.49,1586.86,1405.8,21.61,553.97,2388.04,9061.73,47.49,521.67,2388.06,8.4424,393,39.08,23.3898 +69,122,0.0024,-0.0003,642.4,1583.9,1395.0,21.61,554.47,2388.1,9056.61,47.31,521.71,2388.09,8.4004,394,39.0,23.4376 +69,123,-0.0025,-0.0003,642.28,1591.99,1398.15,21.61,554.17,2388.07,9055.32,47.42,521.75,2388.1,8.396,391,38.86,23.3047 +69,124,0.0047,0.0005,642.44,1585.54,1403.35,21.61,553.33,2388.06,9062.41,47.43,521.73,2388.06,8.3903,392,38.95,23.2923 +69,125,0.0011,0.0003,642.67,1595.6,1411.5,21.61,554.15,2388.04,9045.64,47.55,521.93,2388.1,8.4411,392,38.8,23.446 +69,126,-0.0012,-0.0002,642.12,1592.38,1406.71,21.61,553.34,2388.09,9060.42,47.17,521.46,2388.12,8.4184,393,38.81,23.3453 +69,127,0.0028,0.0003,641.65,1587.74,1405.94,21.61,554.71,2388.01,9064.82,47.52,522.01,2388.04,8.4416,392,38.9,23.3377 +69,128,0.0011,-0.0001,642.34,1581.24,1399.95,21.61,554.57,2388.03,9058.78,47.42,522.02,2388.12,8.436,392,38.83,23.3132 +69,129,0.0005,-0.0,642.33,1586.03,1401.7,21.61,552.89,2388.02,9067.43,47.51,521.76,2388.07,8.4059,392,38.96,23.3278 +69,130,-0.0041,-0.0002,642.27,1584.29,1406.42,21.61,553.63,2388.07,9061.3,47.5,521.56,2388.09,8.413,394,38.93,23.3508 +69,131,-0.0032,0.0004,642.59,1587.82,1406.68,21.61,553.43,2388.1,9054.98,47.38,521.36,2388.14,8.4318,393,38.91,23.3793 +69,132,0.0039,0.0005,642.37,1588.31,1401.39,21.61,554.13,2388.04,9058.67,47.24,521.8,2388.07,8.441,392,38.9,23.3596 +69,133,0.0011,-0.0002,642.78,1586.41,1398.01,21.61,553.47,2388.11,9061.49,47.4,521.97,2388.07,8.4317,394,38.82,23.3191 +69,134,0.0018,0.0002,642.44,1582.76,1406.13,21.61,553.61,2388.07,9061.1,47.29,521.83,2388.05,8.4166,393,38.99,23.3856 +69,135,-0.0012,-0.0004,642.06,1588.63,1402.66,21.61,553.91,2388.06,9057.13,47.35,521.93,2388.1,8.4278,391,38.89,23.3185 +69,136,-0.0014,-0.0004,642.47,1588.81,1403.63,21.61,554.02,2388.1,9066.77,47.49,521.77,2388.1,8.4118,393,38.87,23.4088 +69,137,0.0001,0.0004,642.4,1586.21,1408.87,21.61,553.53,2388.04,9062.31,47.49,521.84,2388.08,8.3908,391,38.89,23.4165 +69,138,-0.0042,0.0002,642.29,1584.91,1402.28,21.61,554.16,2388.08,9053.76,47.29,522.26,2388.04,8.4068,394,38.97,23.3071 +69,139,-0.0003,0.0002,642.46,1591.06,1406.82,21.61,554.72,2388.0,9054.74,47.2,521.78,2388.05,8.4125,393,38.77,23.3347 +69,140,0.0014,0.0005,642.7,1593.43,1412.94,21.61,553.43,2388.1,9060.49,47.56,521.71,2388.08,8.4162,394,38.95,23.2982 +69,141,-0.0043,0.0005,642.88,1583.31,1400.34,21.61,553.32,2388.07,9063.73,47.41,521.47,2388.13,8.4476,393,38.81,23.3677 +69,142,0.0024,0.0002,642.42,1586.04,1403.67,21.61,553.59,2388.08,9056.86,47.43,521.68,2388.07,8.4405,393,38.78,23.3592 +69,143,-0.0007,-0.0002,642.03,1594.37,1404.07,21.61,554.4,2388.07,9056.28,47.4,522.11,2388.05,8.4432,393,39.0,23.3261 +69,144,0.001,-0.0002,642.52,1593.06,1413.04,21.61,553.69,2388.09,9062.52,47.27,521.9,2388.09,8.3938,394,38.81,23.3889 +69,145,-0.0006,0.0001,642.65,1588.35,1401.76,21.61,554.85,2388.01,9055.84,47.42,522.12,2388.06,8.4415,392,38.95,23.3461 +69,146,0.0046,-0.0003,642.87,1591.29,1400.61,21.61,553.8,2388.04,9060.18,47.37,522.41,2388.07,8.4617,392,38.89,23.2719 +69,147,0.0,-0.0002,641.85,1598.39,1404.29,21.61,553.28,2388.08,9060.27,47.34,521.11,2388.07,8.413,393,39.02,23.4099 +69,148,-0.0008,0.0005,642.12,1592.47,1408.86,21.61,554.29,2388.08,9062.89,47.36,521.37,2388.1,8.4128,394,39.03,23.4103 +69,149,0.0,0.0002,642.44,1585.98,1412.5,21.61,553.91,2388.06,9057.85,47.69,521.88,2388.03,8.4555,392,38.65,23.2829 +69,150,-0.0041,-0.0001,641.77,1592.75,1411.43,21.61,553.64,2388.06,9064.75,47.53,521.63,2388.07,8.398,392,38.77,23.2324 +69,151,0.0026,0.0002,642.57,1585.42,1406.85,21.61,554.12,2388.03,9058.23,47.5,521.81,2388.04,8.431,392,38.79,23.3772 +69,152,0.0044,-0.0004,642.21,1586.79,1407.53,21.61,553.96,2388.07,9064.66,47.51,521.45,2388.09,8.4366,392,38.74,23.2671 +69,153,0.0006,0.0002,643.05,1596.96,1402.22,21.61,553.95,2388.1,9057.5,47.41,521.67,2388.07,8.4288,393,38.72,23.3215 +69,154,0.0004,0.0004,642.58,1587.36,1396.77,21.61,553.9,2388.07,9054.28,47.32,522.09,2388.08,8.4378,392,38.85,23.3733 +69,155,0.0013,0.0004,642.46,1594.33,1403.29,21.61,553.89,2388.07,9059.38,47.48,522.21,2388.11,8.4315,393,38.8,23.3146 +69,156,0.0043,-0.0005,642.81,1586.49,1409.77,21.61,553.22,2388.05,9048.42,47.47,521.93,2388.06,8.414,391,38.77,23.3228 +69,157,0.0018,-0.0005,642.48,1585.83,1399.0,21.61,553.49,2388.13,9054.1,47.32,521.82,2388.11,8.4459,393,38.96,23.2912 +69,158,0.0022,-0.0002,642.56,1595.06,1398.21,21.61,554.08,2388.06,9052.65,47.37,521.81,2388.04,8.4165,394,38.89,23.2278 +69,159,-0.0011,0.0002,642.78,1588.47,1403.68,21.61,554.27,2388.02,9064.91,47.5,521.45,2388.1,8.4397,394,38.96,23.2551 +69,160,-0.0016,0.0001,642.24,1590.67,1396.04,21.61,554.06,2388.09,9055.43,47.5,521.62,2388.09,8.4351,394,38.96,23.2379 +69,161,0.0024,0.0005,642.42,1595.85,1409.82,21.61,554.1,2388.06,9063.54,47.36,521.42,2388.09,8.441,393,38.96,23.2825 +69,162,0.0003,-0.0,642.05,1583.95,1402.38,21.61,553.54,2388.1,9057.44,47.44,521.07,2388.13,8.4104,392,39.04,23.2663 +69,163,-0.0046,-0.0004,642.96,1587.57,1409.73,21.61,553.24,2388.08,9060.43,47.46,521.58,2388.1,8.3988,392,38.81,23.3941 +69,164,-0.0004,-0.0005,642.67,1591.85,1405.05,21.61,554.14,2388.09,9053.77,47.38,521.88,2388.08,8.4282,392,38.98,23.1519 +69,165,-0.0032,-0.0004,642.36,1591.17,1401.25,21.61,553.25,2388.05,9064.31,47.43,521.49,2388.06,8.4288,393,38.84,23.3278 +69,166,-0.0017,-0.0004,642.58,1590.96,1399.13,21.61,553.77,2388.04,9063.92,47.41,521.47,2388.03,8.4164,393,38.68,23.2966 +69,167,-0.0027,0.0004,642.28,1581.27,1413.0,21.61,553.82,2388.06,9056.93,47.58,521.17,2388.09,8.4401,393,38.85,23.3718 +69,168,-0.0006,-0.0004,642.32,1584.92,1401.03,21.61,553.42,2388.1,9057.47,47.56,521.4,2388.03,8.4079,393,38.86,23.3947 +69,169,-0.0008,0.0002,642.41,1585.61,1400.9,21.61,553.25,2388.1,9060.19,47.51,521.85,2388.06,8.4511,392,39.01,23.2624 +69,170,-0.0038,-0.0002,642.29,1582.07,1405.88,21.61,554.05,2388.05,9061.58,47.42,521.81,2388.09,8.4019,394,38.82,23.3343 +69,171,0.0006,-0.0003,642.76,1591.34,1407.45,21.61,553.83,2388.09,9064.04,47.6,521.4,2388.1,8.4403,393,38.93,23.2422 +69,172,0.0041,0.0004,643.29,1586.69,1408.81,21.61,553.56,2388.01,9067.98,47.62,522.16,2388.09,8.4187,392,39.03,23.2194 +69,173,-0.0021,0.0001,641.98,1580.64,1413.89,21.61,553.7,2388.05,9059.73,47.55,521.71,2388.03,8.4332,392,38.7,23.335 +69,174,-0.0017,0.0002,642.81,1591.47,1404.95,21.61,553.83,2388.06,9057.14,47.34,521.89,2388.1,8.3995,394,38.98,23.2556 +69,175,-0.0006,-0.0001,642.48,1594.34,1400.93,21.61,554.57,2388.02,9058.3,47.4,521.84,2388.09,8.4064,393,38.96,23.3449 +69,176,-0.0006,0.0003,642.72,1586.34,1410.49,21.61,552.87,2388.09,9057.56,47.49,522.12,2388.09,8.4304,394,39.07,23.2939 +69,177,-0.0067,0.0002,642.93,1590.22,1404.51,21.61,554.13,2388.11,9073.87,47.44,521.71,2388.09,8.3935,393,38.83,23.4259 +69,178,-0.0035,0.0003,642.36,1586.24,1410.05,21.61,554.46,2388.09,9054.18,47.59,521.87,2388.14,8.4351,393,38.79,23.3799 +69,179,0.0019,-0.0001,642.79,1586.02,1406.63,21.61,553.59,2388.09,9054.26,47.51,521.73,2388.05,8.4331,393,38.91,23.3296 +69,180,0.0029,0.0,642.73,1587.25,1405.21,21.61,553.72,2388.07,9061.63,47.42,521.63,2388.1,8.4129,393,38.75,23.365 +69,181,0.0019,0.0,642.73,1589.07,1404.86,21.61,554.0,2388.09,9060.61,47.59,521.39,2388.13,8.4084,392,38.8,23.3663 +69,182,0.0009,-0.0004,642.4,1589.78,1407.05,21.61,553.12,2388.08,9060.83,47.29,522.14,2388.07,8.4335,393,39.03,23.3038 +69,183,0.0017,-0.0001,642.58,1589.58,1411.02,21.61,554.45,2388.11,9057.41,47.47,521.82,2388.14,8.4152,393,38.83,23.3566 +69,184,-0.0016,0.0002,642.72,1584.7,1404.79,21.61,554.19,2388.1,9064.39,47.36,521.85,2388.09,8.4312,393,39.01,23.3585 +69,185,0.0017,-0.0005,642.33,1580.72,1404.39,21.61,553.99,2388.12,9061.07,47.49,521.18,2388.06,8.4405,394,38.83,23.4062 +69,186,-0.0002,-0.0001,642.35,1588.05,1404.29,21.61,554.19,2388.08,9056.96,47.44,521.36,2388.15,8.4282,393,38.88,23.3461 +69,187,0.0032,0.0004,642.55,1594.73,1408.24,21.61,553.66,2388.03,9060.78,47.45,521.04,2388.12,8.452,394,38.99,23.2977 +69,188,0.0003,0.0005,642.99,1592.52,1408.25,21.61,553.4,2388.06,9057.77,47.34,521.79,2388.1,8.4284,395,38.84,23.2455 +69,189,-0.0011,0.0002,643.06,1586.8,1412.01,21.61,554.12,2388.07,9055.54,47.5,521.5,2388.06,8.4388,393,38.9,23.283 +69,190,-0.0014,-0.0004,642.41,1589.14,1408.3,21.61,553.27,2388.09,9061.44,47.5,521.29,2388.05,8.3895,391,38.78,23.3642 +69,191,0.0003,0.0005,643.01,1590.69,1399.54,21.61,553.42,2388.09,9067.96,47.55,521.6,2388.1,8.4746,392,38.95,23.2709 +69,192,-0.0,-0.0004,642.54,1590.74,1417.58,21.61,553.43,2388.12,9056.73,47.58,521.5,2388.13,8.4482,393,38.89,23.3725 +69,193,0.0056,-0.0002,642.37,1584.5,1404.16,21.61,553.38,2388.09,9068.3,47.6,521.16,2388.09,8.408,393,38.71,23.4194 +69,194,-0.0024,0.0001,642.48,1589.97,1405.74,21.61,553.67,2388.09,9057.1,47.51,521.52,2388.1,8.4701,390,38.72,23.2788 +69,195,0.0045,0.0004,642.53,1581.85,1411.09,21.61,553.42,2388.1,9059.4,47.36,521.72,2388.04,8.4077,393,38.89,23.3483 +69,196,-0.0001,0.0004,642.52,1583.0,1410.31,21.61,553.48,2388.05,9058.36,47.52,521.84,2388.07,8.4325,392,38.91,23.3371 +69,197,-0.0033,0.0004,643.04,1590.52,1405.28,21.61,553.73,2388.12,9060.98,47.47,521.23,2388.1,8.4257,393,38.8,23.3436 +69,198,0.0003,-0.0004,643.42,1589.05,1406.08,21.61,553.72,2388.12,9054.0,47.59,521.76,2388.13,8.4789,395,38.7,23.2793 +69,199,-0.0015,0.0004,642.32,1590.5,1410.85,21.61,553.74,2388.11,9060.37,47.41,521.74,2388.08,8.4371,394,38.65,23.2833 +69,200,-0.0022,-0.0003,642.36,1594.24,1411.26,21.61,553.71,2388.09,9059.77,47.44,521.23,2388.15,8.4361,392,38.83,23.3719 +69,201,-0.0026,0.0003,642.11,1585.17,1411.1,21.61,554.21,2388.08,9062.36,47.43,522.0,2388.09,8.4379,393,38.97,23.1592 +69,202,0.0011,0.0005,642.4,1589.09,1405.16,21.61,553.19,2388.08,9058.32,47.39,521.11,2388.09,8.4433,393,38.99,23.3581 +69,203,0.0008,-0.0004,642.64,1590.68,1405.86,21.61,553.84,2388.09,9058.26,47.62,521.68,2388.1,8.4446,393,38.73,23.2357 +69,204,0.002,0.0004,642.45,1590.63,1404.61,21.61,553.03,2388.11,9058.21,47.39,521.45,2388.1,8.4173,394,38.76,23.29 +69,205,-0.0016,0.0001,642.66,1591.27,1398.64,21.61,552.91,2388.14,9063.49,47.45,521.8,2388.08,8.417,394,38.78,23.3015 +69,206,-0.0014,0.0,642.11,1592.25,1406.51,21.61,553.69,2388.09,9062.32,47.37,522.12,2388.08,8.4326,393,38.83,23.4201 +69,207,0.0008,-0.0003,642.93,1586.6,1414.13,21.61,552.94,2388.08,9055.54,47.46,521.42,2388.1,8.4317,393,38.96,23.3067 +69,208,-0.0045,-0.0004,642.22,1595.37,1401.92,21.61,553.21,2388.15,9058.25,47.71,520.74,2388.1,8.465,394,38.94,23.3366 +69,209,-0.0006,-0.0002,642.79,1585.13,1405.09,21.61,553.82,2388.1,9064.99,47.62,521.19,2388.08,8.4505,393,38.75,23.2816 +69,210,-0.0012,0.0004,641.96,1592.77,1412.28,21.61,552.73,2388.06,9054.64,47.51,521.5,2388.08,8.4207,395,38.9,23.2935 +69,211,-0.0054,-0.0,642.34,1586.1,1411.83,21.61,553.42,2388.1,9059.54,47.56,521.65,2388.08,8.4207,393,38.86,23.2444 +69,212,-0.002,-0.0002,642.56,1591.05,1407.28,21.61,553.53,2388.12,9058.19,47.57,521.39,2388.02,8.4573,392,38.83,23.1772 +69,213,-0.0018,0.0002,642.62,1592.97,1413.59,21.61,553.37,2388.07,9061.76,47.48,521.89,2388.09,8.4099,392,38.73,23.3145 +69,214,0.004,-0.0004,642.71,1596.93,1410.32,21.61,553.62,2388.11,9059.47,47.38,521.56,2388.1,8.4249,392,38.78,23.1653 +69,215,0.0006,-0.0,643.41,1592.08,1406.78,21.61,554.35,2388.09,9066.61,47.52,521.15,2388.19,8.4344,394,38.93,23.2589 +69,216,-0.0018,-0.0003,643.03,1586.26,1412.69,21.61,553.51,2388.04,9064.46,47.41,521.74,2388.1,8.4403,394,38.79,23.3786 +69,217,-0.0023,-0.0001,642.95,1587.59,1402.82,21.61,554.38,2388.12,9064.84,47.69,520.94,2388.12,8.4358,395,38.88,23.3194 +69,218,0.0001,-0.0,642.65,1595.54,1404.21,21.61,553.8,2388.08,9057.04,47.57,521.15,2388.1,8.4205,393,38.8,23.4098 +69,219,-0.002,0.0005,642.43,1590.21,1403.66,21.61,553.22,2388.09,9057.76,47.54,521.67,2388.1,8.417,393,38.83,23.255 +69,220,0.0011,0.0004,642.68,1593.69,1405.96,21.61,553.04,2388.11,9053.83,47.58,521.67,2388.12,8.4244,392,38.76,23.256 +69,221,0.004,0.0004,642.5,1598.19,1413.78,21.61,553.99,2388.13,9060.82,47.46,521.2,2388.09,8.4365,393,38.81,23.3671 +69,222,0.0054,-0.0001,642.42,1586.47,1399.52,21.61,552.81,2388.16,9065.32,47.48,521.71,2388.1,8.4262,393,38.82,23.3398 +69,223,0.0001,-0.0003,643.53,1588.05,1402.8,21.61,552.81,2388.14,9060.12,47.56,520.66,2388.1,8.4328,393,38.89,23.2713 +69,224,-0.001,-0.0,642.71,1590.1,1398.4,21.61,553.33,2388.08,9060.88,47.44,521.12,2388.1,8.4278,393,38.95,23.3484 +69,225,-0.001,0.0003,642.75,1589.34,1409.54,21.61,553.46,2388.11,9058.58,47.52,521.17,2388.1,8.4323,392,39.13,23.2948 +69,226,0.0016,-0.0002,642.81,1589.05,1403.88,21.61,552.91,2388.12,9056.7,47.55,521.93,2388.11,8.4436,392,38.78,23.3362 +69,227,-0.0021,0.0005,642.27,1585.04,1408.38,21.61,553.06,2388.07,9062.23,47.57,521.34,2388.12,8.4225,392,39.05,23.2655 +69,228,-0.0018,-0.0001,642.22,1586.72,1411.47,21.61,553.77,2388.09,9057.73,47.43,520.71,2388.07,8.427,394,38.92,23.3789 +69,229,-0.0003,-0.0003,642.48,1592.42,1414.32,21.61,553.04,2388.11,9061.86,47.61,521.8,2388.13,8.4574,393,38.8,23.3666 +69,230,-0.0003,-0.0005,642.56,1591.18,1404.0,21.61,553.31,2388.09,9060.88,47.49,522.18,2388.05,8.449,392,38.78,23.3486 +69,231,-0.0035,-0.0004,642.87,1594.94,1416.59,21.61,553.37,2388.09,9057.56,47.65,521.17,2388.08,8.4451,393,38.55,23.2866 +69,232,-0.0006,-0.0002,642.92,1589.88,1403.38,21.61,553.66,2388.12,9059.72,47.54,521.55,2388.11,8.4359,392,38.76,23.2917 +69,233,0.0013,0.0002,642.58,1588.64,1414.12,21.61,553.65,2388.13,9061.74,47.62,521.17,2388.11,8.41,392,38.77,23.2885 +69,234,0.0007,0.0001,641.98,1589.61,1417.7,21.61,553.1,2388.12,9058.65,47.66,521.84,2388.1,8.4399,393,38.75,23.3461 +69,235,-0.0009,-0.0003,642.79,1595.12,1411.79,21.61,553.74,2388.14,9060.02,47.41,521.62,2388.09,8.4551,393,38.65,23.0768 +69,236,0.0009,0.0002,643.06,1590.61,1410.52,21.61,553.59,2388.12,9055.45,47.39,521.28,2388.12,8.4341,392,38.82,23.3892 +69,237,-0.0045,0.0002,642.35,1585.43,1415.45,21.61,553.06,2388.11,9062.26,47.69,521.36,2388.08,8.4308,391,38.81,23.3268 +69,238,-0.002,0.0004,642.23,1589.67,1407.89,21.61,553.43,2388.1,9062.04,47.54,521.38,2388.11,8.4211,392,38.9,23.3657 +69,239,-0.0016,0.0005,643.18,1581.22,1406.81,21.61,552.88,2388.11,9063.76,47.59,521.26,2388.09,8.4704,391,38.77,23.2965 +69,240,-0.0011,0.0003,642.98,1592.27,1414.69,21.61,552.91,2388.14,9061.96,47.72,522.0,2388.1,8.4928,393,38.76,23.247 +69,241,-0.0008,-0.0004,643.02,1594.17,1408.21,21.61,553.16,2388.11,9060.72,47.68,521.56,2388.13,8.4609,392,38.91,23.2709 +69,242,0.005,0.0004,642.74,1589.7,1411.08,21.61,553.33,2388.11,9054.18,47.57,521.37,2388.15,8.4639,393,38.61,23.3315 +69,243,0.0033,0.0005,642.31,1588.43,1408.73,21.61,553.39,2388.08,9060.8,47.49,521.15,2388.12,8.456,392,38.77,23.1342 +69,244,-0.0009,0.0005,643.11,1587.59,1411.38,21.61,553.17,2388.15,9058.03,47.5,521.69,2388.06,8.4233,392,38.71,23.3112 +69,245,-0.0001,0.0,642.34,1584.83,1408.43,21.61,553.51,2388.11,9057.66,47.55,521.29,2388.11,8.4538,394,38.83,23.2002 +69,246,0.0024,0.0002,643.14,1592.93,1412.71,21.61,552.57,2388.17,9063.7,47.51,521.96,2388.15,8.4663,395,38.81,23.2853 +69,247,-0.0015,-0.0002,642.61,1592.12,1409.07,21.61,553.32,2388.11,9052.05,47.56,521.09,2388.13,8.4327,394,38.67,23.2619 +69,248,-0.0018,0.0005,642.73,1591.72,1416.02,21.61,553.61,2388.11,9058.55,47.63,521.42,2388.09,8.4378,393,38.87,23.3237 +69,249,-0.0007,0.0003,642.47,1596.07,1412.61,21.61,553.66,2388.08,9061.25,47.55,520.73,2388.1,8.4117,392,38.84,23.3233 +69,250,0.0023,-0.0002,642.52,1589.89,1410.27,21.61,553.91,2388.12,9059.02,47.71,521.26,2388.08,8.4307,393,38.68,23.2461 +69,251,0.0016,0.0003,642.33,1592.05,1410.23,21.61,553.41,2388.09,9059.4,47.35,520.61,2388.1,8.495,392,38.96,23.1695 +69,252,0.0007,-0.0001,643.18,1594.4,1406.82,21.61,553.54,2388.06,9056.35,47.53,520.49,2388.14,8.4417,394,38.62,23.235 +69,253,-0.0008,0.0003,643.12,1592.17,1410.92,21.61,553.01,2388.15,9058.43,47.58,521.15,2388.11,8.4807,395,38.84,23.271 +69,254,0.0024,0.0003,642.95,1591.72,1416.17,21.61,552.84,2388.12,9063.93,47.5,520.94,2388.13,8.4403,394,38.77,23.2698 +69,255,0.005,0.0002,642.37,1587.85,1420.35,21.61,552.86,2388.07,9063.92,47.55,521.57,2388.06,8.4992,395,38.78,23.3193 +69,256,-0.0009,0.0002,642.7,1589.31,1414.76,21.61,553.42,2388.11,9061.47,47.82,521.66,2388.13,8.4537,394,38.76,23.2914 +69,257,-0.0022,-0.0001,643.26,1589.79,1412.35,21.61,552.61,2388.16,9053.88,47.65,521.26,2388.11,8.4723,393,38.77,23.2221 +69,258,-0.0019,-0.0001,642.72,1589.38,1419.15,21.61,554.01,2388.13,9060.94,47.6,521.2,2388.15,8.4715,394,38.83,23.2437 +69,259,0.002,-0.0003,642.33,1590.4,1418.05,21.61,552.6,2388.12,9053.82,47.59,520.31,2388.16,8.4675,394,38.78,23.2203 +69,260,0.0039,-0.0003,642.32,1588.34,1413.35,21.61,553.39,2388.09,9057.4,47.69,521.07,2388.14,8.4394,394,38.57,23.3901 +69,261,0.0002,-0.0002,642.55,1587.98,1409.19,21.61,553.46,2388.12,9068.19,47.44,521.74,2388.18,8.443,393,38.61,23.198 +69,262,-0.0014,-0.0001,642.48,1589.2,1416.58,21.61,552.9,2388.15,9061.6,47.51,521.52,2388.15,8.4351,394,38.7,23.2629 +69,263,-0.0017,-0.0002,642.7,1590.85,1405.98,21.61,552.91,2388.14,9057.04,47.69,521.52,2388.16,8.4744,394,38.92,23.2025 +69,264,-0.0019,-0.0004,642.98,1591.98,1414.06,21.61,553.76,2388.17,9062.05,47.78,520.71,2388.12,8.4589,392,38.74,23.2364 +69,265,-0.0025,0.0005,642.93,1590.06,1414.15,21.61,552.48,2388.12,9064.72,47.73,521.24,2388.14,8.4309,393,38.74,23.3176 +69,266,0.0009,0.0004,643.25,1591.95,1409.95,21.61,553.24,2388.09,9060.73,47.82,521.68,2388.15,8.4504,393,38.88,23.3357 +69,267,-0.0004,0.0004,642.95,1594.27,1415.54,21.61,552.85,2388.2,9054.96,47.69,521.14,2388.17,8.4612,393,38.77,23.243 +69,268,-0.0004,0.0001,643.11,1591.97,1404.21,21.61,553.04,2388.1,9067.07,47.62,520.92,2388.14,8.474,393,38.7,23.3324 +69,269,0.0039,0.0001,642.85,1589.58,1410.36,21.61,553.43,2388.14,9066.16,47.6,521.31,2388.14,8.4442,393,38.58,23.2596 +69,270,0.0048,0.0001,642.74,1596.66,1413.2,21.61,551.88,2388.14,9055.72,47.51,520.92,2388.12,8.4631,395,38.66,23.1488 +69,271,-0.0009,-0.0002,642.75,1599.68,1409.69,21.61,552.63,2388.12,9054.35,47.53,520.86,2388.17,8.4516,392,38.6,23.2817 +69,272,-0.0016,0.0004,643.02,1592.28,1420.53,21.61,552.87,2388.18,9064.04,47.84,520.9,2388.17,8.4329,393,38.7,23.3502 +69,273,0.0006,-0.0002,642.67,1595.9,1412.36,21.61,553.56,2388.08,9060.88,47.56,521.03,2388.14,8.4907,393,38.68,23.2731 +69,274,-0.0013,0.0002,642.52,1600.44,1411.3,21.61,552.28,2388.16,9051.55,47.65,520.49,2388.18,8.4082,394,38.93,23.3377 +69,275,-0.0014,-0.0004,643.52,1587.82,1408.05,21.61,552.55,2388.13,9058.76,47.82,521.2,2388.14,8.4688,393,38.64,23.286 +69,276,0.0015,0.0003,642.5,1594.59,1413.63,21.61,553.37,2388.16,9054.96,47.77,520.57,2388.17,8.4285,395,38.46,23.277 +69,277,-0.0047,0.0001,643.17,1598.01,1418.37,21.61,553.52,2388.14,9059.68,47.92,520.73,2388.11,8.4511,395,38.69,23.314 +69,278,-0.0053,-0.0,642.47,1587.57,1412.32,21.61,552.3,2388.16,9055.99,47.65,520.82,2388.13,8.4519,395,38.78,23.3003 +69,279,-0.0002,0.0002,643.18,1594.44,1423.04,21.61,553.04,2388.1,9052.98,47.73,520.93,2388.15,8.4807,394,38.81,23.2965 +69,280,0.0015,0.0003,642.86,1596.39,1414.99,21.61,552.9,2388.15,9054.87,47.76,521.33,2388.12,8.4591,393,38.95,23.2538 +69,281,-0.0008,0.0004,642.79,1590.53,1410.25,21.61,552.84,2388.12,9054.69,47.7,520.85,2388.14,8.45,394,38.77,23.2109 +69,282,0.0009,0.0005,643.01,1589.02,1413.74,21.61,553.31,2388.17,9061.8,47.85,520.94,2388.12,8.4242,395,38.81,23.3019 +69,283,0.0023,0.0001,642.79,1588.62,1419.46,21.61,553.05,2388.15,9054.5,47.53,521.15,2388.17,8.4786,394,38.66,23.2786 +69,284,0.0022,-0.0003,643.24,1591.6,1422.47,21.61,552.82,2388.09,9056.96,47.67,521.21,2388.17,8.4846,393,38.81,23.2393 +69,285,-0.0003,0.0004,642.97,1596.03,1419.53,21.61,552.52,2388.18,9056.69,47.71,520.74,2388.2,8.4478,393,38.68,23.3086 +69,286,0.0027,-0.0,642.95,1599.22,1417.14,21.61,553.18,2388.15,9062.96,47.66,520.43,2388.18,8.4842,394,38.78,23.2925 +69,287,0.0011,0.0003,642.87,1598.24,1415.16,21.61,553.36,2388.15,9053.34,47.93,519.97,2388.14,8.4412,394,38.84,23.2688 +69,288,0.0074,0.0002,643.29,1594.47,1415.36,21.61,552.61,2388.14,9065.16,47.77,521.01,2388.19,8.5204,395,38.58,23.2277 +69,289,-0.0014,-0.0001,642.48,1591.49,1416.28,21.61,553.29,2388.11,9057.55,47.54,520.71,2388.15,8.4815,393,38.68,23.2397 +69,290,-0.0009,0.0005,643.08,1591.32,1414.42,21.61,552.88,2388.13,9055.9,47.57,520.8,2388.16,8.4251,395,38.67,23.1954 +69,291,-0.0031,0.0,643.35,1587.86,1410.72,21.61,552.4,2388.12,9066.84,47.97,521.14,2388.16,8.5041,395,38.75,23.1855 +69,292,0.0023,0.0004,642.88,1591.47,1414.13,21.61,552.84,2388.18,9060.38,47.94,520.61,2388.16,8.4937,392,38.64,23.2471 +69,293,0.0004,-0.0,643.2,1596.1,1419.82,21.61,552.53,2388.19,9062.31,47.8,521.53,2388.11,8.4634,395,38.69,23.2599 +69,294,0.0005,-0.0002,642.83,1590.05,1421.63,21.61,551.75,2388.18,9055.71,47.82,520.79,2388.2,8.468,394,38.47,23.1765 +69,295,0.0026,0.0004,642.99,1594.49,1418.43,21.61,552.2,2388.11,9063.23,47.77,520.82,2388.16,8.4499,394,38.95,23.1465 +69,296,0.0028,0.0004,642.58,1595.72,1416.09,21.61,551.89,2388.16,9064.71,47.6,520.39,2388.2,8.4666,395,38.69,23.2406 +69,297,-0.0011,-0.0,643.2,1599.98,1411.91,21.61,552.74,2388.16,9059.59,47.72,520.52,2388.2,8.4373,394,38.69,23.268 +69,298,0.0014,-0.0004,643.0,1594.5,1411.95,21.61,552.42,2388.2,9067.58,47.81,520.18,2388.15,8.4716,394,38.77,23.2359 +69,299,0.0021,0.0004,642.7,1597.84,1411.96,21.61,552.27,2388.19,9059.08,47.77,520.74,2388.16,8.5009,393,38.51,23.0842 +69,300,0.0014,-0.0004,643.19,1590.34,1423.67,21.61,552.74,2388.19,9057.01,47.65,520.55,2388.14,8.4638,395,38.67,23.2047 +69,301,-0.0017,0.0001,642.89,1592.73,1413.19,21.61,552.29,2388.19,9056.62,47.79,521.11,2388.17,8.4776,393,38.66,23.256 +69,302,0.0009,0.0001,642.92,1602.26,1415.1,21.61,552.27,2388.22,9055.55,47.96,520.93,2388.14,8.4525,394,38.59,23.2222 +69,303,0.0013,-0.0002,643.41,1598.23,1415.44,21.61,552.35,2388.16,9057.84,47.74,520.7,2388.21,8.4842,396,38.66,23.2698 +69,304,-0.0011,-0.0002,642.98,1594.42,1420.09,21.61,551.97,2388.17,9056.32,47.71,521.03,2388.17,8.4851,395,38.7,23.1334 +69,305,-0.0043,0.0,642.72,1594.9,1413.84,21.61,552.85,2388.2,9056.2,47.66,520.27,2388.15,8.471,394,38.9,23.1881 +69,306,-0.0028,-0.0004,642.81,1595.53,1422.08,21.61,552.04,2388.18,9063.73,47.78,520.48,2388.19,8.4567,395,38.76,23.1381 +69,307,-0.0038,-0.0002,642.4,1593.46,1412.92,21.61,552.9,2388.18,9063.79,47.78,521.11,2388.21,8.4455,394,38.63,23.1885 +69,308,0.0047,0.0005,643.09,1596.09,1424.03,21.61,552.74,2388.22,9062.43,47.75,520.81,2388.14,8.4338,394,38.63,23.1685 +69,309,0.0011,-0.0003,643.23,1593.02,1424.59,21.61,552.13,2388.17,9058.15,47.8,520.4,2388.14,8.4759,394,38.61,23.1986 +69,310,-0.0019,0.0002,643.2,1588.64,1413.82,21.61,552.72,2388.13,9063.86,47.82,520.78,2388.23,8.4977,393,38.71,23.109 +69,311,0.0021,-0.0001,643.08,1602.82,1417.41,21.61,552.62,2388.18,9056.16,47.85,520.15,2388.21,8.4551,394,38.69,23.2569 +69,312,0.003,-0.0004,643.8,1597.02,1418.39,21.61,551.97,2388.19,9057.76,47.94,520.06,2388.18,8.4981,395,38.44,23.1333 +69,313,0.0003,-0.0004,643.07,1602.16,1415.37,21.61,552.28,2388.16,9056.99,47.89,520.82,2388.19,8.5059,397,38.74,23.0978 +69,314,-0.005,0.0005,643.05,1595.21,1413.3,21.61,552.05,2388.16,9055.56,47.86,520.74,2388.19,8.4518,396,38.39,23.1191 +69,315,-0.001,0.0003,643.4,1589.26,1424.92,21.61,551.8,2388.21,9059.47,48.03,520.32,2388.21,8.4753,396,38.63,23.2057 +69,316,0.0004,0.0005,643.12,1590.91,1427.92,21.61,553.08,2388.17,9063.18,47.86,520.29,2388.22,8.4529,394,38.64,23.1094 +69,317,0.0009,-0.0004,642.69,1597.26,1414.16,21.61,552.52,2388.22,9058.78,47.77,520.29,2388.16,8.5107,395,38.82,23.1902 +69,318,-0.0014,-0.0003,643.25,1595.83,1423.28,21.61,552.13,2388.19,9056.97,47.8,520.36,2388.16,8.4785,395,38.71,23.217 +69,319,0.0003,-0.0004,642.96,1589.9,1421.58,21.61,551.65,2388.19,9053.25,47.78,520.19,2388.23,8.4892,394,38.56,23.1607 +69,320,-0.0008,0.0004,642.88,1590.42,1424.72,21.61,552.07,2388.25,9058.56,47.8,520.85,2388.23,8.4977,396,38.59,23.1286 +69,321,0.0019,-0.0,643.15,1596.85,1417.1,21.61,551.76,2388.2,9058.79,47.95,520.35,2388.18,8.475,395,38.36,23.1633 +69,322,0.0015,0.0002,642.8,1594.64,1418.6,21.61,551.95,2388.18,9047.71,48.16,520.31,2388.2,8.5135,395,38.67,23.178 +69,323,-0.0007,0.0002,643.62,1594.96,1424.02,21.61,551.92,2388.26,9054.97,47.95,520.7,2388.17,8.5086,395,38.66,23.1136 +69,324,0.0024,0.0005,643.53,1601.73,1418.32,21.61,551.91,2388.23,9057.5,48.0,520.19,2388.25,8.481,395,38.52,23.1942 +69,325,-0.0006,-0.0002,643.22,1590.55,1417.65,21.61,552.11,2388.16,9061.77,47.84,520.46,2388.19,8.5068,396,38.63,23.2539 +69,326,0.0004,-0.0003,643.35,1593.28,1421.79,21.61,551.84,2388.25,9058.01,47.9,520.54,2388.25,8.5149,397,38.57,23.1198 +69,327,0.0033,0.0002,643.01,1600.45,1424.25,21.61,552.3,2388.2,9063.22,47.87,520.13,2388.21,8.4909,394,38.5,23.1358 +69,328,0.0004,-0.0001,643.38,1597.37,1425.58,21.61,552.46,2388.18,9060.35,47.84,519.99,2388.16,8.4578,395,38.62,23.0971 +69,329,0.0022,-0.0001,643.1,1598.81,1426.96,21.61,551.79,2388.18,9056.36,48.04,520.5,2388.2,8.5046,393,38.53,23.1994 +69,330,0.001,0.0003,643.34,1599.07,1428.11,21.61,551.86,2388.23,9064.14,47.81,520.08,2388.24,8.5013,396,38.52,23.2652 +69,331,-0.0014,0.0005,643.28,1591.95,1431.51,21.61,552.15,2388.2,9064.84,47.89,520.63,2388.22,8.4914,393,38.62,23.128 +69,332,0.0017,0.0004,643.25,1602.31,1425.43,21.61,551.19,2388.22,9052.3,47.98,520.17,2388.18,8.4862,395,38.54,23.0229 +69,333,0.0029,0.0003,642.84,1592.72,1423.86,21.61,551.7,2388.22,9060.89,48.06,520.14,2388.21,8.4899,396,38.56,23.0886 +69,334,0.0029,0.0002,644.16,1602.95,1423.27,21.61,552.1,2388.2,9045.19,48.06,519.8,2388.25,8.4869,395,38.52,23.1171 +69,335,-0.0,0.0003,643.17,1592.32,1421.65,21.61,551.66,2388.23,9062.78,47.94,520.47,2388.22,8.4707,396,38.64,23.2003 +69,336,0.0013,-0.0003,644.19,1604.62,1427.29,21.61,551.7,2388.26,9051.64,47.97,520.64,2388.21,8.5022,395,38.68,23.1434 +69,337,-0.0054,-0.0004,643.85,1597.91,1422.25,21.61,552.13,2388.27,9058.21,47.9,520.2,2388.22,8.4705,394,38.44,23.2252 +69,338,0.0022,0.0002,643.59,1599.31,1423.03,21.61,552.64,2388.25,9058.88,48.08,519.55,2388.22,8.4991,395,38.42,23.0883 +69,339,-0.0,-0.0004,643.77,1589.96,1419.72,21.61,552.35,2388.27,9052.69,48.02,520.44,2388.24,8.4823,395,38.34,23.128 +69,340,-0.0047,-0.0001,643.45,1589.69,1422.42,21.61,551.01,2388.26,9059.05,48.16,519.87,2388.33,8.4924,397,38.49,23.0744 +69,341,-0.0006,-0.0003,643.11,1599.62,1416.4,21.61,551.9,2388.22,9054.92,48.27,519.99,2388.27,8.5267,395,38.47,23.0902 +69,342,-0.0012,-0.0003,642.68,1597.54,1423.81,21.61,551.05,2388.22,9064.75,48.23,519.71,2388.22,8.5047,395,38.46,23.1672 +69,343,-0.0012,0.0005,644.11,1604.22,1424.69,21.61,551.72,2388.24,9060.21,47.89,519.92,2388.21,8.4996,396,38.66,23.0685 +69,344,-0.0031,0.0003,643.52,1596.48,1422.5,21.61,551.89,2388.2,9051.62,48.09,520.02,2388.27,8.5404,396,38.54,23.0243 +69,345,0.0003,0.0002,643.97,1607.97,1426.21,21.61,551.35,2388.28,9059.46,48.08,519.47,2388.2,8.5109,397,38.59,23.1089 +69,346,0.0022,-0.0,643.91,1598.91,1427.02,21.61,551.71,2388.22,9051.77,47.91,519.92,2388.22,8.5419,396,38.43,23.1419 +69,347,-0.0031,0.0002,643.71,1602.48,1431.4,21.61,551.77,2388.22,9062.12,48.11,520.15,2388.22,8.5209,394,38.65,23.0814 +69,348,0.0006,-0.0003,643.45,1599.49,1427.13,21.61,551.18,2388.29,9045.07,48.23,520.11,2388.24,8.5353,395,38.45,23.1088 +69,349,-0.0001,0.0004,643.34,1594.56,1428.26,21.61,551.64,2388.25,9060.96,47.95,520.02,2388.23,8.5139,396,38.43,23.1692 +69,350,0.0023,0.0005,643.64,1601.57,1422.02,21.61,551.05,2388.27,9055.54,48.1,519.95,2388.26,8.5011,395,38.34,23.0312 +69,351,-0.0013,-0.0,643.18,1595.07,1433.34,21.61,551.12,2388.26,9052.0,48.25,519.75,2388.26,8.5193,396,38.42,23.1454 +69,352,-0.0025,-0.0001,643.59,1593.9,1422.75,21.61,551.98,2388.29,9058.81,48.04,519.2,2388.26,8.5017,396,38.6,23.1241 +69,353,0.0028,-0.0001,643.73,1598.88,1425.36,21.61,551.97,2388.25,9056.35,47.93,519.74,2388.27,8.538,396,38.44,23.1361 +69,354,0.0015,0.0001,643.66,1606.28,1430.15,21.61,550.34,2388.25,9057.35,48.16,519.84,2388.21,8.5193,394,38.3,23.0443 +69,355,0.0011,0.0002,643.34,1593.05,1425.27,21.61,551.62,2388.24,9055.71,48.24,519.99,2388.25,8.5279,395,38.5,22.9635 +69,356,0.0021,-0.0,643.19,1605.11,1428.43,21.61,551.02,2388.25,9056.07,48.12,519.85,2388.27,8.5208,396,38.43,23.0768 +69,357,0.0006,0.0002,643.86,1601.8,1428.18,21.61,550.53,2388.25,9062.01,48.3,519.58,2388.26,8.5572,396,38.56,23.1233 +69,358,0.004,-0.0002,643.74,1609.53,1428.26,21.61,551.6,2388.2,9053.75,48.28,520.31,2388.26,8.546,397,38.53,23.0549 +69,359,0.0013,0.0003,643.46,1603.83,1429.82,21.61,551.62,2388.28,9056.81,48.13,519.86,2388.27,8.5116,396,38.28,23.061 +69,360,0.0004,-0.0001,643.97,1597.75,1428.85,21.61,551.32,2388.31,9058.88,48.14,518.69,2388.26,8.5059,396,38.47,23.0422 +69,361,0.0016,-0.0002,643.65,1603.5,1433.95,21.61,551.13,2388.29,9055.52,48.09,520.48,2388.32,8.527,396,38.52,23.1208 +69,362,0.0007,-0.0,643.75,1598.16,1428.28,21.61,551.55,2388.31,9054.19,48.02,519.12,2388.33,8.5126,397,38.42,22.9782 +70,10,0.0005,-0.0001,642.14,1587.3,1402.78,21.61,553.16,2388.02,9049.3,47.24,521.34,2388.04,8.3876,392,39.0,23.3742 +70,11,-0.0058,-0.0004,642.39,1590.12,1403.65,21.61,554.57,2388.1,9060.6,47.59,521.6,2388.03,8.4491,391,38.72,23.3579 +70,12,0.0022,-0.0005,642.6,1591.68,1406.19,21.61,553.79,2388.12,9056.45,47.44,521.62,2388.06,8.3978,392,39.08,23.2246 +70,13,-0.0014,0.0004,642.49,1584.61,1398.07,21.61,553.15,2388.09,9059.63,47.32,521.55,2388.09,8.4428,394,38.76,23.2856 +70,14,-0.0018,0.0004,642.68,1577.93,1406.18,21.61,553.6,2388.11,9057.35,47.25,521.89,2388.05,8.4416,392,38.83,23.3618 +70,15,0.003,-0.0004,642.01,1593.14,1409.02,21.61,553.97,2388.05,9060.71,47.54,521.43,2388.04,8.4113,393,38.73,23.3824 +70,16,-0.0012,0.0004,642.04,1585.98,1410.03,21.61,553.85,2388.06,9055.5,47.52,521.55,2388.11,8.4516,393,38.95,23.4899 +70,17,-0.0001,0.0002,642.74,1593.04,1397.88,21.61,553.39,2388.1,9062.04,47.6,521.57,2388.06,8.4469,394,38.88,23.3134 +70,18,-0.0002,0.0002,642.34,1597.82,1402.1,21.61,554.66,2388.04,9054.36,47.41,521.42,2388.07,8.4281,392,38.73,23.2929 +70,19,0.0038,0.0001,642.44,1588.83,1405.77,21.61,553.86,2388.1,9061.15,47.49,521.83,2388.04,8.4449,393,38.81,23.415 +70,20,-0.0024,-0.0004,642.2,1588.67,1399.98,21.61,554.39,2388.05,9052.92,47.31,522.18,2388.07,8.4112,393,38.87,23.387 +70,21,-0.0019,-0.0002,642.45,1585.11,1399.8,21.61,553.99,2388.05,9063.67,47.29,521.93,2388.06,8.4413,392,38.88,23.3168 +70,22,0.0033,-0.0002,642.95,1591.54,1401.68,21.61,553.6,2388.08,9058.57,47.42,522.36,2388.12,8.4137,393,38.93,23.3991 +70,23,0.0011,-0.0,642.27,1583.38,1402.88,21.61,552.58,2388.07,9053.73,47.45,521.88,2388.06,8.4397,396,38.87,23.3694 +70,24,-0.001,0.0003,642.6,1590.89,1403.75,21.61,553.74,2388.04,9063.33,47.34,521.12,2388.02,8.4395,392,38.99,23.3001 +70,25,0.0,-0.0001,642.88,1585.1,1406.1,21.61,554.08,2388.05,9065.93,47.34,521.45,2388.1,8.4418,394,38.96,23.3368 +70,26,-0.0034,-0.0005,642.01,1584.22,1400.67,21.61,553.48,2388.06,9057.13,47.54,522.15,2388.09,8.4692,393,38.99,23.2544 +70,27,-0.002,-0.0001,642.6,1585.96,1402.31,21.61,553.96,2388.06,9058.97,47.39,521.72,2388.04,8.4261,394,38.88,23.318 +70,28,-0.0015,-0.0003,642.63,1595.78,1414.5,21.61,554.0,2388.08,9064.32,47.69,521.57,2388.04,8.4058,393,38.84,23.233 +70,29,-0.0002,0.0003,642.3,1585.03,1398.05,21.61,553.75,2388.07,9055.3,47.31,521.96,2388.08,8.426,393,38.86,23.2497 +70,30,0.0035,-0.0005,642.24,1587.35,1404.65,21.61,554.51,2388.06,9055.94,47.66,521.41,2388.05,8.4254,393,38.85,23.3391 +70,31,-0.0013,-0.0001,642.09,1588.25,1402.64,21.61,553.55,2388.09,9058.46,47.13,521.67,2388.02,8.4026,394,38.87,23.3706 +70,32,0.0019,0.0001,642.08,1593.15,1407.46,21.61,554.07,2388.08,9066.8,47.38,521.97,2388.04,8.4255,393,38.88,23.2503 +70,33,0.0038,-0.0004,642.72,1593.15,1403.41,21.61,553.71,2388.02,9060.73,47.44,520.97,2388.05,8.3948,395,38.79,23.2978 +70,34,-0.0013,-0.0005,642.33,1588.77,1405.29,21.61,553.91,2388.09,9055.98,47.44,521.32,2388.12,8.3882,393,38.89,23.3954 +70,35,-0.0056,-0.0003,642.18,1593.21,1406.66,21.61,553.53,2388.06,9068.78,47.48,521.59,2388.09,8.4356,392,38.83,23.3955 +70,36,0.0025,0.0001,642.7,1586.56,1401.61,21.61,554.39,2388.1,9064.54,47.51,521.5,2388.06,8.399,391,38.92,23.3391 +70,37,0.0009,0.0002,642.16,1585.26,1402.85,21.61,552.96,2388.09,9062.16,47.4,521.25,2388.03,8.4246,392,38.8,23.328 +70,38,0.0011,-0.0005,643.02,1582.33,1406.5,21.61,553.49,2388.14,9067.93,47.48,522.16,2388.06,8.419,393,38.79,23.3434 +70,39,-0.0041,0.0003,642.17,1592.36,1411.81,21.61,553.81,2388.06,9070.76,47.34,521.46,2388.08,8.4603,394,38.9,23.3002 +70,40,-0.0019,-0.0002,642.44,1585.76,1403.26,21.61,554.14,2388.11,9054.79,47.47,521.72,2388.12,8.4497,392,38.81,23.401 +70,41,-0.0003,0.0004,642.72,1592.16,1403.48,21.61,553.64,2388.1,9061.48,47.41,522.39,2388.05,8.4312,393,38.86,23.2675 +70,42,0.0016,0.0002,642.12,1581.07,1404.24,21.61,553.64,2388.08,9062.71,47.37,521.8,2388.08,8.4318,394,39.04,23.3231 +70,43,0.0048,-0.0004,642.88,1583.12,1400.31,21.61,553.37,2388.08,9053.02,47.36,521.47,2388.09,8.4191,393,39.1,23.3145 +70,44,-0.0004,0.0004,642.49,1587.92,1406.33,21.61,553.65,2388.07,9060.44,47.4,521.93,2388.07,8.4028,392,38.89,23.3264 +70,45,0.0003,-0.0003,642.38,1595.01,1411.33,21.61,553.26,2388.04,9064.89,47.44,521.66,2388.04,8.4106,394,38.81,23.3484 +70,46,0.0038,-0.0003,642.89,1581.0,1399.87,21.61,553.56,2388.07,9056.85,47.36,521.54,2388.06,8.4595,393,38.89,23.3055 +70,47,-0.0008,-0.0005,642.38,1587.43,1409.08,21.61,553.47,2388.08,9061.73,47.69,520.95,2388.11,8.4365,393,38.95,23.2599 +70,48,-0.0009,-0.0002,642.89,1589.04,1405.39,21.61,553.83,2388.07,9059.79,47.5,521.42,2388.06,8.4039,393,38.84,23.3366 +70,49,-0.0008,0.0,642.68,1581.38,1400.93,21.61,553.51,2388.07,9060.26,47.43,521.35,2388.09,8.4548,392,38.84,23.2824 +70,50,-0.0007,0.0001,642.66,1591.05,1399.28,21.61,553.91,2388.1,9063.27,47.32,521.97,2388.12,8.4348,393,38.84,23.2789 +70,51,0.0014,-0.0003,642.95,1593.28,1412.5,21.61,553.96,2388.09,9055.95,47.47,521.73,2388.04,8.4163,393,38.76,23.3515 +70,52,-0.0021,-0.0005,642.73,1588.49,1403.69,21.61,553.66,2388.14,9063.0,47.51,521.97,2388.1,8.4631,392,38.78,23.3635 +70,53,0.0041,0.0001,642.18,1593.61,1399.19,21.61,554.21,2388.1,9067.26,47.41,521.19,2388.06,8.4103,391,38.9,23.2632 +70,54,0.0008,0.0001,642.45,1592.93,1414.05,21.61,553.45,2388.04,9061.11,47.45,521.95,2388.08,8.4213,393,38.82,23.2546 +70,55,-0.0037,-0.0001,642.71,1593.25,1399.43,21.61,554.61,2388.09,9057.79,47.57,522.08,2388.11,8.4232,392,38.87,23.3397 +70,56,0.0048,-0.0004,642.76,1591.8,1404.89,21.61,552.86,2388.07,9060.01,47.48,521.56,2388.11,8.4333,393,38.83,23.305 +70,57,-0.0003,-0.0004,642.66,1593.98,1402.92,21.61,553.18,2388.12,9062.01,47.44,521.97,2388.1,8.435,393,38.89,23.3077 +70,58,-0.0002,-0.0001,642.93,1588.08,1404.67,21.61,552.83,2388.1,9060.85,47.67,521.55,2388.15,8.4591,393,38.81,23.273 +70,59,0.0005,0.0,642.79,1587.81,1402.69,21.61,553.62,2388.07,9056.6,47.37,521.54,2388.07,8.4316,392,39.0,23.3018 +70,60,0.0038,-0.0003,641.99,1588.09,1413.36,21.61,553.52,2388.06,9061.99,47.47,520.89,2388.04,8.4346,394,38.88,23.3497 +70,61,0.0009,0.0,642.67,1591.12,1405.99,21.61,553.28,2388.05,9064.82,47.33,521.53,2388.11,8.4537,391,38.96,23.4643 +70,62,0.0014,-0.0004,642.52,1592.28,1415.45,21.61,553.4,2388.1,9060.35,47.47,521.58,2388.08,8.4116,394,38.94,23.3304 +70,63,0.0022,0.0,642.07,1596.38,1404.79,21.61,553.54,2388.08,9061.58,47.64,521.62,2388.08,8.4399,393,39.12,23.3178 +70,64,0.0043,-0.0004,642.35,1588.1,1414.66,21.61,552.71,2388.08,9062.98,47.62,521.29,2388.13,8.4412,393,38.88,23.3668 +70,65,0.0043,-0.0004,642.31,1581.73,1404.08,21.61,553.61,2388.06,9062.05,47.46,521.63,2388.07,8.4314,394,38.9,23.3583 +70,66,-0.0013,0.0003,642.45,1590.07,1418.84,21.61,553.44,2388.06,9058.13,47.58,521.81,2388.1,8.4242,393,38.87,23.3148 +70,67,0.0008,0.0001,643.05,1589.46,1407.97,21.61,553.48,2388.06,9065.02,47.39,521.46,2388.05,8.4314,393,38.77,23.3704 +70,68,-0.0011,-0.0005,642.51,1589.06,1409.91,21.61,553.04,2388.07,9064.65,47.47,521.1,2388.08,8.4409,393,38.8,23.2743 +70,69,0.0032,-0.0001,642.64,1593.68,1408.24,21.61,553.55,2388.11,9067.75,47.27,521.69,2388.06,8.417,394,38.77,23.3108 +70,70,0.0014,-0.0,642.35,1588.16,1411.22,21.61,553.15,2388.13,9065.34,47.58,521.27,2388.09,8.4603,393,38.82,23.2694 +70,71,0.0055,0.0001,642.4,1586.97,1407.59,21.61,553.5,2388.07,9060.85,47.64,521.32,2388.07,8.4413,394,38.75,23.3585 +70,72,-0.0023,0.0003,642.58,1590.18,1416.18,21.61,553.04,2388.1,9057.35,47.65,521.35,2388.07,8.4455,393,38.87,23.2587 +70,73,0.0013,-0.0003,642.95,1590.0,1406.83,21.61,553.96,2388.1,9064.18,47.36,521.05,2388.06,8.4773,394,38.73,23.2027 +70,74,0.0004,0.0002,642.73,1587.9,1415.3,21.61,552.76,2388.07,9063.95,47.53,522.26,2388.12,8.4129,393,38.73,23.3053 +70,75,-0.0019,-0.0001,642.4,1587.1,1411.15,21.61,554.14,2388.11,9070.38,47.5,521.31,2388.12,8.4514,393,38.87,23.2519 +70,76,0.0033,0.0002,642.72,1588.83,1405.55,21.61,553.03,2388.05,9064.91,47.62,521.93,2388.09,8.4114,394,38.79,23.2899 +70,77,-0.0017,0.0004,642.6,1595.6,1411.58,21.61,553.56,2388.08,9059.58,47.5,521.51,2388.07,8.4291,394,38.73,23.3028 +70,78,-0.0037,-0.0,642.52,1592.75,1411.55,21.61,553.2,2388.07,9071.16,47.37,521.86,2388.05,8.4225,394,38.75,23.246 +70,79,-0.0007,-0.0004,642.64,1592.64,1402.89,21.61,553.41,2388.06,9071.46,47.47,521.52,2388.14,8.4397,392,38.91,23.4019 +70,80,0.0017,0.0002,642.16,1581.81,1407.59,21.61,553.65,2388.1,9069.13,47.62,521.08,2388.11,8.419,392,38.83,23.3113 +70,81,-0.0011,0.0001,642.96,1591.52,1408.4,21.61,553.22,2388.07,9065.33,47.52,521.62,2388.15,8.4468,393,38.87,23.2215 +70,82,0.0026,-0.0,642.62,1593.59,1409.09,21.61,553.73,2388.08,9068.99,47.59,521.76,2388.15,8.4525,395,38.86,23.2195 +70,83,0.0018,0.0002,642.47,1591.42,1404.39,21.61,553.75,2388.12,9066.64,47.49,520.93,2388.09,8.4526,392,38.75,23.3757 +70,84,0.0019,0.0003,642.34,1591.66,1418.72,21.61,553.73,2388.13,9065.54,47.58,521.27,2388.09,8.447,394,38.9,23.2996 +70,85,-0.0019,-0.0004,642.58,1596.02,1409.61,21.61,553.75,2388.09,9065.44,47.4,521.36,2388.1,8.4337,393,38.83,23.1555 +70,86,0.0036,-0.0005,642.9,1591.51,1406.46,21.61,554.17,2388.1,9067.45,47.55,522.03,2388.06,8.4317,393,38.79,23.2292 +70,87,0.0005,-0.0004,643.03,1583.76,1408.78,21.61,553.51,2388.11,9066.74,47.72,520.96,2388.09,8.4573,392,38.81,23.3173 +70,88,0.0052,-0.0003,642.99,1585.57,1408.28,21.61,552.75,2388.12,9066.85,47.69,521.45,2388.05,8.4267,394,38.72,23.2413 +70,89,0.0008,0.0003,643.08,1589.03,1412.42,21.61,553.55,2388.08,9065.28,47.59,521.22,2388.08,8.422,393,38.68,23.385 +70,90,0.0002,-0.0003,643.03,1589.87,1409.68,21.61,552.39,2388.1,9065.98,47.5,520.87,2388.12,8.4814,393,38.75,23.3049 +70,91,0.0006,0.0002,642.69,1594.61,1411.31,21.61,554.08,2388.09,9062.89,47.9,521.03,2388.1,8.4241,394,38.75,23.3338 +70,92,-0.001,-0.0004,643.32,1600.55,1409.96,21.61,553.36,2388.12,9075.13,47.57,521.09,2388.14,8.4618,394,38.91,23.2552 +70,93,-0.0005,0.0002,642.53,1585.37,1410.92,21.61,552.78,2388.18,9062.99,47.83,521.48,2388.11,8.4651,395,38.7,23.2681 +70,94,-0.0048,-0.0004,643.27,1588.34,1419.28,21.61,552.53,2388.16,9062.17,47.67,521.38,2388.09,8.43,392,38.76,23.3231 +70,95,-0.0005,-0.0003,642.81,1598.27,1412.93,21.61,553.41,2388.08,9070.64,47.53,521.02,2388.07,8.4413,394,38.7,23.2145 +70,96,-0.0044,0.0,643.29,1590.12,1409.99,21.61,552.44,2388.15,9077.15,47.57,521.21,2388.12,8.4523,394,38.67,23.2446 +70,97,0.0011,-0.0003,642.77,1594.01,1409.39,21.61,552.09,2388.1,9068.4,47.73,520.76,2388.12,8.4406,393,38.72,23.2769 +70,98,0.0032,-0.0001,643.1,1595.38,1412.86,21.61,553.36,2388.11,9076.74,47.84,521.05,2388.11,8.4688,395,38.82,23.0983 +70,99,-0.0026,-0.0002,643.22,1594.31,1415.98,21.61,552.77,2388.14,9073.05,47.64,521.0,2388.12,8.4131,393,38.69,23.2598 +70,100,0.0018,-0.0003,642.73,1591.19,1412.82,21.61,552.47,2388.12,9070.9,47.79,520.16,2388.09,8.421,395,38.79,23.2617 +70,101,-0.0013,-0.0004,642.8,1592.44,1409.32,21.61,552.82,2388.13,9072.1,47.65,520.58,2388.15,8.4677,393,38.66,23.2031 +70,102,-0.0009,0.0004,642.75,1591.72,1415.13,21.61,552.82,2388.05,9069.33,47.67,520.44,2388.11,8.436,395,38.76,23.1689 +70,103,0.0042,-0.0001,642.99,1593.06,1416.34,21.61,552.47,2388.16,9068.63,47.74,520.28,2388.14,8.4328,393,38.68,23.1815 +70,104,0.0001,-0.0002,643.54,1595.08,1410.32,21.61,552.69,2388.15,9083.24,47.52,520.97,2388.11,8.5028,392,38.66,23.2055 +70,105,-0.0038,-0.0005,643.0,1594.12,1421.66,21.61,552.13,2388.1,9063.69,47.75,521.24,2388.06,8.4585,393,38.82,23.2273 +70,106,-0.002,0.0003,643.26,1597.27,1409.21,21.61,553.05,2388.14,9067.86,47.7,520.82,2388.1,8.442,392,38.63,23.3283 +70,107,0.0012,-0.0,643.36,1593.28,1411.13,21.61,553.11,2388.1,9067.8,47.76,520.04,2388.14,8.4635,394,38.68,23.1798 +70,108,0.0004,0.0004,642.96,1592.76,1407.9,21.61,552.83,2388.08,9080.68,47.97,520.66,2388.1,8.4696,394,38.54,23.13 +70,109,-0.0007,0.0003,642.6,1591.01,1417.75,21.61,553.24,2388.1,9078.0,47.92,520.52,2388.15,8.4672,395,38.66,23.1991 +70,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781 +70,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232 +70,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815 +70,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676 +70,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074 +70,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096 +70,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842 +70,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986 +70,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814 +70,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337 +70,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808 +70,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963 +70,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136 +70,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728 +70,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115 +70,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302 +70,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466 +70,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544 +70,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137 +70,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219 +70,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028 +70,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682 +70,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418 +70,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364 +70,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637 +70,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993 +70,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289 +70,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398 +71,10,-0.0003,0.0,642.95,1593.6,1405.47,21.61,553.5,2388.1,9046.86,47.53,521.19,2388.1,8.4249,392,38.95,23.3315 +71,11,0.0008,-0.0002,642.71,1591.08,1404.42,21.61,553.6,2388.09,9042.41,47.41,521.62,2388.12,8.4535,393,38.75,23.2923 +71,12,-0.0014,0.0002,642.4,1585.72,1408.04,21.61,553.42,2388.09,9045.03,47.77,521.5,2388.12,8.394,394,38.81,23.3506 +71,13,-0.003,-0.0003,642.48,1595.78,1406.83,21.61,554.27,2388.06,9046.97,47.3,521.88,2388.11,8.4321,393,38.86,23.2711 +71,14,0.0052,0.0004,642.88,1591.51,1407.85,21.61,554.12,2388.1,9045.79,47.59,521.53,2388.08,8.4061,394,38.8,23.3946 +71,15,0.0029,0.0001,642.5,1589.43,1402.1,21.61,553.57,2388.16,9053.62,47.41,521.55,2388.08,8.4393,392,38.91,23.2595 +71,16,-0.0002,-0.0004,642.27,1584.32,1405.75,21.61,554.6,2388.15,9047.89,47.36,521.79,2388.11,8.4362,391,38.95,23.383 +71,17,-0.0002,0.0001,642.26,1583.56,1407.35,21.61,552.63,2388.11,9042.1,47.45,521.65,2388.1,8.4675,394,38.66,23.3009 +71,18,-0.001,0.0,642.49,1589.66,1406.81,21.61,552.97,2388.1,9042.79,47.37,521.55,2388.1,8.4122,393,38.67,23.275 +71,19,0.0002,0.0002,642.18,1585.28,1404.08,21.61,553.78,2388.11,9045.84,47.41,521.93,2388.08,8.4377,392,38.8,23.4691 +71,20,0.0001,0.0001,642.58,1587.06,1407.59,21.61,553.97,2388.08,9039.68,47.36,521.21,2388.05,8.426,392,39.06,23.4121 +71,21,-0.0032,-0.0,642.57,1588.62,1406.38,21.61,553.43,2388.14,9041.76,47.51,521.62,2388.04,8.4088,392,38.86,23.3571 +71,22,-0.0018,0.0,641.77,1591.11,1401.28,21.61,552.82,2388.08,9044.41,47.48,521.81,2388.13,8.4186,393,39.01,23.3477 +71,23,-0.0008,-0.0002,642.57,1591.09,1407.26,21.61,553.61,2388.11,9041.83,47.53,521.38,2388.11,8.4058,393,38.85,23.2845 +71,24,0.0004,-0.0004,642.58,1585.89,1405.28,21.61,552.67,2388.11,9046.73,47.53,521.65,2388.15,8.3894,393,38.74,23.3478 +71,25,0.0006,-0.0004,642.54,1594.72,1403.11,21.61,553.33,2388.13,9042.61,47.58,521.37,2388.09,8.4402,394,38.81,23.3354 +71,26,-0.0049,-0.0004,642.53,1588.38,1403.23,21.61,553.76,2388.14,9046.36,47.22,521.51,2388.11,8.4541,394,38.76,23.3465 +71,27,0.0015,-0.0002,642.88,1594.42,1406.95,21.61,553.71,2388.06,9048.93,47.57,521.0,2388.09,8.4412,392,39.0,23.3321 +71,28,0.0014,-0.0,643.08,1592.86,1412.13,21.61,553.9,2388.1,9048.17,47.55,521.7,2388.12,8.4401,395,38.86,23.2362 +71,29,-0.0022,-0.0003,642.67,1591.28,1396.89,21.61,553.46,2388.1,9044.72,47.55,521.7,2388.1,8.4693,393,38.73,23.265 +71,30,0.0033,0.0003,642.79,1585.03,1404.77,21.61,553.56,2388.09,9040.9,47.42,521.61,2388.07,8.4492,391,38.8,23.3872 +71,31,-0.0013,0.0002,642.24,1585.04,1400.9,21.61,552.71,2388.14,9042.61,47.55,520.85,2388.12,8.4392,393,38.87,23.3666 +71,32,-0.0036,-0.0002,641.9,1595.55,1404.59,21.61,554.32,2388.12,9043.73,47.58,521.5,2388.14,8.4725,393,38.58,23.3132 +71,33,0.0024,0.0002,642.36,1586.39,1408.79,21.61,553.76,2388.14,9042.0,47.5,521.88,2388.08,8.4183,393,38.91,23.2622 +71,34,0.0006,0.0001,642.7,1585.04,1410.58,21.61,552.91,2388.12,9043.82,47.33,521.7,2388.09,8.4295,393,38.93,23.4082 +71,35,0.0004,0.0002,642.9,1591.38,1409.9,21.61,554.01,2388.1,9039.9,47.44,521.32,2388.11,8.409,392,38.93,23.3789 +71,36,0.0031,0.0002,642.42,1589.45,1406.38,21.61,553.23,2388.11,9050.2,47.45,521.45,2388.08,8.3942,393,38.92,23.2084 +71,37,0.0041,-0.0001,642.5,1587.32,1407.48,21.61,553.49,2388.07,9046.58,47.51,521.39,2388.07,8.4446,393,38.76,23.3241 +71,38,0.001,0.0004,642.88,1582.03,1403.44,21.61,553.16,2388.1,9042.95,47.46,521.8,2388.07,8.4378,393,38.82,23.3434 +71,39,0.0038,0.0002,642.75,1588.93,1407.7,21.61,553.84,2388.05,9053.44,47.52,521.26,2388.11,8.4379,392,39.05,23.3024 +71,40,0.0015,0.0003,642.46,1590.25,1414.42,21.61,553.71,2388.15,9046.35,47.38,521.6,2388.15,8.4088,393,38.88,23.3635 +71,41,-0.0012,-0.0004,643.09,1582.02,1409.96,21.61,553.39,2388.13,9039.42,47.48,521.22,2388.07,8.4373,393,38.8,23.331 +71,42,-0.004,-0.0002,642.58,1585.54,1400.4,21.61,553.25,2388.12,9044.24,47.44,521.42,2388.16,8.428,393,38.78,23.3256 +71,43,0.0016,-0.0004,641.93,1591.89,1405.3,21.61,553.38,2388.12,9042.69,47.56,520.86,2388.1,8.4332,392,38.66,23.3316 +71,44,-0.003,0.0002,642.48,1586.16,1402.2,21.61,553.21,2388.16,9036.6,47.46,521.97,2388.08,8.4096,392,38.86,23.3725 +71,45,-0.004,0.0003,642.66,1590.3,1406.75,21.61,553.45,2388.15,9058.66,47.46,521.05,2388.08,8.4638,392,38.78,23.3037 +71,46,-0.0007,-0.0003,642.79,1587.82,1406.88,21.61,554.13,2388.06,9050.81,47.47,521.64,2388.1,8.3941,394,39.0,23.2368 +71,47,0.0007,0.0004,643.19,1588.74,1409.24,21.61,553.76,2388.11,9043.26,47.46,521.42,2388.08,8.4683,391,38.87,23.2403 +71,48,0.0025,0.0001,642.72,1589.79,1406.0,21.61,553.34,2388.08,9036.99,47.46,521.58,2388.11,8.4379,393,38.82,23.391 +71,49,-0.0016,-0.0001,642.52,1589.46,1398.52,21.61,553.58,2388.08,9047.41,47.49,521.62,2388.15,8.4484,393,38.75,23.3431 +71,50,-0.0011,0.0003,642.29,1593.44,1399.15,21.61,554.48,2388.15,9051.73,47.71,521.67,2388.09,8.4348,393,38.95,23.3188 +71,51,0.0004,-0.0003,642.99,1589.49,1408.94,21.61,553.91,2388.07,9052.9,47.53,521.69,2388.11,8.4445,392,38.83,23.2788 +71,52,-0.0006,-0.0002,642.53,1583.93,1412.14,21.61,553.71,2388.09,9047.25,47.62,521.18,2388.12,8.4397,394,38.66,23.2586 +71,53,0.0005,0.0005,642.69,1589.2,1409.38,21.61,553.18,2388.09,9043.91,47.45,521.57,2388.13,8.4646,391,38.97,23.3424 +71,54,0.0006,-0.0002,642.47,1588.39,1399.21,21.61,553.9,2388.08,9046.13,47.64,521.24,2388.07,8.4307,393,38.83,23.3452 +71,55,0.0005,-0.0,642.35,1587.57,1408.25,21.61,553.0,2388.13,9044.25,47.5,521.43,2388.12,8.446,392,38.72,23.3462 +71,56,-0.0025,0.0001,642.65,1589.96,1409.6,21.61,552.6,2388.09,9041.69,47.47,521.43,2388.11,8.4229,392,38.77,23.388 +71,57,-0.0016,-0.0002,641.86,1585.83,1410.61,21.61,553.57,2388.13,9045.62,47.47,520.93,2388.09,8.4308,392,38.78,23.1806 +71,58,-0.0,-0.0002,642.69,1588.9,1408.06,21.61,553.23,2388.12,9042.5,47.31,521.45,2388.1,8.4242,393,39.08,23.4234 +71,59,0.0011,0.0,642.72,1592.42,1408.98,21.61,553.1,2388.07,9046.41,47.41,521.27,2388.13,8.4088,393,38.98,23.336 +71,60,0.0017,-0.0001,642.55,1589.5,1404.05,21.61,553.31,2388.1,9047.42,47.47,521.44,2388.13,8.4479,393,38.84,23.352 +71,61,-0.001,0.0004,642.65,1591.41,1402.94,21.61,553.71,2388.05,9048.95,47.44,521.76,2388.12,8.4137,393,38.83,23.3453 +71,62,0.0008,-0.0,642.48,1593.15,1408.44,21.61,553.47,2388.09,9049.13,47.68,521.53,2388.11,8.4225,392,38.89,23.3199 +71,63,-0.0024,-0.0002,642.25,1585.34,1407.07,21.61,553.93,2388.13,9051.15,47.68,521.34,2388.1,8.4522,393,38.89,23.2812 +71,64,0.0004,-0.0004,642.43,1592.62,1401.17,21.61,553.17,2388.05,9049.03,47.36,521.91,2388.01,8.4113,393,38.57,23.3415 +71,65,0.0,-0.0003,642.57,1584.28,1401.73,21.61,553.4,2388.13,9050.1,47.68,521.31,2388.07,8.4243,394,38.78,23.4079 +71,66,-0.0022,-0.0001,642.68,1588.12,1404.56,21.61,553.42,2388.12,9053.66,47.52,521.9,2388.12,8.4193,393,38.81,23.2994 +71,67,-0.0021,-0.0003,641.89,1589.29,1402.83,21.61,554.03,2388.08,9052.05,47.46,521.81,2388.13,8.445,393,38.82,23.3265 +71,68,-0.0011,-0.0004,642.75,1586.37,1402.09,21.61,553.7,2388.09,9048.49,47.39,521.42,2388.04,8.4336,392,38.76,23.3165 +71,69,-0.0056,0.0004,642.88,1591.54,1404.1,21.61,553.0,2388.11,9046.83,47.52,521.4,2388.11,8.4339,393,38.85,23.3357 +71,70,-0.0011,0.0005,642.53,1580.69,1405.25,21.61,554.11,2388.07,9045.98,47.29,521.4,2388.11,8.438,392,38.83,23.3551 +71,71,-0.0003,-0.0003,642.65,1587.82,1405.61,21.61,553.72,2388.09,9052.92,47.57,521.68,2388.09,8.4325,392,38.74,23.3139 +71,72,-0.0049,-0.0001,642.68,1590.85,1404.46,21.61,553.6,2388.14,9053.82,47.57,520.99,2388.08,8.4391,393,38.64,23.2927 +71,73,0.005,0.0004,643.22,1596.75,1409.51,21.61,553.91,2388.13,9052.86,47.52,521.74,2388.07,8.4312,393,38.93,23.3226 +71,74,0.0003,-0.0002,642.66,1592.56,1412.1,21.61,553.72,2388.15,9050.53,47.44,521.44,2388.08,8.4517,393,38.97,23.2602 +71,75,0.0005,0.0004,642.97,1590.21,1411.82,21.61,554.07,2388.08,9054.43,47.72,521.66,2388.09,8.4215,394,38.85,23.3032 +71,76,-0.0026,0.0003,642.86,1589.24,1415.57,21.61,553.25,2388.07,9059.08,47.66,521.67,2388.1,8.4454,393,38.81,23.3008 +71,77,-0.0022,-0.0003,642.73,1583.58,1404.94,21.61,553.63,2388.1,9055.65,47.47,521.39,2388.11,8.4118,394,39.04,23.3434 +71,78,-0.0044,0.0,642.73,1591.38,1408.76,21.61,553.58,2388.11,9057.81,47.6,522.04,2388.09,8.4497,393,38.85,23.3895 +71,79,-0.0,-0.0003,642.66,1589.88,1401.29,21.61,553.35,2388.1,9042.94,47.58,521.82,2388.11,8.492,393,38.89,23.3964 +71,80,0.0028,-0.0004,642.69,1594.63,1412.42,21.61,553.78,2388.07,9053.2,47.47,521.51,2388.16,8.4345,392,38.83,23.2758 +71,81,-0.0002,0.0003,642.75,1590.19,1414.76,21.61,552.95,2388.15,9046.42,47.45,521.25,2388.12,8.4222,393,38.82,23.2807 +71,82,0.0021,0.0001,642.88,1590.26,1410.18,21.61,553.92,2388.17,9050.02,47.54,521.02,2388.11,8.4324,391,38.86,23.3963 +71,83,-0.0011,0.0001,643.16,1592.31,1415.27,21.61,553.55,2388.15,9053.54,47.39,521.35,2388.11,8.4222,393,38.88,23.2723 +71,84,0.0007,-0.0,642.33,1593.76,1413.99,21.61,553.31,2388.14,9053.8,47.29,520.86,2388.1,8.4541,392,38.74,23.336 +71,85,-0.0012,-0.0003,642.7,1592.07,1407.94,21.61,553.35,2388.14,9056.33,47.68,521.38,2388.12,8.4555,392,38.97,23.2367 +71,86,-0.0005,0.0001,642.83,1590.54,1410.34,21.61,553.27,2388.15,9055.05,47.44,521.65,2388.08,8.4716,394,38.81,23.3999 +71,87,0.0057,0.0004,642.8,1586.81,1411.67,21.61,553.78,2388.11,9053.47,47.54,521.53,2388.11,8.425,392,38.77,23.3605 +71,88,0.0012,0.0005,642.93,1591.65,1405.69,21.61,553.49,2388.1,9048.64,47.52,521.85,2388.09,8.4405,393,38.86,23.2067 +71,89,0.0036,-0.0004,642.32,1594.26,1409.5,21.61,553.24,2388.08,9049.11,47.51,521.47,2388.11,8.4455,392,38.82,23.274 +71,90,-0.0008,0.0003,642.72,1583.81,1408.26,21.61,553.7,2388.14,9046.47,47.33,521.4,2388.11,8.4106,394,38.82,23.3033 +71,91,-0.0003,0.0004,642.44,1589.04,1411.5,21.61,553.14,2388.14,9057.43,47.55,521.62,2388.1,8.4597,394,38.82,23.2533 +71,92,-0.003,-0.0004,642.39,1587.45,1410.54,21.61,553.93,2388.15,9056.35,47.62,521.78,2388.12,8.4211,393,38.7,23.295 +71,93,-0.0006,0.0,642.92,1592.03,1414.51,21.61,553.27,2388.14,9051.24,47.66,520.89,2388.13,8.445,391,38.77,23.2704 +71,94,0.002,-0.0002,642.97,1591.53,1411.32,21.61,553.57,2388.12,9046.58,47.43,521.09,2388.08,8.4325,392,38.72,23.3002 +71,95,-0.0013,-0.0003,642.71,1595.74,1407.02,21.61,554.35,2388.13,9053.14,47.48,521.37,2388.11,8.4101,394,38.93,23.3447 +71,96,0.0013,-0.0,642.91,1581.3,1407.69,21.61,553.04,2388.14,9061.59,47.44,520.99,2388.08,8.4246,392,38.88,23.2852 +71,97,-0.0001,-0.0003,642.37,1590.44,1405.99,21.61,553.45,2388.07,9048.99,47.61,521.25,2388.11,8.4304,393,38.8,23.2577 +71,98,0.0022,0.0003,642.09,1596.55,1402.01,21.61,553.33,2388.1,9056.53,47.45,521.74,2388.13,8.4744,393,38.73,23.3293 +71,99,0.0018,0.0001,642.56,1589.72,1409.18,21.61,553.95,2388.08,9056.2,47.41,521.31,2388.11,8.4595,393,38.83,23.2812 +71,100,-0.0008,-0.0002,642.86,1588.57,1405.57,21.61,553.52,2388.1,9055.76,47.34,521.67,2388.06,8.4285,392,38.81,23.2855 +71,101,0.0051,0.0002,642.52,1588.52,1410.37,21.61,553.05,2388.08,9054.76,47.43,521.58,2388.11,8.4338,392,38.81,23.251 +71,102,-0.0015,0.0004,642.55,1587.79,1403.93,21.61,553.3,2388.13,9047.5,47.39,521.94,2388.09,8.4331,394,38.74,23.2832 +71,103,-0.0026,0.0004,642.52,1591.57,1407.55,21.61,553.03,2388.1,9059.7,47.57,521.35,2388.06,8.4387,393,38.75,23.263 +71,104,0.0009,0.0005,642.94,1587.21,1411.37,21.61,553.26,2388.11,9056.68,47.58,521.76,2388.09,8.4226,393,38.85,23.3277 +71,105,-0.0014,-0.0004,642.71,1588.93,1407.26,21.61,554.24,2388.08,9056.07,47.54,521.7,2388.1,8.4833,394,38.73,23.2157 +71,106,0.001,-0.0001,642.32,1590.9,1406.95,21.61,553.38,2388.07,9053.88,47.45,521.25,2388.09,8.4061,393,38.71,23.1861 +71,107,0.0006,0.0002,642.7,1593.14,1407.27,21.61,553.27,2388.13,9055.63,47.57,521.44,2388.16,8.4583,394,38.92,23.3072 +71,108,0.0014,0.0,642.61,1590.18,1407.28,21.61,554.05,2388.12,9060.41,47.53,521.74,2388.09,8.4679,394,38.88,23.2657 +71,109,0.0035,0.0003,642.87,1593.35,1411.86,21.61,553.61,2388.07,9049.08,47.51,521.59,2388.07,8.4537,393,38.85,23.2369 +71,110,0.0004,0.0005,642.72,1585.79,1405.28,21.61,553.45,2388.08,9052.57,47.69,521.28,2388.11,8.4397,394,38.65,23.3387 +71,111,-0.001,0.0001,642.24,1593.55,1405.16,21.61,553.43,2388.11,9057.41,47.57,522.05,2388.13,8.4416,393,38.84,23.2953 +71,112,-0.0012,0.0003,642.49,1584.01,1412.61,21.61,553.37,2388.06,9052.22,47.69,521.22,2388.12,8.4141,393,38.76,23.3708 +71,113,-0.0004,0.0005,642.77,1588.24,1413.8,21.61,553.73,2388.12,9057.15,47.63,521.51,2388.14,8.424,393,38.8,23.2884 +71,114,-0.0061,-0.0004,642.62,1596.53,1409.03,21.61,553.33,2388.14,9064.03,47.43,521.26,2388.09,8.4464,393,38.86,23.2755 +71,115,-0.0017,0.0005,642.46,1594.8,1407.0,21.61,553.38,2388.07,9048.57,47.59,521.36,2388.13,8.4417,395,38.63,23.2904 +71,116,-0.0039,0.0005,642.72,1587.46,1409.51,21.61,553.34,2388.11,9056.18,47.68,521.78,2388.09,8.4242,395,38.72,23.2465 +71,117,0.0013,-0.0,642.79,1590.4,1408.13,21.61,553.61,2388.07,9062.42,47.63,521.6,2388.09,8.4529,393,38.8,23.271 +71,118,0.0002,-0.0,642.21,1584.79,1411.57,21.61,553.27,2388.09,9058.73,47.5,521.35,2388.03,8.436,395,38.55,23.231 +71,119,-0.0012,-0.0001,642.85,1588.91,1400.22,21.61,553.74,2388.16,9059.56,47.53,521.49,2388.14,8.4628,392,38.77,23.3043 +71,120,0.0033,0.0005,642.81,1590.75,1414.67,21.61,553.36,2388.1,9054.79,47.43,521.21,2388.15,8.4475,391,38.96,23.3841 +71,121,-0.0014,0.0003,643.29,1592.08,1413.15,21.61,553.09,2388.12,9054.72,47.52,521.63,2388.14,8.4509,395,38.87,23.3197 +71,122,0.0007,0.0003,642.9,1583.86,1414.0,21.61,553.87,2388.11,9060.85,47.65,521.18,2388.09,8.4238,395,38.9,23.2903 +71,123,0.0002,-0.0001,642.71,1589.22,1416.62,21.61,553.01,2388.11,9062.87,47.58,520.5,2388.13,8.4411,391,38.73,23.2743 +71,124,0.0006,-0.0,642.79,1594.29,1408.9,21.61,553.19,2388.13,9062.85,47.61,521.32,2388.04,8.4843,394,38.68,23.463 +71,125,-0.0009,-0.0005,643.28,1585.32,1411.66,21.61,553.24,2388.13,9056.16,47.52,521.57,2388.13,8.4425,393,38.64,23.2051 +71,126,0.0008,-0.0003,642.67,1597.88,1413.86,21.61,553.98,2388.1,9063.94,47.52,521.53,2388.06,8.4541,394,38.63,23.1568 +71,127,-0.0009,0.0003,642.81,1594.31,1407.3,21.61,553.76,2388.12,9068.14,47.72,521.03,2388.11,8.4189,394,38.8,23.113 +71,128,0.0001,-0.0003,643.02,1593.3,1410.6,21.61,553.11,2388.15,9058.5,47.47,521.57,2388.14,8.4406,395,38.68,23.1453 +71,129,-0.0008,-0.0001,643.03,1588.49,1410.95,21.61,554.1,2388.08,9060.62,47.57,521.3,2388.14,8.4749,393,38.77,23.3252 +71,130,-0.0039,-0.0003,642.78,1591.01,1408.76,21.61,553.49,2388.04,9064.27,47.67,521.3,2388.07,8.4305,394,38.84,23.3686 +71,131,0.0046,-0.0004,642.27,1594.54,1404.47,21.61,552.94,2388.06,9059.49,47.44,521.44,2388.13,8.4406,392,38.9,23.3063 +71,132,0.0016,0.0003,642.75,1589.44,1410.57,21.61,552.67,2388.12,9066.25,47.46,521.06,2388.1,8.413,393,38.7,23.4292 +71,133,0.0006,-0.0001,642.97,1598.37,1419.33,21.61,552.46,2388.06,9060.83,47.61,521.38,2388.11,8.4751,392,38.62,23.2353 +71,134,-0.0026,-0.0003,642.54,1586.99,1415.12,21.61,552.61,2388.07,9062.17,47.37,521.59,2388.17,8.4403,394,38.9,23.2616 +71,135,0.0025,0.0005,642.96,1594.67,1410.94,21.61,553.42,2388.12,9065.84,47.46,521.36,2388.08,8.4709,395,38.61,23.202 +71,136,-0.0043,-0.0002,642.64,1585.84,1407.29,21.61,553.56,2388.14,9064.63,47.56,520.99,2388.13,8.4705,394,38.72,23.2056 +71,137,-0.0009,0.0003,642.92,1591.06,1416.33,21.61,553.27,2388.09,9065.52,47.5,520.87,2388.14,8.4579,394,38.77,23.2931 +71,138,0.0038,0.0001,642.86,1594.96,1415.09,21.61,553.1,2388.13,9067.85,47.8,521.35,2388.11,8.4807,393,38.73,23.3304 +71,139,0.0032,-0.0001,642.56,1593.15,1414.45,21.61,553.13,2388.11,9072.38,47.59,521.35,2388.04,8.458,394,38.82,23.184 +71,140,-0.0041,-0.0002,642.82,1593.55,1419.33,21.61,553.39,2388.09,9067.3,47.41,521.52,2388.06,8.4389,392,38.72,23.2827 +71,141,0.0003,-0.0003,643.0,1583.94,1412.73,21.61,552.67,2388.12,9062.92,47.59,521.55,2388.19,8.4551,393,38.61,23.3516 +71,142,0.0017,-0.0004,642.13,1583.6,1406.34,21.61,553.05,2388.09,9067.56,47.52,521.21,2388.06,8.4627,395,38.84,23.3417 +71,143,-0.0019,-0.0001,643.04,1596.13,1414.05,21.61,552.07,2388.11,9066.77,47.71,520.95,2388.14,8.4458,393,38.69,23.2854 +71,144,0.0024,0.0,642.46,1587.71,1408.9,21.61,553.28,2388.08,9069.98,47.85,521.36,2388.11,8.4678,394,38.9,23.3478 +71,145,0.0008,-0.0002,642.73,1588.76,1408.05,21.61,552.85,2388.09,9071.7,47.66,521.42,2388.07,8.4544,394,38.79,23.2669 +71,146,-0.0018,0.0002,642.87,1592.91,1415.29,21.61,553.33,2388.11,9070.87,47.66,521.34,2388.09,8.4309,395,38.7,23.2032 +71,147,-0.0013,-0.0004,643.02,1594.03,1414.77,21.61,552.6,2388.1,9072.23,47.63,521.46,2388.13,8.4922,394,38.66,23.2358 +71,148,-0.0001,0.0003,643.23,1582.36,1418.54,21.61,553.07,2388.08,9072.11,47.63,521.25,2388.15,8.4875,396,38.78,23.2227 +71,149,0.0003,0.0001,642.77,1589.41,1411.16,21.61,552.36,2388.15,9072.69,47.63,521.69,2388.12,8.437,393,38.8,23.195 +71,150,0.0004,-0.0,642.86,1592.62,1402.97,21.61,553.43,2388.11,9076.63,47.58,521.34,2388.12,8.4611,395,38.65,23.2549 +71,151,0.0014,-0.0004,642.29,1586.58,1409.82,21.61,553.45,2388.04,9075.73,47.52,520.63,2388.12,8.4758,394,38.6,23.3022 +71,152,-0.0006,0.0003,643.2,1586.01,1418.63,21.61,552.64,2388.15,9074.91,47.74,521.28,2388.13,8.4307,393,38.67,23.1949 +71,153,-0.0044,-0.0001,643.32,1593.78,1414.46,21.61,552.92,2388.13,9078.88,47.56,520.84,2388.05,8.4878,392,38.73,23.3745 +71,154,-0.0013,0.0003,643.02,1597.47,1411.45,21.61,552.45,2388.12,9076.5,47.59,521.05,2388.09,8.4197,394,38.79,23.252 +71,155,-0.0028,0.0,642.69,1598.39,1415.4,21.61,552.88,2388.09,9086.3,47.77,521.06,2388.13,8.4751,395,38.78,23.1747 +71,156,-0.0016,0.0004,643.17,1593.34,1408.07,21.61,553.47,2388.09,9078.75,47.68,521.31,2388.12,8.476,394,38.54,23.36 +71,157,-0.0042,0.0001,642.7,1597.56,1411.08,21.61,553.18,2388.11,9073.38,47.72,521.42,2388.06,8.4194,394,38.71,23.2228 +71,158,-0.0008,-0.0003,643.17,1590.28,1414.23,21.61,553.02,2388.15,9079.6,47.74,521.24,2388.08,8.4555,395,38.63,23.2499 +71,159,-0.0031,-0.0,643.4,1586.52,1416.4,21.61,552.7,2388.08,9076.4,47.85,520.93,2388.07,8.4635,393,38.65,23.2729 +71,160,0.0012,-0.0004,642.98,1592.74,1424.36,21.61,553.25,2388.18,9083.25,47.8,521.29,2388.1,8.4924,396,38.67,23.1788 +71,161,-0.0016,0.0001,642.57,1591.35,1417.93,21.61,553.25,2388.09,9081.04,47.72,521.07,2388.14,8.478,394,38.74,23.1024 +71,162,0.002,-0.0003,642.53,1594.16,1413.89,21.61,553.31,2388.11,9077.59,47.7,520.81,2388.13,8.4446,394,38.74,23.2595 +71,163,0.0019,0.0001,643.29,1593.59,1413.94,21.61,552.74,2388.19,9082.29,47.79,520.97,2388.13,8.4299,393,38.74,23.1941 +71,164,-0.0008,-0.0001,643.19,1593.4,1416.32,21.61,553.14,2388.11,9081.78,47.64,521.2,2388.1,8.4675,393,38.79,23.3792 +71,165,0.0001,0.0002,642.89,1594.16,1415.21,21.61,553.43,2388.05,9092.08,47.82,520.55,2388.13,8.4715,395,38.68,23.2064 +71,166,0.0012,-0.0,643.13,1594.59,1414.65,21.61,553.32,2388.07,9082.85,47.84,520.53,2388.1,8.4657,394,38.6,23.223 +71,167,-0.003,0.0004,642.94,1598.59,1415.99,21.61,552.55,2388.12,9087.96,47.56,520.73,2388.1,8.4806,395,38.69,23.2166 +71,168,0.0037,-0.0005,643.0,1596.79,1412.2,21.61,552.94,2388.12,9086.86,47.76,520.88,2388.14,8.4754,395,38.66,23.2358 +71,169,-0.0016,-0.0003,642.39,1596.3,1408.82,21.61,552.51,2388.11,9087.02,47.87,520.7,2388.14,8.4244,393,38.66,23.2241 +71,170,0.0011,0.0003,642.94,1599.6,1413.04,21.61,552.22,2388.07,9092.23,47.63,521.1,2388.15,8.4483,395,38.74,23.2023 +71,171,0.0003,0.0004,643.36,1601.38,1410.27,21.61,552.31,2388.1,9092.33,47.86,520.78,2388.09,8.4744,395,38.67,23.1018 +71,172,-0.0016,-0.0003,643.01,1586.69,1417.78,21.61,551.92,2388.08,9091.83,47.82,520.84,2388.11,8.4676,394,38.87,23.2224 +71,173,0.0004,0.0003,642.48,1596.61,1414.58,21.61,552.67,2388.16,9099.74,47.91,520.64,2388.14,8.4957,396,38.7,23.1391 +71,174,-0.0004,-0.0002,643.13,1596.37,1410.71,21.61,552.5,2388.14,9091.09,47.66,520.75,2388.12,8.4912,394,38.57,23.2479 +71,175,-0.0026,0.0003,642.88,1599.47,1419.49,21.61,552.68,2388.14,9094.49,47.98,520.73,2388.03,8.4802,394,38.51,23.1409 +71,176,0.0009,0.0002,643.02,1593.29,1420.25,21.61,552.18,2388.14,9098.15,47.85,520.98,2388.12,8.4567,394,38.51,23.2123 +71,177,-0.0001,-0.0002,643.33,1599.11,1418.33,21.61,552.2,2388.09,9101.12,47.83,520.49,2388.14,8.4478,394,38.82,23.2107 +71,178,0.0012,-0.0,642.97,1593.86,1421.25,21.61,552.14,2388.1,9098.05,47.96,520.81,2388.14,8.4553,394,38.55,23.2606 +71,179,-0.0016,-0.0003,642.98,1599.53,1416.48,21.61,553.13,2388.1,9102.92,47.87,520.66,2388.08,8.4661,396,38.47,23.1605 +71,180,0.0037,-0.0002,643.09,1598.48,1420.03,21.61,553.06,2388.09,9097.27,48.03,520.44,2388.08,8.5302,397,38.5,23.1638 +71,181,0.0002,0.0,643.51,1596.63,1413.43,21.61,552.59,2388.13,9111.63,47.85,520.43,2388.14,8.4447,394,38.75,23.1769 +71,182,-0.0006,0.0003,643.14,1602.2,1421.06,21.61,552.41,2388.13,9100.39,47.74,520.89,2388.12,8.5287,397,38.52,23.1691 +71,183,0.0018,0.0005,643.77,1598.38,1425.17,21.61,552.42,2388.09,9118.28,47.78,520.51,2388.08,8.5004,394,38.65,23.111 +71,184,0.0008,0.0002,642.92,1593.23,1418.35,21.61,553.05,2388.12,9114.9,47.89,521.11,2388.11,8.4523,395,38.58,23.1549 +71,185,-0.0011,0.0002,643.16,1596.52,1422.09,21.61,552.61,2388.11,9114.64,47.84,520.35,2388.09,8.5041,395,38.62,23.2062 +71,186,0.0025,-0.0001,643.0,1597.49,1423.97,21.61,552.65,2388.12,9112.49,47.83,520.62,2388.16,8.4745,394,38.79,23.1818 +71,187,0.0029,-0.0,643.23,1593.31,1413.84,21.61,552.64,2388.14,9112.53,48.04,520.97,2388.05,8.5143,394,38.39,23.1748 +71,188,-0.0021,-0.0003,642.99,1591.45,1425.14,21.61,552.25,2388.13,9117.46,48.01,520.06,2388.18,8.46,396,38.78,23.0648 +71,189,-0.0001,-0.0001,643.33,1597.56,1424.51,21.61,552.36,2388.13,9115.05,47.79,520.16,2388.11,8.4717,395,38.63,23.1445 +71,190,-0.0051,0.0004,643.44,1595.76,1415.06,21.61,552.16,2388.17,9113.22,47.87,519.93,2388.13,8.4946,394,38.79,23.2389 +71,191,0.0018,0.0004,643.4,1604.75,1425.08,21.61,552.46,2388.08,9129.01,48.1,520.26,2388.17,8.4953,393,38.53,22.9802 +71,192,-0.0014,0.0003,643.57,1598.71,1422.94,21.61,552.31,2388.11,9119.14,47.82,520.75,2388.12,8.469,396,38.55,23.0794 +71,193,0.0021,-0.0001,643.38,1600.02,1416.96,21.61,552.37,2388.15,9125.13,47.82,520.55,2388.12,8.4722,395,38.72,23.1332 +71,194,0.0032,0.0004,643.43,1596.97,1419.79,21.61,552.55,2388.17,9126.77,47.87,520.33,2388.12,8.5066,395,38.48,23.1465 +71,195,0.0002,0.0001,643.15,1590.26,1419.57,21.61,552.26,2388.18,9128.33,48.06,520.99,2388.17,8.4756,396,38.65,23.0475 +71,196,0.0031,-0.0001,643.13,1602.81,1430.38,21.61,551.74,2388.16,9131.38,48.03,520.97,2388.15,8.5263,395,38.34,23.1632 +71,197,0.0013,0.0002,643.5,1602.85,1417.32,21.61,551.91,2388.14,9135.93,47.88,520.87,2388.1,8.4752,396,38.5,23.0395 +71,198,0.004,-0.0002,643.36,1591.01,1421.66,21.61,552.12,2388.13,9137.78,47.86,520.22,2388.11,8.4955,396,38.47,23.109 +71,199,0.0017,-0.0003,643.98,1600.76,1419.82,21.61,552.32,2388.18,9129.71,47.82,519.88,2388.16,8.5026,397,38.67,23.1232 +71,200,-0.001,-0.0003,643.3,1597.91,1428.16,21.61,551.26,2388.12,9133.79,48.02,520.18,2388.12,8.4954,396,38.5,23.0115 +71,201,-0.0024,0.0004,643.42,1605.53,1432.89,21.61,551.62,2388.1,9137.97,47.99,520.27,2388.16,8.492,397,38.45,23.0096 +71,202,-0.0009,0.0005,643.44,1600.22,1425.72,21.61,552.05,2388.13,9139.95,47.86,520.39,2388.15,8.5349,397,38.38,23.0195 +71,203,-0.0046,-0.0003,643.66,1596.68,1432.54,21.61,551.64,2388.13,9144.24,48.14,520.51,2388.14,8.5438,397,38.63,23.0642 +71,204,-0.0039,0.0,643.24,1603.25,1432.07,21.61,552.01,2388.16,9151.93,48.09,520.69,2388.14,8.5034,396,38.67,23.0836 +71,205,-0.0005,0.0005,644.0,1605.32,1421.45,21.61,551.55,2388.12,9144.82,48.1,520.46,2388.17,8.5016,396,38.51,23.158 +71,206,-0.0038,0.0003,643.5,1602.49,1436.86,21.61,551.63,2388.15,9155.36,48.15,520.27,2388.16,8.5348,396,38.39,23.1234 +71,207,0.0065,0.0,643.4,1597.16,1428.89,21.61,551.56,2388.14,9160.49,48.22,520.31,2388.18,8.5581,397,38.33,23.0916 +71,208,0.0012,0.0002,643.57,1599.94,1437.81,21.61,551.45,2388.18,9153.73,48.02,520.04,2388.19,8.5197,397,38.25,22.9967 +74,10,0.0015,-0.0002,642.23,1587.34,1399.13,21.61,554.35,2388.01,9062.41,47.39,521.91,2388.02,8.4437,392,39.1,23.4662 +74,11,0.0,-0.0002,642.4,1592.61,1400.94,21.61,554.17,2388.02,9064.84,47.25,522.05,2388.05,8.4108,393,38.94,23.3792 +74,12,-0.0001,-0.0004,642.78,1587.92,1399.83,21.61,554.76,2387.97,9063.85,47.34,522.03,2388.04,8.389,391,38.85,23.3983 +74,13,-0.0016,-0.0,642.31,1587.15,1409.13,21.61,554.71,2388.02,9069.98,47.37,521.98,2387.98,8.4122,393,38.83,23.3864 +74,14,0.0012,-0.0003,642.24,1588.65,1398.17,21.61,553.93,2387.96,9074.08,47.44,522.36,2388.09,8.4135,393,38.98,23.3187 +74,15,0.0007,0.0003,641.79,1588.95,1405.96,21.61,554.19,2388.02,9060.94,47.26,521.94,2387.98,8.4642,393,38.94,23.4213 +74,16,-0.0008,0.0003,642.3,1591.42,1404.19,21.61,554.1,2388.05,9067.33,47.22,521.81,2387.97,8.4004,393,39.09,23.5525 +74,17,-0.0011,-0.0005,641.9,1587.62,1399.42,21.61,554.58,2388.07,9068.21,47.34,521.92,2388.01,8.4142,394,38.84,23.3135 +74,18,-0.001,-0.0001,642.04,1584.45,1400.28,21.6,554.23,2388.03,9065.4,47.37,522.18,2388.02,8.404,392,39.16,23.3719 +74,19,0.0001,-0.0,642.0,1588.3,1403.17,21.6,554.77,2388.0,9070.61,47.3,522.15,2388.03,8.3891,391,38.97,23.4704 +74,20,-0.0013,-0.0005,642.4,1577.44,1406.25,21.61,554.39,2388.03,9065.01,47.28,522.32,2388.02,8.4065,393,38.87,23.3186 +74,21,0.0033,0.0002,642.0,1587.03,1404.32,21.61,553.92,2388.04,9066.9,47.37,521.96,2388.04,8.4272,392,38.96,23.3468 +74,22,-0.003,-0.0004,641.97,1589.06,1400.03,21.61,553.93,2388.07,9059.51,47.28,521.96,2388.03,8.4144,392,38.8,23.4153 +74,23,-0.0017,-0.0001,642.44,1582.47,1403.22,21.61,553.92,2388.01,9060.05,47.36,522.43,2388.06,8.403,393,39.03,23.4854 +74,24,-0.0005,-0.0003,642.48,1584.24,1398.14,21.61,554.19,2388.02,9071.34,47.13,522.51,2388.07,8.3969,390,38.94,23.4012 +74,25,-0.0001,-0.0003,642.03,1586.06,1398.98,21.61,554.16,2387.99,9062.79,47.38,522.18,2387.98,8.3802,393,39.1,23.3906 +74,26,-0.0035,-0.0002,642.49,1594.69,1407.46,21.6,553.85,2388.06,9064.45,47.32,521.76,2387.98,8.4454,391,38.74,23.3713 +74,27,-0.0016,-0.0004,641.79,1587.34,1398.74,21.61,554.64,2388.0,9058.08,47.21,521.72,2388.01,8.4213,391,38.96,23.4215 +74,28,-0.0018,-0.0,641.84,1584.15,1396.64,21.61,554.19,2387.99,9061.94,47.31,522.22,2388.01,8.3955,392,38.9,23.3685 +74,29,-0.0002,0.0001,642.45,1582.81,1397.92,21.61,553.66,2387.99,9073.17,47.24,522.06,2387.98,8.4341,392,38.96,23.4575 +74,30,-0.0002,-0.0002,642.03,1589.83,1404.47,21.61,554.8,2388.01,9061.41,47.18,521.33,2388.0,8.4025,393,39.08,23.4487 +74,31,0.0002,0.0003,642.1,1593.19,1397.85,21.61,554.43,2388.02,9077.08,47.27,522.31,2388.04,8.3929,392,38.97,23.4466 +74,32,0.0005,0.0004,642.25,1593.45,1399.46,21.61,554.21,2388.04,9064.62,47.39,521.63,2388.03,8.4244,393,38.91,23.425 +74,33,0.0022,0.0,642.55,1586.85,1404.05,21.61,553.97,2388.01,9069.87,47.35,522.51,2388.0,8.3573,392,38.85,23.3048 +74,34,-0.0025,0.0004,642.4,1582.43,1407.9,21.61,554.15,2388.02,9070.36,47.52,521.78,2388.02,8.4108,392,39.08,23.3761 +74,35,-0.0017,0.0001,642.59,1585.86,1400.38,21.61,553.75,2388.02,9066.42,47.32,522.05,2387.97,8.4345,393,38.88,23.4471 +74,36,0.0007,-0.0004,642.07,1595.45,1401.54,21.61,553.94,2388.04,9065.98,47.18,522.28,2387.96,8.4215,393,39.1,23.3164 +74,37,0.0021,0.0003,642.13,1590.41,1412.38,21.61,554.15,2388.02,9062.55,47.35,522.32,2388.01,8.4012,392,38.9,23.4258 +74,38,0.0045,0.0001,642.1,1586.81,1401.33,21.61,554.52,2388.05,9068.78,47.27,522.44,2388.04,8.4263,393,39.04,23.3353 +74,39,0.0007,0.0002,642.32,1592.66,1400.67,21.61,554.35,2388.02,9065.83,47.36,522.05,2388.02,8.418,393,39.17,23.3277 +74,40,-0.002,0.0002,642.24,1582.36,1401.32,21.61,554.39,2388.03,9069.4,47.33,521.88,2388.07,8.4226,392,38.9,23.2851 +74,41,0.0029,-0.0004,642.47,1593.25,1398.79,21.61,554.03,2387.99,9064.7,47.25,521.8,2388.02,8.397,393,39.01,23.38 +74,42,-0.0047,-0.0002,642.14,1582.57,1404.37,21.61,554.28,2388.03,9062.15,47.42,522.52,2388.02,8.4,390,38.9,23.4479 +74,43,-0.0014,0.0003,642.12,1580.45,1404.81,21.61,553.37,2388.04,9065.58,47.16,522.19,2388.02,8.4216,393,38.92,23.3628 +74,44,-0.0027,0.0002,642.16,1591.77,1401.86,21.61,553.71,2388.02,9072.55,47.27,522.01,2388.01,8.4334,392,38.95,23.3778 +74,45,0.0026,-0.0003,642.6,1582.73,1402.96,21.61,554.53,2388.04,9063.28,47.36,522.0,2388.03,8.3879,393,39.15,23.3733 +74,46,-0.0001,-0.0005,642.33,1588.18,1403.24,21.61,554.43,2387.99,9060.06,47.18,522.14,2387.96,8.4132,392,39.0,23.4556 +74,47,0.0018,0.0001,642.51,1587.06,1405.12,21.61,554.03,2388.03,9061.67,47.3,521.72,2388.03,8.4015,394,39.18,23.3342 +74,48,0.0018,-0.0001,642.29,1588.74,1397.89,21.61,553.78,2388.09,9070.99,47.25,521.91,2388.03,8.4132,391,39.08,23.2579 +74,49,0.0019,-0.0003,642.68,1583.52,1403.69,21.61,554.0,2388.04,9061.26,47.29,522.44,2388.05,8.3917,392,38.78,23.3541 +74,50,-0.0005,-0.0003,642.27,1590.88,1399.49,21.61,554.57,2387.99,9059.12,47.26,521.78,2388.06,8.4272,391,38.89,23.3717 +74,51,0.0002,-0.0003,642.45,1591.7,1401.28,21.61,553.61,2388.04,9069.62,47.23,522.62,2388.02,8.4689,395,39.06,23.3901 +74,52,0.0005,0.0001,642.35,1582.25,1400.56,21.61,553.5,2388.02,9066.12,47.36,522.0,2388.01,8.3979,393,38.98,23.3178 +74,53,0.0004,-0.0001,642.51,1588.08,1403.07,21.61,553.94,2388.05,9068.91,47.45,521.95,2388.06,8.4362,394,39.08,23.3982 +74,54,0.0006,-0.0006,642.37,1573.01,1400.24,21.61,554.34,2388.07,9069.41,47.39,521.89,2388.04,8.4193,393,39.04,23.3612 +74,55,0.0018,-0.0004,642.34,1590.42,1400.88,21.61,553.78,2388.02,9060.23,47.28,522.21,2388.06,8.3745,391,38.9,23.3949 +74,56,0.001,-0.0006,642.19,1581.96,1403.64,21.61,554.76,2388.08,9066.15,47.4,521.59,2387.99,8.3836,392,38.95,23.4561 +74,57,-0.0014,0.0002,641.98,1597.42,1405.75,21.61,554.23,2387.97,9066.29,47.48,521.31,2388.01,8.4207,393,38.82,23.4704 +74,58,-0.0019,0.0002,642.29,1587.76,1405.97,21.61,554.11,2388.08,9065.24,47.41,522.13,2388.09,8.4035,391,38.92,23.3888 +74,59,0.002,0.0001,642.18,1586.34,1399.3,21.61,554.65,2388.04,9062.72,47.39,522.29,2388.04,8.3861,392,38.92,23.3494 +74,60,0.0021,0.0002,642.4,1587.13,1400.11,21.61,554.97,2388.03,9060.99,47.26,522.06,2388.02,8.431,393,38.78,23.4386 +74,61,-0.0009,-0.0003,642.65,1587.91,1398.0,21.61,553.9,2388.06,9074.19,47.25,521.74,2388.07,8.3862,392,39.05,23.4014 +74,62,-0.0012,0.0001,642.25,1587.57,1404.32,21.61,554.16,2388.06,9061.51,47.3,521.75,2388.04,8.3949,392,38.89,23.3447 +74,63,-0.0017,-0.0004,642.33,1580.61,1405.28,21.61,554.54,2388.01,9072.95,47.37,521.64,2388.02,8.4165,392,39.04,23.2911 +74,64,-0.0008,0.0001,642.7,1585.63,1403.1,21.61,553.88,2388.04,9071.16,47.4,522.19,2388.09,8.3929,392,38.93,23.3505 +74,65,-0.0004,0.0001,642.22,1588.08,1403.58,21.61,553.82,2388.02,9067.66,47.46,522.21,2388.02,8.4329,392,38.89,23.4342 +74,66,-0.0018,-0.0005,641.88,1582.4,1394.64,21.61,554.84,2388.01,9075.5,47.39,522.22,2388.04,8.4392,393,38.73,23.433 +74,67,-0.0011,0.0001,642.09,1593.55,1407.41,21.61,553.95,2388.1,9069.89,47.23,521.64,2388.06,8.4062,392,38.78,23.1994 +74,68,-0.0009,0.0003,642.52,1584.61,1399.61,21.61,553.83,2388.05,9064.96,47.49,521.92,2388.09,8.4167,394,39.03,23.3388 +74,69,0.0033,-0.0004,642.25,1580.45,1406.34,21.61,554.06,2388.02,9064.29,47.61,521.71,2388.03,8.411,393,39.07,23.3652 +74,70,0.0054,-0.0,642.08,1584.02,1401.03,21.61,553.46,2388.1,9061.73,47.35,521.89,2388.03,8.4493,392,38.93,23.3024 +74,71,0.0007,0.0002,642.49,1592.4,1398.43,21.61,553.33,2388.06,9063.94,47.26,522.57,2388.01,8.4127,392,38.89,23.4211 +74,72,-0.0016,0.0002,642.48,1588.87,1401.0,21.61,553.75,2388.02,9066.62,47.28,521.82,2388.01,8.4331,393,38.8,23.4176 +74,73,0.0005,-0.0003,642.67,1592.31,1402.23,21.61,553.28,2388.11,9058.98,47.37,521.75,2388.07,8.4307,390,39.0,23.3203 +74,74,-0.0003,0.0003,642.32,1586.8,1405.09,21.61,554.42,2388.07,9067.24,47.18,522.08,2388.03,8.4144,392,39.05,23.3081 +74,75,-0.0016,0.0002,642.16,1582.53,1400.94,21.61,553.96,2387.98,9066.56,47.31,522.18,2388.09,8.4143,392,38.94,23.308 +74,76,-0.0012,-0.0003,642.84,1588.98,1393.28,21.61,553.6,2388.02,9066.62,47.36,521.77,2388.03,8.4212,391,39.02,23.4951 +74,77,-0.0029,-0.0003,641.8,1588.56,1406.27,21.61,553.91,2388.05,9065.04,47.4,522.17,2388.06,8.4162,392,38.89,23.3964 +74,78,0.0031,0.0004,642.35,1590.28,1406.97,21.61,553.14,2388.03,9065.35,47.64,521.97,2388.03,8.4081,391,38.8,23.2835 +74,79,0.0004,-0.0003,642.49,1582.66,1408.73,21.61,554.13,2388.05,9064.58,47.41,521.53,2388.04,8.4458,391,38.96,23.376 +74,80,-0.003,-0.0002,642.61,1589.09,1398.8,21.61,554.96,2388.05,9061.06,47.39,521.15,2388.05,8.4044,393,38.97,23.367 +74,81,-0.0005,-0.0004,642.89,1584.46,1407.7,21.61,554.15,2388.09,9071.58,47.46,521.37,2388.05,8.4094,393,38.88,23.3511 +74,82,-0.0033,-0.0003,642.14,1590.43,1415.12,21.61,554.11,2388.01,9067.74,47.44,521.62,2388.05,8.4315,392,38.77,23.3388 +74,83,-0.0017,0.0001,642.26,1583.83,1402.6,21.61,553.96,2388.02,9071.12,47.3,522.12,2388.06,8.4278,393,39.06,23.1741 +74,84,0.0003,0.0004,642.73,1580.82,1404.87,21.61,554.08,2388.1,9062.7,47.26,521.7,2388.09,8.4103,390,39.1,23.294 +74,85,0.0015,-0.0002,642.97,1582.96,1408.07,21.61,554.19,2388.05,9071.24,47.55,522.03,2388.03,8.4271,393,38.79,23.2962 +74,86,0.0018,-0.0002,642.34,1585.96,1401.84,21.61,554.33,2388.04,9072.73,47.1,521.44,2388.1,8.4245,393,38.88,23.3631 +74,87,0.0009,0.0004,642.27,1592.24,1410.28,21.61,553.21,2387.99,9070.24,47.51,521.54,2388.11,8.3997,393,38.79,23.3492 +74,88,-0.0026,0.0002,641.86,1589.76,1405.83,21.61,553.91,2388.01,9064.17,47.33,521.74,2388.09,8.4338,392,38.91,23.3874 +74,89,-0.0014,0.0004,642.07,1594.9,1402.96,21.61,553.06,2388.02,9064.97,47.47,521.57,2388.09,8.3859,392,38.92,23.3188 +74,90,0.004,0.0002,643.21,1591.59,1405.0,21.61,554.33,2388.08,9067.03,47.35,521.57,2388.04,8.4335,393,38.89,23.2834 +74,91,-0.0,-0.0005,642.5,1584.01,1404.6,21.61,553.23,2388.01,9062.48,47.42,521.81,2388.11,8.4514,392,39.02,23.3845 +74,92,0.0005,0.0,642.0,1580.91,1401.69,21.61,553.65,2388.05,9059.57,47.32,521.77,2388.05,8.4433,391,38.92,23.332 +74,93,-0.0019,0.0003,642.13,1586.29,1407.97,21.61,554.29,2388.04,9069.62,47.4,521.71,2388.09,8.4325,393,38.71,23.3135 +74,94,-0.0057,0.0001,642.36,1582.25,1410.45,21.61,553.67,2388.04,9061.54,47.42,521.88,2388.04,8.4406,393,38.99,23.2051 +74,95,-0.0026,0.0003,642.56,1592.88,1400.65,21.61,554.17,2388.04,9072.37,47.49,521.28,2388.1,8.4297,393,38.93,23.3032 +74,96,-0.0014,-0.0001,642.55,1594.8,1406.94,21.61,553.84,2388.03,9062.54,47.49,521.72,2388.03,8.4341,392,38.87,23.2356 +74,97,0.0019,0.0003,643.37,1584.2,1401.36,21.61,553.85,2388.06,9062.64,47.57,521.53,2388.04,8.4513,392,38.72,23.3476 +74,98,-0.0002,0.0001,643.23,1591.38,1413.04,21.61,553.53,2388.08,9057.96,47.35,521.83,2388.03,8.4381,392,38.79,23.3799 +74,99,0.0002,-0.0001,642.63,1598.24,1406.4,21.61,553.53,2388.08,9070.1,47.57,521.49,2388.09,8.4058,393,38.93,23.2388 +74,100,-0.0019,0.0002,642.81,1591.05,1401.16,21.61,553.65,2388.04,9063.7,47.42,521.92,2388.12,8.4455,392,38.88,23.3013 +74,101,-0.0016,-0.0004,642.26,1586.88,1404.66,21.61,552.68,2388.11,9062.51,47.38,521.63,2388.07,8.4264,393,39.02,23.4033 +74,102,-0.0023,0.0004,642.37,1589.5,1403.75,21.61,553.24,2388.1,9059.55,47.54,521.56,2388.11,8.4358,393,38.8,23.3539 +74,103,0.002,-0.0003,641.98,1589.18,1405.94,21.61,554.0,2388.07,9065.23,47.55,521.66,2388.06,8.462,393,38.87,23.3441 +74,104,0.0003,-0.0004,642.46,1587.45,1403.47,21.61,554.3,2388.07,9062.93,47.42,521.6,2388.07,8.4333,393,38.94,23.3022 +74,105,-0.0031,0.0002,642.59,1588.29,1395.87,21.61,553.67,2388.07,9063.33,47.5,521.35,2388.06,8.4324,393,38.9,23.2421 +74,106,0.0016,-0.0,642.18,1583.73,1395.86,21.61,553.48,2388.1,9063.57,47.35,521.96,2388.11,8.451,392,38.76,23.3248 +74,107,-0.002,-0.0004,642.72,1585.41,1405.97,21.61,553.36,2388.04,9062.23,47.47,521.41,2388.13,8.4422,393,38.81,23.2887 +74,108,0.0031,-0.0001,642.53,1596.06,1401.95,21.61,553.94,2388.1,9057.76,47.32,521.6,2388.04,8.4335,392,38.92,23.2729 +74,109,0.0029,0.0001,642.67,1589.44,1408.36,21.61,553.63,2388.07,9072.53,47.44,521.54,2388.12,8.4397,394,38.77,23.3458 +74,110,-0.0034,0.0003,642.64,1591.73,1410.15,21.61,553.1,2388.06,9062.58,47.6,521.35,2388.12,8.4632,393,39.07,23.2665 +74,111,-0.0007,-0.0002,642.68,1595.06,1413.43,21.61,554.09,2388.12,9065.8,47.6,520.99,2388.14,8.4492,393,38.63,23.3011 +74,112,0.0024,-0.0002,642.75,1585.25,1411.42,21.61,553.51,2388.12,9064.63,47.37,521.5,2388.06,8.4485,392,38.96,23.2548 +74,113,-0.0039,0.0002,642.83,1596.96,1403.74,21.61,552.95,2388.12,9061.24,47.47,521.69,2388.14,8.44,393,38.79,23.238 +74,114,0.0022,0.0004,642.39,1591.45,1414.89,21.61,553.24,2388.08,9062.68,47.51,522.06,2388.12,8.4423,394,38.92,23.3154 +74,115,-0.003,-0.0002,642.43,1591.88,1410.36,21.61,552.91,2388.09,9069.5,47.65,521.33,2388.05,8.4018,394,38.79,23.2514 +74,116,0.003,-0.0002,642.35,1589.06,1406.84,21.61,552.69,2388.08,9057.11,47.68,521.69,2388.04,8.4309,393,38.75,23.2317 +74,117,-0.0012,0.0004,642.53,1584.49,1409.75,21.61,553.24,2388.12,9068.55,47.53,521.03,2388.13,8.4948,393,38.87,23.1815 +74,118,-0.002,-0.0003,643.16,1591.62,1405.71,21.61,553.64,2388.1,9064.33,47.54,521.19,2388.05,8.4314,394,38.84,23.271 +74,119,-0.0004,0.0001,642.7,1593.63,1409.85,21.61,553.81,2388.11,9070.5,47.51,521.13,2388.12,8.4466,393,38.55,23.2363 +74,120,0.001,-0.0,642.27,1589.65,1407.1,21.61,553.01,2388.09,9065.29,47.7,521.35,2388.07,8.4432,393,38.74,23.357 +74,121,0.0034,-0.0003,642.53,1588.85,1405.77,21.61,552.88,2388.1,9069.85,47.66,520.97,2388.09,8.4394,394,38.89,23.2854 +74,122,0.0009,0.0004,642.24,1597.21,1405.94,21.61,552.57,2388.11,9061.94,47.61,521.17,2388.14,8.445,392,38.89,23.3036 +74,123,-0.0011,0.0002,642.77,1589.39,1405.57,21.61,552.73,2388.14,9065.63,47.66,521.61,2388.1,8.4433,394,38.73,23.2637 +74,124,0.0029,-0.0004,642.51,1587.31,1421.53,21.61,553.86,2388.11,9068.51,47.6,521.31,2388.06,8.4444,393,38.93,23.251 +74,125,-0.0016,-0.0004,642.72,1587.27,1412.02,21.61,552.84,2388.1,9068.28,47.53,520.52,2388.1,8.4478,392,38.85,23.3422 +74,126,0.0019,0.0002,642.48,1592.15,1411.39,21.61,553.73,2388.09,9058.68,47.46,521.08,2388.15,8.4534,393,38.66,23.2693 +74,127,-0.002,0.0002,642.79,1593.71,1410.18,21.61,552.62,2388.12,9056.14,47.54,520.88,2388.11,8.4365,392,38.77,23.4133 +74,128,0.0008,-0.0001,642.46,1596.34,1409.77,21.61,553.44,2388.08,9054.21,47.79,520.4,2388.1,8.4762,395,38.53,23.1698 +74,129,0.0005,-0.0004,642.39,1592.04,1407.31,21.61,553.26,2388.13,9063.25,47.66,521.5,2388.07,8.4602,394,38.68,23.1738 +74,130,-0.0007,-0.0001,642.89,1589.55,1417.52,21.61,552.98,2388.14,9065.33,47.68,521.66,2388.17,8.4936,394,38.78,23.3694 +74,131,0.0003,-0.0004,643.23,1600.18,1409.96,21.61,552.93,2388.07,9060.72,47.76,520.63,2388.07,8.4409,393,38.99,23.2692 +74,132,-0.0034,0.0002,642.6,1588.11,1418.97,21.61,552.82,2388.12,9067.35,47.78,520.89,2388.14,8.4977,393,38.77,23.3244 +74,133,-0.0033,-0.0004,642.9,1599.4,1417.31,21.61,553.51,2388.13,9064.1,47.68,520.84,2388.12,8.4448,393,38.78,23.2027 +74,134,-0.0001,-0.0005,643.36,1591.59,1416.62,21.61,553.0,2388.17,9054.09,47.79,521.46,2388.13,8.4355,395,38.71,23.157 +74,135,0.0025,-0.0002,642.83,1596.42,1412.3,21.61,552.9,2388.13,9055.15,47.75,520.87,2388.16,8.4491,394,38.82,23.2522 +74,136,-0.0006,0.0001,642.91,1601.05,1416.91,21.61,553.17,2388.14,9059.99,47.6,520.64,2388.19,8.4132,395,38.7,23.2211 +74,137,0.0043,-0.0004,642.66,1590.3,1413.32,21.61,552.71,2388.18,9071.75,47.56,521.11,2388.2,8.4626,393,38.75,23.2099 +74,138,0.0012,-0.0,642.88,1590.98,1418.69,21.61,552.89,2388.16,9063.1,47.79,521.35,2388.12,8.451,396,38.7,23.2749 +74,139,-0.0003,-0.0003,642.99,1590.43,1417.17,21.61,552.45,2388.18,9063.32,47.74,521.47,2388.11,8.489,394,38.7,23.2205 +74,140,0.0003,-0.0001,643.01,1593.96,1416.74,21.61,552.68,2388.17,9068.06,47.69,520.76,2388.14,8.457,394,38.54,23.1209 +74,141,0.0009,-0.0005,643.3,1601.19,1422.88,21.61,552.66,2388.19,9059.35,47.92,521.0,2388.22,8.4642,393,38.63,23.0726 +74,142,0.0005,0.0003,643.28,1594.44,1419.58,21.61,552.52,2388.13,9056.9,47.81,521.04,2388.19,8.4443,395,38.65,23.2112 +74,143,-0.0005,-0.0005,642.95,1589.67,1420.47,21.61,552.43,2388.2,9058.79,47.7,520.06,2388.23,8.4755,395,38.65,23.2623 +74,144,-0.0023,0.0003,643.37,1591.53,1416.33,21.61,552.66,2388.12,9052.91,47.72,520.86,2388.19,8.4673,394,38.67,23.2596 +74,145,-0.0006,-0.0002,642.33,1598.46,1418.11,21.61,552.11,2388.16,9061.02,47.68,520.25,2388.16,8.4626,393,38.73,23.2571 +74,146,0.0018,0.0002,643.39,1592.18,1419.52,21.61,551.95,2388.2,9056.09,47.77,520.19,2388.17,8.4815,395,38.71,23.0928 +74,147,0.0002,0.0002,643.16,1597.28,1421.0,21.61,552.54,2388.17,9060.55,47.8,520.92,2388.14,8.474,394,38.57,23.0972 +74,148,0.0005,-0.0,643.33,1597.24,1415.9,21.61,552.45,2388.14,9065.2,47.96,520.54,2388.17,8.4605,394,38.89,23.0668 +74,149,0.0,-0.0003,643.15,1595.7,1412.37,21.61,551.53,2388.18,9066.89,47.75,520.22,2388.16,8.5138,394,38.77,23.0306 +74,150,0.0002,0.0002,643.47,1603.26,1420.21,21.61,551.73,2388.2,9051.15,47.97,520.57,2388.25,8.5296,396,38.61,23.2245 +74,151,-0.0009,0.0004,643.03,1599.69,1419.6,21.61,552.15,2388.15,9059.48,47.92,520.33,2388.24,8.4756,395,38.49,23.1584 +74,152,-0.001,-0.0004,643.25,1594.29,1420.12,21.61,552.2,2388.2,9057.29,47.81,520.11,2388.21,8.5061,395,38.67,23.2017 +74,153,0.0008,-0.0003,643.29,1601.55,1422.36,21.61,551.82,2388.21,9054.75,47.84,519.87,2388.26,8.5108,394,38.64,23.1301 +74,154,0.0005,-0.0005,643.55,1592.46,1418.04,21.61,551.78,2388.2,9058.12,47.94,520.45,2388.17,8.481,395,38.54,23.021 +74,155,-0.0013,0.0002,643.83,1598.91,1417.41,21.61,552.93,2388.27,9054.68,47.99,519.84,2388.28,8.4984,395,38.71,23.1676 +74,156,-0.0008,0.0002,643.42,1599.03,1421.75,21.61,552.19,2388.25,9055.16,48.11,519.91,2388.23,8.5248,397,38.51,23.1377 +74,157,0.0028,0.0004,643.27,1592.25,1418.78,21.61,552.1,2388.24,9057.81,48.0,519.78,2388.25,8.5289,395,38.48,23.0369 +74,158,0.0037,-0.0005,643.88,1597.92,1424.76,21.61,551.07,2388.24,9059.94,48.07,520.3,2388.19,8.5274,394,38.6,23.1293 +74,159,-0.0026,0.0004,643.62,1597.26,1430.31,21.61,551.67,2388.24,9050.31,48.01,520.13,2388.19,8.4614,395,38.47,23.1524 +74,160,-0.0015,-0.0003,643.47,1599.38,1431.59,21.61,551.32,2388.24,9054.92,48.04,519.6,2388.23,8.4995,395,38.51,23.1293 +74,161,0.0026,0.0003,643.96,1601.06,1429.6,21.61,551.7,2388.28,9059.07,48.05,519.68,2388.26,8.5092,395,38.4,23.0624 +74,162,-0.0014,-0.0002,643.7,1604.64,1430.56,21.61,552.33,2388.28,9057.02,48.03,519.8,2388.28,8.5218,395,38.5,23.073 +74,163,0.0004,-0.0002,644.16,1607.16,1426.01,21.61,551.86,2388.28,9057.1,48.17,519.79,2388.29,8.508,397,38.48,23.0785 +74,164,-0.0022,-0.0001,643.64,1600.62,1423.05,21.61,550.61,2388.3,9049.12,48.22,519.23,2388.29,8.525,396,38.45,23.0552 +74,165,-0.0017,0.0002,643.96,1599.81,1423.1,21.61,551.65,2388.24,9050.27,48.02,519.61,2388.3,8.5342,394,38.42,23.0288 +74,166,0.0011,0.0003,643.29,1604.39,1431.14,21.61,550.35,2388.3,9056.35,48.07,519.52,2388.25,8.5309,398,38.36,22.9906 +77,10,0.002,-0.0004,642.83,1584.97,1407.97,21.61,553.87,2388.06,9044.83,47.32,520.77,2388.1,8.4271,392,38.77,23.355 +77,11,0.0017,0.0004,643.13,1582.29,1407.13,21.61,553.11,2388.07,9040.34,47.36,521.24,2388.05,8.4378,392,38.77,23.2824 +77,12,0.0027,0.0,642.3,1591.82,1406.0,21.61,553.9,2388.09,9049.8,47.34,522.05,2388.09,8.429,391,38.89,23.1751 +77,13,0.0002,0.0004,642.12,1588.45,1402.71,21.61,554.04,2388.13,9044.83,47.48,521.35,2388.12,8.4269,393,38.93,23.1822 +77,14,-0.0027,-0.0003,642.69,1590.52,1406.71,21.61,553.95,2388.17,9047.87,47.58,521.86,2388.1,8.4128,391,38.96,23.3022 +77,15,-0.002,-0.0001,642.65,1587.02,1404.48,21.61,553.34,2388.09,9048.41,47.54,521.54,2388.1,8.4149,392,38.66,23.4028 +77,16,0.0039,-0.0002,642.6,1583.71,1400.29,21.61,553.12,2388.14,9042.89,47.5,522.24,2388.07,8.413,394,38.98,23.4181 +77,17,-0.0028,0.0003,642.83,1586.01,1406.36,21.61,553.7,2388.1,9049.88,47.46,521.05,2388.11,8.4723,391,38.78,23.3913 +77,18,0.0027,-0.0003,642.29,1585.14,1402.4,21.61,553.36,2388.13,9055.48,47.65,521.34,2388.13,8.4454,392,39.08,23.3572 +77,19,0.0021,-0.0,642.3,1583.71,1404.29,21.61,553.73,2388.05,9049.56,47.6,522.04,2388.08,8.4475,392,38.75,23.2646 +77,20,0.0018,-0.0003,642.78,1586.51,1406.3,21.61,553.37,2388.15,9038.78,47.48,521.77,2388.09,8.4324,393,38.81,23.3789 +77,21,-0.0016,0.0004,642.48,1586.09,1409.51,21.61,553.29,2388.07,9038.91,47.44,522.01,2388.07,8.441,392,38.88,23.3958 +77,22,0.0004,0.0004,642.65,1589.23,1401.52,21.61,553.65,2388.07,9053.88,47.53,521.79,2388.05,8.4108,393,38.74,23.2414 +77,23,-0.0003,0.0003,642.91,1594.68,1405.51,21.6,553.13,2388.11,9046.99,47.66,521.29,2388.1,8.4833,394,38.73,23.3472 +77,24,-0.0002,0.0001,642.78,1589.04,1401.67,21.61,553.64,2388.14,9043.07,47.48,521.92,2388.13,8.423,394,38.89,23.2798 +77,25,-0.0036,0.0001,642.53,1588.28,1409.97,21.61,553.94,2388.1,9046.35,47.46,521.83,2388.16,8.4108,393,38.81,23.309 +77,26,-0.0041,0.0002,642.75,1590.76,1408.38,21.61,553.24,2388.09,9045.25,47.25,521.39,2388.13,8.4172,392,38.62,23.2673 +77,27,0.0024,0.0001,642.43,1581.6,1403.69,21.61,553.03,2388.09,9051.98,47.58,521.32,2388.11,8.4347,393,38.93,23.3573 +77,28,-0.0002,-0.0002,642.81,1591.61,1411.83,21.61,553.3,2388.08,9048.07,47.58,521.14,2388.12,8.4303,393,38.73,23.3459 +77,29,-0.0031,0.0003,642.53,1591.34,1406.42,21.61,553.21,2388.13,9046.96,47.84,521.6,2388.11,8.4392,393,38.84,23.3505 +77,30,0.0045,0.0003,642.64,1590.8,1408.42,21.61,553.13,2388.11,9041.08,47.47,521.88,2388.14,8.4126,393,38.83,23.329 +77,31,0.0022,-0.0,642.86,1584.4,1410.95,21.61,554.48,2388.13,9048.44,47.48,521.42,2388.12,8.4283,392,38.8,23.3948 +77,32,0.0002,-0.0004,642.58,1590.54,1409.97,21.61,553.79,2388.12,9047.25,47.47,521.48,2388.07,8.4217,393,38.82,23.3847 +77,33,-0.0035,-0.0001,643.09,1592.54,1413.26,21.61,553.28,2388.1,9053.43,47.48,521.15,2388.15,8.441,393,38.51,23.2458 +77,34,0.0011,0.0002,642.57,1586.78,1412.17,21.61,553.07,2388.11,9049.14,47.57,522.17,2388.11,8.4323,393,38.62,23.2752 +77,35,0.0002,-0.0002,643.15,1583.88,1411.6,21.61,553.37,2388.1,9045.88,47.45,521.05,2388.16,8.3685,395,39.04,23.1706 +77,36,-0.0035,-0.0001,642.86,1594.03,1407.96,21.61,553.37,2388.11,9053.23,47.52,521.73,2388.16,8.4388,393,38.79,23.3143 +77,37,0.0008,-0.0004,642.86,1587.77,1407.27,21.61,553.79,2388.1,9051.84,47.39,521.22,2388.09,8.4148,393,38.83,23.3281 +77,38,0.0008,0.0003,642.72,1597.55,1405.38,21.61,553.7,2388.17,9048.64,47.51,521.46,2388.08,8.4451,394,38.79,23.295 +77,39,-0.0007,0.0004,642.61,1593.84,1404.44,21.61,553.46,2388.16,9043.12,47.61,520.93,2388.14,8.435,392,38.96,23.3754 +77,40,-0.0027,-0.0001,642.44,1591.76,1414.29,21.61,554.06,2388.13,9048.97,47.3,521.17,2388.11,8.4554,393,38.79,23.3284 +77,41,-0.0018,0.0003,642.88,1587.79,1411.2,21.61,553.64,2388.12,9042.76,47.61,521.45,2388.12,8.4518,392,38.79,23.2787 +77,42,0.002,0.0002,642.37,1591.22,1413.4,21.61,553.38,2388.1,9046.55,47.3,521.49,2388.09,8.4026,393,38.85,23.3589 +77,43,-0.0019,-0.0002,642.08,1589.69,1407.35,21.61,553.46,2388.1,9051.92,47.4,521.4,2388.09,8.424,393,38.95,23.2972 +77,44,-0.0031,-0.0003,642.44,1587.27,1410.17,21.61,553.34,2388.1,9047.4,47.49,521.79,2388.13,8.4046,393,38.91,23.2408 +77,45,-0.0033,0.0004,642.74,1587.64,1402.95,21.61,553.49,2388.11,9044.43,47.66,521.0,2388.1,8.4377,393,38.84,23.261 +77,46,-0.0012,-0.0005,642.68,1582.92,1409.79,21.61,553.86,2388.12,9052.99,47.49,521.38,2388.1,8.4281,392,38.7,23.3302 +77,47,-0.0024,0.0003,642.47,1583.7,1409.03,21.61,553.14,2388.12,9038.29,47.47,521.17,2388.13,8.4475,392,38.86,23.3859 +77,48,0.0022,-0.0005,642.42,1597.41,1410.16,21.61,553.18,2388.06,9054.29,47.57,521.4,2388.1,8.43,394,38.84,23.1625 +77,49,-0.0036,-0.0002,642.48,1580.52,1403.2,21.61,553.46,2388.1,9056.41,47.49,521.0,2388.06,8.4468,393,38.76,23.2819 +77,50,0.0027,-0.0001,642.82,1589.72,1409.9,21.61,553.86,2388.13,9045.49,47.47,521.17,2388.1,8.471,391,39.05,23.4174 +77,51,-0.0018,-0.0003,642.27,1588.62,1409.17,21.61,553.42,2388.16,9046.56,47.67,521.7,2388.08,8.4048,391,38.87,23.3369 +77,52,-0.0007,0.0,642.49,1582.17,1408.6,21.61,552.97,2388.16,9048.86,47.46,521.63,2388.15,8.4623,394,38.81,23.3384 +77,53,0.0026,0.0003,642.44,1596.23,1400.69,21.61,553.8,2388.15,9052.42,47.61,521.75,2388.15,8.4371,394,38.93,23.2566 +77,54,-0.0024,-0.0005,642.93,1591.77,1415.77,21.61,552.87,2388.1,9047.56,47.29,521.22,2388.11,8.4356,392,39.0,23.3543 +77,55,0.0015,0.0003,642.2,1594.71,1405.16,21.61,553.43,2388.11,9043.52,47.68,521.55,2388.14,8.475,392,38.92,23.2863 +77,56,-0.0009,0.0001,642.37,1588.1,1405.53,21.61,553.31,2388.09,9038.23,47.47,521.71,2388.11,8.4175,393,38.94,23.2648 +77,57,-0.0013,-0.0001,642.13,1583.93,1408.03,21.61,553.4,2388.1,9053.14,47.5,521.83,2388.11,8.4475,392,38.95,23.3684 +77,58,-0.0003,0.0002,642.84,1598.44,1410.33,21.61,553.64,2388.13,9043.84,47.53,521.34,2388.15,8.3891,394,38.9,23.2831 +77,59,0.0,0.0001,642.95,1590.79,1414.84,21.61,553.34,2388.11,9048.92,47.55,521.14,2388.11,8.4291,392,38.83,23.4754 +77,60,-0.0012,0.0003,642.97,1589.3,1411.12,21.61,553.26,2388.12,9051.33,47.57,522.08,2388.11,8.4331,395,38.8,23.1977 +77,61,-0.002,0.0,642.75,1585.58,1407.62,21.61,554.26,2388.15,9059.93,47.58,521.56,2388.11,8.4144,394,38.61,23.0833 +77,62,-0.0027,-0.0004,642.47,1588.19,1404.54,21.61,553.36,2388.05,9046.8,47.41,521.53,2388.08,8.4303,394,38.71,23.2392 +77,63,-0.005,-0.0005,642.97,1585.94,1411.6,21.61,552.87,2388.09,9047.21,47.45,521.11,2388.1,8.4202,393,38.98,23.268 +77,64,0.0005,-0.0005,642.98,1586.2,1408.5,21.61,553.36,2388.13,9048.87,47.59,521.48,2388.14,8.4573,392,38.62,23.2905 +77,65,0.0015,0.0005,642.57,1588.21,1407.15,21.61,553.51,2388.08,9050.16,47.42,521.53,2388.18,8.4491,393,38.94,23.3022 +77,66,-0.0019,-0.0003,642.62,1587.43,1403.97,21.61,552.97,2388.14,9047.37,47.4,521.79,2388.14,8.4276,393,38.74,23.2277 +77,67,0.0004,0.0001,642.73,1583.73,1400.57,21.61,552.59,2388.13,9048.95,47.48,521.25,2388.14,8.4337,394,38.71,23.2643 +77,68,-0.0049,0.0002,643.13,1592.02,1409.43,21.61,553.16,2388.12,9049.47,47.54,520.89,2388.18,8.4225,394,38.86,23.3131 +77,69,-0.0017,-0.0005,642.85,1592.74,1415.08,21.61,553.67,2388.12,9059.37,47.66,520.94,2388.15,8.4488,393,38.71,23.3626 +77,70,-0.0001,0.0001,642.72,1589.98,1404.1,21.61,552.87,2388.13,9043.37,47.51,520.97,2388.09,8.4139,393,38.61,23.3068 +77,71,-0.0021,-0.0005,642.39,1587.44,1410.37,21.61,553.86,2388.13,9037.91,47.47,521.82,2388.1,8.4402,394,38.88,23.3426 +77,72,0.001,0.0004,642.67,1593.31,1407.45,21.61,553.73,2388.13,9057.47,47.51,520.63,2388.14,8.4475,395,38.85,23.1779 +77,73,-0.0019,0.0001,642.68,1591.07,1406.97,21.61,553.35,2388.07,9050.25,47.39,522.19,2388.11,8.4263,393,38.59,23.2978 +77,74,0.0023,-0.0005,642.39,1588.72,1406.81,21.61,552.85,2388.15,9047.66,47.56,521.19,2388.11,8.4572,391,38.66,23.3184 +77,75,0.0026,-0.0005,642.6,1585.52,1408.78,21.61,552.81,2388.16,9049.9,47.66,521.09,2388.12,8.4308,394,38.88,23.2415 +77,76,-0.0009,-0.0003,642.63,1590.84,1408.48,21.61,553.0,2388.12,9043.37,47.56,521.92,2388.12,8.4614,394,38.64,23.2522 +77,77,-0.0018,0.0003,642.29,1595.03,1410.47,21.61,553.14,2388.14,9054.59,47.5,521.4,2388.14,8.4462,394,39.01,23.2614 +77,78,0.0008,0.0003,643.19,1597.73,1410.18,21.61,553.35,2388.1,9051.39,47.62,521.33,2388.12,8.4136,395,38.82,23.2295 +77,79,0.0061,0.0002,642.43,1594.06,1413.98,21.61,553.05,2388.15,9050.49,47.57,521.16,2388.15,8.4623,394,38.8,23.33 +77,80,-0.0003,0.0003,643.81,1583.38,1408.73,21.61,552.61,2388.14,9048.86,47.66,521.35,2388.17,8.4462,392,38.91,23.1968 +77,81,0.0015,-0.0004,642.81,1585.68,1410.62,21.61,553.67,2388.08,9052.18,47.6,521.36,2388.18,8.4422,392,38.91,23.2506 +77,82,0.0001,0.0,642.3,1590.81,1408.56,21.61,552.84,2388.15,9047.23,47.55,521.53,2388.14,8.4049,392,38.72,23.2538 +77,83,-0.0013,-0.0003,643.13,1577.92,1413.41,21.61,553.68,2388.14,9046.2,47.55,521.64,2388.14,8.451,393,38.92,23.2085 +77,84,-0.0035,0.0003,642.88,1589.73,1411.57,21.61,552.82,2388.17,9049.31,47.42,521.48,2388.11,8.4467,393,38.71,23.2559 +77,85,-0.0003,0.0004,642.85,1582.0,1414.03,21.61,552.85,2388.13,9052.55,47.48,521.3,2388.09,8.434,393,38.83,23.3199 +77,86,-0.0026,0.0002,643.33,1592.79,1414.83,21.61,552.99,2388.15,9048.4,47.26,521.28,2388.16,8.4295,394,38.89,23.2344 +77,87,-0.0039,-0.0005,642.52,1591.29,1410.93,21.61,553.65,2388.16,9050.5,47.49,521.34,2388.13,8.4526,395,38.82,23.2805 +77,88,0.0019,-0.0004,643.05,1586.76,1411.6,21.61,552.88,2388.14,9044.05,47.56,521.89,2388.15,8.455,393,38.87,23.1114 +77,89,-0.0054,0.0003,642.23,1595.81,1416.13,21.61,553.01,2388.17,9050.62,47.55,521.37,2388.11,8.4701,395,38.72,23.2725 +77,90,0.0023,0.0001,642.68,1596.51,1411.4,21.61,553.13,2388.11,9058.56,47.52,521.87,2388.06,8.4489,393,38.85,23.2674 +77,91,-0.0037,-0.0001,642.79,1591.8,1410.94,21.61,552.69,2388.19,9059.03,47.43,521.39,2388.19,8.4421,393,38.69,23.2535 +77,92,0.0022,0.0004,642.93,1590.2,1410.71,21.61,553.31,2388.15,9046.56,47.59,521.24,2388.17,8.4194,392,38.78,23.3732 +77,93,0.0014,0.0003,642.94,1591.57,1416.97,21.61,552.65,2388.13,9052.23,47.66,521.84,2388.11,8.4608,394,38.64,23.2091 +77,94,0.0021,-0.0001,642.91,1596.19,1412.86,21.61,553.63,2388.16,9052.06,47.7,520.57,2388.15,8.466,395,38.87,23.2291 +77,95,-0.0023,0.0001,643.66,1596.08,1413.47,21.61,553.26,2388.1,9061.09,47.76,520.88,2388.17,8.4564,394,38.63,23.2428 +77,96,0.0011,0.0001,642.85,1588.31,1410.49,21.61,553.14,2388.14,9054.12,47.64,521.43,2388.13,8.4781,395,38.46,23.3453 +77,97,0.0015,-0.0004,643.2,1591.43,1415.41,21.61,553.11,2388.16,9055.91,47.65,520.78,2388.12,8.4438,393,38.86,23.3717 +77,98,-0.0005,0.0,643.21,1591.89,1410.02,21.61,552.55,2388.12,9054.4,47.86,520.78,2388.13,8.4574,394,38.74,23.3392 +77,99,-0.0037,-0.0003,642.69,1593.86,1419.78,21.61,552.27,2388.1,9049.52,47.92,521.42,2388.16,8.4468,392,38.75,23.1453 +77,100,-0.0028,0.0001,642.58,1591.63,1408.58,21.61,553.27,2388.15,9059.1,48.0,521.16,2388.15,8.4518,392,38.59,23.2791 +77,101,-0.0003,0.0,643.13,1588.67,1418.41,21.61,553.54,2388.14,9051.04,47.55,520.99,2388.13,8.4546,394,38.67,23.1787 +77,102,-0.0002,0.0,642.87,1589.1,1407.1,21.61,552.9,2388.13,9058.88,47.56,520.89,2388.12,8.4667,394,38.81,23.3418 +77,103,-0.0,-0.0003,642.8,1593.24,1418.63,21.61,552.53,2388.16,9058.55,47.63,521.58,2388.13,8.4544,393,38.75,23.3725 +77,104,-0.0018,-0.0003,642.61,1593.13,1412.38,21.61,553.06,2388.18,9060.97,47.43,521.38,2388.12,8.4264,392,38.59,23.2386 +77,105,-0.0012,0.0003,642.89,1598.96,1410.11,21.61,552.9,2388.15,9062.35,47.57,520.79,2388.15,8.4865,394,38.48,23.2111 +77,106,0.0009,-0.0004,642.87,1594.48,1413.62,21.61,552.58,2388.16,9054.53,47.52,520.94,2388.14,8.4716,393,38.67,23.3073 +77,107,0.0043,0.0002,642.78,1596.86,1416.49,21.61,552.73,2388.13,9051.31,47.65,521.74,2388.14,8.4984,395,38.69,23.2329 +77,108,0.0021,0.0001,642.97,1584.63,1413.1,21.61,553.14,2388.15,9051.31,47.72,521.09,2388.1,8.4792,392,38.78,23.2998 +77,109,0.0016,0.0002,642.78,1590.58,1414.81,21.61,551.93,2388.21,9054.3,47.68,521.34,2388.14,8.4544,394,38.61,23.1994 +77,110,0.0034,-0.0004,643.02,1592.21,1410.16,21.61,552.59,2388.16,9053.16,47.58,520.94,2388.08,8.4558,394,38.76,23.2266 +77,111,0.002,-0.0001,642.9,1598.66,1413.97,21.61,552.21,2388.14,9057.46,47.63,520.96,2388.15,8.4689,395,38.72,23.2498 +77,112,-0.0025,0.0003,643.05,1592.8,1409.7,21.61,552.73,2388.18,9053.4,47.69,521.27,2388.1,8.4473,394,38.92,23.2031 +77,113,-0.0026,-0.0003,643.13,1595.98,1420.67,21.61,552.87,2388.24,9057.16,47.93,520.65,2388.19,8.4711,395,38.74,23.2162 +77,114,-0.0015,-0.0001,643.29,1587.44,1411.73,21.61,553.81,2388.15,9056.06,47.73,520.74,2388.13,8.4742,393,38.55,23.3422 +77,115,0.0059,0.0004,642.53,1593.62,1418.29,21.61,553.38,2388.12,9060.76,47.64,520.43,2388.14,8.4364,394,38.64,23.2204 +77,116,0.0022,-0.0002,642.97,1587.52,1411.88,21.61,552.13,2388.19,9060.42,47.67,521.05,2388.15,8.487,394,38.54,23.2477 +77,117,-0.0004,-0.0004,643.32,1590.98,1420.44,21.61,553.16,2388.18,9060.3,47.64,519.82,2388.17,8.4641,393,38.59,23.1911 +77,118,-0.0027,0.0004,643.37,1601.89,1410.66,21.61,552.01,2388.15,9059.95,47.88,520.94,2388.12,8.4651,395,38.82,23.1519 +77,119,0.0014,0.0003,643.05,1592.65,1420.46,21.61,553.13,2388.14,9061.23,47.71,521.21,2388.16,8.4747,394,38.81,23.2016 +77,120,0.0015,0.0004,643.01,1595.5,1409.15,21.61,552.21,2388.22,9052.98,47.75,521.34,2388.13,8.4541,394,38.66,23.1672 +77,121,0.0013,0.0002,643.01,1588.1,1419.72,21.61,552.49,2388.17,9057.49,47.93,520.6,2388.13,8.4468,393,38.73,23.1984 +77,122,-0.0038,-0.0003,642.9,1594.92,1412.66,21.61,552.75,2388.19,9062.93,47.67,520.28,2388.21,8.4789,393,38.7,23.172 +77,123,-0.0003,-0.0,643.04,1589.03,1416.1,21.61,553.6,2388.18,9063.49,47.74,520.75,2388.16,8.4533,393,38.56,23.2158 +77,124,0.0024,-0.0003,643.03,1590.52,1416.74,21.61,552.41,2388.19,9059.84,47.89,520.69,2388.19,8.4787,393,38.77,23.1952 +77,125,0.0008,0.0,643.06,1599.57,1418.51,21.61,552.11,2388.23,9061.21,47.81,520.37,2388.2,8.4794,393,38.54,23.2455 +77,126,-0.0021,-0.0003,642.93,1593.37,1417.47,21.61,552.5,2388.18,9059.33,47.87,520.86,2388.18,8.4454,394,38.8,23.166 +77,127,-0.0034,-0.0003,643.48,1592.36,1424.27,21.61,552.78,2388.18,9052.08,47.79,520.35,2388.22,8.4995,395,38.9,23.2057 +77,128,-0.0045,-0.0002,643.2,1599.17,1421.89,21.61,552.47,2388.14,9063.91,47.77,520.38,2388.19,8.4873,394,38.53,23.1953 +77,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989 +77,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767 +77,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388 +77,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739 +77,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147 +77,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558 +77,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469 +77,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985 +77,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274 +77,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556 +77,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929 +77,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823 +77,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397 +77,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973 +77,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099 +77,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314 +77,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945 +77,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474 +77,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524 +77,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164 +77,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364 +77,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717 +77,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762 +77,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107 +77,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067 +77,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154 +78,10,0.0008,-0.0004,641.91,1584.85,1398.76,21.61,554.45,2388.01,9054.04,47.17,522.45,2388.02,8.3976,392,39.08,23.4687 +78,11,0.0009,-0.0002,642.15,1580.93,1402.4,21.6,554.88,2387.98,9059.04,46.99,523.04,2388.03,8.3544,392,38.9,23.4828 +78,12,0.0027,-0.0003,641.5,1576.39,1393.63,21.61,554.96,2387.97,9052.1,47.22,522.19,2388.0,8.3806,392,39.16,23.4755 +78,13,-0.0004,-0.0001,642.06,1587.39,1402.26,21.61,554.37,2387.97,9057.07,47.14,522.18,2387.97,8.3878,391,39.02,23.4886 +78,14,0.001,-0.0003,642.42,1581.03,1396.1,21.61,555.19,2387.92,9059.01,47.03,522.41,2388.0,8.404,391,39.14,23.42 +78,15,0.0058,0.0003,641.91,1580.52,1402.63,21.61,553.72,2387.98,9065.77,47.2,522.26,2388.01,8.4012,392,39.03,23.3573 +78,16,0.0058,-0.0001,641.58,1585.95,1394.54,21.61,554.53,2387.99,9057.26,47.07,522.36,2388.02,8.4278,391,39.13,23.4326 +78,17,-0.0001,0.0002,641.97,1585.03,1395.12,21.61,554.71,2388.0,9056.98,47.02,522.62,2387.98,8.4089,391,39.26,23.4052 +78,18,0.0033,0.0001,642.19,1582.07,1396.83,21.61,554.29,2387.99,9064.13,47.06,523.01,2388.01,8.3249,391,38.95,23.4043 +78,19,-0.0028,-0.0,642.18,1590.55,1398.36,21.61,554.52,2388.09,9049.69,47.25,522.54,2387.97,8.3837,391,39.05,23.4471 +78,20,0.0002,0.0003,642.29,1572.67,1394.47,21.6,554.41,2388.0,9058.46,47.09,522.09,2388.01,8.3674,392,39.24,23.4428 +78,21,-0.0009,0.0001,642.0,1589.19,1393.77,21.6,554.58,2388.02,9054.31,47.15,522.12,2388.04,8.3887,392,39.23,23.4249 +78,22,0.0021,0.0004,642.15,1581.67,1394.89,21.61,554.58,2387.98,9059.25,47.27,522.68,2388.01,8.4123,391,39.12,23.4315 +78,23,-0.0012,-0.0002,641.47,1590.37,1394.03,21.61,554.06,2388.01,9061.44,47.06,522.71,2388.02,8.409,392,39.13,23.5275 +78,24,0.0014,-0.0,641.77,1584.09,1393.2,21.61,555.03,2388.01,9059.99,47.18,521.92,2388.0,8.4058,390,39.05,23.381 +78,25,-0.0013,-0.0005,642.11,1582.28,1397.0,21.61,554.28,2387.98,9053.83,47.2,522.58,2387.94,8.3709,391,39.07,23.4604 +78,26,0.0012,0.0001,642.14,1583.98,1395.33,21.6,554.88,2387.98,9054.83,47.19,522.2,2387.96,8.3759,392,39.09,23.3506 +78,27,-0.0,0.0001,641.79,1580.41,1391.44,21.61,554.53,2387.95,9058.55,47.15,522.39,2388.03,8.3847,392,39.03,23.4377 +78,28,0.0038,0.0004,642.0,1583.3,1396.32,21.61,554.31,2387.98,9059.58,47.03,522.64,2387.98,8.4081,391,38.99,23.4235 +78,29,0.0006,-0.0005,641.76,1587.66,1393.15,21.61,554.55,2388.02,9049.25,47.1,522.6,2387.97,8.3835,391,38.98,23.6064 +78,30,-0.0008,-0.0002,642.45,1590.95,1391.41,21.61,554.52,2388.04,9057.78,47.18,522.46,2387.98,8.3799,390,39.25,23.4607 +78,31,0.0003,-0.0004,642.18,1589.18,1388.26,21.61,554.64,2387.97,9054.44,47.25,522.35,2387.99,8.4077,392,39.18,23.4287 +78,32,-0.0011,0.0001,642.22,1580.42,1382.25,21.61,554.68,2387.94,9056.73,47.06,522.27,2387.96,8.3978,390,39.05,23.4894 +78,33,0.0012,0.0002,642.02,1578.83,1397.92,21.61,554.92,2388.04,9051.73,47.08,522.38,2387.99,8.3921,393,39.11,23.4207 +78,34,-0.0024,-0.0004,641.9,1582.77,1395.04,21.61,554.51,2388.02,9058.02,46.96,522.38,2387.97,8.406,391,39.0,23.462 +78,35,0.0069,0.0005,641.66,1581.09,1399.52,21.6,554.02,2388.02,9055.97,47.1,522.56,2388.04,8.3917,392,38.99,23.3923 +78,36,-0.0027,0.0001,642.0,1582.28,1402.15,21.6,554.35,2387.99,9052.84,47.08,521.99,2388.04,8.3358,392,39.1,23.4342 +78,37,0.0008,-0.0004,642.69,1583.05,1400.5,21.61,555.29,2388.01,9066.6,47.04,522.69,2388.03,8.4319,393,39.31,23.4179 +78,38,0.0026,-0.0003,641.69,1590.53,1397.51,21.61,555.52,2388.03,9062.74,47.21,522.61,2388.05,8.3712,389,39.11,23.379 +78,39,0.0023,-0.0001,642.21,1586.08,1392.81,21.61,554.99,2388.01,9057.71,47.1,522.36,2387.98,8.3929,392,39.13,23.3995 +78,40,-0.003,0.0003,641.73,1577.8,1392.93,21.61,554.95,2387.95,9057.42,47.22,522.31,2387.97,8.4287,391,39.05,23.4753 +78,41,-0.0025,-0.0,642.02,1589.95,1404.02,21.61,554.21,2387.97,9054.05,47.29,522.49,2387.97,8.3956,392,39.18,23.4586 +78,42,-0.0013,0.0001,642.31,1586.48,1396.27,21.61,554.53,2388.05,9056.73,47.28,522.24,2388.07,8.3791,391,38.98,23.4806 +78,43,0.0018,0.0005,642.65,1579.28,1397.63,21.61,555.38,2388.04,9061.62,47.16,522.77,2388.04,8.3999,392,39.19,23.4343 +78,44,0.0035,0.0003,642.09,1588.84,1394.42,21.61,554.62,2388.01,9060.76,47.29,522.83,2387.99,8.3855,392,39.07,23.5825 +78,45,-0.0017,0.0004,642.51,1584.36,1399.3,21.6,553.83,2388.01,9053.69,47.15,522.77,2387.9,8.462,391,38.91,23.449 +78,46,0.0033,0.0003,642.35,1581.22,1396.86,21.61,554.75,2388.03,9058.3,47.28,523.03,2388.01,8.4012,393,39.0,23.4537 +78,47,-0.0005,-0.0004,641.82,1583.15,1391.02,21.61,554.05,2388.0,9059.65,47.03,522.47,2387.98,8.3928,391,39.1,23.3871 +78,48,-0.0012,-0.0001,641.9,1584.07,1395.83,21.61,553.37,2387.94,9054.83,47.27,522.46,2387.97,8.4064,391,38.95,23.486 +78,49,0.0031,-0.0003,642.2,1579.41,1393.43,21.61,554.86,2388.0,9062.79,47.13,521.8,2388.03,8.4061,391,38.85,23.3193 +78,50,-0.0006,-0.0001,641.64,1584.88,1392.53,21.61,554.35,2387.99,9060.42,46.99,522.29,2388.03,8.3843,392,39.0,23.4077 +78,51,-0.0033,0.0003,642.39,1585.03,1401.62,21.61,554.24,2388.08,9059.89,47.33,522.98,2388.04,8.4074,391,39.14,23.3952 +78,52,0.0015,-0.0002,642.29,1579.12,1390.91,21.6,554.77,2388.06,9058.35,47.24,522.57,2387.99,8.4289,391,39.14,23.433 +78,53,-0.002,-0.0001,641.97,1572.46,1396.16,21.6,554.45,2388.05,9050.93,47.16,522.44,2387.97,8.3773,392,39.07,23.4288 +78,54,-0.0009,0.0004,641.85,1579.43,1394.73,21.61,554.87,2387.98,9059.13,47.22,521.95,2388.0,8.3894,391,39.03,23.4616 +78,55,0.001,-0.0002,641.55,1587.66,1388.25,21.61,554.56,2387.98,9052.63,47.26,522.31,2387.96,8.3776,391,38.93,23.4318 +78,56,0.0028,-0.0002,641.97,1587.21,1397.7,21.6,554.68,2388.0,9057.06,47.09,522.47,2387.97,8.4031,391,38.84,23.4089 +78,57,-0.0008,0.0002,642.3,1582.75,1393.11,21.61,554.17,2387.96,9053.35,47.06,522.54,2387.98,8.3668,393,39.1,23.3244 +78,58,-0.0015,0.0,641.86,1586.23,1409.24,21.61,553.98,2388.0,9056.8,47.19,522.11,2388.04,8.3525,392,39.2,23.5083 +78,59,-0.002,0.0001,642.34,1591.43,1394.46,21.61,554.64,2388.01,9054.02,47.15,522.41,2388.01,8.4152,393,39.18,23.421 +78,60,-0.0016,-0.0001,642.27,1580.72,1394.66,21.61,554.13,2387.95,9054.99,47.19,522.51,2387.98,8.3781,392,39.0,23.489 +78,61,0.0022,-0.0004,641.79,1588.09,1396.71,21.61,554.69,2387.98,9066.71,47.23,522.43,2388.01,8.4101,391,39.06,23.4251 +78,62,0.0019,-0.0005,642.01,1579.61,1403.44,21.61,554.06,2388.0,9060.08,47.09,522.69,2387.97,8.3981,390,39.01,23.2963 +78,63,-0.0012,-0.0005,641.76,1591.07,1399.13,21.61,554.65,2387.99,9052.95,47.16,521.85,2388.01,8.3804,391,39.0,23.476 +78,64,-0.0009,-0.0001,642.09,1579.69,1397.25,21.61,555.01,2387.99,9065.4,47.16,522.53,2388.02,8.3824,391,39.02,23.5269 +78,65,0.0007,0.0004,642.49,1581.95,1394.86,21.61,554.71,2388.03,9057.72,47.09,522.36,2387.98,8.3967,392,39.18,23.3452 +78,66,-0.0048,0.0001,641.69,1586.59,1399.64,21.61,554.08,2387.99,9057.62,47.39,522.5,2388.01,8.4035,391,39.02,23.4911 +78,67,0.0039,-0.0005,642.1,1583.62,1393.91,21.61,554.74,2387.98,9058.16,47.32,522.05,2387.96,8.3868,391,39.0,23.5012 +78,68,0.0021,-0.0,642.18,1586.33,1399.83,21.61,554.25,2388.01,9054.23,47.14,521.93,2388.02,8.3729,390,39.16,23.3275 +78,69,0.0021,-0.0002,641.81,1586.41,1389.95,21.61,554.23,2387.98,9051.31,47.24,522.32,2388.03,8.3898,392,39.19,23.4704 +78,70,0.0005,0.0001,642.05,1585.08,1391.43,21.61,555.06,2387.98,9059.12,46.91,522.57,2388.0,8.4081,391,38.93,23.4912 +78,71,-0.0021,-0.0,642.1,1583.49,1397.47,21.61,554.73,2387.99,9060.24,47.2,522.17,2387.99,8.4295,391,38.92,23.4197 +78,72,-0.0003,-0.0002,642.22,1575.4,1400.88,21.6,554.83,2388.01,9049.34,47.11,522.15,2387.97,8.4149,392,39.08,23.4371 +78,73,0.0033,-0.0005,642.41,1588.83,1392.86,21.61,554.4,2387.96,9065.29,47.15,522.41,2388.07,8.3879,390,39.05,23.4719 +78,74,-0.0001,0.0003,642.8,1585.88,1400.4,21.61,554.68,2388.01,9058.9,47.17,522.09,2388.02,8.4133,393,39.16,23.4287 +78,75,0.0035,0.0004,642.06,1583.69,1399.97,21.61,554.16,2388.02,9058.56,47.05,522.18,2387.98,8.3839,389,39.07,23.4044 +78,76,0.0004,0.0002,641.94,1585.62,1395.47,21.61,553.89,2388.02,9053.15,47.05,522.54,2387.99,8.3942,390,39.27,23.3769 +78,77,-0.0014,0.0004,642.16,1583.03,1397.49,21.61,554.58,2388.02,9048.55,47.1,521.97,2388.04,8.3865,392,38.92,23.3148 +78,78,0.0004,0.0003,642.81,1580.73,1400.32,21.6,554.48,2388.01,9063.79,47.28,522.26,2388.02,8.3838,391,39.0,23.4649 +78,79,0.002,0.0003,642.43,1591.9,1397.93,21.61,554.91,2387.99,9056.98,47.0,522.55,2388.01,8.4298,391,39.18,23.2759 +78,80,-0.006,0.0003,641.86,1587.43,1396.77,21.61,554.66,2387.98,9055.94,47.5,521.68,2387.94,8.4018,391,39.03,23.3328 +78,81,-0.0021,-0.0004,641.52,1581.96,1405.43,21.61,554.32,2388.04,9053.82,47.14,523.04,2388.03,8.406,392,38.84,23.3852 +78,82,0.0018,0.0001,642.23,1580.34,1392.83,21.61,554.45,2388.03,9055.41,47.04,522.45,2388.02,8.4199,392,38.92,23.4962 +78,83,-0.0005,-0.0005,642.12,1590.83,1391.58,21.61,554.0,2388.03,9058.02,47.23,522.2,2388.02,8.425,391,38.95,23.4818 +78,84,0.0001,0.0002,642.09,1581.32,1402.33,21.61,554.33,2388.0,9057.02,47.15,522.59,2388.05,8.4209,391,38.95,23.3136 +78,85,0.0014,0.0,641.98,1585.81,1399.85,21.61,554.4,2388.02,9063.35,47.41,522.28,2387.99,8.408,391,39.15,23.4231 +78,86,0.0002,-0.0002,642.72,1585.99,1402.95,21.61,554.4,2387.95,9055.32,47.13,522.75,2388.04,8.3908,391,39.23,23.4651 +78,87,-0.0038,0.0002,642.37,1584.91,1398.11,21.61,554.41,2388.02,9058.8,47.3,521.95,2387.99,8.4093,392,39.0,23.46 +78,88,0.0022,0.0,642.6,1589.02,1395.69,21.61,554.6,2387.99,9062.64,47.12,522.05,2388.02,8.4175,391,38.98,23.3106 +78,89,0.0014,0.0004,641.93,1588.07,1401.71,21.61,554.19,2388.0,9059.09,47.3,522.58,2388.05,8.3578,392,39.09,23.3096 +78,90,-0.0021,0.0003,642.49,1586.05,1407.61,21.61,554.87,2388.03,9053.01,47.43,521.62,2387.97,8.4242,392,39.08,23.427 +78,91,0.0006,0.0001,641.76,1587.4,1396.73,21.61,553.81,2388.08,9054.85,47.38,522.45,2387.97,8.3434,393,39.08,23.4101 +78,92,0.0005,0.0004,642.37,1585.87,1399.05,21.6,554.18,2388.07,9058.28,47.14,522.58,2388.01,8.4164,392,38.91,23.4303 +78,93,-0.0016,0.0001,641.81,1575.74,1400.36,21.6,553.62,2388.04,9060.9,47.21,522.02,2388.02,8.4083,393,38.96,23.3643 +78,94,0.0016,-0.0002,642.29,1586.88,1399.23,21.61,554.24,2387.98,9057.75,47.27,522.35,2387.96,8.4748,392,39.11,23.5011 +78,95,0.0026,0.0004,642.09,1580.71,1395.9,21.61,554.62,2387.98,9061.69,47.2,522.26,2388.02,8.4218,392,39.05,23.4219 +78,96,0.0003,0.0001,641.95,1585.83,1404.09,21.61,554.31,2388.02,9060.03,47.4,522.11,2388.05,8.4199,394,38.98,23.4942 +78,97,0.0018,-0.0003,642.5,1581.51,1398.16,21.61,554.1,2388.04,9060.38,47.3,522.15,2388.03,8.4174,391,38.94,23.4009 +78,98,-0.0027,0.0001,642.19,1576.65,1399.66,21.61,553.95,2388.01,9061.95,47.23,522.25,2388.0,8.421,393,38.84,23.4116 +78,99,0.0004,-0.0001,641.79,1583.97,1399.98,21.61,555.34,2388.02,9063.92,47.11,522.05,2388.02,8.4057,392,38.94,23.4756 +78,100,0.0023,-0.0002,641.5,1586.11,1401.7,21.61,554.16,2388.03,9057.73,47.19,522.13,2388.02,8.4152,393,38.83,23.3757 +78,101,0.0027,-0.0,642.69,1583.12,1397.89,21.61,554.27,2387.97,9050.9,47.2,522.16,2388.02,8.4184,391,38.93,23.4458 +78,102,0.0002,0.0002,642.34,1585.71,1396.87,21.61,554.26,2388.04,9060.89,47.28,522.22,2388.01,8.4188,392,38.94,23.5048 +78,103,0.0006,-0.0005,642.7,1583.29,1401.61,21.61,554.22,2388.06,9059.4,47.29,521.74,2388.04,8.399,393,39.0,23.3975 +78,104,-0.0011,0.0004,641.72,1586.81,1396.57,21.61,554.26,2388.03,9058.83,47.4,522.91,2388.01,8.3999,392,38.98,23.3231 +78,105,0.0008,0.0002,642.66,1584.55,1400.37,21.61,554.01,2387.98,9056.1,47.44,522.56,2388.05,8.3838,391,38.88,23.3435 +78,106,-0.0042,0.0002,642.4,1587.69,1398.42,21.61,554.41,2388.01,9065.0,47.35,521.93,2387.97,8.4113,391,38.84,23.3195 +78,107,-0.0019,-0.0004,641.7,1579.04,1397.81,21.6,553.94,2388.06,9058.84,47.29,522.07,2388.01,8.3939,392,39.01,23.4393 +78,108,0.0007,0.0002,641.9,1581.3,1396.87,21.61,554.22,2388.06,9057.67,47.1,522.02,2388.05,8.3718,392,38.93,23.4695 +78,109,-0.006,-0.0,641.91,1580.32,1403.96,21.61,554.67,2388.01,9058.8,47.42,522.51,2388.03,8.4023,393,39.01,23.3656 +78,110,-0.0021,-0.0002,642.41,1586.47,1400.21,21.61,554.24,2388.05,9056.02,47.35,522.29,2388.03,8.4048,392,39.0,23.4413 +78,111,-0.0031,-0.0004,642.04,1587.48,1407.24,21.61,554.5,2388.01,9058.64,47.29,521.77,2387.98,8.4077,391,39.12,23.3469 +78,112,-0.0014,0.0003,642.58,1589.46,1408.6,21.61,554.16,2388.06,9064.01,47.27,522.66,2388.0,8.4317,393,39.01,23.4149 +78,113,-0.0015,0.0004,642.87,1586.97,1397.83,21.61,553.92,2387.98,9059.16,47.04,522.81,2388.04,8.3933,391,38.85,23.4771 +78,114,-0.0006,-0.0002,642.58,1582.74,1401.24,21.61,554.36,2388.09,9053.66,47.1,521.71,2388.1,8.4343,391,38.87,23.3592 +78,115,-0.0012,-0.0002,642.43,1590.86,1392.88,21.61,553.69,2388.05,9059.74,47.37,522.45,2388.02,8.4079,392,39.13,23.3299 +78,116,0.0003,0.0004,642.06,1588.22,1400.17,21.61,553.42,2388.01,9063.36,47.2,522.05,2388.01,8.383,392,38.88,23.3085 +78,117,0.001,0.0004,641.81,1585.26,1396.06,21.61,554.94,2388.05,9059.54,47.38,521.83,2388.01,8.3748,389,39.12,23.3804 +78,118,-0.0032,0.0003,642.28,1581.92,1397.99,21.61,553.27,2388.1,9054.81,47.52,522.1,2388.0,8.4341,393,38.97,23.392 +78,119,-0.0026,-0.0004,642.58,1579.99,1394.26,21.61,553.56,2388.04,9068.86,47.15,521.95,2387.99,8.4218,392,38.97,23.3879 +78,120,-0.0011,-0.0004,642.17,1584.44,1391.51,21.61,554.37,2388.03,9062.63,47.18,521.75,2388.08,8.4048,393,39.06,23.361 +78,121,-0.0008,-0.0004,642.35,1581.19,1400.04,21.61,554.37,2388.04,9062.73,47.19,521.29,2388.02,8.4363,391,38.99,23.2944 +78,122,0.0012,-0.0001,642.31,1584.89,1398.27,21.61,554.64,2388.04,9065.39,47.29,522.49,2388.04,8.4211,392,38.88,23.244 +78,123,0.0002,0.0002,642.09,1577.55,1405.09,21.61,554.04,2387.99,9057.52,47.38,521.99,2388.02,8.4231,393,38.95,23.33 +78,124,0.0009,0.0,642.23,1587.56,1398.14,21.61,553.97,2388.0,9065.61,47.24,522.33,2388.05,8.401,392,38.96,23.3707 +78,125,0.0026,-0.0001,642.45,1588.88,1401.99,21.61,554.18,2387.97,9066.82,47.35,522.17,2388.0,8.4329,393,38.97,23.3019 +78,126,-0.0016,-0.0002,642.51,1582.6,1404.81,21.61,553.94,2388.06,9058.88,47.43,522.26,2387.99,8.3846,394,38.88,23.2584 +78,127,0.0034,0.0003,642.74,1578.88,1397.96,21.61,553.73,2388.04,9061.63,47.33,522.37,2388.0,8.4133,392,39.15,23.3916 +78,128,0.0005,0.0003,642.07,1589.93,1400.63,21.61,553.46,2388.07,9063.34,47.35,522.09,2388.05,8.4113,392,38.88,23.4197 +78,129,-0.0026,-0.0001,641.98,1587.68,1398.81,21.6,553.88,2388.08,9064.47,47.08,522.08,2388.03,8.3897,392,38.82,23.4386 +78,130,0.0032,0.0002,642.43,1586.05,1401.55,21.61,553.73,2388.04,9059.03,47.39,521.92,2388.02,8.4271,392,38.9,23.3201 +78,131,-0.0008,-0.0003,642.14,1579.85,1398.44,21.61,555.19,2388.08,9055.64,47.44,522.16,2388.0,8.4304,391,38.81,23.4323 +78,132,-0.0015,-0.0004,642.5,1587.02,1402.59,21.61,554.22,2388.01,9063.4,47.28,522.42,2388.0,8.4427,392,38.9,23.304 +78,133,-0.0005,0.0003,642.15,1584.59,1400.57,21.61,554.36,2388.01,9056.56,47.4,522.18,2388.01,8.4393,393,39.04,23.3803 +78,134,-0.0037,-0.0005,642.41,1595.16,1396.56,21.61,554.01,2388.02,9062.43,47.39,522.01,2388.03,8.4452,390,39.16,23.2828 +78,135,0.0007,0.0005,642.29,1579.77,1395.0,21.61,554.22,2388.02,9056.23,47.27,522.37,2388.07,8.4307,392,39.06,23.3536 +78,136,-0.0004,-0.0005,642.68,1593.67,1402.16,21.61,554.41,2388.07,9066.59,47.17,522.02,2388.0,8.4315,392,38.93,23.3242 +78,137,-0.0031,-0.0004,642.2,1588.61,1409.95,21.61,553.8,2388.06,9064.99,47.35,522.18,2388.0,8.3643,393,38.92,23.3101 +78,138,0.002,-0.0004,642.34,1584.42,1402.32,21.6,554.21,2388.08,9059.58,47.34,521.8,2388.02,8.4149,393,39.02,23.3667 +78,139,0.0019,-0.0004,642.45,1583.62,1404.32,21.61,554.29,2388.05,9062.6,47.27,521.58,2388.04,8.4278,392,38.94,23.3516 +78,140,0.0022,0.0004,642.39,1585.01,1407.66,21.61,553.56,2388.08,9059.24,47.37,521.97,2388.13,8.423,391,38.77,23.3209 +78,141,0.0001,0.0003,642.26,1592.69,1400.58,21.61,554.59,2388.02,9066.69,47.36,522.37,2388.02,8.4092,393,38.95,23.2781 +78,142,0.0032,-0.0002,642.48,1579.28,1402.28,21.61,553.94,2388.04,9061.85,47.25,521.85,2388.07,8.4222,392,38.98,23.3751 +78,143,0.0049,-0.0002,642.29,1588.2,1401.61,21.61,553.92,2387.97,9063.91,47.32,521.69,2388.07,8.4329,392,38.97,23.2771 +78,144,-0.0014,-0.0,642.9,1589.73,1408.29,21.61,553.55,2387.99,9062.49,47.37,521.97,2388.05,8.3975,392,38.98,23.3085 +78,145,0.0007,0.0004,642.3,1591.72,1401.5,21.61,553.82,2388.09,9062.07,47.42,521.81,2388.06,8.4059,393,38.78,23.3076 +78,146,-0.0003,-0.0,642.29,1591.29,1398.76,21.61,554.19,2388.03,9071.9,47.35,522.22,2388.01,8.4153,392,39.07,23.3835 +78,147,0.0006,0.0004,642.16,1584.68,1404.29,21.61,554.4,2388.06,9068.02,47.27,521.56,2388.01,8.427,392,38.86,23.4267 +78,148,0.0015,0.0002,642.6,1582.93,1403.41,21.6,554.0,2388.02,9064.72,47.48,522.13,2388.06,8.3919,391,39.01,23.2918 +78,149,0.002,0.0,642.82,1583.95,1403.59,21.61,554.73,2388.05,9060.68,47.45,521.64,2388.05,8.4381,391,38.86,23.3496 +78,150,0.0007,-0.0,642.2,1594.49,1401.2,21.61,553.76,2388.05,9070.1,47.12,521.36,2388.03,8.4218,392,38.83,23.3322 +78,151,0.0027,-0.0004,642.32,1580.65,1411.26,21.61,554.63,2388.03,9065.64,47.4,521.55,2388.08,8.4406,392,38.89,23.3462 +78,152,-0.0016,0.0,642.04,1591.17,1398.44,21.61,553.92,2388.06,9060.86,47.37,521.88,2388.04,8.4322,392,39.06,23.4255 +78,153,-0.0008,-0.0,642.41,1585.18,1404.44,21.61,553.48,2388.03,9060.87,47.45,521.53,2388.08,8.4368,393,38.65,23.3161 +78,154,0.0011,0.0,642.47,1585.71,1404.26,21.61,553.83,2388.04,9059.31,47.37,522.16,2388.05,8.3947,391,38.87,23.3013 +78,155,0.0029,-0.0002,642.53,1588.23,1404.33,21.61,553.84,2388.12,9072.93,47.57,521.77,2388.1,8.4562,392,38.86,23.4205 +78,156,0.0043,-0.0003,642.54,1578.55,1401.77,21.61,553.53,2388.06,9066.52,47.42,521.98,2388.1,8.408,391,38.93,23.3107 +78,157,-0.0015,-0.0003,642.64,1589.6,1406.25,21.61,554.2,2388.06,9066.88,47.31,521.9,2388.08,8.3962,393,38.91,23.317 +78,158,0.0,0.0004,642.33,1584.5,1408.57,21.61,553.78,2388.04,9062.65,47.23,522.27,2388.08,8.4206,392,38.92,23.3977 +78,159,0.0031,0.0001,642.81,1593.32,1409.57,21.61,554.07,2388.06,9071.72,47.39,521.38,2388.05,8.4199,394,38.76,23.3147 +78,160,-0.0024,0.0004,642.86,1591.46,1399.41,21.61,553.62,2388.05,9068.58,47.56,521.49,2388.11,8.4567,393,38.89,23.2585 +78,161,-0.004,-0.0002,642.27,1589.57,1407.09,21.61,553.56,2388.03,9072.0,47.46,522.16,2388.04,8.4043,393,38.85,23.2474 +78,162,0.0029,0.0,641.87,1587.83,1401.03,21.61,553.8,2388.03,9065.36,47.44,521.71,2388.07,8.4071,394,38.95,23.2743 +78,163,0.0038,-0.0003,642.6,1589.06,1408.58,21.61,553.37,2388.05,9064.6,47.62,521.32,2388.05,8.4208,393,38.76,23.3474 +78,164,-0.0029,0.0,642.28,1590.37,1411.14,21.61,553.68,2388.04,9071.03,47.37,521.62,2388.04,8.4341,393,39.0,23.2838 +78,165,0.0034,-0.0003,642.77,1591.73,1410.16,21.61,554.59,2388.06,9067.73,47.51,522.03,2388.09,8.439,393,38.78,23.3039 +78,166,-0.0044,0.0002,642.89,1593.78,1397.17,21.61,553.53,2388.07,9072.35,47.49,521.61,2388.12,8.4398,392,38.87,23.1959 +78,167,-0.0034,-0.0005,642.73,1586.11,1407.23,21.61,552.51,2388.05,9079.35,47.38,521.92,2388.09,8.4243,391,38.97,23.3456 +78,168,-0.0002,0.0002,642.17,1583.08,1410.55,21.61,553.74,2388.05,9066.69,47.57,521.52,2388.1,8.4674,393,38.73,23.3096 +78,169,0.0033,0.0,642.39,1592.26,1415.63,21.61,554.0,2388.06,9067.83,47.45,521.46,2388.08,8.4284,393,38.84,23.3192 +78,170,-0.0012,-0.0,642.5,1596.75,1405.41,21.61,552.86,2388.08,9073.1,47.48,521.37,2388.08,8.4114,394,38.77,23.2121 +78,171,-0.0023,-0.0004,642.76,1588.0,1404.6,21.61,553.41,2388.08,9069.83,47.3,521.49,2388.11,8.4298,393,38.71,23.3778 +78,172,-0.0006,0.0004,642.53,1585.42,1401.5,21.61,553.47,2388.07,9069.26,47.47,521.34,2388.06,8.4856,393,38.92,23.2554 +78,173,-0.0036,-0.0002,642.11,1587.56,1417.13,21.61,553.98,2388.07,9076.12,47.65,521.68,2388.04,8.4457,394,38.74,23.2929 +78,174,0.0017,0.0,642.74,1587.1,1404.92,21.61,553.22,2388.09,9068.64,47.35,521.79,2388.01,8.4573,394,38.83,23.2199 +78,175,0.0038,0.0002,642.96,1593.69,1408.0,21.61,553.01,2388.11,9070.34,47.5,521.71,2388.08,8.45,393,38.82,23.1976 +78,176,0.003,0.0004,642.44,1594.83,1409.28,21.61,553.0,2388.12,9070.54,47.35,521.69,2388.09,8.4546,392,38.98,23.4169 +78,177,0.0019,0.0003,642.52,1591.31,1409.43,21.61,553.48,2388.13,9064.8,47.53,521.21,2388.05,8.4238,394,38.74,23.363 +78,178,0.0034,-0.0001,642.7,1594.99,1403.64,21.61,553.22,2388.05,9069.74,47.43,521.17,2388.09,8.4404,394,38.95,23.3839 +78,179,-0.0005,0.0004,643.22,1584.8,1418.53,21.61,553.68,2388.07,9064.2,47.49,521.3,2388.11,8.435,393,38.71,23.2651 +78,180,0.0009,-0.0,642.75,1593.12,1411.99,21.61,551.6,2388.11,9070.98,47.69,521.22,2388.1,8.46,393,38.81,23.2279 +78,181,0.0025,-0.0002,642.8,1595.24,1409.75,21.61,553.05,2388.11,9073.96,47.63,521.43,2388.08,8.4505,392,38.56,23.1259 +78,182,-0.0013,-0.0005,643.13,1591.25,1410.41,21.61,553.66,2388.11,9073.03,47.66,521.01,2388.1,8.4566,394,38.77,23.2804 +78,183,-0.0041,0.0003,642.96,1596.74,1408.73,21.61,553.57,2388.12,9066.46,47.55,520.89,2388.12,8.4753,394,38.73,23.354 +78,184,0.0015,0.0003,642.82,1591.95,1412.38,21.61,553.15,2388.1,9075.62,47.77,521.69,2388.1,8.444,394,38.57,23.2056 +78,185,-0.0047,-0.0002,642.61,1592.09,1411.93,21.61,553.01,2388.09,9076.09,47.56,521.16,2388.1,8.4186,392,38.91,23.4132 +78,186,-0.0,0.0004,642.83,1590.4,1413.42,21.61,552.48,2388.13,9067.98,47.64,521.19,2388.11,8.4719,395,38.77,23.207 +78,187,0.0007,0.0001,642.5,1591.34,1419.49,21.61,552.98,2388.13,9076.54,47.77,521.79,2388.07,8.4833,393,38.68,23.2154 +78,188,-0.0033,0.0001,642.76,1592.48,1419.84,21.61,553.74,2388.12,9066.01,47.64,520.72,2388.13,8.4562,395,38.81,23.193 +78,189,-0.0024,-0.0003,642.62,1588.96,1412.0,21.61,553.57,2388.1,9072.91,47.53,520.95,2388.09,8.4912,394,38.77,23.2575 +78,190,-0.0025,0.0003,642.96,1591.33,1403.35,21.61,553.1,2388.08,9073.56,47.59,521.15,2388.07,8.4673,394,38.88,23.1134 +78,191,0.0019,-0.0001,642.89,1585.86,1412.22,21.61,552.2,2388.14,9075.96,47.68,521.03,2388.06,8.4731,392,38.56,23.229 +78,192,-0.002,0.0001,643.15,1590.94,1411.91,21.61,553.13,2388.13,9070.7,47.56,521.24,2388.07,8.4628,394,38.76,23.2231 +78,193,0.005,0.0001,642.77,1587.35,1415.67,21.61,552.71,2388.11,9068.06,47.69,520.76,2388.07,8.4421,394,38.69,23.242 +78,194,-0.0002,0.0001,642.97,1590.03,1415.34,21.61,552.78,2388.07,9074.1,47.72,521.43,2388.13,8.4526,394,38.63,23.2399 +78,195,-0.0028,-0.0002,642.79,1589.34,1416.93,21.61,553.48,2388.14,9070.71,47.75,521.11,2388.06,8.484,394,38.6,23.2512 +78,196,0.0014,-0.0005,642.83,1592.59,1410.65,21.61,553.18,2388.14,9069.4,47.63,521.13,2388.14,8.4628,393,38.69,23.1322 +78,197,0.0019,0.0,643.01,1592.51,1419.44,21.61,552.78,2388.13,9076.73,47.8,520.91,2388.17,8.4705,394,39.05,23.2571 +78,198,0.0004,0.0,643.38,1594.96,1413.52,21.61,552.64,2388.14,9078.81,47.82,520.46,2388.09,8.4617,393,38.82,23.278 +78,199,0.0007,0.0,642.94,1598.32,1409.31,21.61,552.87,2388.09,9077.56,47.8,520.62,2388.14,8.4637,394,38.63,23.1854 +78,200,0.0003,0.0,643.1,1592.34,1422.66,21.61,552.83,2388.16,9076.86,47.62,520.53,2388.09,8.4554,395,38.77,23.3176 +78,201,0.0038,0.0002,642.49,1597.12,1415.29,21.61,552.1,2388.14,9080.22,47.72,520.88,2388.11,8.4567,394,38.59,23.2468 +78,202,0.0009,-0.0005,642.41,1593.07,1419.26,21.61,553.24,2388.16,9077.6,47.59,521.25,2388.15,8.4808,394,38.63,23.2194 +78,203,0.0012,-0.0001,643.26,1584.91,1421.67,21.61,552.04,2388.14,9079.97,47.58,520.73,2388.11,8.5048,393,38.65,23.2952 +78,204,0.0029,0.0001,643.02,1593.48,1416.94,21.61,552.48,2388.1,9082.84,47.74,520.57,2388.16,8.4754,395,38.68,23.1253 +78,205,-0.0014,-0.0004,642.94,1591.58,1407.02,21.61,553.15,2388.15,9083.26,47.99,520.09,2388.14,8.4774,396,38.72,23.2192 +78,206,-0.0016,0.0002,643.36,1596.39,1414.57,21.61,552.65,2388.11,9067.71,47.89,520.77,2388.1,8.4799,394,38.56,23.2333 +78,207,0.0001,-0.0004,643.58,1589.89,1420.06,21.61,552.74,2388.17,9079.27,47.75,520.17,2388.16,8.4786,395,38.62,23.1958 +78,208,-0.0003,0.0004,642.87,1600.56,1416.01,21.61,552.09,2388.12,9079.63,47.95,520.47,2388.12,8.4907,395,38.75,23.1746 +78,209,-0.0019,-0.0002,643.86,1594.65,1414.74,21.61,552.81,2388.19,9077.47,47.89,520.45,2388.15,8.4921,395,38.72,23.2527 +78,210,0.0013,0.0004,643.15,1599.74,1422.91,21.61,551.93,2388.18,9080.53,48.04,520.95,2388.07,8.4341,394,38.48,23.1272 +78,211,-0.0019,0.0004,642.98,1598.78,1422.0,21.61,551.88,2388.15,9084.86,47.86,519.96,2388.17,8.5037,395,38.59,23.1907 +78,212,-0.0014,-0.0005,643.65,1594.42,1418.48,21.61,553.05,2388.14,9084.4,47.91,520.74,2388.17,8.5,396,38.62,23.1894 +78,213,-0.0008,0.0002,642.75,1601.66,1418.35,21.61,552.6,2388.26,9085.17,47.96,520.73,2388.17,8.5081,395,38.64,23.2173 +78,214,-0.001,-0.0001,643.13,1597.39,1410.89,21.61,552.62,2388.19,9079.13,47.95,520.2,2388.15,8.4998,395,38.49,23.178 +78,215,-0.0018,0.0001,643.21,1599.05,1427.22,21.61,552.03,2388.15,9092.27,48.13,520.87,2388.17,8.4732,394,38.71,23.145 +78,216,-0.0023,-0.0003,643.03,1605.16,1422.28,21.61,552.03,2388.14,9082.27,47.97,520.68,2388.16,8.5196,394,38.67,23.0871 +78,217,0.0,0.0002,643.51,1593.85,1426.78,21.61,552.84,2388.21,9082.17,47.82,520.23,2388.19,8.5171,396,38.49,23.0549 +78,218,0.0054,-0.0,643.45,1603.88,1423.47,21.61,551.14,2388.19,9075.91,47.97,520.22,2388.21,8.5031,396,38.43,23.1405 +78,219,0.0001,-0.0001,643.68,1605.06,1420.58,21.61,552.51,2388.19,9080.95,47.98,519.95,2388.28,8.5145,396,38.65,23.2159 +78,220,-0.0036,-0.0005,643.39,1594.57,1422.61,21.61,552.31,2388.16,9084.74,47.88,520.51,2388.17,8.4793,395,38.52,23.0641 +78,221,0.0004,0.0003,643.57,1602.14,1420.09,21.61,552.0,2388.19,9081.09,48.07,520.27,2388.17,8.523,396,38.55,23.1437 +78,222,0.0025,-0.0,643.64,1603.29,1422.12,21.61,551.72,2388.22,9089.64,47.97,520.3,2388.17,8.476,394,38.6,22.9122 +78,223,-0.0027,0.0003,643.3,1597.67,1416.23,21.61,551.81,2388.18,9098.65,48.15,520.49,2388.19,8.5678,395,38.37,23.1569 +78,224,-0.0002,0.0002,643.92,1600.49,1416.47,21.61,551.35,2388.24,9086.38,47.99,520.14,2388.18,8.4868,395,38.53,23.134 +78,225,-0.0017,-0.0002,643.99,1605.76,1427.31,21.61,551.18,2388.22,9086.64,48.09,519.69,2388.15,8.4918,397,38.55,23.0347 +78,226,0.0015,0.0003,643.61,1601.54,1431.88,21.61,551.09,2388.19,9089.32,48.1,520.23,2388.19,8.5277,396,38.77,23.1203 +78,227,-0.0011,-0.0002,643.81,1604.31,1427.2,21.61,552.12,2388.18,9096.36,48.08,519.75,2388.21,8.527,397,38.27,23.0785 +78,228,0.0009,0.0002,643.87,1603.2,1421.88,21.61,551.74,2388.17,9099.18,48.03,520.08,2388.2,8.5209,395,38.46,23.0434 +78,229,0.0029,0.0001,643.45,1596.39,1428.77,21.61,551.29,2388.21,9095.38,48.13,519.85,2388.23,8.5123,396,38.48,23.1599 +78,230,0.0006,-0.0001,643.2,1603.23,1432.4,21.61,551.71,2388.15,9091.72,48.33,519.87,2388.23,8.5381,396,38.3,23.0374 +78,231,-0.001,0.0001,643.23,1596.6,1428.33,21.61,551.6,2388.24,9090.13,48.22,519.11,2388.21,8.5254,396,38.25,23.126 +79,10,0.0022,-0.0003,642.29,1588.6,1396.27,21.61,554.02,2387.98,9057.69,47.08,522.69,2388.04,8.3827,392,38.95,23.4418 +79,11,-0.0007,-0.0005,642.27,1576.89,1397.42,21.61,554.66,2387.99,9057.29,47.14,522.56,2387.99,8.3975,391,39.03,23.3031 +79,12,0.0002,0.0002,641.97,1592.16,1403.56,21.6,554.74,2388.02,9058.57,47.34,522.42,2388.02,8.388,392,39.04,23.513 +79,13,-0.0015,0.0003,641.94,1580.59,1402.22,21.61,554.89,2388.06,9061.11,47.13,522.39,2387.99,8.3997,392,38.94,23.392 +79,14,-0.0039,0.0004,642.01,1584.95,1404.11,21.61,554.61,2388.04,9054.74,47.33,522.47,2387.98,8.38,390,38.91,23.4688 +79,15,-0.0008,-0.0004,642.01,1589.19,1400.17,21.6,554.25,2388.07,9061.96,47.23,522.28,2388.02,8.4185,392,38.91,23.4041 +79,16,-0.002,0.0002,642.53,1577.53,1397.89,21.61,554.98,2388.0,9058.71,46.92,522.32,2387.94,8.4187,391,39.07,23.428 +79,17,0.0057,-0.0003,642.2,1580.36,1388.86,21.61,554.84,2387.99,9053.93,47.17,522.16,2388.02,8.4134,392,39.06,23.4588 +79,18,-0.0001,-0.0001,641.98,1585.41,1395.44,21.61,554.66,2388.03,9053.24,46.93,522.63,2388.01,8.3766,391,39.2,23.5008 +79,19,-0.0027,0.0002,642.53,1588.12,1399.96,21.61,553.93,2388.0,9060.4,47.08,522.28,2387.98,8.3817,391,39.13,23.345 +79,20,-0.0008,-0.0005,642.74,1576.83,1401.72,21.61,555.1,2387.98,9059.09,47.11,522.2,2387.96,8.3805,391,39.05,23.4509 +79,21,-0.0013,0.0001,641.9,1580.28,1400.49,21.61,554.12,2388.01,9059.69,47.22,522.73,2388.05,8.4199,392,39.23,23.4448 +79,22,-0.0039,-0.0001,642.15,1581.45,1396.46,21.61,554.53,2387.97,9051.83,47.05,522.56,2388.02,8.4154,392,39.04,23.5301 +79,23,0.0004,-0.0004,642.35,1582.6,1389.47,21.61,554.15,2388.04,9053.6,47.09,522.3,2388.01,8.4232,391,39.07,23.3894 +79,24,0.0017,-0.0003,642.26,1582.97,1395.4,21.61,553.9,2387.96,9053.8,47.2,522.07,2387.98,8.3602,392,39.15,23.4369 +79,25,0.0024,-0.0002,641.3,1576.55,1394.52,21.61,554.75,2388.02,9059.94,47.14,522.9,2387.96,8.4175,392,38.97,23.492 +79,26,-0.0008,-0.0004,642.25,1588.8,1403.72,21.61,554.41,2387.97,9055.37,47.08,522.27,2387.95,8.4055,392,39.2,23.4944 +79,27,-0.0017,0.0002,642.1,1587.27,1395.64,21.61,554.99,2388.01,9050.54,47.19,522.72,2387.98,8.4106,392,39.04,23.3714 +79,28,-0.0006,-0.0005,642.88,1588.64,1400.84,21.61,554.41,2387.99,9060.63,47.1,522.95,2387.96,8.4386,390,38.96,23.4116 +79,29,-0.0011,-0.0004,641.95,1587.44,1396.78,21.61,554.37,2387.97,9054.8,47.24,522.42,2387.99,8.3733,391,39.03,23.4864 +79,30,0.0037,0.0004,642.06,1582.3,1407.03,21.61,554.6,2388.02,9060.66,47.12,522.81,2387.96,8.3787,391,39.1,23.5049 +79,31,-0.0008,-0.0001,642.18,1581.59,1408.4,21.61,555.7,2388.03,9058.35,47.25,522.29,2388.03,8.4091,390,38.91,23.5292 +79,32,0.0014,0.0004,641.83,1586.54,1406.35,21.61,555.15,2388.03,9061.72,47.53,522.37,2388.04,8.4201,392,38.92,23.4126 +79,33,-0.0022,0.0004,641.5,1584.15,1388.79,21.61,554.42,2388.0,9061.4,47.24,522.21,2388.0,8.3574,392,39.07,23.5076 +79,34,0.0003,0.0004,642.53,1577.16,1400.16,21.61,554.32,2388.01,9053.96,47.31,522.43,2388.0,8.3964,391,39.16,23.511 +79,35,0.0026,0.0001,642.59,1583.42,1392.52,21.6,554.53,2388.02,9055.53,47.23,522.73,2387.98,8.3914,391,39.01,23.4144 +79,36,-0.0023,0.0003,642.62,1580.53,1401.54,21.61,554.79,2388.04,9065.42,47.28,522.13,2388.01,8.4134,391,38.96,23.456 +79,37,0.0007,0.0003,642.13,1582.42,1397.4,21.61,554.3,2388.01,9044.98,47.13,522.52,2388.0,8.3846,391,39.18,23.4191 +79,38,0.0007,0.0,642.1,1577.93,1396.45,21.61,554.3,2387.99,9048.4,47.18,522.65,2387.99,8.3953,392,38.96,23.409 +79,39,-0.0031,0.0004,641.46,1584.44,1395.43,21.61,554.85,2388.04,9062.34,47.09,522.29,2388.02,8.3837,392,39.25,23.4117 +79,40,0.001,-0.0003,642.4,1588.45,1392.94,21.61,555.21,2388.03,9058.37,47.17,522.26,2388.06,8.3881,391,39.03,23.3655 +79,41,-0.0014,-0.0003,642.06,1585.17,1401.86,21.61,554.71,2388.01,9057.78,47.12,522.3,2388.0,8.4028,392,38.97,23.4911 +79,42,-0.0008,0.0002,642.17,1590.6,1401.35,21.61,554.01,2388.02,9055.63,47.12,521.91,2387.96,8.3522,391,39.16,23.4062 +79,43,-0.0006,0.0,642.13,1585.89,1398.86,21.61,554.15,2387.99,9052.58,47.24,522.58,2388.03,8.4293,392,39.01,23.4829 +79,44,0.0044,0.0003,642.15,1581.65,1396.25,21.61,553.97,2387.97,9059.18,47.2,522.43,2387.98,8.3778,392,39.21,23.5022 +79,45,-0.0003,0.0003,642.53,1581.2,1400.72,21.61,554.74,2388.0,9059.33,47.12,521.86,2388.02,8.4186,392,38.97,23.3733 +79,46,-0.0048,-0.0005,641.97,1584.78,1403.02,21.61,553.91,2388.04,9059.07,47.17,522.34,2387.96,8.4241,391,38.87,23.4554 +79,47,0.001,-0.0004,642.57,1583.98,1399.93,21.61,554.44,2388.05,9056.19,47.11,521.95,2388.01,8.3744,391,39.05,23.3578 +79,48,0.0009,-0.0002,641.9,1582.76,1399.48,21.61,554.64,2388.0,9048.31,47.08,522.49,2387.99,8.3963,390,38.99,23.3759 +79,49,-0.0014,0.0002,642.59,1582.36,1398.67,21.61,555.02,2387.98,9066.37,47.16,522.5,2388.03,8.3743,391,39.23,23.3531 +79,50,0.0023,-0.0005,641.99,1586.44,1397.8,21.61,554.53,2388.01,9052.76,47.27,522.74,2388.03,8.3896,392,38.97,23.5219 +79,51,0.0,0.0002,641.61,1580.53,1407.42,21.61,554.69,2388.0,9062.18,47.23,522.62,2388.03,8.3935,390,38.72,23.3339 +79,52,-0.0018,-0.0004,642.03,1579.55,1396.54,21.61,554.62,2388.01,9058.57,47.28,522.21,2388.04,8.3954,394,39.09,23.5033 +79,53,0.0026,-0.0001,642.25,1583.89,1396.89,21.61,554.39,2387.98,9061.94,47.29,522.21,2388.0,8.3725,390,38.97,23.4618 +79,54,-0.0002,0.0004,642.36,1579.7,1391.96,21.61,553.96,2388.01,9058.54,47.29,522.59,2388.06,8.398,391,39.11,23.401 +79,55,-0.0001,-0.0006,642.62,1576.89,1398.21,21.61,553.88,2388.01,9053.11,47.08,522.37,2388.01,8.3878,391,39.07,23.268 +79,56,0.0051,-0.0,641.98,1576.72,1393.54,21.61,554.35,2388.04,9061.54,47.09,522.58,2387.96,8.3655,392,39.06,23.395 +79,57,0.0018,0.0004,641.99,1582.94,1397.54,21.61,554.48,2387.99,9055.4,47.09,522.19,2387.99,8.416,393,39.0,23.4097 +79,58,0.0021,-0.0005,642.46,1589.58,1398.07,21.61,554.53,2388.02,9056.26,47.19,522.52,2388.03,8.4198,393,38.93,23.3336 +79,59,-0.0018,-0.0002,642.0,1576.18,1396.2,21.61,554.19,2388.04,9063.04,47.14,521.48,2388.0,8.3924,391,39.16,23.4153 +79,60,0.0001,-0.0001,642.59,1586.38,1399.59,21.61,554.32,2388.03,9054.0,47.18,521.95,2388.01,8.3775,392,39.08,23.3853 +79,61,0.0015,0.0004,641.54,1586.96,1399.19,21.61,554.41,2388.03,9063.77,47.18,522.39,2388.03,8.4304,392,39.1,23.3949 +79,62,0.0012,-0.0001,641.98,1585.77,1405.61,21.61,554.37,2388.03,9055.22,46.96,522.83,2388.02,8.3767,393,39.07,23.4735 +79,63,-0.0011,0.0004,642.94,1582.5,1392.37,21.6,553.87,2388.01,9055.65,47.22,522.24,2388.01,8.3818,392,39.02,23.4342 +79,64,0.001,-0.0003,641.92,1583.98,1394.11,21.61,554.42,2388.02,9058.76,47.3,522.3,2388.03,8.3961,391,39.13,23.3766 +79,65,0.003,0.0001,641.96,1584.58,1403.53,21.61,555.24,2388.02,9059.87,47.1,522.13,2388.04,8.383,391,38.96,23.4168 +79,66,0.0016,0.0004,642.22,1577.15,1396.63,21.61,553.73,2388.06,9054.16,47.09,522.62,2388.0,8.4107,392,38.92,23.3757 +79,67,-0.0019,0.0002,641.92,1589.63,1397.55,21.61,554.44,2388.06,9058.72,47.24,522.26,2387.99,8.4321,391,38.95,23.4288 +79,68,0.0006,-0.0004,642.36,1582.22,1402.36,21.61,554.21,2388.0,9058.55,47.22,522.2,2388.01,8.4075,393,39.17,23.4617 +79,69,0.0004,-0.0006,642.48,1589.64,1401.78,21.61,554.78,2388.06,9069.62,46.97,522.47,2388.03,8.4256,392,39.1,23.4078 +79,70,-0.0005,-0.0001,642.62,1581.51,1402.99,21.61,554.3,2387.99,9056.86,47.34,522.43,2388.04,8.3879,392,39.06,23.319 +79,71,-0.0054,-0.0001,641.86,1581.77,1391.91,21.61,554.41,2388.07,9059.5,47.17,522.53,2388.04,8.4227,392,38.91,23.5515 +79,72,-0.0019,-0.0002,642.77,1582.62,1404.95,21.61,554.29,2388.03,9057.49,47.33,522.2,2388.0,8.4213,392,38.92,23.4385 +79,73,-0.0027,0.0,641.81,1589.23,1401.56,21.61,554.98,2388.0,9056.93,47.26,522.59,2388.05,8.3749,392,38.95,23.4929 +79,74,-0.0009,-0.0001,642.22,1587.3,1392.32,21.61,554.16,2387.99,9057.22,47.34,522.42,2387.99,8.4101,392,39.08,23.4309 +79,75,-0.0011,0.0002,642.16,1588.78,1400.66,21.61,553.94,2388.05,9060.8,47.26,522.27,2387.98,8.4062,392,38.98,23.5021 +79,76,0.002,0.0001,641.32,1581.1,1403.52,21.61,554.3,2388.03,9055.3,47.25,522.47,2388.0,8.4055,393,39.24,23.4396 +79,77,-0.0003,-0.0005,642.25,1586.14,1397.73,21.61,553.74,2387.98,9049.46,47.4,522.21,2388.0,8.4252,390,38.86,23.3497 +79,78,-0.0018,-0.0002,641.68,1586.43,1403.1,21.61,554.54,2388.02,9060.75,47.1,522.4,2388.04,8.3907,393,39.08,23.5053 +79,79,-0.0024,-0.0001,642.8,1582.95,1398.51,21.61,554.8,2387.98,9053.5,47.34,521.94,2388.0,8.3978,391,38.97,23.4201 +79,80,0.0013,-0.0,642.32,1589.41,1402.16,21.6,554.22,2388.02,9064.13,47.33,522.5,2388.02,8.3909,391,39.11,23.3657 +79,81,-0.0011,-0.0001,641.27,1581.91,1402.01,21.61,553.95,2388.02,9061.89,47.14,522.1,2387.94,8.3746,391,39.1,23.4034 +79,82,-0.0,-0.0001,641.72,1585.22,1394.09,21.6,554.37,2388.03,9059.96,47.09,522.58,2388.03,8.4503,392,38.8,23.358 +79,83,-0.0033,0.0003,642.03,1581.53,1395.38,21.61,555.19,2388.04,9057.12,47.28,522.34,2387.98,8.4081,391,39.07,23.3026 +79,84,-0.0024,0.0,642.16,1588.24,1398.9,21.61,554.17,2388.03,9061.76,47.22,522.16,2388.06,8.4083,392,38.83,23.2628 +79,85,0.001,0.0,641.99,1592.25,1404.92,21.61,554.52,2388.01,9063.63,47.18,522.13,2387.97,8.4293,393,39.08,23.5075 +79,86,0.0007,-0.0004,642.81,1580.2,1399.52,21.6,554.91,2388.04,9051.45,47.37,522.51,2388.02,8.3799,392,38.91,23.3793 +79,87,0.0036,-0.0005,642.07,1577.99,1403.08,21.61,554.54,2388.01,9054.4,47.41,522.28,2388.03,8.3954,393,38.77,23.4293 +79,88,0.0029,0.0002,641.91,1590.86,1399.39,21.61,554.32,2387.96,9051.71,47.25,522.51,2388.05,8.3867,391,38.85,23.3674 +79,89,0.001,0.0001,642.3,1596.27,1402.34,21.61,554.22,2388.0,9066.46,47.29,522.52,2388.04,8.4531,391,39.02,23.2524 +79,90,-0.0035,-0.0001,642.39,1587.3,1403.67,21.61,554.52,2388.02,9060.78,47.39,521.87,2388.04,8.3813,392,38.78,23.3883 +79,91,0.0001,0.0004,642.52,1585.19,1401.77,21.61,553.89,2388.03,9062.76,47.04,522.89,2388.05,8.3477,391,38.96,23.4902 +79,92,0.0026,0.0004,642.46,1586.99,1402.59,21.61,553.94,2387.99,9057.39,47.35,522.37,2388.06,8.4035,392,38.92,23.3492 +79,93,-0.0032,-0.0004,642.33,1591.24,1403.85,21.61,554.16,2388.03,9061.8,47.43,522.1,2388.01,8.4346,391,38.92,23.4048 +79,94,0.0005,-0.0003,642.35,1586.82,1397.32,21.61,554.66,2388.02,9054.82,47.29,521.84,2388.08,8.4226,393,38.95,23.4222 +79,95,-0.0024,0.0003,642.2,1593.69,1401.3,21.61,553.85,2388.05,9057.24,47.11,522.73,2388.05,8.3831,392,38.85,23.3315 +79,96,0.0003,-0.0005,642.53,1583.77,1387.56,21.61,554.51,2388.03,9059.17,47.23,521.74,2388.01,8.4187,393,38.86,23.5432 +79,97,0.0019,-0.0001,642.22,1588.49,1400.54,21.61,554.55,2388.07,9057.64,47.35,521.73,2387.99,8.4029,391,38.94,23.383 +79,98,0.0005,-0.0,641.58,1591.53,1391.78,21.61,553.68,2388.02,9058.0,47.34,522.64,2388.06,8.3897,393,38.82,23.4856 +79,99,0.0007,0.0003,642.31,1584.4,1402.92,21.61,554.2,2388.08,9063.28,47.26,521.52,2387.97,8.4001,392,38.98,23.3386 +79,100,-0.0005,-0.0001,642.42,1579.58,1400.83,21.61,554.09,2388.04,9058.48,47.24,522.5,2388.09,8.3919,393,38.94,23.4347 +79,101,-0.0002,-0.0004,642.56,1590.38,1404.47,21.61,553.97,2388.06,9066.36,47.32,521.88,2388.08,8.4312,393,39.0,23.4097 +79,102,0.0011,0.0001,642.02,1582.58,1397.16,21.61,553.74,2388.02,9057.49,47.3,521.7,2388.04,8.3877,391,38.98,23.2612 +79,103,-0.0016,-0.0003,642.55,1588.47,1401.67,21.61,553.76,2388.02,9062.64,47.44,521.95,2388.01,8.3932,392,38.87,23.3556 +79,104,0.0025,0.0001,642.67,1579.46,1398.54,21.61,553.22,2388.09,9062.07,47.41,521.99,2388.01,8.3857,391,38.92,23.4013 +79,105,0.0014,-0.0004,642.52,1588.05,1401.47,21.61,554.13,2388.01,9062.38,47.37,522.1,2388.07,8.3795,391,38.86,23.3388 +79,106,-0.0006,0.0003,642.15,1589.71,1400.31,21.61,554.55,2388.05,9060.12,47.11,521.89,2387.97,8.4019,393,39.0,23.4263 +79,107,0.0009,-0.0005,642.81,1579.71,1399.01,21.61,554.43,2388.09,9068.41,47.46,521.44,2388.09,8.409,393,38.89,23.2638 +79,108,-0.0022,-0.0004,642.21,1587.36,1405.78,21.61,553.52,2387.98,9062.18,47.39,522.19,2388.04,8.4255,390,38.86,23.2909 +79,109,-0.002,-0.0002,642.39,1586.98,1402.45,21.61,554.12,2388.06,9070.56,47.21,521.58,2388.06,8.4252,393,38.96,23.3879 +79,110,-0.0017,0.0002,642.65,1591.2,1398.8,21.6,553.84,2388.03,9060.04,47.3,522.48,2387.98,8.4253,391,38.87,23.4322 +79,111,0.0005,-0.0001,642.33,1585.7,1399.99,21.61,554.02,2388.03,9050.8,47.38,521.98,2388.07,8.4338,392,39.14,23.2488 +79,112,0.0015,-0.0003,642.41,1586.33,1403.27,21.61,553.74,2388.05,9059.17,47.16,521.95,2388.01,8.3913,393,38.93,23.3294 +79,113,-0.0017,-0.0003,642.58,1595.96,1402.37,21.61,553.88,2387.98,9064.41,47.33,521.83,2388.09,8.4267,393,38.95,23.2544 +79,114,0.0016,-0.0004,642.23,1594.48,1407.51,21.61,554.83,2388.02,9064.14,47.33,522.06,2388.04,8.4301,392,38.9,23.3365 +79,115,0.0001,0.0001,642.4,1590.68,1401.9,21.6,555.49,2388.04,9057.05,47.38,521.68,2388.03,8.3889,393,38.93,23.3223 +79,116,0.0021,-0.0002,642.36,1587.95,1408.75,21.61,554.32,2388.04,9068.47,47.48,522.19,2388.08,8.3948,392,38.98,23.4094 +79,117,-0.0019,0.0003,642.28,1586.4,1398.82,21.61,554.04,2388.08,9061.81,47.36,521.72,2388.03,8.385,393,39.13,23.3659 +79,118,0.0015,0.0003,642.53,1588.76,1404.94,21.61,553.65,2388.02,9060.37,47.27,522.08,2388.05,8.4404,394,38.95,23.3098 +79,119,0.0003,-0.0005,642.53,1585.0,1405.75,21.61,553.47,2388.05,9063.6,47.41,521.81,2388.02,8.4402,391,38.75,23.3996 +79,120,0.0033,0.0002,642.1,1595.73,1399.13,21.61,553.06,2388.06,9060.64,47.39,522.04,2388.08,8.4609,391,38.98,23.3049 +79,121,0.0009,0.0002,642.0,1592.53,1408.12,21.61,554.27,2388.07,9069.79,47.27,521.92,2388.04,8.3997,393,38.81,23.276 +79,122,0.0001,0.0004,642.23,1587.52,1413.11,21.61,553.84,2388.06,9058.51,47.32,522.59,2388.07,8.4394,392,38.85,23.4134 +79,123,0.001,-0.0004,642.54,1584.87,1403.23,21.61,553.78,2388.04,9061.09,47.44,521.77,2388.09,8.4114,391,38.88,23.4029 +79,124,0.0004,-0.0004,642.5,1584.6,1406.9,21.61,553.72,2388.03,9063.76,47.4,521.93,2388.02,8.4374,393,38.95,23.2993 +79,125,0.0016,-0.0005,642.46,1585.75,1406.32,21.61,553.78,2388.05,9063.83,47.47,522.43,2388.03,8.4283,392,38.82,23.3751 +79,126,-0.0009,-0.0005,641.97,1579.81,1407.64,21.61,554.43,2388.03,9060.69,47.49,521.55,2388.01,8.4189,394,39.03,23.472 +79,127,-0.0005,0.0001,642.11,1591.89,1400.55,21.61,553.56,2388.03,9066.26,47.37,521.82,2388.03,8.4292,393,38.96,23.321 +79,128,0.0015,0.0004,642.73,1589.36,1403.55,21.61,554.14,2388.09,9064.35,47.34,522.24,2388.07,8.4226,393,39.0,23.3125 +79,129,0.0005,-0.0001,642.37,1585.87,1403.0,21.61,553.87,2388.0,9063.58,47.35,522.14,2388.07,8.3991,393,38.86,23.2966 +79,130,0.0028,-0.0001,642.51,1582.33,1410.22,21.61,554.11,2388.14,9063.23,47.39,521.93,2388.03,8.443,392,38.9,23.3328 +79,131,0.0029,0.0001,642.0,1588.48,1405.16,21.61,553.02,2388.07,9068.11,47.39,522.33,2388.05,8.4254,391,38.68,23.3508 +79,132,-0.0017,0.0003,642.49,1591.23,1404.85,21.61,553.58,2388.05,9069.94,47.43,521.48,2388.07,8.4092,392,38.7,23.3103 +79,133,0.0013,-0.0001,642.46,1591.96,1409.27,21.61,552.79,2388.05,9068.99,47.42,520.95,2388.04,8.4006,393,38.73,23.2766 +79,134,-0.0022,0.0,642.6,1590.03,1400.78,21.61,554.35,2388.11,9067.85,47.42,521.85,2388.02,8.4035,395,38.83,23.311 +79,135,-0.0011,0.0004,642.4,1586.23,1406.88,21.61,553.7,2388.08,9063.64,47.59,521.17,2388.05,8.434,392,39.0,23.3914 +79,136,-0.0007,-0.0001,641.96,1593.44,1411.99,21.61,553.61,2388.05,9074.17,47.46,521.9,2388.05,8.4437,393,38.84,23.2707 +79,137,0.0009,0.0001,642.53,1600.35,1406.64,21.6,553.55,2388.05,9070.77,47.46,520.94,2388.11,8.4547,392,38.98,23.3359 +79,138,-0.003,0.0004,642.54,1590.44,1404.33,21.61,554.09,2388.03,9064.48,47.36,521.12,2388.11,8.4436,393,38.95,23.2907 +79,139,-0.003,-0.0005,642.74,1592.47,1405.56,21.61,553.2,2388.05,9070.27,47.42,521.55,2388.07,8.46,393,38.85,23.319 +79,140,-0.0053,0.0004,642.38,1592.36,1405.95,21.61,553.4,2388.1,9067.82,47.53,521.28,2388.06,8.4219,393,38.63,23.4167 +79,141,0.0035,0.0002,642.27,1586.0,1415.1,21.61,553.24,2388.04,9066.99,47.6,521.43,2388.05,8.4561,393,38.76,23.2832 +79,142,-0.0,0.0004,642.69,1582.84,1408.67,21.61,552.75,2388.07,9071.34,47.4,521.04,2388.06,8.4364,392,38.81,23.3612 +79,143,0.0001,-0.0004,642.31,1587.76,1407.43,21.61,552.69,2388.04,9068.73,47.46,521.65,2388.06,8.4169,393,38.9,23.27 +79,144,-0.0016,-0.0003,642.69,1591.61,1402.33,21.61,554.43,2388.04,9068.72,47.32,521.46,2387.99,8.4279,392,38.89,23.4637 +79,145,-0.0023,-0.0004,642.85,1595.85,1415.89,21.61,553.61,2388.13,9070.55,47.44,521.75,2388.08,8.4434,394,38.76,23.2791 +79,146,-0.0018,-0.0002,641.9,1584.69,1404.22,21.61,553.85,2388.08,9071.34,47.54,522.01,2388.05,8.4362,393,38.88,23.2805 +79,147,-0.0002,-0.0005,642.47,1589.64,1405.92,21.61,553.03,2388.12,9070.51,47.54,521.54,2388.09,8.4447,392,38.82,23.3535 +79,148,-0.0029,-0.0003,642.99,1590.75,1406.01,21.61,554.13,2388.1,9064.48,47.69,521.06,2388.05,8.4455,394,38.72,23.2033 +79,149,0.0014,0.0,643.15,1586.4,1412.43,21.61,552.84,2388.06,9065.87,47.5,521.74,2388.08,8.4397,392,38.95,23.3553 +79,150,-0.0025,0.0003,642.02,1590.91,1412.21,21.61,553.5,2388.11,9068.27,47.6,521.63,2388.05,8.3987,393,38.67,23.2193 +79,151,0.0014,0.0002,643.4,1584.04,1408.25,21.61,553.1,2388.07,9066.78,47.34,521.67,2388.06,8.4462,394,38.76,23.3235 +79,152,0.0007,0.0001,642.95,1593.53,1412.73,21.61,553.02,2388.1,9072.27,47.55,521.25,2388.08,8.4509,392,38.75,23.223 +79,153,-0.0009,-0.0001,642.8,1584.81,1410.75,21.61,552.84,2388.1,9072.5,47.43,521.08,2388.11,8.4144,392,38.92,23.2789 +79,154,0.0012,-0.0002,642.59,1595.6,1400.4,21.61,553.58,2388.13,9070.89,47.5,521.61,2388.08,8.4653,393,38.89,23.2583 +79,155,0.0017,-0.0003,642.79,1586.28,1407.43,21.61,553.51,2388.08,9069.94,47.63,521.35,2388.04,8.4521,392,38.64,23.2601 +79,156,0.0017,0.0004,642.9,1586.72,1405.27,21.61,553.29,2388.12,9072.49,47.72,521.3,2388.1,8.4412,394,38.71,23.2991 +79,157,-0.001,0.0002,643.18,1598.58,1406.43,21.61,553.46,2388.09,9075.81,47.67,521.34,2388.1,8.4669,394,38.83,23.0886 +79,158,0.0029,0.0003,642.63,1591.16,1403.7,21.61,553.04,2388.13,9069.72,47.66,521.37,2388.04,8.4363,394,38.8,23.2676 +79,159,-0.0005,-0.0005,642.76,1589.61,1413.13,21.61,553.31,2388.12,9067.37,47.59,521.66,2388.1,8.4482,394,38.91,23.3153 +79,160,0.0,-0.0005,642.12,1592.33,1412.32,21.61,552.98,2388.15,9073.7,47.7,521.27,2388.12,8.4636,394,38.81,23.3456 +79,161,-0.0016,0.0003,642.73,1592.2,1412.49,21.61,554.03,2388.05,9074.47,47.64,521.05,2388.09,8.465,394,38.57,23.0965 +79,162,-0.0005,0.0004,642.92,1597.34,1409.63,21.61,552.79,2388.09,9066.09,47.69,521.36,2388.14,8.446,393,38.66,23.238 +79,163,-0.001,0.0001,643.01,1587.46,1411.94,21.61,553.41,2388.17,9080.52,47.71,521.39,2388.12,8.4654,394,38.68,23.3275 +79,164,0.0043,-0.0003,642.99,1593.49,1420.25,21.61,552.5,2388.07,9073.58,47.8,521.52,2388.11,8.4474,393,38.78,23.2125 +79,165,-0.0012,-0.0004,642.96,1593.1,1408.09,21.61,552.55,2388.09,9085.53,47.68,521.91,2388.2,8.4479,393,38.69,23.2733 +79,166,-0.0045,-0.0001,642.78,1596.73,1413.47,21.61,552.8,2388.07,9077.03,47.82,521.54,2388.17,8.4777,394,38.69,23.2607 +79,167,-0.0017,-0.0003,642.97,1593.17,1412.78,21.61,553.06,2388.19,9072.17,47.76,520.81,2388.16,8.4568,393,38.84,23.289 +79,168,-0.0055,-0.0003,643.02,1591.19,1419.5,21.61,552.97,2388.06,9076.83,47.66,520.74,2388.12,8.4652,393,38.86,23.1058 +79,169,0.0016,0.0003,642.19,1594.26,1409.62,21.61,552.74,2388.08,9084.87,47.56,520.67,2388.1,8.4304,393,38.74,23.1841 +79,170,0.0003,0.0,643.15,1590.61,1410.52,21.61,552.82,2388.09,9070.52,47.77,520.84,2388.18,8.49,394,38.86,23.1917 +79,171,-0.0016,-0.0001,642.75,1597.24,1417.47,21.61,552.96,2388.1,9077.47,47.78,521.26,2388.12,8.4429,396,38.59,23.2026 +79,172,-0.0005,0.0004,642.32,1590.48,1413.72,21.61,552.2,2388.11,9077.91,47.79,520.56,2388.13,8.4595,394,38.79,23.1857 +79,173,-0.0043,-0.0003,642.72,1604.92,1415.91,21.61,551.7,2388.11,9086.1,47.63,520.71,2388.13,8.4543,394,38.61,23.2056 +79,174,0.0004,0.0002,643.29,1595.9,1412.85,21.61,552.9,2388.11,9076.0,47.85,520.64,2388.17,8.4762,396,38.56,23.2308 +79,175,-0.0016,-0.0003,642.94,1590.51,1420.88,21.61,552.89,2388.14,9081.75,47.89,521.23,2388.13,8.4645,396,38.69,23.208 +79,176,0.0006,0.0002,642.78,1593.24,1418.08,21.61,552.75,2388.06,9086.47,47.76,520.85,2388.16,8.4634,395,38.6,23.2738 +79,177,-0.0009,0.0001,643.15,1598.9,1414.12,21.61,552.43,2388.14,9078.34,47.77,521.26,2388.14,8.5006,395,38.62,23.1078 +79,178,0.0011,-0.0003,643.31,1595.94,1421.72,21.61,552.46,2388.16,9090.79,47.68,520.36,2388.11,8.4617,394,38.62,23.1246 +79,179,0.0027,0.0002,642.88,1596.35,1414.17,21.61,552.35,2388.12,9084.54,47.79,520.68,2388.14,8.4724,396,38.67,23.1666 +79,180,0.0007,0.0001,643.61,1598.56,1422.26,21.61,552.55,2388.14,9091.11,47.88,520.33,2388.16,8.4926,395,38.65,23.2897 +79,181,-0.0003,-0.0003,643.03,1601.1,1418.04,21.61,552.25,2388.16,9081.76,47.98,520.8,2388.2,8.504,395,38.9,23.3533 +79,182,0.0025,-0.0003,643.1,1593.39,1418.08,21.61,551.96,2388.13,9081.79,47.88,520.49,2388.16,8.5117,395,38.62,23.0477 +79,183,-0.0015,-0.0005,643.33,1598.94,1411.4,21.61,551.73,2388.17,9089.03,48.01,519.67,2388.19,8.493,396,38.8,23.0854 +79,184,-0.0024,-0.0002,643.22,1595.07,1420.6,21.61,551.89,2388.17,9090.09,47.95,520.5,2388.14,8.4948,397,38.7,23.1814 +79,185,0.0001,0.0002,643.34,1603.8,1423.72,21.61,551.86,2388.16,9092.91,47.92,519.99,2388.16,8.511,396,38.45,23.1421 +79,186,-0.0014,-0.0,643.22,1601.55,1421.79,21.61,552.12,2388.17,9086.56,48.01,520.84,2388.16,8.5127,396,38.54,23.0323 +79,187,0.0054,-0.0004,643.7,1600.66,1424.25,21.61,551.78,2388.19,9087.58,48.01,520.44,2388.17,8.4888,396,38.59,23.1239 +79,188,0.002,-0.0,643.17,1605.33,1428.14,21.61,552.23,2388.15,9095.5,47.97,520.64,2388.16,8.477,394,38.63,23.2292 +79,189,-0.0012,0.0,642.99,1603.0,1424.73,21.61,551.58,2388.11,9098.74,47.95,520.74,2388.18,8.4963,396,38.51,23.1421 +79,190,-0.0001,0.0,642.99,1604.81,1427.9,21.61,551.72,2388.17,9087.47,47.94,520.02,2388.15,8.5022,394,38.58,23.0818 +79,191,-0.005,0.0,643.15,1603.83,1429.15,21.61,552.81,2388.12,9082.85,48.01,519.89,2388.16,8.5239,395,38.36,23.186 +79,192,0.0026,-0.0003,643.25,1598.31,1417.45,21.61,551.4,2388.17,9101.64,47.97,520.18,2388.18,8.5196,396,38.47,23.163 +79,193,-0.001,-0.0004,643.55,1605.53,1423.36,21.61,551.92,2388.19,9095.68,48.18,519.92,2388.19,8.4926,395,38.53,23.1081 +79,194,-0.0034,0.0001,643.32,1599.8,1428.89,21.61,551.59,2388.2,9094.7,48.15,519.78,2388.22,8.4756,396,38.47,23.0308 +79,195,-0.001,-0.0004,643.84,1601.67,1429.44,21.61,551.55,2388.16,9097.21,48.12,520.3,2388.17,8.5201,395,38.54,23.0818 +79,196,-0.0019,0.0001,644.23,1597.47,1431.96,21.61,551.34,2388.18,9094.5,48.05,519.83,2388.21,8.5115,397,38.31,23.1359 +79,197,0.0005,0.0004,643.82,1603.82,1422.69,21.61,552.09,2388.18,9103.96,48.12,520.35,2388.22,8.5147,397,38.5,23.0924 +79,198,-0.0037,-0.0005,643.91,1606.34,1431.45,21.61,551.54,2388.23,9106.82,48.2,519.91,2388.18,8.5117,396,38.35,23.0653 +79,199,-0.0023,-0.0004,643.57,1598.35,1436.93,21.61,551.0,2388.26,9095.97,48.2,519.62,2388.21,8.5273,397,38.4,23.1076 +83,10,0.0007,-0.0001,641.9,1583.41,1400.16,21.61,554.89,2387.97,9056.86,47.26,522.64,2388.01,8.415,389,39.06,23.457 +83,11,-0.0021,-0.0004,642.06,1577.5,1390.48,21.61,554.9,2388.03,9057.84,47.21,522.97,2387.95,8.4285,389,39.0,23.3848 +83,12,0.0016,-0.0002,641.44,1586.47,1402.08,21.6,555.43,2388.0,9059.03,47.23,522.71,2388.0,8.3646,391,38.91,23.4495 +83,13,-0.0001,0.0003,641.59,1585.37,1400.84,21.61,554.47,2387.97,9062.9,47.16,522.5,2387.98,8.3705,390,39.19,23.4149 +83,14,0.0019,-0.0003,641.48,1579.72,1399.07,21.6,554.98,2388.02,9052.32,47.35,522.51,2388.01,8.3918,392,39.07,23.4627 +83,15,0.002,0.0001,642.28,1579.22,1394.18,21.6,554.8,2387.97,9054.15,47.15,522.2,2387.96,8.3812,392,39.18,23.4554 +83,16,-0.0022,-0.0001,642.15,1586.81,1396.95,21.6,554.0,2388.0,9052.07,47.14,522.28,2387.96,8.3677,391,39.06,23.3728 +83,17,-0.0001,0.0001,641.68,1586.2,1402.79,21.61,554.54,2388.03,9056.2,47.2,522.77,2388.0,8.3667,392,39.06,23.38 +83,18,-0.0016,-0.0005,641.71,1579.52,1392.34,21.61,554.82,2387.99,9055.04,47.04,522.14,2388.02,8.3917,392,39.22,23.3965 +83,19,0.0001,-0.0002,641.95,1587.74,1394.18,21.61,554.36,2388.02,9057.11,47.27,521.96,2387.96,8.4354,390,38.87,23.4891 +83,20,-0.0022,-0.0004,641.4,1576.76,1393.19,21.61,554.74,2387.99,9051.66,47.06,522.4,2387.98,8.3693,391,39.05,23.3995 +83,21,-0.0,-0.0003,642.02,1581.28,1402.91,21.61,554.24,2387.98,9051.41,47.17,522.51,2387.96,8.3994,391,39.25,23.4367 +83,22,0.0017,0.0001,642.23,1574.41,1393.37,21.61,555.14,2388.02,9050.46,47.14,522.48,2387.97,8.4349,391,39.05,23.3847 +83,23,0.0005,0.0002,642.51,1574.29,1393.39,21.61,554.37,2388.02,9054.8,47.12,521.89,2387.98,8.3942,392,39.05,23.4757 +83,24,-0.0013,0.0,642.0,1574.48,1396.04,21.61,554.45,2388.06,9052.53,47.21,521.98,2388.01,8.3923,392,39.14,23.3609 +83,25,-0.002,0.0001,641.67,1582.77,1395.44,21.61,554.86,2388.05,9057.96,47.19,522.75,2387.93,8.4012,390,38.98,23.4034 +83,26,-0.0021,-0.0001,642.4,1588.21,1396.89,21.61,555.04,2387.96,9055.87,46.96,522.71,2388.0,8.3905,392,38.89,23.4299 +83,27,-0.0004,0.0001,642.42,1585.72,1394.2,21.61,554.73,2387.96,9056.31,47.22,522.37,2387.98,8.3826,392,39.06,23.4823 +83,28,-0.0011,0.0004,641.89,1579.42,1390.05,21.61,554.89,2387.95,9052.98,47.3,522.22,2387.97,8.3948,391,38.99,23.3742 +83,29,-0.0049,-0.0005,641.44,1583.51,1391.57,21.61,554.38,2388.02,9054.88,47.23,522.19,2388.0,8.3759,392,38.95,23.4044 +83,30,0.0022,0.0003,642.66,1581.19,1396.1,21.61,554.3,2388.01,9057.6,47.19,522.66,2387.97,8.3877,391,39.08,23.4738 +83,31,0.0004,-0.0,642.08,1588.61,1404.23,21.61,555.42,2388.02,9061.33,47.15,522.03,2388.02,8.3838,392,39.02,23.4852 +83,32,0.0022,-0.0001,641.85,1581.98,1395.81,21.61,554.53,2387.97,9060.29,47.17,522.63,2388.0,8.3695,393,38.96,23.3222 +83,33,0.0012,-0.0001,642.09,1588.28,1394.41,21.61,554.19,2388.04,9055.49,47.0,522.3,2388.04,8.409,391,38.98,23.5983 +83,34,-0.0007,-0.0,642.34,1582.52,1395.08,21.61,555.06,2387.98,9061.08,47.18,522.36,2388.02,8.4052,391,39.2,23.3595 +83,35,-0.0038,0.0001,641.85,1579.33,1403.7,21.61,554.68,2388.0,9050.57,47.19,522.24,2388.03,8.3686,392,39.0,23.589 +83,36,0.0039,-0.0004,642.08,1585.29,1404.18,21.61,554.8,2388.01,9056.88,47.03,522.06,2388.03,8.3871,394,39.09,23.4358 +83,37,-0.0021,-0.0001,642.07,1586.19,1387.57,21.6,554.73,2388.02,9056.23,47.19,522.51,2387.98,8.4121,392,39.08,23.4848 +83,38,0.0014,-0.0005,641.96,1580.04,1398.55,21.61,554.29,2387.98,9064.48,47.2,522.57,2388.03,8.3755,391,38.84,23.4304 +83,39,-0.0013,-0.0001,642.37,1582.58,1392.91,21.61,555.03,2388.0,9061.78,47.08,522.6,2387.98,8.4115,393,38.98,23.3607 +83,40,-0.0054,-0.0002,642.49,1586.32,1399.36,21.61,554.43,2387.97,9056.4,47.17,522.22,2388.01,8.365,391,39.24,23.5138 +83,41,-0.0026,-0.0002,641.99,1583.08,1399.77,21.61,554.77,2388.01,9052.81,47.22,522.19,2388.02,8.3764,393,39.11,23.3739 +83,42,0.0001,-0.0002,641.93,1583.14,1389.57,21.61,554.67,2387.97,9057.99,47.22,522.29,2387.98,8.3904,390,39.08,23.3547 +83,43,-0.0007,0.0,641.53,1579.94,1401.71,21.61,554.6,2387.96,9053.36,46.94,522.14,2388.01,8.3782,392,39.16,23.4345 +83,44,0.0009,-0.0002,641.67,1577.62,1398.59,21.61,555.28,2387.98,9061.9,47.14,522.79,2387.96,8.3839,391,38.93,23.4667 +83,45,0.0009,-0.0002,642.5,1587.19,1395.09,21.61,554.34,2387.95,9056.12,47.3,522.44,2388.01,8.377,393,39.07,23.4351 +83,46,-0.0036,-0.0002,641.93,1582.5,1395.53,21.61,554.79,2387.97,9059.73,47.24,522.78,2387.97,8.3772,392,38.97,23.3752 +83,47,-0.0034,-0.0003,642.18,1584.91,1398.54,21.61,554.36,2388.01,9058.53,47.21,522.5,2387.98,8.4357,392,39.04,23.3992 +83,48,-0.001,0.0004,642.25,1585.17,1397.54,21.61,554.74,2388.02,9054.83,47.22,521.97,2387.96,8.3992,391,38.92,23.4389 +83,49,-0.0012,0.0002,642.19,1582.04,1391.8,21.61,554.22,2387.99,9059.91,47.16,522.35,2387.97,8.3358,393,39.06,23.5087 +83,50,-0.0042,-0.0004,641.72,1574.96,1385.75,21.61,555.05,2387.99,9055.7,47.16,522.59,2387.98,8.3635,392,39.25,23.5316 +83,51,-0.0026,0.0001,641.7,1594.67,1404.76,21.6,554.24,2387.99,9065.89,47.42,522.22,2388.0,8.3682,392,39.15,23.4456 +83,52,0.0016,-0.0005,641.94,1580.01,1392.51,21.61,554.95,2387.94,9058.29,47.04,522.34,2388.01,8.395,391,39.1,23.4812 +83,53,-0.0007,-0.0001,641.58,1583.06,1398.35,21.61,553.93,2388.0,9061.29,47.24,522.59,2387.93,8.4019,391,39.27,23.568 +83,54,0.0003,0.0002,641.78,1585.71,1401.01,21.61,555.61,2388.01,9058.28,47.04,522.14,2388.01,8.3638,392,39.16,23.3596 +83,55,0.0013,0.0002,642.04,1586.25,1403.62,21.61,555.16,2388.03,9046.49,47.23,522.2,2388.0,8.3972,391,38.86,23.4464 +83,56,-0.0041,-0.0002,642.11,1589.2,1392.13,21.61,554.53,2388.0,9053.15,47.05,521.9,2388.0,8.3725,392,39.14,23.3578 +83,57,0.0021,-0.0002,642.27,1578.93,1397.44,21.61,554.08,2388.0,9051.83,47.33,522.64,2388.02,8.3954,391,39.15,23.3916 +83,58,-0.0009,-0.0,642.88,1583.75,1401.54,21.61,554.8,2388.0,9053.97,47.02,523.1,2387.99,8.383,392,39.06,23.373 +83,59,-0.0045,-0.0003,642.9,1588.17,1401.25,21.61,554.63,2388.06,9055.86,47.16,522.54,2388.03,8.3967,390,39.14,23.57 +83,60,-0.0018,0.0001,642.12,1583.78,1391.6,21.61,553.69,2387.97,9058.75,46.99,522.5,2388.0,8.404,392,39.13,23.343 +83,61,-0.0002,-0.0001,642.0,1584.32,1398.63,21.61,554.7,2388.0,9053.82,47.33,522.16,2387.97,8.3777,391,39.01,23.3902 +83,62,-0.0001,0.0005,642.4,1579.6,1399.79,21.61,554.61,2387.99,9056.63,47.28,522.36,2387.99,8.419,390,39.02,23.4534 +83,63,-0.0,0.0001,642.05,1580.13,1398.63,21.61,554.9,2388.02,9049.92,47.13,522.79,2388.04,8.4112,391,39.07,23.2978 +83,64,0.0006,-0.0,642.17,1585.25,1400.82,21.61,554.36,2387.99,9052.07,47.06,522.44,2388.02,8.4182,390,39.0,23.4278 +83,65,0.0002,-0.0005,642.17,1589.25,1403.86,21.61,554.26,2387.99,9057.82,46.98,522.26,2387.98,8.3678,392,38.97,23.509 +83,66,0.0034,-0.0,642.04,1585.17,1400.96,21.61,554.76,2388.04,9057.74,47.01,522.71,2387.93,8.3699,391,39.04,23.5411 +83,67,0.0032,0.0001,642.34,1586.44,1391.0,21.61,554.21,2387.99,9059.87,47.12,522.37,2388.01,8.4272,392,38.88,23.5438 +83,68,-0.0002,0.0004,642.21,1585.09,1406.37,21.6,554.73,2388.06,9058.64,47.14,522.6,2387.99,8.3898,392,38.95,23.4516 +83,69,-0.0016,-0.0001,641.7,1588.53,1399.53,21.61,554.48,2387.98,9054.29,47.15,522.46,2388.01,8.4053,393,39.09,23.4635 +83,70,0.0014,-0.0002,641.79,1580.23,1401.46,21.61,554.09,2388.02,9057.11,47.24,522.3,2388.02,8.3963,391,39.08,23.3959 +83,71,0.0006,0.0003,642.33,1581.85,1396.95,21.61,554.82,2388.02,9053.58,47.13,522.33,2388.0,8.4167,390,39.02,23.3773 +83,72,-0.0017,0.0001,641.86,1589.41,1399.05,21.61,554.46,2388.01,9048.72,47.23,522.36,2387.98,8.3793,392,38.88,23.3688 +83,73,0.0019,-0.0002,642.32,1573.82,1396.44,21.61,554.18,2388.0,9062.38,47.14,522.55,2388.05,8.3865,392,39.04,23.4521 +83,74,-0.0008,0.0001,642.29,1581.43,1394.97,21.61,554.28,2388.02,9055.04,47.13,522.49,2388.0,8.3915,392,39.15,23.3728 +83,75,0.0012,0.0001,641.97,1580.89,1405.61,21.61,554.39,2388.01,9065.72,47.25,522.64,2388.07,8.4434,393,38.93,23.4276 +83,76,-0.0001,0.0002,641.82,1579.26,1405.68,21.61,554.82,2388.04,9055.91,47.19,522.2,2388.0,8.412,391,38.86,23.4263 +83,77,-0.0019,0.0002,641.83,1583.73,1401.13,21.61,554.81,2388.01,9053.4,47.09,522.24,2388.06,8.3813,391,39.12,23.3556 +83,78,-0.0012,0.0004,641.99,1581.62,1398.8,21.61,554.72,2387.98,9050.51,47.21,522.4,2388.01,8.3901,391,38.98,23.4213 +83,79,0.0017,-0.0,642.23,1583.46,1398.63,21.61,554.85,2388.01,9056.29,47.02,523.35,2388.03,8.4212,392,39.0,23.4195 +83,80,-0.0005,0.0004,642.2,1586.95,1399.96,21.61,554.64,2387.96,9048.07,47.18,522.68,2388.03,8.4271,392,39.11,23.4543 +83,81,0.0002,-0.0,642.45,1580.7,1394.18,21.61,554.24,2387.99,9049.22,47.23,522.44,2387.98,8.3979,392,39.05,23.5169 +83,82,0.0017,0.0003,642.2,1583.65,1397.34,21.61,555.22,2388.03,9060.7,47.19,522.22,2388.02,8.4391,392,39.19,23.3999 +83,83,0.0021,0.0003,641.8,1580.98,1403.28,21.61,554.66,2388.07,9058.58,47.22,522.55,2388.05,8.4029,391,39.01,23.4903 +83,84,-0.0052,-0.0004,642.63,1580.92,1398.66,21.61,553.91,2387.95,9059.87,47.07,522.42,2388.03,8.4331,390,38.84,23.3871 +83,85,-0.005,-0.0002,642.21,1580.18,1393.68,21.61,554.94,2388.02,9060.01,47.23,523.14,2388.04,8.4168,392,38.92,23.404 +83,86,-0.0087,-0.0001,642.5,1581.47,1398.62,21.61,553.98,2388.08,9058.43,47.29,522.58,2388.04,8.4162,391,39.13,23.4474 +83,87,0.0023,0.0004,642.24,1584.41,1395.95,21.61,555.2,2388.03,9058.8,47.08,522.48,2388.05,8.4106,393,39.0,23.4547 +83,88,-0.0011,-0.0001,641.48,1589.91,1397.3,21.61,554.94,2387.98,9058.09,47.17,522.45,2387.99,8.4053,393,39.2,23.3896 +83,89,0.0026,0.0,642.4,1584.59,1391.17,21.61,554.65,2388.02,9059.4,46.99,522.5,2387.95,8.4247,391,38.96,23.3683 +83,90,-0.0001,-0.0002,641.81,1587.4,1389.61,21.6,554.02,2388.02,9061.59,47.17,521.98,2388.04,8.4267,391,39.04,23.404 +83,91,-0.0013,0.0002,641.96,1576.72,1402.93,21.6,553.73,2388.04,9058.51,47.1,522.24,2388.0,8.4156,392,39.11,23.4551 +83,92,-0.0019,0.0003,642.1,1588.12,1404.8,21.61,554.39,2388.0,9055.51,47.14,522.14,2388.07,8.3919,391,38.95,23.4562 +83,93,-0.0055,0.0003,642.19,1581.37,1396.29,21.61,554.49,2387.99,9052.16,47.05,522.58,2388.04,8.4094,390,38.95,23.3471 +83,94,-0.0031,-0.0001,642.23,1588.32,1393.16,21.6,554.22,2388.04,9048.25,47.29,522.19,2388.03,8.4011,392,38.96,23.4008 +83,95,0.0049,0.0004,642.66,1582.4,1395.74,21.61,554.64,2387.99,9055.51,47.18,521.97,2388.05,8.3707,390,39.03,23.3353 +83,96,-0.0026,-0.0003,642.09,1580.45,1394.44,21.61,554.26,2387.97,9061.83,47.24,522.14,2387.96,8.3875,393,38.98,23.4204 +83,97,-0.0009,0.0003,642.55,1584.9,1393.5,21.6,554.5,2388.03,9058.39,47.17,522.43,2388.01,8.4124,393,38.82,23.4637 +83,98,0.0006,-0.0004,642.38,1587.34,1396.74,21.61,554.19,2387.97,9050.81,47.27,522.42,2388.01,8.3954,391,38.92,23.4531 +83,99,0.0011,-0.0002,641.89,1579.71,1390.67,21.61,554.24,2387.99,9058.4,47.21,523.25,2387.99,8.4141,391,39.01,23.4622 +83,100,-0.0013,-0.0004,641.71,1587.59,1397.27,21.61,555.47,2387.99,9059.12,47.16,522.23,2387.98,8.3892,391,38.83,23.4803 +83,101,-0.0007,-0.0001,642.17,1576.74,1396.61,21.61,554.53,2388.02,9058.74,47.13,522.34,2387.98,8.3603,390,38.95,23.3287 +83,102,-0.0002,0.0004,642.27,1578.39,1402.63,21.61,553.86,2388.02,9063.44,47.33,522.36,2388.03,8.4233,393,38.97,23.5096 +83,103,-0.0001,0.0003,642.09,1588.43,1399.05,21.61,554.0,2388.01,9048.16,47.23,522.26,2387.99,8.4641,392,39.01,23.4173 +83,104,0.0027,-0.0003,641.69,1582.17,1396.24,21.61,554.05,2388.01,9048.77,47.27,522.01,2388.02,8.4052,391,39.14,23.4204 +83,105,0.0008,0.0004,641.71,1586.15,1396.08,21.61,554.65,2388.04,9058.9,47.24,522.24,2388.04,8.3937,393,38.87,23.5206 +83,106,-0.0015,-0.0003,642.21,1580.32,1399.22,21.61,555.27,2388.03,9055.07,47.21,522.62,2388.02,8.3904,391,39.04,23.5429 +83,107,-0.0012,-0.0004,642.23,1584.57,1397.36,21.61,554.64,2387.99,9053.56,47.14,522.31,2388.01,8.3913,393,39.13,23.3586 +83,108,-0.001,0.0005,642.46,1586.17,1395.52,21.61,554.29,2388.01,9064.02,47.28,522.11,2388.07,8.3885,392,38.98,23.4238 +83,109,0.0017,0.0005,642.21,1579.08,1405.52,21.61,554.0,2388.02,9054.33,47.17,522.36,2388.03,8.4078,392,39.11,23.3178 +83,110,0.002,0.0001,642.03,1584.97,1398.8,21.61,554.33,2388.05,9054.02,47.16,522.27,2388.04,8.4099,391,38.82,23.4753 +83,111,-0.0007,0.0004,642.68,1585.88,1398.33,21.61,554.89,2387.99,9058.74,47.22,521.9,2388.02,8.4225,391,38.96,23.4291 +83,112,-0.0016,0.0004,642.1,1586.79,1397.48,21.61,553.59,2388.0,9051.8,47.29,522.71,2388.02,8.3792,391,39.01,23.4162 +83,113,0.0021,0.0004,642.23,1590.73,1400.2,21.61,553.91,2388.07,9061.09,47.3,522.55,2388.09,8.3896,392,39.11,23.3666 +83,114,0.0003,0.0005,642.53,1583.99,1404.63,21.61,554.07,2388.04,9058.62,47.23,522.23,2388.02,8.404,392,39.12,23.4761 +83,115,0.0016,-0.0005,642.02,1586.69,1391.32,21.61,555.03,2388.01,9052.95,47.25,522.14,2388.01,8.41,391,38.92,23.4171 +83,116,-0.0038,0.0001,642.09,1582.97,1402.48,21.61,554.5,2388.07,9049.61,47.29,522.7,2388.09,8.408,391,39.11,23.4981 +83,117,-0.0004,-0.0001,641.93,1582.2,1400.07,21.61,555.3,2387.97,9055.58,47.22,521.54,2388.06,8.3721,392,38.82,23.4648 +83,118,-0.0004,-0.0001,642.44,1588.37,1400.4,21.61,553.84,2388.05,9056.83,47.28,522.3,2388.02,8.4214,392,38.73,23.4083 +83,119,0.0037,-0.0,642.6,1587.46,1404.58,21.61,554.24,2388.02,9057.79,47.17,522.19,2387.99,8.3813,390,38.84,23.4095 +83,120,0.0026,-0.0005,642.53,1582.61,1398.25,21.6,554.34,2388.02,9059.52,47.03,522.05,2388.0,8.4062,391,39.0,23.3931 +83,121,0.0007,0.0002,641.92,1581.7,1398.31,21.61,554.13,2388.04,9052.34,47.19,521.81,2387.99,8.4206,392,38.91,23.5486 +83,122,-0.0005,0.0001,642.21,1586.89,1402.74,21.61,554.28,2388.0,9058.05,47.18,522.12,2388.08,8.3661,392,39.17,23.3629 +83,123,-0.0018,0.0002,642.31,1580.94,1404.1,21.61,554.77,2388.04,9057.58,47.26,522.15,2387.98,8.4106,392,38.83,23.4446 +83,124,0.0037,-0.0002,642.62,1585.86,1408.17,21.61,554.55,2388.0,9055.36,47.38,522.63,2388.02,8.4078,391,38.89,23.3104 +83,125,0.0017,-0.0003,641.7,1583.17,1400.51,21.61,554.99,2387.98,9060.36,47.3,522.67,2388.02,8.3791,393,38.98,23.37 +83,126,-0.0001,0.0001,642.36,1586.63,1398.19,21.61,554.98,2388.05,9054.95,47.08,522.1,2388.08,8.4049,390,39.09,23.4135 +83,127,0.0025,-0.0002,642.12,1583.01,1401.14,21.61,554.68,2387.96,9057.52,47.1,521.83,2387.98,8.4024,390,38.89,23.3758 +83,128,-0.0034,0.0001,641.85,1576.1,1394.97,21.61,553.95,2388.03,9064.5,47.17,522.0,2388.05,8.4235,393,38.85,23.2669 +83,129,-0.0031,0.0001,642.48,1581.43,1404.65,21.61,553.87,2388.02,9051.11,47.13,522.36,2388.04,8.4088,390,38.93,23.4364 +83,130,-0.002,0.0001,641.72,1586.5,1395.41,21.61,553.84,2388.08,9055.54,47.25,522.83,2388.03,8.3911,391,39.01,23.4755 +83,131,-0.0005,0.0004,642.08,1582.35,1395.93,21.61,554.66,2387.95,9055.73,47.25,521.74,2388.0,8.4099,391,38.97,23.4223 +83,132,-0.0002,-0.0001,642.25,1587.74,1394.63,21.61,553.49,2388.01,9060.94,47.24,521.79,2388.03,8.4048,392,39.01,23.3658 +83,133,0.0026,0.0001,642.67,1584.84,1399.88,21.61,554.64,2388.02,9056.63,47.48,522.15,2388.04,8.4061,392,39.12,23.4267 +83,134,-0.0001,0.0002,642.28,1585.75,1396.12,21.61,553.8,2388.04,9059.75,47.22,521.97,2388.02,8.3899,391,39.16,23.4419 +83,135,0.0008,0.0001,641.58,1587.71,1397.86,21.61,553.96,2388.06,9054.08,47.51,521.67,2387.92,8.3977,391,39.11,23.383 +83,136,-0.0001,-0.0003,642.37,1588.45,1401.46,21.61,554.7,2388.02,9063.7,47.23,522.39,2387.97,8.3878,391,38.84,23.2998 +83,137,0.0017,0.0003,641.67,1586.44,1400.9,21.61,554.4,2388.0,9055.84,47.1,522.11,2388.04,8.384,391,38.96,23.3519 +83,138,-0.0005,0.0003,642.49,1588.15,1393.44,21.61,554.01,2388.03,9060.46,47.33,522.45,2388.05,8.3748,392,39.01,23.4427 +83,139,0.0022,-0.0001,642.32,1591.07,1397.3,21.6,553.74,2388.03,9056.39,47.21,522.18,2388.03,8.4127,392,38.97,23.4659 +83,140,0.0047,0.0003,642.33,1585.08,1396.53,21.61,554.51,2388.0,9063.34,47.14,522.5,2388.03,8.4237,391,39.04,23.3336 +83,141,-0.0012,0.0,641.83,1589.92,1404.78,21.61,554.09,2388.02,9060.58,47.14,522.09,2388.01,8.4253,391,39.11,23.3515 +83,142,-0.0053,-0.0002,642.17,1587.12,1399.54,21.61,554.21,2388.04,9053.81,47.26,521.86,2388.02,8.3864,392,39.1,23.3653 +83,143,0.0029,-0.0002,642.17,1579.29,1398.92,21.61,553.93,2388.02,9057.73,47.33,522.33,2388.01,8.3954,391,38.87,23.357 +83,144,-0.0037,0.0003,642.44,1589.49,1400.72,21.6,554.98,2388.06,9055.44,47.42,522.22,2388.04,8.4312,393,39.02,23.3301 +83,145,0.0018,-0.0004,642.14,1588.77,1398.53,21.61,553.88,2388.03,9058.95,47.19,522.27,2388.1,8.4225,393,39.01,23.4153 +83,146,-0.0007,-0.0004,642.14,1587.43,1399.9,21.61,554.09,2388.08,9058.44,47.34,522.05,2388.02,8.432,391,39.0,23.32 +83,147,0.0011,-0.0001,642.32,1582.52,1404.21,21.61,554.67,2388.06,9059.91,47.29,521.52,2388.08,8.3978,393,38.92,23.3756 +83,148,0.0017,-0.0001,642.17,1592.12,1397.93,21.61,553.62,2388.02,9061.31,47.34,521.95,2388.06,8.3942,393,38.95,23.3464 +83,149,-0.0007,-0.0003,642.55,1582.62,1402.31,21.61,553.42,2388.05,9063.8,47.43,522.01,2388.05,8.3751,394,38.9,23.3295 +83,150,0.002,-0.0004,642.23,1585.43,1399.39,21.61,554.33,2388.08,9053.04,47.28,522.39,2388.02,8.4442,392,39.14,23.3602 +83,151,-0.0004,-0.0003,642.2,1587.7,1400.11,21.61,554.14,2387.97,9063.12,47.3,522.34,2388.02,8.4319,391,39.07,23.384 +83,152,0.0013,-0.0,641.88,1579.59,1405.14,21.61,553.92,2388.07,9058.28,47.41,522.7,2388.01,8.4233,393,39.14,23.4057 +83,153,0.0003,0.0003,642.08,1582.91,1393.63,21.61,554.34,2388.02,9057.38,47.28,522.27,2388.03,8.4129,391,39.02,23.3652 +83,154,-0.0011,0.0005,642.51,1588.42,1397.16,21.61,553.69,2388.03,9055.72,47.23,522.19,2387.96,8.4033,390,39.09,23.3369 +83,155,0.0,0.0,641.87,1583.8,1402.65,21.61,554.38,2388.05,9052.21,47.38,521.62,2388.06,8.4164,390,38.95,23.4119 +83,156,0.0004,-0.0002,642.34,1586.62,1401.82,21.61,554.13,2388.06,9054.55,47.22,522.24,2388.03,8.4081,392,39.08,23.4485 +83,157,0.0018,0.0,642.36,1593.83,1399.63,21.61,554.55,2388.01,9050.53,47.22,522.18,2388.03,8.3973,393,39.01,23.3671 +83,158,0.0001,-0.0,642.37,1588.28,1407.92,21.61,553.55,2388.07,9052.49,47.41,521.77,2388.03,8.4057,392,39.11,23.2086 +83,159,-0.0037,-0.0003,642.08,1585.52,1393.44,21.61,554.32,2388.05,9057.26,47.25,522.43,2388.05,8.4002,392,38.83,23.4265 +83,160,0.0005,0.0003,642.84,1587.29,1401.22,21.61,554.4,2388.05,9057.21,47.34,522.15,2388.06,8.3912,392,38.96,23.2955 +83,161,-0.0023,-0.0005,642.18,1596.85,1394.53,21.61,555.19,2388.01,9055.65,47.48,521.81,2388.08,8.3994,393,38.98,23.4172 +83,162,-0.0017,0.0,642.28,1586.51,1396.04,21.61,553.65,2388.1,9060.06,47.3,521.58,2388.05,8.4358,393,38.75,23.3107 +83,163,0.0013,-0.0004,642.12,1585.27,1402.86,21.61,554.86,2388.02,9056.04,47.31,522.54,2388.08,8.4061,394,38.91,23.453 +83,164,-0.0008,0.0001,642.16,1585.9,1399.76,21.61,554.19,2388.05,9059.26,47.38,521.66,2388.07,8.3857,391,39.07,23.2942 +83,165,-0.0021,-0.0003,641.74,1584.24,1406.18,21.61,554.24,2388.05,9052.13,47.43,522.57,2388.09,8.4103,392,39.01,23.4649 +83,166,-0.0032,0.0,642.32,1586.76,1400.81,21.61,554.23,2388.06,9058.23,47.28,521.24,2388.04,8.4373,392,38.83,23.3894 +83,167,0.001,0.0003,642.26,1591.35,1406.62,21.61,554.29,2388.09,9063.69,47.34,522.29,2388.0,8.4231,391,38.96,23.2121 +83,168,0.0002,0.0003,642.48,1592.89,1400.81,21.61,554.76,2388.04,9063.22,47.17,521.91,2388.0,8.3709,393,38.94,23.3862 +83,169,-0.0001,0.0,642.18,1588.6,1401.53,21.61,554.2,2388.0,9056.6,47.47,522.13,2388.05,8.4517,392,39.09,23.4442 +83,170,-0.004,-0.0,642.57,1583.2,1404.53,21.6,554.13,2388.03,9059.84,47.28,521.83,2388.05,8.4207,392,39.02,23.2639 +83,171,-0.0009,-0.0001,642.09,1581.87,1403.84,21.61,554.0,2388.04,9061.89,47.45,521.84,2388.01,8.4072,392,38.86,23.2952 +83,172,-0.0023,0.0002,642.53,1587.38,1399.88,21.61,554.01,2388.05,9057.41,47.2,521.73,2388.03,8.4215,392,38.79,23.3982 +83,173,0.0001,0.0004,642.62,1584.28,1401.09,21.61,554.16,2388.03,9058.43,47.17,521.46,2388.04,8.4505,391,39.04,23.5393 +83,174,-0.0021,-0.0001,642.69,1585.92,1409.61,21.61,553.75,2388.08,9062.91,47.53,522.07,2388.05,8.4559,391,38.95,23.2932 +83,175,0.0007,0.0,642.51,1584.15,1396.11,21.61,554.02,2388.04,9058.96,47.37,522.32,2388.1,8.4458,393,38.96,23.3541 +83,176,-0.0012,0.0001,641.84,1581.93,1400.65,21.61,554.24,2388.06,9056.6,47.57,522.06,2388.06,8.4666,391,38.98,23.4154 +83,177,0.0017,0.0003,642.06,1586.22,1401.65,21.61,554.41,2388.05,9056.09,47.45,521.76,2388.06,8.4143,392,38.95,23.3012 +83,178,0.0021,-0.0003,642.64,1588.6,1402.85,21.61,554.3,2388.02,9062.13,47.33,522.05,2388.03,8.3804,392,38.92,23.3809 +83,179,0.001,-0.0005,642.75,1591.18,1399.71,21.61,553.83,2388.04,9052.75,47.51,521.63,2388.08,8.418,392,39.08,23.2689 +83,180,0.0013,0.0004,641.94,1583.01,1402.36,21.61,553.77,2388.07,9054.55,47.21,522.28,2388.06,8.4506,392,39.15,23.3336 +83,181,-0.0012,0.0002,642.18,1593.26,1397.23,21.61,554.36,2388.04,9054.56,47.37,521.92,2388.04,8.4061,393,38.94,23.5484 +83,182,-0.0024,0.0001,642.9,1587.88,1401.22,21.61,554.35,2388.07,9057.41,47.38,521.93,2388.09,8.3919,392,39.14,23.3631 +83,183,0.0023,-0.0001,642.46,1589.73,1397.59,21.61,553.57,2388.09,9057.17,47.36,521.5,2388.04,8.4144,392,38.8,23.2816 +83,184,0.0002,0.0004,642.47,1581.48,1403.17,21.61,554.34,2388.13,9063.52,47.68,521.88,2388.03,8.4259,392,38.89,23.3509 +83,185,-0.0007,-0.0003,642.21,1589.91,1404.65,21.61,553.2,2388.07,9052.52,47.3,521.63,2388.06,8.4133,392,38.9,23.3119 +83,186,-0.0015,0.0004,642.37,1585.07,1414.46,21.61,553.26,2388.12,9060.53,47.38,521.36,2388.12,8.4447,393,38.97,23.4297 +83,187,-0.0008,0.0003,642.63,1585.03,1395.38,21.61,554.51,2388.08,9060.26,47.39,521.86,2388.12,8.4159,393,38.91,23.2645 +83,188,-0.0019,-0.0003,642.68,1589.69,1404.48,21.61,553.64,2388.08,9053.07,47.31,521.71,2388.05,8.4362,394,39.0,23.3991 +83,189,-0.0011,-0.0004,643.0,1587.32,1404.37,21.61,554.27,2388.0,9055.24,47.36,521.46,2388.06,8.3952,394,39.01,23.4237 +83,190,0.0001,-0.0004,642.98,1588.54,1402.27,21.61,553.39,2388.05,9057.37,47.25,521.85,2388.07,8.4009,392,38.84,23.3735 +83,191,0.001,0.0,642.27,1585.63,1404.81,21.61,553.96,2388.1,9060.12,47.55,522.31,2388.14,8.4339,393,38.77,23.3419 +83,192,-0.0024,0.0004,642.62,1584.59,1406.57,21.61,554.1,2388.09,9059.76,47.35,521.89,2388.11,8.4117,391,39.12,23.244 +83,193,-0.0005,0.0004,641.56,1589.05,1411.78,21.61,553.7,2388.13,9052.34,47.37,521.66,2388.1,8.43,392,38.91,23.1804 +83,194,-0.0006,0.0004,642.11,1591.21,1408.04,21.61,553.91,2388.09,9052.97,47.54,521.4,2388.04,8.423,393,38.89,23.3544 +83,195,-0.0043,-0.0004,642.29,1591.45,1400.58,21.61,553.38,2388.02,9059.37,47.45,521.89,2388.03,8.4289,392,38.85,23.3454 +83,196,0.0005,-0.0001,642.76,1585.62,1404.78,21.61,553.77,2388.14,9062.04,47.62,521.97,2388.05,8.4369,391,38.95,23.2698 +83,197,-0.0029,-0.0002,642.18,1583.13,1411.3,21.61,554.06,2388.01,9054.89,47.44,522.0,2388.05,8.4185,391,38.95,23.3195 +83,198,0.0001,0.0002,642.57,1585.51,1403.25,21.61,553.13,2388.1,9050.17,47.36,521.62,2388.07,8.429,392,38.82,23.3514 +83,199,-0.003,-0.0005,643.01,1593.48,1399.9,21.61,552.91,2388.1,9054.52,47.52,521.75,2388.11,8.4228,393,38.63,23.352 +83,200,-0.0007,-0.0002,642.67,1588.83,1394.23,21.61,553.23,2388.1,9059.73,47.24,521.35,2388.05,8.4739,392,38.91,23.2696 +83,201,-0.0013,-0.0001,641.8,1591.23,1401.44,21.61,552.89,2388.09,9050.47,47.46,521.88,2388.13,8.4547,392,38.93,23.3005 +83,202,-0.0018,0.0003,642.21,1586.61,1406.43,21.61,554.52,2388.08,9052.5,47.42,521.59,2388.07,8.441,394,38.86,23.4098 +83,203,-0.0006,-0.0002,642.42,1587.92,1405.88,21.61,553.84,2388.12,9062.61,47.4,521.26,2388.13,8.4444,394,38.69,23.3668 +83,204,0.0007,-0.0002,642.87,1592.1,1402.67,21.61,553.58,2388.07,9053.84,47.37,521.73,2388.04,8.3991,393,38.91,23.2596 +83,205,-0.0013,-0.0001,643.2,1585.91,1412.27,21.61,553.93,2388.04,9056.68,47.44,522.26,2388.07,8.4049,393,38.86,23.3114 +83,206,-0.0021,0.0002,642.67,1585.84,1410.01,21.61,553.95,2388.08,9065.7,47.42,521.77,2388.07,8.437,393,38.82,23.3601 +83,207,-0.0023,-0.0003,642.2,1586.25,1404.23,21.61,553.78,2388.14,9059.46,47.71,521.76,2388.04,8.4106,394,38.83,23.3207 +83,208,-0.0026,0.0003,642.3,1591.92,1404.74,21.61,553.95,2388.02,9059.43,47.51,521.54,2388.07,8.4031,390,38.65,23.286 +83,209,-0.002,-0.0004,642.64,1588.53,1400.49,21.61,553.27,2388.04,9059.05,47.27,521.82,2388.07,8.4196,392,38.88,23.2857 +83,210,0.004,0.0002,642.39,1590.61,1408.78,21.61,553.24,2388.08,9052.82,47.51,520.91,2388.07,8.412,394,38.92,23.3263 +83,211,-0.0019,-0.0003,642.95,1583.75,1403.08,21.61,553.62,2388.15,9055.69,47.61,521.19,2388.08,8.44,393,38.89,23.3786 +83,212,-0.0037,0.0003,642.54,1591.63,1409.87,21.61,553.19,2388.0,9054.33,47.42,520.85,2388.11,8.4431,393,38.82,23.3647 +83,213,0.0028,-0.0,642.59,1588.6,1411.01,21.61,554.14,2388.09,9061.22,47.46,521.58,2388.09,8.441,393,38.92,23.2294 +83,214,-0.0004,0.0004,642.79,1590.52,1406.04,21.61,553.27,2388.14,9055.0,47.57,521.52,2388.06,8.4271,393,38.81,23.2246 +83,215,-0.0,-0.0004,642.74,1584.64,1406.42,21.61,553.97,2388.11,9055.6,47.48,521.57,2388.08,8.4343,391,38.7,23.2765 +83,216,-0.0023,0.0004,642.03,1589.73,1408.34,21.61,554.23,2388.09,9053.29,47.5,521.75,2388.06,8.4268,394,38.67,23.2581 +83,217,0.0047,-0.0004,643.09,1588.57,1409.99,21.61,553.76,2388.09,9061.54,47.47,521.68,2388.07,8.4316,393,38.86,23.2716 +83,218,-0.0041,0.0003,642.54,1590.61,1401.42,21.61,553.53,2388.09,9056.57,47.44,521.23,2388.11,8.3944,394,38.62,23.3011 +83,219,-0.0005,-0.0001,642.01,1592.91,1406.77,21.61,553.15,2388.13,9052.51,47.46,521.36,2388.14,8.4422,393,38.96,23.3801 +83,220,-0.0031,0.0003,643.23,1598.3,1406.62,21.61,553.25,2388.11,9057.51,47.3,521.36,2388.11,8.4032,393,39.02,23.3533 +83,221,0.0029,-0.0004,642.98,1582.28,1404.24,21.61,553.49,2388.09,9050.41,47.4,521.11,2388.12,8.4216,395,38.99,23.3225 +83,222,0.0034,-0.0001,642.9,1585.79,1415.39,21.61,553.19,2388.06,9058.38,47.61,521.21,2388.11,8.4115,393,38.93,23.3222 +83,223,-0.0008,-0.0004,642.62,1590.3,1401.59,21.61,553.81,2388.05,9051.24,47.71,521.51,2388.15,8.4097,394,38.89,23.3275 +83,224,0.003,0.0002,642.96,1590.82,1413.13,21.61,553.21,2388.08,9056.09,47.49,521.55,2388.13,8.3961,393,38.8,23.2683 +83,225,-0.0005,-0.0,642.69,1593.81,1410.19,21.61,553.61,2388.07,9055.0,47.56,521.39,2388.06,8.4185,394,38.78,23.2881 +83,226,0.0036,0.0001,642.58,1586.3,1414.49,21.61,553.64,2388.08,9057.86,47.51,522.24,2388.09,8.4038,393,38.83,23.3165 +83,227,-0.0017,0.0004,643.1,1593.18,1411.67,21.61,553.18,2388.1,9057.69,47.53,521.41,2388.09,8.4392,395,38.73,23.1085 +83,228,-0.003,0.0004,642.12,1585.73,1405.89,21.61,552.85,2388.14,9055.87,47.42,520.8,2388.12,8.4483,394,38.71,23.3342 +83,229,-0.0014,-0.0002,642.05,1592.11,1407.48,21.61,553.79,2388.1,9056.1,47.48,521.57,2388.1,8.4761,394,38.79,23.2795 +83,230,-0.0,0.0001,642.58,1593.14,1412.01,21.61,552.29,2388.1,9058.39,47.69,521.06,2388.16,8.443,394,38.84,23.2512 +83,231,0.0015,-0.0005,642.69,1589.46,1404.09,21.61,553.19,2388.09,9046.78,47.52,521.26,2388.13,8.4417,395,38.74,23.2651 +83,232,-0.0029,-0.0001,643.22,1590.79,1411.45,21.61,552.48,2388.19,9052.8,47.54,521.81,2388.15,8.4122,392,38.71,23.3113 +83,233,-0.0,0.0004,642.55,1589.18,1408.6,21.61,552.99,2388.13,9054.44,47.68,522.08,2388.07,8.4467,393,38.72,23.3341 +83,234,0.0019,0.0004,642.23,1587.07,1419.57,21.61,553.09,2388.13,9058.13,47.57,521.67,2388.09,8.4415,393,38.75,23.3323 +83,235,-0.0012,-0.0003,642.67,1595.96,1410.14,21.61,553.07,2388.15,9057.31,47.43,521.0,2388.13,8.4309,394,38.9,23.2148 +83,236,-0.0008,-0.0003,642.6,1595.75,1408.62,21.61,553.14,2388.13,9055.05,47.54,520.82,2388.1,8.4136,393,38.74,23.1595 +83,237,0.0009,-0.0004,643.42,1594.41,1414.43,21.61,553.47,2388.12,9058.52,47.56,520.73,2388.14,8.4526,394,38.76,23.272 +83,238,0.0028,-0.0001,642.44,1586.61,1418.82,21.61,552.8,2388.12,9054.2,47.71,521.2,2388.14,8.482,393,38.72,23.2623 +83,239,0.0015,-0.0001,643.03,1594.39,1417.27,21.61,552.87,2388.11,9053.11,47.62,521.31,2388.15,8.4479,393,38.72,23.3108 +83,240,-0.0036,0.0002,642.9,1587.37,1408.29,21.61,553.06,2388.14,9065.01,47.89,521.09,2388.13,8.4447,393,38.83,23.2498 +83,241,0.0023,-0.0001,642.61,1595.86,1415.44,21.61,553.26,2388.17,9048.54,47.5,520.99,2388.15,8.486,395,38.7,23.2099 +83,242,-0.0024,0.0001,643.0,1596.62,1412.65,21.61,552.74,2388.11,9056.89,47.78,520.88,2388.14,8.4729,393,38.8,23.168 +83,243,-0.0029,-0.0004,642.62,1594.64,1405.53,21.61,552.99,2388.18,9052.98,47.67,521.01,2388.2,8.4258,392,38.84,23.2004 +83,244,-0.0033,-0.0003,642.94,1594.32,1411.99,21.61,553.35,2388.16,9057.77,47.68,520.71,2388.11,8.4542,393,38.61,23.3032 +83,245,0.0015,-0.0003,642.18,1590.14,1414.33,21.61,552.45,2388.14,9050.45,47.84,521.21,2388.14,8.4425,394,38.94,23.3041 +83,246,0.0031,-0.0004,642.57,1584.43,1413.15,21.61,553.78,2388.18,9055.93,47.61,520.97,2388.17,8.4893,394,38.77,23.2752 +83,247,0.0037,-0.0001,643.08,1591.8,1417.4,21.61,553.3,2388.15,9054.69,47.66,521.34,2388.15,8.493,394,38.88,23.2269 +83,248,0.0019,0.0005,642.79,1589.41,1410.24,21.61,552.17,2388.15,9059.93,47.71,520.49,2388.14,8.4509,394,38.66,23.1956 +83,249,-0.0004,0.0003,642.98,1599.1,1408.75,21.61,553.75,2388.15,9059.77,47.61,520.72,2388.15,8.4474,395,38.69,23.1802 +83,250,-0.0012,-0.0001,642.74,1594.63,1416.66,21.61,552.64,2388.17,9056.17,47.67,520.21,2388.16,8.4566,392,38.61,23.2008 +83,251,0.0014,-0.0001,643.24,1597.4,1415.47,21.61,552.61,2388.22,9057.5,47.57,521.13,2388.2,8.4225,395,38.76,23.2284 +83,252,-0.0015,-0.0004,643.2,1600.91,1407.4,21.61,552.77,2388.2,9052.25,47.83,520.48,2388.16,8.4589,395,38.79,23.2259 +83,253,0.0012,0.0002,643.08,1594.25,1425.03,21.61,552.53,2388.12,9056.79,47.77,521.2,2388.16,8.4068,395,38.6,23.2409 +83,254,-0.0005,0.0003,642.27,1591.66,1418.53,21.61,552.87,2388.15,9057.14,47.72,520.88,2388.22,8.4293,392,38.52,23.1901 +83,255,-0.0016,-0.0001,643.15,1600.46,1410.49,21.61,552.73,2388.15,9051.09,47.69,520.68,2388.17,8.4475,392,38.86,23.1718 +83,256,0.0013,-0.0001,642.46,1590.27,1420.46,21.61,553.39,2388.21,9055.29,47.78,520.57,2388.18,8.4585,394,38.71,23.294 +83,257,-0.0012,-0.0001,642.6,1591.53,1411.82,21.61,552.55,2388.18,9052.62,47.67,520.35,2388.19,8.4687,394,38.7,23.1427 +83,258,-0.0024,-0.0003,642.85,1592.27,1402.39,21.61,552.86,2388.22,9051.85,47.85,520.95,2388.15,8.4725,392,38.91,23.1503 +83,259,-0.002,-0.0003,643.08,1590.06,1411.73,21.61,552.82,2388.14,9044.84,47.71,520.48,2388.11,8.493,395,38.73,23.3026 +83,260,0.0003,0.0005,643.06,1596.95,1415.92,21.61,552.21,2388.19,9048.23,47.9,520.47,2388.15,8.4752,394,38.51,23.227 +83,261,0.0003,0.0004,643.28,1585.36,1417.11,21.61,552.31,2388.18,9046.49,47.82,520.66,2388.2,8.4895,393,38.57,23.2967 +83,262,0.0033,0.0003,644.09,1599.63,1412.92,21.61,552.19,2388.23,9043.29,47.88,520.32,2388.17,8.4756,394,38.44,23.1894 +83,263,-0.0015,0.0005,643.02,1605.83,1416.93,21.61,552.42,2388.2,9047.94,47.7,520.33,2388.24,8.4821,394,38.67,23.2962 +83,264,-0.0029,-0.0005,643.43,1593.66,1411.3,21.61,552.68,2388.23,9047.32,47.82,520.81,2388.18,8.4819,396,38.55,23.1319 +83,265,0.0011,-0.0003,643.45,1603.78,1419.9,21.61,553.03,2388.16,9059.37,47.7,520.02,2388.17,8.4812,395,38.63,23.1697 +83,266,0.0031,0.0001,642.74,1597.97,1408.83,21.61,552.31,2388.16,9051.8,47.82,520.41,2388.15,8.4912,394,38.58,23.2141 +83,267,0.0022,0.0003,642.88,1595.4,1422.7,21.61,552.12,2388.23,9048.54,47.84,519.66,2388.19,8.4766,395,38.51,23.2476 +83,268,-0.0019,0.0003,643.24,1600.49,1419.17,21.61,552.12,2388.23,9058.95,47.91,520.44,2388.17,8.5009,395,38.67,23.1737 +83,269,0.0037,0.0003,644.05,1595.74,1415.24,21.61,552.12,2388.2,9042.97,47.99,519.89,2388.23,8.5034,394,38.56,23.1288 +83,270,-0.0014,0.0003,643.72,1593.27,1418.12,21.61,552.28,2388.16,9047.25,47.89,520.39,2388.26,8.4824,394,38.62,23.1515 +83,271,-0.0008,0.0003,643.33,1598.84,1423.44,21.61,552.64,2388.23,9050.27,48.0,519.81,2388.2,8.4748,394,38.7,23.1341 +83,272,-0.0009,0.0003,643.33,1604.41,1418.05,21.61,552.72,2388.24,9051.61,47.83,520.8,2388.23,8.4946,395,38.5,23.156 +83,273,0.0026,-0.0004,643.81,1591.29,1417.28,21.61,552.06,2388.21,9051.72,47.89,520.06,2388.24,8.4961,396,38.77,23.1727 +83,274,0.0016,-0.0003,642.88,1601.29,1421.97,21.61,551.95,2388.23,9052.29,48.09,520.2,2388.23,8.5328,395,38.7,23.1729 +83,275,0.0015,-0.0004,643.54,1590.17,1424.43,21.61,551.82,2388.26,9045.75,47.94,520.47,2388.25,8.4974,396,38.67,23.1167 +83,276,0.0009,-0.0005,643.29,1593.21,1425.03,21.61,552.26,2388.24,9043.91,47.8,520.4,2388.19,8.5025,395,38.72,23.1965 +83,277,-0.0003,-0.0001,643.23,1598.32,1420.06,21.61,552.04,2388.22,9050.16,47.79,520.28,2388.17,8.4993,396,38.73,23.1497 +83,278,-0.0006,-0.0001,643.76,1603.03,1422.18,21.61,551.39,2388.24,9054.67,47.89,520.15,2388.27,8.5001,397,38.37,23.1311 +83,279,-0.0026,0.0001,642.97,1604.8,1424.05,21.61,551.85,2388.24,9047.14,48.2,519.83,2388.25,8.5145,396,38.54,23.0839 +83,280,0.0043,-0.0001,643.3,1598.65,1422.16,21.61,551.61,2388.25,9051.17,47.82,520.5,2388.26,8.5085,395,38.52,23.1953 +83,281,0.0011,-0.0003,644.06,1596.28,1424.79,21.61,551.73,2388.23,9054.66,48.01,519.63,2388.27,8.4969,394,38.45,23.0491 +83,282,-0.0005,-0.0004,643.59,1605.42,1424.63,21.61,552.41,2388.24,9051.62,48.18,519.94,2388.23,8.4798,397,38.5,23.1596 +83,283,-0.001,0.0,643.45,1604.18,1425.42,21.61,551.33,2388.25,9052.15,48.03,520.04,2388.24,8.4973,398,38.57,23.0118 +83,284,0.0014,-0.0004,643.83,1601.88,1428.94,21.61,551.48,2388.29,9051.09,48.06,519.3,2388.26,8.5557,396,38.6,23.1725 +83,285,0.002,-0.0,643.32,1598.61,1426.88,21.61,552.17,2388.24,9043.54,48.21,519.85,2388.33,8.4867,395,38.55,23.1506 +83,286,-0.0003,-0.0001,643.66,1596.57,1426.88,21.61,551.04,2388.26,9049.78,47.82,519.84,2388.27,8.5381,395,38.42,23.0767 +83,287,0.0035,-0.0003,642.95,1599.91,1436.2,21.61,551.85,2388.27,9049.91,48.17,519.72,2388.33,8.5395,395,38.64,23.126 +83,288,-0.0023,-0.0004,643.46,1592.95,1429.59,21.61,551.71,2388.25,9053.71,48.12,519.39,2388.23,8.4938,396,38.55,23.0545 +83,289,0.0007,0.0001,643.94,1603.48,1432.46,21.61,552.16,2388.26,9052.64,48.22,520.0,2388.24,8.4822,396,38.58,23.1639 +83,290,-0.0024,-0.0002,643.85,1598.4,1425.67,21.61,551.24,2388.31,9043.56,48.24,519.19,2388.32,8.5226,395,38.5,23.1088 +83,291,-0.0017,0.0001,643.79,1606.66,1428.67,21.61,551.03,2388.26,9054.02,47.99,519.37,2388.27,8.5424,396,38.4,23.0255 +83,292,-0.0003,0.0001,643.51,1600.62,1428.07,21.61,551.58,2388.25,9043.64,48.31,519.52,2388.3,8.5169,394,38.48,23.1065 +83,293,-0.0002,-0.0005,643.77,1605.59,1430.64,21.61,551.68,2388.25,9045.98,48.21,519.45,2388.31,8.5123,397,38.42,22.9926 +85,10,0.0007,-0.0004,642.59,1590.37,1405.7,21.61,553.13,2388.07,9048.57,47.32,521.66,2388.1,8.3807,393,38.86,23.2654 +85,11,0.0046,-0.0002,642.27,1584.08,1409.61,21.61,553.59,2388.1,9052.57,47.48,521.47,2388.11,8.4284,391,38.94,23.3506 +85,12,-0.0012,0.0004,642.89,1581.25,1405.2,21.61,553.92,2388.08,9050.98,47.31,521.41,2388.05,8.4347,393,38.77,23.2885 +85,13,-0.0013,0.0002,642.2,1586.6,1409.83,21.61,554.05,2388.06,9054.49,47.54,521.36,2388.06,8.4252,392,38.9,23.3357 +85,14,0.0007,0.0003,642.33,1583.61,1404.09,21.61,553.44,2388.05,9042.97,47.39,521.61,2388.09,8.3953,391,38.85,23.3549 +85,15,-0.0029,-0.0004,642.62,1589.59,1405.94,21.61,553.69,2388.09,9051.28,47.37,522.0,2388.11,8.3985,393,38.88,23.3261 +85,16,0.0004,0.0005,642.77,1582.07,1410.99,21.61,554.11,2388.05,9050.55,47.32,521.77,2388.07,8.4512,391,38.81,23.4112 +85,17,0.0004,0.0003,642.93,1590.99,1408.9,21.61,553.32,2388.12,9045.83,47.32,521.21,2388.08,8.4059,392,39.07,23.4003 +85,18,-0.0009,-0.0001,642.45,1583.27,1408.31,21.61,553.88,2388.08,9045.97,47.38,521.56,2388.06,8.3959,392,38.93,23.4061 +85,19,-0.0007,0.0001,642.56,1588.44,1403.63,21.61,553.79,2388.04,9043.28,47.3,522.08,2388.11,8.4319,393,38.99,23.2704 +85,20,0.0009,0.0003,642.45,1587.99,1406.19,21.61,553.77,2388.07,9049.52,47.22,521.37,2388.11,8.4396,393,39.08,23.3066 +85,21,-0.0012,0.0,642.22,1585.68,1406.51,21.61,553.63,2388.1,9039.79,47.39,521.6,2388.13,8.4333,392,39.0,23.2366 +85,22,0.0,0.0001,642.2,1582.56,1403.89,21.61,553.6,2388.09,9054.79,47.4,521.92,2388.07,8.4127,393,38.94,23.342 +85,23,0.0057,0.0003,642.69,1591.33,1407.79,21.61,553.71,2388.13,9043.86,47.39,521.44,2388.08,8.4387,393,38.91,23.2444 +85,24,0.0014,0.0003,642.11,1584.62,1401.73,21.61,553.8,2388.09,9046.58,47.45,521.59,2388.07,8.4057,392,38.88,23.2486 +85,25,0.0008,0.0,642.47,1585.34,1404.21,21.61,553.19,2388.05,9045.29,47.51,521.04,2388.11,8.4083,391,38.72,23.4437 +85,26,-0.0019,-0.0004,642.71,1584.58,1401.23,21.61,554.4,2388.08,9052.27,47.44,521.56,2388.06,8.4405,393,39.13,23.347 +85,27,-0.001,-0.0002,642.64,1588.68,1402.45,21.61,553.97,2388.04,9055.42,47.47,522.16,2388.13,8.3852,393,39.08,23.3735 +85,28,0.0015,-0.0002,642.4,1586.99,1403.32,21.61,554.0,2388.05,9057.27,47.37,521.67,2388.14,8.4044,393,38.79,23.3527 +85,29,0.0018,-0.0003,642.45,1583.65,1410.27,21.61,553.5,2388.14,9051.14,47.48,522.01,2388.08,8.4366,394,39.06,23.2799 +85,30,-0.0001,0.0002,642.73,1589.19,1407.82,21.61,553.21,2388.12,9042.61,47.48,521.37,2388.07,8.4122,393,38.82,23.3216 +85,31,0.0024,-0.0,642.45,1591.3,1406.62,21.61,554.27,2388.06,9055.39,47.37,522.02,2388.1,8.404,394,38.89,23.4098 +85,32,-0.0001,-0.0001,642.37,1581.62,1403.3,21.61,553.36,2388.07,9045.93,47.39,521.52,2388.09,8.4086,393,38.96,23.408 +85,33,0.0,0.0004,642.47,1591.44,1403.23,21.61,554.12,2388.09,9044.35,47.35,521.89,2388.08,8.4386,391,38.89,23.3909 +85,34,-0.0023,-0.0003,642.28,1588.51,1401.66,21.61,553.68,2388.02,9051.39,47.46,521.51,2388.06,8.4209,393,38.97,23.3551 +85,35,-0.0031,0.0004,642.67,1588.03,1404.63,21.61,553.58,2388.07,9051.62,47.53,521.83,2388.12,8.4248,391,38.88,23.2829 +85,36,-0.0021,0.0003,641.96,1585.14,1403.25,21.61,554.0,2388.12,9047.79,47.42,521.78,2388.15,8.4366,392,38.94,23.3038 +85,37,0.0018,-0.0004,642.99,1593.95,1411.28,21.61,552.49,2388.1,9048.82,47.46,522.34,2388.12,8.4327,392,38.8,23.3718 +85,38,-0.0014,0.0004,642.14,1583.88,1405.04,21.61,554.06,2388.05,9047.57,47.48,522.04,2388.1,8.4401,393,38.94,23.3578 +85,39,0.0033,-0.0003,642.57,1587.6,1402.04,21.61,554.53,2388.13,9044.3,47.4,521.73,2388.06,8.4211,392,39.01,23.3667 +85,40,-0.0044,0.0001,642.82,1592.13,1402.5,21.61,553.25,2388.13,9048.2,47.47,521.81,2388.1,8.416,393,38.77,23.3966 +85,41,-0.0028,-0.0003,642.57,1591.49,1403.02,21.61,553.83,2388.1,9049.91,47.35,521.98,2388.1,8.4392,393,38.8,23.2299 +85,42,-0.0021,-0.0003,642.45,1589.39,1399.22,21.61,553.66,2388.07,9046.73,47.33,521.38,2388.09,8.4199,391,38.74,23.3729 +85,43,-0.001,-0.0003,642.73,1584.77,1405.57,21.61,552.87,2388.08,9049.61,47.53,521.88,2388.06,8.4393,394,38.85,23.4313 +85,44,0.0008,0.0002,642.72,1588.86,1410.37,21.61,554.45,2388.03,9048.92,47.4,521.6,2388.12,8.4138,393,38.89,23.3747 +85,45,-0.0012,0.0003,642.67,1590.15,1408.48,21.61,553.62,2388.11,9052.8,47.31,521.76,2388.07,8.4402,394,39.01,23.2769 +85,46,-0.0008,0.0001,642.16,1591.45,1401.9,21.61,554.18,2388.17,9047.6,47.5,522.0,2388.09,8.4418,393,38.98,23.3411 +85,47,-0.0019,-0.0005,642.63,1584.1,1401.53,21.61,553.6,2388.12,9037.76,47.46,521.87,2388.13,8.4478,392,39.03,23.3067 +85,48,-0.0024,-0.0002,642.73,1587.05,1412.91,21.61,554.11,2388.1,9047.98,47.54,521.53,2388.07,8.4147,392,39.06,23.452 +85,49,0.0002,0.0001,642.44,1594.21,1407.72,21.61,553.94,2388.1,9052.31,47.44,521.53,2388.12,8.4278,393,38.85,23.3197 +85,50,0.0018,-0.0004,642.4,1592.68,1408.59,21.61,553.2,2388.13,9050.44,47.5,522.08,2388.08,8.4445,394,38.97,23.3855 +85,51,-0.0002,-0.0001,642.41,1584.81,1408.1,21.61,553.41,2388.13,9049.9,47.38,521.42,2388.09,8.4348,394,38.95,23.2695 +85,52,0.0004,-0.0005,642.2,1594.58,1406.78,21.61,553.19,2388.09,9048.58,47.46,521.77,2388.06,8.438,392,38.78,23.2944 +85,53,0.0027,-0.0002,642.42,1586.59,1400.61,21.61,554.76,2388.06,9041.06,47.42,521.42,2388.07,8.4335,391,38.83,23.3808 +85,54,-0.0021,-0.0002,642.2,1597.03,1407.74,21.61,553.74,2388.09,9048.2,47.31,521.17,2388.09,8.4022,394,38.99,23.1784 +85,55,-0.0028,-0.0004,642.76,1589.41,1399.76,21.61,553.76,2388.09,9046.7,47.41,520.92,2388.1,8.4167,392,38.96,23.2452 +85,56,0.0028,-0.0004,642.64,1590.52,1403.97,21.61,554.13,2388.11,9051.83,47.42,522.15,2388.1,8.4284,393,38.96,23.3748 +85,57,0.0023,-0.0002,642.69,1584.34,1401.59,21.61,553.25,2388.13,9046.98,47.27,521.3,2388.08,8.4318,393,38.87,23.1746 +85,58,-0.0043,-0.0004,642.86,1587.55,1401.53,21.61,553.61,2388.09,9044.8,47.43,522.15,2388.09,8.4583,393,38.88,23.3496 +85,59,0.0021,0.0003,642.41,1581.12,1405.76,21.61,553.85,2388.1,9050.46,47.35,522.06,2388.09,8.4333,393,39.04,23.3655 +85,60,-0.0038,-0.0005,642.13,1592.98,1398.84,21.61,553.83,2388.07,9043.36,47.37,521.27,2388.06,8.4156,391,38.91,23.2915 +85,61,-0.0008,-0.0001,642.85,1581.17,1400.56,21.61,553.36,2388.11,9053.86,47.31,521.78,2388.11,8.4412,392,38.86,23.4161 +85,62,0.0035,-0.0003,643.08,1591.1,1402.85,21.61,554.16,2388.12,9050.75,47.43,521.51,2388.08,8.4309,392,39.01,23.3259 +85,63,-0.0014,-0.0002,642.18,1592.59,1405.09,21.61,554.55,2388.11,9051.02,47.29,521.85,2388.14,8.4517,392,38.83,23.3697 +85,64,-0.0001,0.0001,642.72,1579.92,1402.52,21.61,553.56,2388.13,9049.84,47.24,521.66,2388.1,8.4743,391,38.79,23.3397 +85,65,0.0015,-0.0002,642.63,1592.43,1401.01,21.61,553.7,2388.08,9046.04,47.62,521.38,2388.05,8.4376,392,38.81,23.2808 +85,66,-0.0018,-0.0002,641.81,1591.27,1407.31,21.61,553.54,2388.11,9052.77,47.51,521.64,2388.08,8.4003,393,39.09,23.3484 +85,67,-0.0005,0.0003,642.52,1587.97,1406.84,21.61,554.14,2388.17,9046.58,47.45,522.0,2388.1,8.4413,392,38.81,23.3884 +85,68,0.0004,0.0005,642.74,1587.66,1405.33,21.61,554.18,2388.08,9053.12,47.37,522.5,2388.09,8.4061,393,38.93,23.2802 +85,69,0.0016,0.0003,642.66,1586.48,1403.06,21.61,553.16,2388.06,9049.06,47.5,521.97,2388.1,8.4128,394,38.91,23.2975 +85,70,0.001,0.0003,642.54,1587.26,1412.08,21.61,552.89,2388.13,9048.53,47.35,521.73,2388.15,8.4326,394,38.85,23.363 +85,71,0.0016,-0.0001,642.82,1592.67,1405.49,21.61,554.0,2388.13,9049.74,47.45,521.62,2388.11,8.443,392,38.86,23.3271 +85,72,0.0012,-0.0004,642.67,1590.62,1410.57,21.61,554.03,2388.13,9041.75,47.55,521.34,2388.1,8.4418,392,39.03,23.3665 +85,73,0.0023,0.0002,642.93,1581.63,1402.76,21.61,553.94,2388.06,9043.85,47.4,521.69,2388.07,8.4576,393,38.85,23.2689 +85,74,-0.0022,0.0004,642.31,1586.88,1412.5,21.61,553.87,2388.03,9047.65,47.48,521.6,2388.13,8.4119,394,39.13,23.3329 +85,75,0.0034,-0.0002,642.55,1582.42,1402.67,21.61,553.64,2388.06,9044.12,47.65,521.47,2388.05,8.4527,393,38.84,23.1912 +85,76,0.0014,0.0004,642.86,1587.6,1410.46,21.61,553.47,2388.06,9056.11,47.34,521.68,2388.15,8.4623,393,38.69,23.2664 +85,77,0.0004,-0.0002,642.22,1589.93,1411.77,21.61,553.39,2388.12,9048.62,47.44,521.4,2388.15,8.4172,393,38.81,23.3432 +85,78,-0.0023,0.0003,642.8,1584.81,1412.78,21.61,553.55,2388.14,9051.42,47.42,521.71,2388.09,8.4328,392,38.87,23.3254 +85,79,0.0017,0.0003,642.43,1586.15,1406.39,21.61,553.89,2388.18,9051.34,47.4,521.64,2388.11,8.4362,394,38.73,23.3519 +85,80,0.0022,0.0001,642.81,1586.53,1405.24,21.61,554.1,2388.07,9048.93,47.58,521.42,2388.1,8.4267,393,38.89,23.3615 +85,81,0.0014,0.0001,642.26,1582.11,1401.47,21.61,552.26,2388.11,9045.85,47.36,521.56,2388.07,8.429,392,38.87,23.3273 +85,82,-0.0013,0.0,642.08,1588.66,1409.23,21.61,553.88,2388.12,9052.14,47.47,521.76,2388.09,8.4089,393,38.97,23.3551 +85,83,0.0018,0.0005,642.83,1592.39,1406.19,21.61,553.68,2388.1,9051.29,47.4,521.67,2388.13,8.4276,392,38.67,23.4252 +85,84,-0.0002,-0.0002,642.69,1588.56,1414.89,21.61,552.39,2388.18,9052.15,47.62,522.13,2388.1,8.4713,394,38.89,23.25 +85,85,-0.0016,-0.0002,642.48,1582.32,1407.92,21.61,553.56,2388.1,9052.11,47.63,521.93,2388.07,8.4271,391,38.93,23.2639 +85,86,0.0012,-0.0005,642.91,1582.74,1404.08,21.61,553.4,2388.08,9052.3,47.58,521.35,2388.14,8.4064,392,38.87,23.38 +85,87,0.0019,-0.0003,642.58,1583.6,1403.38,21.61,553.26,2388.1,9046.61,47.7,521.43,2388.13,8.4214,394,38.9,23.3083 +85,88,0.0004,0.0002,642.19,1597.43,1407.13,21.61,553.58,2388.07,9054.09,47.55,521.82,2388.15,8.4204,393,38.8,23.2964 +85,89,0.0046,-0.0002,643.02,1585.05,1410.43,21.61,553.73,2388.1,9048.24,47.5,521.54,2388.09,8.4139,392,38.85,23.3259 +85,90,-0.0031,-0.0002,642.84,1587.94,1405.35,21.61,553.82,2388.14,9048.54,47.46,521.49,2388.13,8.4304,391,38.86,23.4024 +85,91,-0.0013,-0.0004,642.35,1594.29,1406.98,21.61,553.74,2388.08,9053.23,47.42,521.68,2388.07,8.4706,392,38.87,23.3029 +85,92,-0.0025,-0.0002,642.72,1586.52,1403.7,21.61,553.56,2388.09,9050.92,47.56,521.4,2388.12,8.4463,392,38.96,23.3022 +85,93,-0.0012,0.0002,642.75,1596.04,1409.68,21.61,553.11,2388.08,9048.25,47.46,520.89,2388.13,8.4477,391,38.74,23.2868 +85,94,0.0041,0.0002,642.36,1578.67,1405.02,21.61,553.18,2388.11,9041.47,47.64,521.96,2388.1,8.3745,392,38.89,23.2796 +85,95,-0.0006,0.0005,642.56,1589.13,1409.58,21.61,552.86,2388.16,9048.52,47.56,521.75,2388.14,8.4385,393,38.87,23.3479 +85,96,-0.0016,0.0002,642.34,1591.16,1399.48,21.61,554.1,2388.08,9048.11,47.49,521.17,2388.17,8.4338,393,38.76,23.356 +85,97,-0.0036,0.0001,643.07,1591.43,1401.69,21.61,553.28,2388.18,9047.76,47.53,521.6,2388.15,8.4295,392,38.88,23.2559 +85,98,-0.0017,0.0003,642.63,1596.99,1406.18,21.61,553.27,2388.07,9048.59,47.52,521.19,2388.12,8.4643,393,38.85,23.3123 +85,99,-0.0019,0.0003,642.59,1600.02,1408.28,21.61,553.42,2388.13,9046.82,47.58,521.47,2388.16,8.4136,395,38.67,23.3731 +85,100,-0.0011,0.0005,642.84,1590.36,1403.27,21.61,553.31,2388.11,9045.42,47.38,521.49,2388.11,8.4253,393,38.8,23.3634 +85,101,0.0003,-0.0002,642.93,1591.15,1397.88,21.61,553.33,2388.15,9050.73,47.66,521.54,2388.08,8.4342,394,39.0,23.2381 +85,102,0.0035,0.0005,642.52,1585.43,1407.96,21.61,553.58,2388.06,9050.98,47.63,521.22,2388.11,8.4555,393,38.98,23.1996 +85,103,-0.0034,-0.0005,642.92,1587.12,1410.06,21.61,553.39,2388.09,9044.51,47.45,521.13,2388.1,8.4471,394,38.59,23.2953 +85,104,-0.0009,0.0004,642.51,1597.02,1409.17,21.61,553.19,2388.08,9046.45,47.51,521.43,2388.15,8.4348,393,38.82,23.2883 +85,105,0.0027,0.0003,642.56,1590.93,1408.2,21.61,553.14,2388.11,9047.47,47.56,521.18,2388.17,8.4234,393,38.81,23.2725 +85,106,0.0016,0.0005,642.63,1587.61,1407.18,21.61,553.78,2388.14,9052.56,47.41,521.54,2388.12,8.4333,392,38.8,23.3443 +85,107,0.0005,-0.0004,642.78,1588.13,1414.46,21.61,553.08,2388.16,9055.07,47.63,521.62,2388.08,8.4268,394,38.61,23.351 +85,108,-0.0,0.0004,642.62,1589.73,1418.74,21.61,553.36,2388.13,9049.79,47.46,521.96,2388.17,8.4695,393,38.81,23.4624 +85,109,0.0002,-0.0002,642.47,1594.3,1403.84,21.61,553.72,2388.12,9051.96,47.66,521.29,2388.16,8.4577,393,38.84,23.297 +85,110,-0.0074,0.0002,642.0,1595.15,1410.89,21.61,552.96,2388.07,9052.06,47.59,521.42,2388.08,8.4347,393,38.86,23.2891 +85,111,-0.0021,-0.0001,642.74,1586.38,1407.94,21.61,553.41,2388.19,9055.1,47.42,521.41,2388.12,8.3903,392,38.94,23.178 +85,112,-0.0057,0.0002,642.99,1584.86,1411.02,21.61,552.93,2388.1,9051.8,47.65,520.85,2388.08,8.463,394,38.79,23.2487 +85,113,0.0005,-0.0002,642.66,1589.26,1415.26,21.61,553.03,2388.08,9055.7,47.53,520.75,2388.12,8.4552,393,38.78,23.2645 +85,114,-0.0046,0.0003,642.81,1589.85,1411.23,21.61,553.87,2388.17,9041.18,47.52,521.52,2388.11,8.4512,394,38.8,23.1966 +85,115,-0.002,0.0002,642.39,1594.41,1412.62,21.61,553.5,2388.12,9045.46,47.51,520.94,2388.08,8.4284,392,38.94,23.1792 +85,116,0.0004,0.0,642.49,1594.11,1406.09,21.61,552.65,2388.14,9043.62,47.49,520.79,2388.1,8.4657,394,38.66,23.2875 +85,117,-0.0012,-0.0001,642.58,1590.6,1416.04,21.61,552.83,2388.17,9053.15,47.65,521.03,2388.17,8.4674,392,38.66,23.2665 +85,118,0.0001,0.0004,643.07,1588.18,1410.84,21.61,552.74,2388.12,9049.52,47.58,521.77,2388.08,8.4736,394,38.82,23.2192 +85,119,0.0035,-0.0003,642.55,1591.65,1410.29,21.61,553.36,2388.11,9054.13,47.58,521.07,2388.15,8.467,392,38.76,23.3847 +85,120,0.0008,-0.0001,642.71,1586.63,1405.96,21.61,553.52,2388.1,9050.64,47.42,521.14,2388.17,8.411,393,38.77,23.2864 +85,121,-0.0008,-0.0004,642.9,1592.26,1413.09,21.61,553.36,2388.09,9050.53,47.62,521.01,2388.14,8.4663,392,38.85,23.1731 +85,122,0.0,0.0003,642.99,1588.02,1415.86,21.61,553.21,2388.14,9047.51,47.64,521.37,2388.2,8.4693,394,38.75,23.3959 +85,123,0.0018,0.0004,642.67,1590.84,1415.71,21.61,552.25,2388.16,9060.47,47.59,521.33,2388.13,8.4464,394,38.85,23.369 +85,124,0.0027,-0.0003,642.6,1591.6,1413.87,21.61,553.54,2388.13,9061.21,47.74,521.56,2388.11,8.4535,393,38.53,23.2835 +85,125,0.0024,-0.0003,642.73,1588.86,1411.02,21.61,552.62,2388.2,9051.14,47.6,521.11,2388.13,8.4699,393,38.75,23.348 +85,126,-0.0011,-0.0001,642.48,1582.8,1410.98,21.61,553.47,2388.14,9051.69,47.56,520.84,2388.11,8.4621,394,38.72,23.3288 +85,127,0.0009,0.0002,642.62,1596.08,1407.35,21.61,552.84,2388.16,9053.49,47.64,520.94,2388.16,8.4416,395,38.89,23.2047 +85,128,-0.0021,-0.0002,642.78,1598.95,1412.49,21.61,553.16,2388.17,9045.24,47.75,521.26,2388.11,8.4222,393,38.77,23.314 +85,129,0.0024,-0.0004,642.86,1588.62,1413.53,21.61,552.6,2388.15,9050.09,47.52,521.38,2388.18,8.4332,394,38.94,23.2598 +85,130,-0.0021,0.0002,642.73,1593.66,1414.7,21.61,552.92,2388.12,9048.64,47.78,521.05,2388.14,8.46,393,38.78,23.2158 +85,131,0.0009,-0.0003,643.16,1589.06,1417.53,21.61,552.98,2388.2,9049.64,47.6,521.13,2388.16,8.4472,393,38.86,23.2057 +85,132,0.002,0.0002,642.93,1589.54,1405.27,21.61,553.31,2388.12,9054.94,47.63,521.49,2388.15,8.4804,395,38.83,23.2875 +85,133,0.0004,-0.0004,642.94,1585.82,1419.04,21.61,553.03,2388.16,9046.65,47.71,520.91,2388.13,8.461,393,38.72,23.2633 +85,134,0.0003,-0.0,642.91,1595.81,1412.86,21.61,552.58,2388.18,9046.89,47.98,521.13,2388.14,8.4845,393,38.78,23.1533 +85,135,0.0032,0.0005,642.82,1597.07,1406.59,21.61,552.65,2388.15,9049.56,47.76,521.16,2388.11,8.4415,393,38.87,23.3691 +85,136,-0.0029,-0.0002,642.74,1592.28,1415.14,21.61,553.27,2388.18,9056.69,47.63,520.68,2388.17,8.4599,395,38.66,23.3203 +85,137,0.0016,0.0001,642.8,1590.67,1415.8,21.61,553.05,2388.12,9050.16,47.45,520.9,2388.14,8.4586,392,38.75,23.2978 +85,138,0.0019,0.0,642.77,1590.16,1415.5,21.61,552.66,2388.15,9050.47,47.73,520.89,2388.15,8.4512,393,38.84,23.2292 +85,139,0.0,0.0004,642.45,1589.38,1414.03,21.61,553.19,2388.12,9056.11,47.49,521.66,2388.15,8.4703,394,38.81,23.2242 +85,140,0.0028,0.0004,642.56,1593.74,1414.74,21.61,552.75,2388.15,9054.27,47.62,521.08,2388.19,8.4716,393,38.73,23.1505 +85,141,-0.003,0.0001,642.83,1594.54,1416.22,21.61,553.22,2388.14,9048.77,47.75,520.48,2388.16,8.4434,393,38.69,23.2326 +85,142,0.0004,-0.0,642.56,1589.95,1414.78,21.61,552.74,2388.15,9052.15,47.62,520.81,2388.15,8.457,393,38.6,23.2029 +85,143,-0.0031,0.0001,642.99,1599.37,1406.55,21.61,552.25,2388.22,9054.79,47.69,520.89,2388.19,8.449,393,38.8,23.3025 +85,144,0.0023,-0.0001,642.62,1587.55,1416.24,21.61,553.19,2388.14,9055.93,47.64,521.08,2388.16,8.4681,393,38.7,23.2567 +85,145,0.004,-0.0001,643.1,1589.98,1414.98,21.61,553.35,2388.1,9051.65,47.65,520.77,2388.16,8.4544,394,38.77,23.2346 +85,146,0.0004,-0.0001,643.05,1593.06,1418.23,21.61,552.89,2388.11,9062.92,47.64,520.48,2388.16,8.4593,394,38.71,23.2775 +85,147,-0.0013,0.0001,642.84,1589.75,1415.85,21.61,553.02,2388.12,9054.01,47.59,521.0,2388.17,8.4405,395,38.69,23.1636 +85,148,-0.0008,0.0004,642.98,1595.08,1413.16,21.61,552.69,2388.12,9049.4,47.97,521.0,2388.19,8.4933,395,38.81,23.0943 +85,149,-0.0007,0.0003,643.27,1597.14,1417.62,21.61,552.22,2388.16,9048.17,47.74,520.82,2388.17,8.464,394,38.66,23.2292 +85,150,-0.0011,0.0001,642.84,1599.33,1418.69,21.61,553.14,2388.15,9057.05,47.82,520.78,2388.22,8.4465,396,38.74,23.2197 +85,151,0.0018,0.0003,643.1,1596.68,1416.15,21.61,552.77,2388.16,9048.31,47.68,520.72,2388.2,8.4841,394,38.83,23.1524 +85,152,0.0003,-0.0002,643.63,1595.65,1419.63,21.61,552.24,2388.21,9059.11,47.77,520.88,2388.17,8.4892,392,38.69,23.2134 +85,153,-0.0008,0.0,643.21,1593.73,1416.61,21.61,552.57,2388.14,9053.5,47.88,520.35,2388.17,8.444,396,38.83,23.2369 +85,154,0.0027,0.0002,642.43,1598.05,1410.2,21.61,552.09,2388.16,9058.28,47.9,520.38,2388.21,8.4625,395,38.62,23.2579 +85,155,-0.0047,-0.0001,642.44,1590.34,1415.3,21.61,551.94,2388.17,9056.27,47.94,520.42,2388.21,8.4614,395,38.69,23.1336 +85,156,-0.0019,0.0001,642.8,1588.51,1413.48,21.61,552.78,2388.14,9043.28,47.73,521.06,2388.17,8.4319,395,38.6,23.2906 +85,157,0.0,0.0001,642.85,1593.68,1410.03,21.61,552.67,2388.2,9044.9,47.72,520.52,2388.19,8.4758,395,38.59,23.2562 +85,158,0.0037,-0.0005,643.18,1596.09,1412.39,21.61,552.71,2388.2,9055.92,47.77,519.73,2388.17,8.4769,397,38.64,23.1704 +85,159,0.0021,0.0005,643.04,1596.61,1419.17,21.61,552.62,2388.2,9053.27,47.76,520.74,2388.27,8.464,393,38.72,23.2196 +85,160,0.0003,0.0001,643.44,1595.24,1411.77,21.61,552.04,2388.19,9046.77,47.84,520.01,2388.17,8.4973,395,38.54,23.1647 +85,161,0.0005,-0.0002,642.96,1587.66,1423.21,21.61,553.17,2388.18,9057.59,47.89,520.54,2388.21,8.5174,394,38.52,23.1855 +85,162,0.0014,-0.0,643.09,1595.75,1418.08,21.61,552.06,2388.2,9061.84,47.99,520.28,2388.17,8.4755,395,38.57,23.1884 +85,163,-0.0006,-0.0,643.54,1596.76,1420.38,21.61,551.13,2388.2,9058.94,47.86,520.51,2388.21,8.4576,394,38.65,23.2047 +85,164,-0.002,0.0,642.91,1594.25,1423.33,21.61,552.33,2388.21,9058.7,47.77,520.88,2388.21,8.4645,396,38.66,23.2233 +85,165,-0.0007,-0.0001,643.72,1602.42,1419.58,21.61,552.09,2388.23,9053.22,47.8,520.39,2388.18,8.4798,393,38.54,23.3028 +85,166,-0.0026,0.0003,643.4,1595.43,1419.23,21.61,552.47,2388.22,9060.09,47.87,520.13,2388.15,8.4321,394,38.76,23.1859 +85,167,-0.0021,0.0002,643.16,1592.47,1418.52,21.61,552.06,2388.18,9047.15,48.06,520.2,2388.21,8.4792,394,38.53,23.0996 +85,168,0.0003,0.0005,643.53,1598.6,1420.12,21.61,552.09,2388.21,9058.39,47.78,520.04,2388.23,8.4593,395,38.63,23.0746 +85,169,-0.0013,-0.0002,644.0,1594.95,1418.24,21.61,552.42,2388.22,9052.49,48.0,520.37,2388.18,8.4908,396,38.64,23.2287 +85,170,0.0041,0.0001,642.96,1604.75,1422.63,21.61,551.59,2388.23,9052.84,47.81,519.9,2388.19,8.4686,392,38.59,23.1941 +85,171,-0.0005,0.0003,642.85,1597.2,1421.75,21.61,552.27,2388.17,9057.35,47.9,520.37,2388.22,8.4732,395,38.64,23.1862 +85,172,-0.0002,-0.0005,643.44,1597.6,1419.92,21.61,551.46,2388.18,9059.89,48.05,519.97,2388.24,8.4852,395,38.51,23.0902 +85,173,0.0009,0.0003,643.29,1600.69,1423.19,21.61,551.96,2388.23,9054.41,48.05,520.29,2388.19,8.5235,395,38.8,23.1496 +85,174,0.002,-0.0004,643.04,1600.66,1415.58,21.61,552.07,2388.18,9054.37,48.03,520.28,2388.29,8.52,395,38.36,23.0904 +85,175,0.002,0.0003,643.38,1602.32,1426.56,21.61,551.8,2388.24,9051.44,48.05,520.19,2388.25,8.5347,397,38.5,23.0986 +85,176,0.0016,0.0004,643.54,1589.61,1420.49,21.61,551.33,2388.26,9057.52,48.03,520.34,2388.23,8.461,396,38.42,23.1604 +85,177,-0.0001,-0.0003,643.61,1600.52,1423.15,21.61,551.46,2388.24,9055.33,47.85,519.95,2388.23,8.4922,395,38.55,23.1178 +85,178,-0.0027,0.0005,643.26,1596.33,1423.46,21.61,552.14,2388.24,9060.73,48.08,519.99,2388.24,8.5374,396,38.43,23.1447 +85,179,-0.0009,-0.0001,643.18,1595.08,1425.33,21.61,551.52,2388.28,9060.1,48.06,520.09,2388.26,8.5197,397,38.52,23.0636 +85,180,0.0041,-0.0003,643.07,1602.45,1417.81,21.61,551.45,2388.22,9065.66,48.08,520.24,2388.2,8.4889,396,38.56,23.1143 +85,181,0.0013,0.0003,643.54,1600.93,1426.82,21.61,551.32,2388.25,9048.0,47.86,520.07,2388.26,8.5189,395,38.65,23.0663 +85,182,-0.0006,-0.0003,643.71,1596.88,1427.47,21.61,551.3,2388.19,9056.46,48.04,519.94,2388.24,8.5229,396,38.43,23.0905 +85,183,-0.0023,-0.0002,643.53,1593.83,1433.5,21.61,552.34,2388.26,9060.71,48.11,520.09,2388.28,8.5011,396,38.5,23.1061 +85,184,-0.0004,-0.0,643.02,1604.28,1422.37,21.61,551.05,2388.27,9053.56,48.14,519.52,2388.24,8.5141,396,38.51,23.0506 +85,185,0.0016,0.0001,643.47,1596.5,1430.94,21.61,551.51,2388.28,9051.54,48.07,520.19,2388.27,8.505,396,38.46,23.0618 +85,186,-0.0003,-0.0001,643.7,1598.59,1430.96,21.61,551.29,2388.34,9055.69,48.16,519.71,2388.28,8.5387,396,38.49,23.0475 +85,187,-0.0014,-0.0002,644.02,1597.34,1430.78,21.61,551.02,2388.26,9056.11,48.35,518.83,2388.29,8.5517,397,38.42,23.1251 +85,188,-0.0014,0.0,643.64,1603.1,1434.88,21.61,551.23,2388.28,9050.97,48.17,519.61,2388.3,8.4977,396,38.61,22.9752 +86,10,0.001,0.0002,642.62,1587.37,1401.4,21.61,554.32,2388.05,9064.18,47.49,521.92,2388.03,8.4148,394,38.79,23.3423 +86,11,0.001,0.0004,642.76,1590.64,1398.88,21.61,554.1,2388.03,9057.69,47.31,521.54,2388.05,8.4034,393,38.86,23.2945 +86,12,-0.0018,0.0004,642.41,1589.18,1404.37,21.61,554.05,2388.04,9064.33,47.28,521.35,2388.1,8.4069,392,38.89,23.492 +86,13,0.0049,-0.0004,642.56,1590.84,1403.51,21.61,554.06,2388.08,9053.93,47.39,521.44,2388.1,8.4416,393,39.02,23.3551 +86,14,0.0003,0.0002,642.43,1582.7,1411.21,21.61,553.68,2388.08,9063.96,47.28,521.9,2388.06,8.4378,392,38.64,23.3873 +86,15,-0.0001,-0.0003,642.56,1584.94,1406.71,21.61,553.13,2388.06,9065.57,47.54,522.25,2388.04,8.4243,393,39.0,23.2888 +86,16,-0.0009,0.0004,642.73,1590.43,1399.81,21.61,554.21,2388.06,9063.52,47.46,522.11,2388.06,8.3922,391,38.85,23.2716 +86,17,0.001,-0.0004,642.68,1587.61,1400.08,21.61,553.3,2388.04,9056.71,47.44,521.54,2388.06,8.3858,392,38.77,23.2346 +86,18,0.0016,0.0003,642.65,1596.39,1397.51,21.61,553.27,2388.08,9062.54,47.53,521.84,2388.06,8.4062,393,38.84,23.3539 +86,19,0.0022,-0.0001,642.39,1583.43,1404.43,21.61,553.24,2388.08,9060.48,47.51,521.61,2388.05,8.4605,391,38.74,23.3869 +86,20,-0.0005,0.0005,642.71,1589.02,1407.81,21.61,553.26,2388.03,9066.97,47.22,521.36,2388.04,8.426,393,38.9,23.4574 +86,21,-0.0024,0.0001,643.02,1583.21,1399.7,21.61,554.61,2388.09,9063.15,47.37,521.74,2388.06,8.4285,393,38.9,23.4391 +86,22,-0.0009,-0.0,642.56,1585.53,1401.87,21.61,553.61,2388.06,9064.18,47.53,521.61,2388.06,8.4699,392,38.79,23.3393 +86,23,-0.001,0.0,642.26,1595.97,1401.04,21.61,553.94,2388.05,9057.46,47.38,522.11,2388.08,8.4147,393,38.95,23.3704 +86,24,-0.0016,-0.0005,642.74,1592.33,1402.5,21.61,553.89,2388.1,9062.59,47.47,521.5,2388.09,8.4285,394,38.92,23.3893 +86,25,-0.0003,-0.0,642.81,1592.84,1400.92,21.61,553.59,2388.08,9063.14,47.24,521.65,2388.1,8.459,394,39.07,23.3068 +86,26,0.0042,0.0004,642.4,1586.33,1408.56,21.61,553.76,2388.04,9055.59,47.77,521.84,2388.05,8.4046,392,38.8,23.2964 +86,27,-0.0026,0.0002,642.51,1587.01,1409.87,21.61,553.62,2388.09,9062.72,47.46,522.3,2388.11,8.4124,392,38.98,23.2926 +86,28,-0.0001,0.0001,641.94,1589.52,1408.34,21.61,553.95,2388.05,9056.74,47.46,522.02,2388.06,8.4331,392,39.15,23.3394 +86,29,0.0007,0.0005,642.99,1586.9,1413.44,21.61,554.08,2388.06,9060.36,47.41,521.92,2388.08,8.4327,392,38.84,23.3209 +86,30,0.0001,0.0002,642.19,1590.91,1401.92,21.61,553.48,2388.02,9057.61,47.25,522.01,2388.14,8.4658,393,38.92,23.3552 +86,31,0.0011,0.0005,642.71,1593.2,1405.33,21.61,553.02,2388.11,9057.8,47.4,521.94,2388.06,8.4428,392,38.84,23.3273 +86,32,-0.0006,-0.0004,642.38,1590.33,1399.02,21.61,553.06,2388.07,9063.34,47.37,522.43,2388.06,8.3746,393,38.95,23.2961 +86,33,0.0005,0.0004,642.37,1582.81,1404.7,21.61,553.5,2388.09,9055.77,47.3,522.28,2388.05,8.4234,394,38.86,23.3052 +86,34,0.0033,-0.0003,642.72,1585.37,1398.87,21.61,554.22,2388.04,9061.82,47.35,522.02,2388.09,8.4139,393,38.99,23.4016 +86,35,-0.0013,0.0005,642.38,1589.25,1402.49,21.61,553.85,2388.08,9056.63,47.44,521.78,2388.02,8.4305,393,38.9,23.4274 +86,36,0.0003,-0.0001,642.8,1593.92,1411.38,21.61,552.87,2388.11,9064.29,47.24,521.82,2388.13,8.3918,392,38.98,23.3293 +86,37,0.0008,0.0003,641.84,1586.45,1412.6,21.61,554.63,2388.1,9063.43,47.48,521.43,2388.01,8.411,393,38.84,23.2635 +86,38,-0.0001,-0.0001,642.48,1591.15,1399.96,21.61,553.88,2388.07,9059.51,47.48,522.62,2388.03,8.4212,393,38.91,23.2918 +86,39,0.0018,0.0001,642.33,1597.22,1405.4,21.61,553.16,2388.1,9068.29,47.35,521.63,2388.09,8.4119,392,38.65,23.3067 +86,40,0.002,-0.0004,642.9,1590.45,1404.15,21.61,553.72,2388.08,9060.18,47.31,521.42,2388.06,8.4267,393,39.06,23.3221 +86,41,0.0009,-0.0002,642.69,1588.28,1406.4,21.61,553.84,2388.1,9058.51,47.29,522.21,2388.07,8.435,393,38.83,23.3331 +86,42,-0.0026,-0.0003,642.23,1590.17,1403.82,21.61,552.93,2388.04,9064.64,47.41,521.86,2388.07,8.3925,394,38.8,23.3455 +86,43,-0.0013,-0.0002,642.74,1587.99,1408.55,21.61,553.81,2388.05,9050.11,47.51,521.7,2388.05,8.4002,390,38.54,23.2264 +86,44,-0.0014,0.0003,642.62,1584.55,1403.1,21.61,553.73,2388.08,9055.82,47.32,521.87,2388.04,8.4275,393,38.86,23.3656 +86,45,0.0007,-0.0003,641.97,1587.81,1410.07,21.61,553.88,2388.09,9062.31,47.24,521.77,2388.13,8.4045,394,38.95,23.3431 +86,46,-0.0027,0.0001,642.24,1584.39,1406.04,21.61,553.73,2388.03,9061.41,47.55,521.01,2388.03,8.4153,391,38.94,23.2591 +86,47,-0.0048,0.0005,642.65,1590.59,1409.34,21.61,553.87,2388.03,9061.49,47.51,521.28,2388.14,8.4191,392,38.92,23.3412 +86,48,0.0017,0.0002,643.06,1590.42,1401.64,21.61,553.49,2388.06,9064.26,47.47,521.67,2388.01,8.4249,392,39.01,23.3079 +86,49,-0.0024,0.0001,642.29,1591.79,1406.5,21.61,553.44,2388.03,9061.83,47.52,521.9,2388.06,8.428,392,38.79,23.4014 +86,50,-0.0013,0.0001,642.26,1589.55,1403.81,21.61,553.41,2388.11,9052.83,47.5,522.32,2388.09,8.4269,392,38.89,23.4079 +86,51,-0.0023,0.0001,642.66,1583.73,1399.45,21.61,553.64,2388.08,9062.83,47.43,522.04,2388.05,8.3968,392,38.85,23.2895 +86,52,0.0016,0.0004,642.46,1589.21,1406.82,21.61,553.61,2388.13,9063.78,47.21,522.09,2388.08,8.4385,392,38.96,23.3175 +86,53,0.0008,0.0002,642.75,1590.01,1404.72,21.61,554.33,2388.05,9062.17,47.54,521.62,2388.03,8.4339,392,38.76,23.3214 +86,54,0.0011,0.0003,643.09,1592.38,1397.15,21.61,553.34,2388.06,9065.91,47.51,521.43,2388.06,8.4228,392,38.93,23.2877 +86,55,0.0008,0.0,642.37,1587.23,1409.0,21.61,553.82,2388.11,9058.18,47.52,522.12,2388.05,8.4419,392,39.01,23.3417 +86,56,0.0008,0.0003,642.62,1590.77,1401.06,21.61,553.52,2388.1,9057.78,47.45,521.73,2388.07,8.4179,393,38.84,23.3069 +86,57,-0.0001,-0.0,642.22,1588.04,1398.71,21.61,554.36,2388.06,9061.56,47.52,521.87,2388.07,8.4195,394,38.79,23.301 +86,58,-0.0051,0.0002,641.93,1588.93,1402.77,21.61,553.6,2388.07,9058.22,47.27,521.39,2388.08,8.4435,393,39.01,23.2937 +86,59,-0.0033,0.0004,642.73,1592.78,1408.69,21.61,553.89,2388.08,9061.73,47.31,521.83,2388.03,8.4109,392,38.95,23.3711 +86,60,-0.0035,0.0001,642.64,1586.12,1407.02,21.61,553.17,2388.06,9064.2,47.31,521.54,2388.11,8.4456,391,38.98,23.3207 +86,61,0.0014,0.0002,642.07,1589.33,1401.75,21.61,553.91,2388.07,9061.18,47.38,521.56,2388.09,8.3956,393,38.68,23.2754 +86,62,0.0014,0.0002,642.66,1585.04,1405.16,21.61,553.74,2388.09,9065.54,47.48,522.25,2388.07,8.4351,393,38.91,23.3764 +86,63,-0.0005,-0.0004,642.13,1591.25,1401.09,21.61,553.55,2388.05,9057.21,47.56,521.55,2388.11,8.4164,393,38.89,23.2838 +86,64,-0.0012,-0.0003,642.56,1596.0,1399.72,21.61,553.67,2388.06,9056.49,47.53,521.58,2388.05,8.4072,392,39.05,23.4364 +86,65,-0.001,-0.0003,642.28,1585.13,1404.89,21.61,553.72,2388.04,9060.42,47.33,522.06,2388.07,8.4086,392,38.84,23.3796 +86,66,0.0012,-0.0003,643.13,1595.27,1407.88,21.61,554.08,2388.11,9068.63,47.6,521.82,2388.12,8.433,392,38.74,23.2911 +86,67,-0.0002,-0.0004,642.67,1590.19,1409.63,21.61,553.56,2388.0,9049.14,47.41,521.92,2388.04,8.4364,392,38.86,23.2945 +86,68,-0.0008,-0.0002,642.63,1581.87,1403.02,21.61,553.87,2388.1,9062.92,47.46,521.62,2388.08,8.4289,394,38.98,23.3159 +86,69,0.0016,-0.0002,642.67,1591.71,1404.8,21.61,554.16,2388.08,9061.77,47.49,521.65,2388.06,8.45,394,38.74,23.3049 +86,70,-0.0025,-0.0002,642.78,1593.82,1399.66,21.61,554.02,2388.06,9058.97,47.47,521.45,2388.08,8.4215,392,39.0,23.283 +86,71,0.0019,-0.0,642.86,1587.04,1408.77,21.61,553.08,2388.12,9057.71,47.58,521.46,2388.05,8.4087,393,38.73,23.3467 +86,72,-0.0008,0.0002,642.17,1585.11,1408.97,21.61,554.08,2388.07,9060.78,47.45,521.69,2388.09,8.4225,393,38.85,23.314 +86,73,0.0021,-0.0004,642.57,1590.24,1403.74,21.61,553.91,2388.08,9058.03,47.41,521.8,2388.07,8.3992,391,38.93,23.34 +86,74,0.0029,0.0004,642.82,1584.66,1399.68,21.61,552.95,2388.07,9065.91,47.5,521.49,2388.09,8.4175,394,38.98,23.3142 +86,75,0.0021,0.0004,642.86,1589.88,1408.74,21.61,553.55,2388.04,9061.75,47.34,521.83,2387.98,8.4516,393,38.88,23.2704 +86,76,0.0002,-0.0001,642.63,1584.85,1405.48,21.61,553.53,2388.09,9056.33,47.49,522.42,2388.06,8.4123,394,38.92,23.3805 +86,77,-0.001,0.0001,642.42,1584.13,1403.84,21.61,553.75,2388.04,9057.95,47.46,521.25,2388.06,8.441,392,38.82,23.4621 +86,78,-0.0007,0.0001,642.65,1596.66,1409.85,21.61,553.84,2388.06,9063.94,47.46,522.01,2388.04,8.4709,393,38.83,23.3243 +86,79,-0.0022,-0.0002,641.79,1590.86,1401.95,21.61,553.22,2388.06,9060.98,47.4,521.74,2388.01,8.4348,393,38.76,23.3842 +86,80,-0.0013,0.0004,642.87,1594.69,1410.8,21.61,553.73,2388.06,9056.1,47.6,521.73,2388.04,8.4576,394,38.97,23.2501 +86,81,-0.0005,-0.0002,642.3,1592.74,1400.43,21.61,552.9,2388.05,9057.17,47.33,521.67,2388.0,8.4107,390,38.93,23.3784 +86,82,0.0028,0.0004,642.23,1588.83,1400.16,21.61,553.55,2388.06,9061.16,47.42,522.0,2388.13,8.4267,392,38.77,23.3774 +86,83,0.0008,-0.0001,642.92,1587.5,1414.48,21.61,553.99,2388.05,9065.06,47.54,521.81,2388.06,8.4421,392,38.98,23.327 +86,84,-0.0016,-0.0004,642.87,1586.72,1403.45,21.61,553.69,2388.08,9059.41,47.43,521.9,2388.02,8.4201,391,38.87,23.3857 +86,85,-0.0012,-0.0001,642.41,1586.38,1403.68,21.61,553.32,2388.07,9061.6,47.57,521.83,2388.08,8.4654,393,38.86,23.3554 +86,86,0.0027,0.0004,642.29,1589.79,1403.57,21.61,553.81,2388.1,9050.66,47.49,521.97,2388.09,8.3744,393,38.93,23.309 +86,87,0.0003,-0.0003,642.84,1587.57,1406.25,21.61,553.44,2388.05,9055.87,47.3,521.68,2388.07,8.4429,393,38.81,23.2373 +86,88,-0.0008,0.0001,642.3,1583.97,1405.39,21.61,553.41,2388.09,9057.02,47.6,521.89,2388.1,8.4655,394,38.78,23.3478 +86,89,-0.0009,0.0005,642.33,1592.81,1401.04,21.61,554.22,2388.04,9066.3,47.51,521.62,2388.11,8.4557,393,38.94,23.3575 +86,90,-0.0001,-0.0001,642.79,1587.38,1404.52,21.61,553.58,2388.01,9061.28,47.36,521.79,2388.06,8.4569,394,38.8,23.2953 +86,91,-0.0008,-0.0005,642.42,1594.95,1407.73,21.61,553.85,2388.08,9065.41,47.36,521.32,2388.05,8.4456,394,38.8,23.2176 +86,92,-0.0021,0.0002,642.52,1585.68,1408.96,21.61,553.53,2388.04,9057.55,47.52,521.42,2388.09,8.4173,392,38.82,23.3346 +86,93,-0.0006,-0.0002,641.78,1589.33,1408.24,21.61,552.74,2388.08,9064.8,47.38,521.47,2388.08,8.4391,392,38.96,23.399 +86,94,0.0008,0.0001,642.48,1598.85,1396.55,21.61,553.92,2388.11,9066.93,47.41,522.48,2388.05,8.4274,393,38.99,23.3058 +86,95,0.0035,0.0003,642.55,1585.16,1409.29,21.61,553.18,2388.01,9061.33,47.34,522.29,2388.05,8.4537,392,38.83,23.3525 +86,96,-0.0078,-0.0004,642.72,1590.2,1402.59,21.61,553.82,2388.05,9060.06,47.48,521.5,2388.06,8.4068,391,38.71,23.3368 +86,97,0.001,-0.0004,642.44,1590.79,1409.0,21.61,553.5,2388.1,9062.79,47.44,521.95,2388.13,8.4363,393,38.9,23.3345 +86,98,-0.0003,0.0004,642.84,1584.06,1405.74,21.61,553.1,2388.09,9054.2,47.49,521.46,2388.08,8.427,392,39.05,23.299 +86,99,-0.0013,0.0002,642.55,1588.6,1398.4,21.61,554.03,2388.03,9065.45,47.5,522.17,2388.06,8.4167,393,38.81,23.2482 +86,100,-0.0011,0.0,642.46,1586.94,1404.37,21.61,553.24,2388.05,9055.09,47.37,521.56,2388.06,8.4393,394,38.95,23.4177 +86,101,-0.0034,0.0,642.27,1588.51,1414.19,21.61,553.69,2388.09,9059.49,47.41,521.76,2388.13,8.4343,394,38.86,23.2972 +86,102,-0.0011,-0.0004,642.12,1587.56,1401.84,21.61,553.67,2388.12,9050.77,47.72,521.2,2388.06,8.451,392,38.79,23.3791 +86,103,-0.0027,0.0005,642.14,1591.57,1411.57,21.61,553.79,2388.08,9060.59,47.64,522.05,2388.08,8.3956,393,38.88,23.3766 +86,104,0.0027,0.0004,642.56,1588.26,1412.47,21.61,553.54,2388.05,9058.82,47.33,521.43,2388.1,8.4732,392,38.99,23.3573 +86,105,-0.0032,-0.0004,642.85,1586.84,1408.35,21.61,553.01,2388.03,9064.91,47.4,521.61,2388.1,8.4111,392,38.77,23.311 +86,106,-0.0026,-0.0003,642.87,1583.57,1402.23,21.61,554.32,2388.04,9068.81,47.53,521.64,2388.06,8.3946,392,38.71,23.3595 +86,107,0.0047,0.0004,642.07,1591.89,1404.61,21.61,553.45,2388.06,9064.99,47.59,522.03,2388.05,8.4237,393,38.94,23.2784 +86,108,0.0022,0.0004,642.55,1584.52,1413.69,21.61,554.46,2388.04,9065.28,47.54,521.76,2388.12,8.4326,392,38.81,23.366 +86,109,0.0018,-0.0002,642.21,1591.23,1400.6,21.61,553.78,2388.11,9066.45,47.45,521.91,2388.05,8.4631,393,38.87,23.2669 +86,110,0.0041,0.0002,642.52,1586.58,1404.62,21.61,553.46,2388.08,9064.54,47.44,521.01,2388.08,8.4429,394,38.88,23.3698 +86,111,-0.0058,0.0001,642.51,1589.44,1412.05,21.61,553.24,2388.05,9057.24,47.34,521.38,2388.1,8.4403,393,38.69,23.3234 +86,112,-0.0005,-0.0001,642.44,1585.28,1404.91,21.61,553.79,2388.07,9062.82,47.5,521.7,2388.09,8.4457,393,38.65,23.2877 +86,113,0.0034,-0.0002,642.85,1587.49,1403.21,21.61,553.6,2388.13,9065.29,47.47,521.51,2388.09,8.4238,394,38.76,23.4275 +86,114,0.0048,-0.0001,642.33,1591.12,1406.54,21.61,553.47,2388.04,9060.87,47.29,521.24,2388.09,8.4031,393,38.85,23.2872 +86,115,-0.0027,-0.0003,642.46,1585.45,1399.22,21.61,553.91,2388.1,9061.64,47.37,521.36,2388.13,8.4327,392,38.63,23.3533 +86,116,0.0028,0.0003,643.01,1591.99,1403.44,21.61,554.05,2388.07,9059.88,47.48,521.79,2388.04,8.4665,393,38.9,23.2754 +86,117,-0.0,-0.0,642.95,1586.9,1409.88,21.61,553.33,2388.1,9065.5,47.67,521.49,2388.05,8.4197,393,38.78,23.2679 +86,118,-0.0018,-0.0001,642.51,1589.66,1403.88,21.61,553.41,2388.12,9079.16,47.45,521.61,2388.11,8.4353,392,38.78,23.3363 +86,119,0.0003,-0.0002,642.66,1593.37,1410.15,21.61,553.49,2388.07,9062.91,47.5,521.46,2388.09,8.4431,394,38.89,23.3018 +86,120,-0.0003,0.0001,642.23,1591.3,1406.47,21.61,554.14,2388.02,9058.07,47.49,521.46,2388.07,8.4462,392,38.75,23.261 +86,121,-0.0011,-0.0001,642.72,1594.7,1411.55,21.61,553.37,2388.09,9056.53,47.58,521.18,2388.08,8.4295,393,38.63,23.2218 +86,122,-0.0044,0.0003,643.05,1586.44,1405.14,21.61,553.76,2388.11,9059.99,47.46,521.66,2388.11,8.4094,392,38.94,23.3342 +86,123,0.0017,0.0,642.64,1589.29,1403.93,21.61,553.0,2388.1,9066.68,47.47,521.98,2388.13,8.4435,392,38.86,23.3314 +86,124,0.0029,0.0005,642.65,1585.95,1406.5,21.61,553.1,2388.09,9055.95,47.38,521.63,2388.14,8.4223,393,38.67,23.3577 +86,125,0.0015,-0.0004,642.05,1595.51,1405.79,21.61,553.36,2388.06,9063.75,47.68,521.59,2388.08,8.4494,393,38.88,23.2268 +86,126,-0.0013,-0.0001,642.63,1586.75,1407.17,21.61,553.52,2388.07,9068.39,47.46,521.87,2388.13,8.4359,393,38.72,23.2735 +86,127,0.0017,0.0003,642.51,1587.29,1400.97,21.61,552.78,2388.16,9067.32,47.54,521.16,2388.07,8.4613,392,38.91,23.327 +86,128,0.0015,0.0002,642.32,1597.15,1404.41,21.61,554.06,2388.14,9052.49,47.39,521.87,2388.05,8.4203,393,38.9,23.323 +86,129,0.0008,0.0005,642.41,1588.95,1406.03,21.61,553.26,2388.06,9063.42,47.51,521.34,2388.13,8.4493,393,38.84,23.3432 +86,130,0.0044,-0.0005,642.88,1588.9,1408.43,21.61,553.69,2388.08,9071.72,47.61,521.85,2388.12,8.4318,392,38.82,23.3359 +86,131,-0.001,0.0002,642.31,1588.28,1408.46,21.61,553.55,2388.05,9056.05,47.56,521.53,2388.1,8.4074,394,39.09,23.3946 +86,132,0.0013,-0.0002,641.71,1588.77,1407.2,21.61,552.79,2388.1,9061.61,47.32,521.57,2388.13,8.4156,394,39.0,23.3184 +86,133,0.0051,-0.0004,642.28,1589.01,1406.57,21.61,553.34,2388.11,9058.77,47.45,521.31,2388.12,8.428,393,38.79,23.2998 +86,134,0.0026,0.0005,642.61,1590.46,1415.72,21.61,553.09,2388.06,9064.76,47.55,521.68,2388.11,8.435,392,38.83,23.3312 +86,135,0.0035,0.0,642.62,1589.19,1400.14,21.61,553.09,2388.05,9065.48,47.53,521.28,2388.08,8.4238,393,38.91,23.388 +86,136,0.0002,0.0003,642.75,1585.5,1398.04,21.61,553.63,2388.08,9061.91,47.35,521.61,2388.12,8.4272,393,38.78,23.2332 +86,137,-0.0018,0.0004,642.34,1588.93,1409.55,21.61,553.58,2388.1,9060.02,47.5,521.3,2388.06,8.4204,394,39.0,23.3441 +86,138,-0.0013,0.0003,642.75,1586.62,1403.95,21.61,552.66,2388.13,9061.23,47.59,521.11,2388.05,8.4374,393,38.67,23.2312 +86,139,-0.0021,0.0004,642.82,1591.15,1406.16,21.61,553.4,2388.06,9057.85,47.66,521.17,2388.07,8.4524,394,38.94,23.3033 +86,140,0.0027,-0.0004,642.5,1592.21,1412.52,21.61,553.69,2388.09,9061.23,47.37,521.3,2388.11,8.4635,393,38.96,23.3758 +86,141,-0.0056,0.0004,642.83,1591.5,1410.79,21.61,553.55,2388.09,9061.28,47.46,521.45,2388.08,8.4466,393,38.94,23.2154 +86,142,0.0004,0.0,642.56,1586.2,1419.51,21.61,554.19,2388.14,9063.22,47.43,521.3,2388.1,8.4621,394,38.82,23.2604 +86,143,-0.0009,0.0001,642.6,1592.73,1409.57,21.61,553.73,2388.08,9060.63,47.59,521.42,2388.09,8.4555,393,38.63,23.2103 +86,144,-0.0018,0.0005,642.69,1589.63,1414.97,21.61,553.22,2388.12,9064.65,47.59,521.11,2388.09,8.4324,395,39.04,23.3475 +86,145,0.0036,-0.0001,642.22,1596.51,1406.2,21.61,553.4,2388.08,9063.45,47.65,520.96,2388.14,8.4271,392,38.65,23.2874 +86,146,0.0017,0.0,642.37,1592.56,1411.44,21.61,553.01,2388.13,9068.96,47.53,521.48,2388.09,8.421,394,38.83,23.2269 +86,147,-0.004,0.0003,642.83,1588.8,1407.24,21.61,553.84,2388.05,9064.58,47.39,521.31,2388.02,8.4333,394,38.83,23.3666 +86,148,0.0013,-0.0004,642.28,1593.4,1407.06,21.61,553.47,2388.17,9069.58,47.54,521.44,2388.13,8.4461,394,38.68,23.3038 +86,149,-0.0001,-0.0001,642.41,1600.85,1411.52,21.61,553.57,2388.11,9065.47,47.63,521.81,2388.13,8.4504,393,38.6,23.3651 +86,150,-0.0011,-0.0001,642.95,1591.17,1408.32,21.61,553.74,2388.1,9071.28,47.53,521.11,2388.11,8.4318,393,38.94,23.2857 +86,151,-0.0024,0.0004,642.77,1600.2,1406.46,21.61,553.33,2388.06,9061.54,47.57,521.3,2388.1,8.4659,394,38.8,23.33 +86,152,-0.002,0.0004,642.53,1576.97,1406.14,21.61,553.33,2388.09,9067.46,47.46,521.55,2388.05,8.4582,394,38.74,23.2904 +86,153,-0.0017,0.0001,642.92,1583.45,1410.03,21.61,553.21,2388.09,9071.0,47.63,521.17,2388.1,8.4333,394,38.87,23.3039 +86,154,-0.001,0.0004,642.94,1589.0,1411.58,21.61,552.94,2388.05,9067.42,47.51,521.56,2388.13,8.4479,391,38.91,23.4155 +86,155,0.0022,0.0005,642.16,1590.13,1409.78,21.61,553.51,2388.04,9069.07,47.49,521.62,2388.06,8.4609,393,38.78,23.3223 +86,156,-0.0012,-0.0003,642.7,1587.09,1411.31,21.61,554.2,2388.13,9068.54,47.61,521.91,2388.07,8.4537,394,38.73,23.3187 +86,157,0.0002,0.0005,642.77,1595.92,1410.56,21.61,553.14,2388.08,9061.91,47.61,521.27,2388.08,8.4478,396,38.83,23.2145 +86,158,0.0017,-0.0004,642.62,1597.68,1404.83,21.61,553.74,2388.09,9066.35,47.46,521.61,2388.09,8.4474,394,38.88,23.3596 +86,159,-0.0005,0.0001,642.38,1595.28,1405.09,21.61,552.9,2388.08,9065.63,47.61,521.17,2388.08,8.4264,393,38.76,23.2907 +86,160,0.0011,-0.0004,642.48,1595.97,1420.97,21.61,553.77,2388.1,9060.13,47.59,521.05,2388.12,8.4243,394,38.83,23.3169 +86,161,-0.0001,-0.0004,642.72,1586.1,1409.65,21.61,552.97,2388.07,9068.07,47.49,521.42,2388.1,8.4263,393,39.02,23.4212 +86,162,-0.0003,0.0,642.67,1598.78,1414.57,21.61,553.31,2388.15,9068.01,47.6,521.61,2388.07,8.4154,394,38.8,23.4056 +86,163,-0.0035,0.0004,642.68,1587.0,1404.93,21.61,553.06,2388.06,9060.64,47.54,521.81,2388.12,8.452,393,38.84,23.3249 +86,164,0.0038,-0.0004,643.09,1597.33,1407.99,21.61,553.17,2388.1,9064.08,47.62,521.28,2388.14,8.4352,393,38.77,23.2752 +86,165,0.003,0.0004,642.86,1586.84,1410.11,21.61,552.97,2388.1,9067.84,47.6,521.54,2388.16,8.4293,393,38.76,23.2791 +86,166,-0.0018,-0.0003,642.5,1584.96,1407.36,21.61,553.39,2388.09,9067.27,47.53,521.82,2388.12,8.4366,393,38.75,23.2471 +86,167,0.001,0.0002,642.58,1592.23,1407.77,21.61,553.26,2388.11,9070.24,47.48,521.38,2388.09,8.4722,395,38.67,23.3253 +86,168,0.0,-0.0004,642.77,1590.79,1418.3,21.61,552.79,2388.12,9067.68,47.64,521.33,2388.12,8.4178,396,38.8,23.251 +86,169,-0.0034,-0.0003,642.65,1591.65,1410.96,21.61,552.35,2388.13,9059.56,47.59,521.04,2388.12,8.4865,392,38.72,23.2506 +86,170,0.0002,-0.0003,642.51,1590.42,1416.82,21.61,553.36,2388.13,9069.24,47.46,521.0,2388.09,8.4496,393,39.0,23.2467 +86,171,-0.0015,0.0002,642.6,1586.51,1415.5,21.61,553.02,2388.12,9064.64,47.49,521.41,2388.11,8.4231,393,39.02,23.2366 +86,172,-0.0022,-0.0002,642.36,1593.31,1419.38,21.61,553.3,2388.14,9064.33,47.71,521.38,2388.07,8.4449,394,38.64,23.1202 +86,173,-0.0022,-0.0,642.53,1586.88,1404.28,21.61,553.25,2388.17,9065.35,47.61,520.98,2388.08,8.4305,395,38.87,23.3192 +86,174,-0.0009,0.0005,642.81,1594.15,1412.62,21.61,553.7,2388.09,9067.68,47.51,521.21,2388.08,8.4945,394,38.78,23.3133 +86,175,-0.0024,0.0001,642.84,1598.09,1418.71,21.61,553.75,2388.14,9069.02,47.57,521.08,2388.14,8.4311,395,39.03,23.2723 +86,176,0.0022,0.0005,643.1,1593.97,1411.73,21.61,553.1,2388.1,9067.16,47.61,521.13,2388.09,8.4363,394,38.83,23.3606 +86,177,-0.0016,0.0001,643.08,1595.03,1414.81,21.61,553.03,2388.13,9068.05,47.51,521.25,2388.11,8.4606,394,38.68,23.1713 +86,178,-0.001,-0.0003,643.13,1590.57,1413.78,21.61,553.3,2388.08,9063.98,47.65,521.1,2388.09,8.462,393,38.77,23.2595 +86,179,0.0012,0.0002,643.36,1589.89,1419.92,21.61,553.81,2388.06,9063.86,47.61,521.38,2388.09,8.4344,393,38.81,23.2032 +86,180,0.0004,0.0001,642.48,1583.08,1411.1,21.61,553.4,2388.12,9064.3,47.65,521.08,2388.14,8.4469,394,38.87,23.265 +86,181,0.0032,-0.0003,642.75,1597.61,1409.94,21.61,553.15,2388.13,9071.28,47.73,520.61,2388.12,8.4523,394,39.01,23.2017 +86,182,-0.0029,-0.0001,642.33,1586.93,1409.47,21.61,553.27,2388.1,9066.43,47.7,520.76,2388.16,8.42,395,39.07,23.1016 +86,183,-0.0017,0.0002,642.92,1587.02,1410.74,21.61,552.82,2388.15,9071.98,47.64,521.19,2388.12,8.4648,395,38.69,23.3121 +86,184,0.0006,-0.0002,642.89,1596.74,1407.53,21.61,552.48,2388.12,9068.22,47.42,520.76,2388.17,8.4644,392,38.81,23.3092 +86,185,-0.0024,-0.0002,642.79,1587.89,1418.54,21.61,553.49,2388.09,9062.82,47.6,521.23,2388.14,8.4498,394,38.68,23.155 +86,186,0.0021,-0.0002,643.37,1594.92,1402.73,21.61,552.66,2388.14,9069.54,47.7,521.5,2388.17,8.4489,395,38.86,23.3004 +86,187,-0.003,-0.0003,643.17,1595.69,1409.2,21.61,553.1,2388.1,9066.04,47.69,521.21,2388.16,8.4499,393,38.71,23.3564 +86,188,-0.0005,0.0004,641.89,1593.97,1416.28,21.61,552.25,2388.15,9063.07,47.56,520.57,2388.17,8.4433,394,38.69,23.2821 +86,189,-0.0029,0.0004,643.04,1595.87,1415.6,21.61,552.35,2388.1,9066.78,47.64,521.06,2388.17,8.4642,393,38.58,23.2123 +86,190,0.0001,-0.0,642.85,1591.71,1408.38,21.61,553.34,2388.1,9068.12,47.51,521.35,2388.15,8.4569,395,38.73,23.1818 +86,191,-0.0048,0.0003,643.09,1594.57,1406.86,21.61,552.7,2388.15,9065.22,47.71,521.22,2388.14,8.4545,395,38.72,23.1956 +86,192,-0.0021,0.0001,642.79,1590.54,1408.09,21.61,552.66,2388.17,9068.89,47.75,521.07,2388.09,8.4348,394,38.61,23.2421 +86,193,-0.0032,-0.0,642.4,1593.63,1412.65,21.61,553.07,2388.14,9065.52,47.61,521.25,2388.16,8.4509,393,38.56,23.2479 +86,194,-0.0004,0.0002,643.14,1585.12,1414.5,21.61,553.63,2388.09,9067.56,47.77,521.11,2388.11,8.4813,394,38.81,23.1722 +86,195,0.0016,-0.0002,642.4,1586.95,1413.6,21.61,553.43,2388.11,9071.79,47.77,521.42,2388.13,8.4894,393,38.74,23.3458 +86,196,0.0009,-0.0004,643.33,1588.21,1408.03,21.61,552.39,2388.13,9069.62,47.64,521.21,2388.08,8.4556,393,38.75,23.1912 +86,197,-0.0,-0.0002,643.04,1594.28,1414.18,21.61,552.47,2388.09,9073.93,47.64,521.28,2388.11,8.4566,394,38.7,23.2989 +86,198,-0.0044,0.0002,642.32,1591.02,1423.74,21.61,552.65,2388.16,9066.91,47.55,520.42,2388.15,8.4685,395,38.79,23.2608 +86,199,-0.0009,0.0004,643.07,1585.29,1411.43,21.61,553.12,2388.15,9061.99,47.64,520.64,2388.02,8.4541,394,38.74,23.2555 +86,200,0.0002,-0.0003,642.76,1594.51,1415.46,21.61,553.12,2388.17,9078.69,47.59,521.4,2388.14,8.4735,396,38.8,23.1251 +86,201,0.0002,0.0004,642.71,1597.73,1413.96,21.61,553.42,2388.11,9069.83,47.58,520.91,2388.09,8.489,393,38.82,23.3117 +86,202,-0.0002,0.0004,642.51,1594.56,1410.48,21.61,552.63,2388.15,9068.83,47.68,520.66,2388.12,8.4527,393,38.62,23.2881 +86,203,0.0014,0.0001,642.84,1597.18,1416.79,21.61,552.84,2388.13,9072.5,47.71,521.08,2388.1,8.4791,395,38.79,23.3258 +86,204,-0.0036,-0.0004,643.06,1596.08,1416.37,21.61,552.96,2388.17,9070.73,47.8,521.09,2388.08,8.4432,395,38.74,23.1096 +86,205,0.0005,0.0005,643.59,1594.62,1419.62,21.61,552.63,2388.11,9074.23,47.67,520.65,2388.16,8.4587,395,38.78,23.2472 +86,206,-0.0048,-0.0005,643.23,1594.77,1418.03,21.61,551.65,2388.08,9072.35,47.69,521.57,2388.16,8.4753,393,38.79,23.2514 +86,207,-0.0016,0.0003,643.18,1592.01,1415.34,21.61,553.09,2388.16,9076.18,47.77,521.38,2388.14,8.4762,393,38.54,23.3119 +86,208,-0.0003,0.0001,643.25,1596.17,1417.7,21.61,553.61,2388.13,9068.05,47.55,520.79,2388.13,8.4721,395,38.76,23.1731 +86,209,-0.0041,0.0001,642.65,1597.58,1418.72,21.61,552.55,2388.18,9067.28,47.77,521.5,2388.11,8.464,396,38.66,23.2609 +86,210,-0.0011,-0.0002,642.8,1591.83,1414.58,21.61,553.12,2388.12,9067.42,47.81,520.84,2388.11,8.4718,393,38.76,23.2048 +86,211,-0.0018,-0.0002,642.71,1593.48,1420.59,21.61,552.5,2388.17,9065.58,47.83,520.73,2388.06,8.46,393,38.53,23.1682 +86,212,0.0052,0.0005,643.14,1599.12,1409.22,21.61,553.24,2388.14,9067.96,47.82,521.05,2388.1,8.4833,394,38.71,23.1847 +86,213,0.0002,0.0,643.69,1594.6,1414.92,21.61,552.77,2388.15,9065.16,47.65,521.34,2388.18,8.4752,393,38.74,23.1781 +86,214,0.0023,0.0001,643.17,1584.98,1412.87,21.61,552.68,2388.09,9067.76,47.76,520.57,2388.1,8.479,392,38.66,23.171 +86,215,-0.0013,0.0004,643.21,1593.14,1417.88,21.61,552.2,2388.15,9068.82,47.9,520.57,2388.15,8.4947,395,38.62,23.2325 +86,216,-0.0002,-0.0001,643.29,1592.99,1416.51,21.61,553.18,2388.13,9063.27,47.79,520.8,2388.16,8.4623,395,38.81,23.1699 +86,217,-0.0001,0.0003,643.11,1598.84,1419.03,21.61,553.35,2388.15,9070.48,47.56,520.76,2388.14,8.4794,393,38.62,23.1153 +86,218,0.0011,-0.0002,643.47,1589.17,1415.43,21.61,552.95,2388.07,9062.72,47.59,521.15,2388.16,8.4714,394,38.67,23.1817 +86,219,-0.0004,-0.0001,643.14,1595.67,1409.24,21.61,552.57,2388.13,9069.06,47.7,521.07,2388.13,8.4764,394,38.84,23.2217 +86,220,0.0023,-0.0001,643.39,1596.03,1417.21,21.61,552.54,2388.11,9073.71,48.06,520.84,2388.13,8.4669,395,38.58,23.3473 +86,221,0.0,0.0005,643.28,1591.48,1417.84,21.61,553.08,2388.11,9069.27,47.76,521.53,2388.17,8.4588,394,38.75,23.117 +86,222,0.0029,0.0003,642.95,1593.61,1413.81,21.61,552.48,2388.15,9082.9,47.85,520.64,2388.16,8.491,394,38.42,23.2519 +86,223,-0.0016,-0.0003,643.9,1594.97,1410.86,21.61,552.65,2388.11,9069.13,47.6,520.04,2388.12,8.491,395,38.48,23.1962 +86,224,-0.0003,0.0003,642.43,1591.28,1413.61,21.61,552.57,2388.18,9074.06,47.64,520.48,2388.18,8.4593,395,38.69,23.0888 +86,225,-0.0004,0.0003,643.28,1599.05,1418.79,21.61,553.51,2388.17,9068.17,47.72,520.68,2388.12,8.4916,393,38.78,23.3133 +86,226,0.0023,0.0004,642.63,1592.84,1415.77,21.61,552.29,2388.18,9064.08,47.86,520.71,2388.19,8.4496,394,38.64,23.2138 +86,227,0.0015,-0.0001,643.02,1590.67,1422.58,21.61,552.09,2388.15,9070.37,47.87,520.73,2388.14,8.4751,395,38.82,23.1902 +86,228,0.0039,-0.0001,642.58,1597.79,1412.81,21.61,552.17,2388.14,9073.2,47.8,520.88,2388.16,8.461,395,38.55,23.2119 +86,229,-0.0008,0.0003,642.83,1597.14,1414.46,21.61,552.51,2388.16,9071.39,47.62,520.52,2388.12,8.4614,394,38.52,23.1788 +86,230,-0.002,0.0002,642.67,1592.23,1418.73,21.61,552.43,2388.16,9069.32,47.74,520.63,2388.17,8.4885,396,38.7,23.1396 +86,231,-0.0026,0.0004,643.53,1593.29,1419.35,21.61,553.37,2388.13,9077.93,47.67,520.59,2388.15,8.4775,395,38.65,23.3035 +86,232,-0.0038,-0.0002,643.19,1595.26,1420.2,21.61,552.71,2388.16,9087.96,47.68,520.49,2388.08,8.4699,395,38.69,23.3251 +86,233,0.0012,0.0005,642.9,1590.3,1423.96,21.61,552.57,2388.17,9071.4,47.71,519.76,2388.15,8.4914,395,38.79,23.1617 +86,234,0.0016,-0.0,642.92,1598.45,1414.2,21.61,552.04,2388.16,9070.46,47.63,521.03,2388.13,8.476,393,38.5,23.1661 +86,235,-0.0017,0.0002,642.78,1601.21,1421.7,21.61,552.04,2388.2,9075.84,47.77,520.28,2388.15,8.4731,396,38.69,23.2233 +86,236,0.001,-0.0,643.16,1593.64,1422.84,21.61,551.7,2388.21,9076.4,47.83,520.62,2388.17,8.4761,394,38.55,23.2421 +86,237,-0.0015,0.0001,643.82,1601.64,1420.16,21.61,552.35,2388.16,9074.08,47.97,520.63,2388.17,8.4544,396,38.65,23.2031 +86,238,-0.0003,0.0,643.41,1600.33,1422.31,21.61,551.78,2388.14,9070.39,47.92,520.09,2388.17,8.4811,395,38.75,23.0651 +86,239,-0.0043,0.0001,643.06,1603.49,1415.36,21.61,552.94,2388.19,9069.76,47.93,520.18,2388.15,8.523,393,38.68,23.1756 +86,240,0.0004,0.0004,643.54,1599.81,1418.81,21.61,552.57,2388.16,9082.12,47.89,520.65,2388.18,8.4755,396,38.72,23.1176 +86,241,-0.0009,-0.0001,643.37,1594.91,1416.17,21.61,552.42,2388.17,9069.18,47.68,520.69,2388.23,8.4971,395,38.57,23.1852 +86,242,-0.0028,0.0001,642.89,1591.71,1417.66,21.61,552.26,2388.21,9069.13,48.1,520.03,2388.11,8.4936,396,38.52,23.1141 +86,243,0.0003,0.0002,643.04,1597.74,1422.12,21.61,552.4,2388.19,9074.64,47.91,520.49,2388.2,8.4936,394,38.73,23.1614 +86,244,-0.0001,0.0004,643.64,1596.3,1423.7,21.61,552.6,2388.14,9074.39,47.97,520.64,2388.18,8.5288,395,38.8,23.2109 +86,245,0.0002,0.0001,642.86,1595.58,1430.07,21.61,551.43,2388.16,9074.9,47.84,520.35,2388.2,8.499,394,38.66,23.2515 +86,246,-0.0009,0.0004,643.38,1593.82,1425.29,21.61,551.98,2388.26,9074.32,47.92,520.12,2388.2,8.4927,396,38.72,23.1081 +86,247,0.0009,-0.0003,643.41,1598.74,1422.69,21.61,552.47,2388.19,9080.25,48.0,520.23,2388.19,8.4679,395,38.63,23.0771 +86,248,0.0033,-0.0,643.65,1599.4,1418.77,21.61,551.47,2388.19,9070.15,48.11,520.63,2388.24,8.4879,394,38.44,23.2283 +86,249,-0.0024,0.0003,642.95,1592.04,1426.69,21.61,551.78,2388.18,9083.39,47.92,520.64,2388.21,8.531,395,38.6,23.0484 +86,250,-0.0034,0.0005,643.11,1602.16,1425.83,21.61,552.71,2388.2,9071.52,48.11,520.11,2388.27,8.511,395,38.62,23.111 +86,251,0.0035,0.0002,643.05,1593.66,1423.63,21.61,551.67,2388.19,9078.84,47.87,520.3,2388.21,8.5326,395,38.78,23.1455 +86,252,0.0036,-0.0001,643.19,1600.03,1426.48,21.61,552.38,2388.17,9070.0,48.12,520.86,2388.22,8.5191,396,38.63,23.1412 +86,253,0.0016,-0.0004,643.5,1592.47,1425.42,21.61,552.58,2388.14,9077.78,47.89,520.35,2388.2,8.4767,395,38.55,23.1449 +86,254,0.0047,-0.0002,643.46,1599.47,1426.27,21.61,552.45,2388.2,9076.48,47.93,519.96,2388.24,8.5071,395,38.57,23.1083 +86,255,0.0038,-0.0002,643.23,1603.44,1420.01,21.61,552.63,2388.2,9072.66,47.97,519.91,2388.19,8.5189,397,38.57,23.1083 +86,256,0.0004,-0.0002,643.35,1597.27,1425.0,21.61,552.34,2388.2,9082.42,48.07,520.59,2388.2,8.4506,396,38.48,23.1794 +86,257,-0.0017,0.0,642.78,1599.85,1426.22,21.61,552.22,2388.19,9084.14,47.97,519.77,2388.17,8.5113,397,38.55,23.043 +86,258,-0.0026,-0.0003,643.34,1595.64,1424.3,21.61,552.44,2388.17,9079.05,48.06,520.15,2388.16,8.5157,396,38.62,23.1034 +86,259,0.0012,0.0003,643.69,1595.58,1434.24,21.61,551.89,2388.2,9077.9,48.03,520.16,2388.23,8.4772,394,38.68,23.1161 +86,260,0.003,-0.0003,643.69,1599.07,1422.68,21.61,551.93,2388.27,9074.77,47.91,520.29,2388.16,8.5513,395,38.49,23.1917 +86,261,0.003,0.0003,643.51,1594.67,1432.76,21.61,551.73,2388.24,9082.84,48.12,519.89,2388.21,8.4822,396,38.75,23.0505 +86,262,-0.0037,-0.0003,643.35,1596.69,1425.12,21.61,552.05,2388.2,9077.97,48.2,520.47,2388.19,8.536,396,38.39,23.1939 +86,263,0.0004,0.0001,643.55,1603.81,1428.64,21.61,552.14,2388.19,9074.34,48.07,519.38,2388.24,8.5344,395,38.51,23.0649 +86,264,0.0005,-0.0005,643.79,1599.01,1429.31,21.61,551.89,2388.21,9078.03,48.28,519.68,2388.23,8.4997,396,38.63,23.02 +86,265,0.0014,0.0003,642.69,1600.53,1418.99,21.61,551.34,2388.24,9081.06,47.99,520.11,2388.24,8.4726,397,38.72,23.1122 +86,266,0.0007,0.0002,643.53,1603.98,1424.4,21.61,550.71,2388.19,9082.13,48.17,519.5,2388.25,8.4977,396,38.52,22.9519 +86,267,0.0016,-0.0004,643.22,1599.65,1426.99,21.61,552.14,2388.21,9079.52,48.18,519.98,2388.18,8.4934,395,38.46,23.0526 +86,268,-0.0044,-0.0002,644.04,1604.07,1427.86,21.61,551.53,2388.23,9080.34,48.12,519.34,2388.2,8.5246,397,38.5,23.1791 +86,269,-0.0014,-0.0002,643.33,1598.4,1426.76,21.61,551.72,2388.25,9087.0,48.1,520.0,2388.23,8.5165,394,38.44,23.0689 +86,270,-0.001,0.0001,643.87,1594.78,1430.28,21.61,551.66,2388.29,9078.26,47.83,520.36,2388.21,8.5226,397,38.45,23.1465 +86,271,-0.001,0.0005,643.5,1597.28,1427.6,21.61,551.66,2388.21,9075.57,48.13,520.03,2388.18,8.5288,396,38.66,23.0933 +86,272,-0.0035,0.0002,643.49,1592.34,1431.44,21.61,550.7,2388.25,9078.87,47.96,520.35,2388.23,8.527,396,38.53,23.0076 +86,273,0.0008,0.0004,643.19,1601.97,1431.12,21.61,551.44,2388.21,9075.52,48.1,520.02,2388.16,8.4782,395,38.67,23.0095 +86,274,-0.0017,-0.0,643.82,1599.22,1420.73,21.61,551.59,2388.19,9079.9,48.07,519.8,2388.22,8.5043,396,38.47,23.0271 +86,275,0.0002,-0.0004,643.5,1600.49,1431.45,21.61,552.3,2388.2,9083.57,48.24,519.62,2388.23,8.491,396,38.52,23.0738 +86,276,0.0017,0.0002,643.41,1596.95,1425.38,21.61,552.38,2388.23,9070.18,48.15,519.51,2388.21,8.5339,396,38.45,23.1261 +86,277,0.0003,0.0003,643.03,1602.04,1431.26,21.61,551.68,2388.26,9084.43,48.26,519.13,2388.25,8.522,396,38.49,23.0981 +86,278,-0.0002,-0.0005,643.15,1600.16,1425.47,21.61,551.62,2388.23,9078.73,48.16,519.63,2388.22,8.4919,398,38.51,22.9947 +87,10,-0.0014,-0.0001,642.23,1590.91,1398.67,21.61,554.18,2388.04,9059.42,47.34,522.27,2388.04,8.4331,393,38.85,23.3449 +87,11,0.0017,-0.0003,642.58,1578.85,1408.83,21.61,553.74,2388.08,9059.87,47.31,521.78,2388.08,8.4558,393,39.05,23.3298 +87,12,-0.0,-0.0004,642.67,1585.02,1408.14,21.61,553.61,2388.07,9064.79,47.28,521.88,2388.04,8.419,393,38.91,23.3313 +87,13,-0.0006,-0.0001,642.19,1583.74,1407.08,21.61,553.71,2388.07,9065.84,47.46,521.44,2388.05,8.454,393,38.84,23.4211 +87,14,0.0021,0.0003,642.03,1589.96,1401.95,21.61,553.33,2388.06,9064.22,47.6,522.39,2388.08,8.4175,393,39.15,23.4283 +87,15,-0.0023,-0.0003,642.87,1584.61,1403.65,21.61,553.3,2388.04,9063.48,47.45,521.64,2388.05,8.4566,393,38.84,23.3722 +87,16,-0.0005,0.0,642.38,1585.86,1401.86,21.61,553.18,2388.13,9061.83,47.51,522.01,2388.08,8.4581,393,38.72,23.2325 +87,17,0.0031,-0.0004,642.67,1589.58,1405.4,21.61,553.76,2388.04,9065.09,47.38,521.21,2388.05,8.4364,393,38.86,23.2378 +87,18,-0.0014,-0.0004,642.48,1587.68,1401.84,21.61,553.88,2388.11,9068.0,47.4,522.12,2388.0,8.4154,394,38.84,23.3028 +87,19,0.0017,0.0001,642.84,1584.5,1410.52,21.61,553.38,2388.09,9069.84,47.53,521.85,2388.06,8.4424,393,38.81,23.2458 +87,20,0.0019,-0.0003,642.21,1588.65,1405.7,21.61,553.68,2388.07,9061.18,47.66,521.6,2388.03,8.4972,393,38.78,23.2224 +87,21,0.0007,0.0002,642.29,1587.97,1401.96,21.61,553.76,2388.08,9063.1,47.38,521.82,2388.08,8.4061,392,38.87,23.1786 +87,22,0.0004,0.0001,642.69,1587.59,1404.62,21.61,553.65,2388.08,9065.84,47.35,522.04,2388.05,8.4338,393,38.88,23.321 +87,23,-0.0025,-0.0,642.32,1582.78,1402.34,21.61,554.27,2388.03,9060.13,47.45,521.83,2388.1,8.4229,392,38.75,23.4017 +87,24,0.0015,-0.0001,642.84,1591.34,1399.98,21.61,553.61,2388.08,9061.21,47.4,521.67,2388.05,8.403,391,38.8,23.2221 +87,25,0.0001,0.0004,642.3,1597.52,1407.85,21.61,553.15,2388.02,9058.64,47.43,521.89,2388.03,8.4432,393,38.85,23.3172 +87,26,0.0043,0.0003,642.56,1590.26,1402.59,21.61,554.39,2388.04,9056.53,47.45,522.16,2388.06,8.4146,392,38.93,23.3202 +87,27,0.0003,-0.0001,643.07,1584.95,1404.56,21.61,554.16,2388.09,9060.19,47.43,521.37,2388.01,8.3933,392,38.87,23.3299 +87,28,-0.0021,-0.0,642.62,1580.48,1408.3,21.61,553.93,2388.09,9061.48,47.3,521.57,2388.0,8.3952,392,39.0,23.3274 +87,29,-0.0004,0.0004,642.26,1590.9,1403.12,21.61,553.76,2388.07,9060.79,47.53,521.87,2388.01,8.4068,394,38.94,23.2309 +87,30,0.0017,-0.0001,642.77,1585.57,1400.58,21.61,553.48,2388.06,9057.93,47.56,521.94,2388.12,8.4347,393,38.87,23.3907 +87,31,-0.0016,0.0001,642.3,1593.2,1410.46,21.61,553.36,2388.0,9063.16,47.49,521.53,2388.06,8.4248,394,38.74,23.314 +87,32,-0.0004,-0.0004,642.94,1581.73,1406.63,21.61,555.2,2388.06,9065.1,47.45,521.74,2388.09,8.4034,392,38.97,23.3631 +87,33,-0.0016,-0.0002,642.77,1578.5,1400.67,21.61,553.66,2388.07,9060.27,47.45,522.05,2388.07,8.4136,391,38.99,23.3336 +87,34,-0.0007,0.0004,642.47,1581.05,1412.11,21.61,553.9,2388.03,9067.77,47.53,522.07,2388.09,8.4092,392,38.82,23.3277 +87,35,0.0033,0.0003,642.31,1583.66,1407.37,21.61,553.23,2388.09,9063.19,47.35,522.23,2388.11,8.4379,392,38.91,23.3968 +87,36,0.0032,0.0004,642.56,1593.87,1402.09,21.61,553.71,2388.07,9076.05,47.47,522.18,2388.07,8.4318,391,38.92,23.3351 +87,37,0.0009,0.0003,642.5,1588.61,1410.85,21.61,553.93,2388.02,9055.9,47.36,521.62,2388.07,8.4319,392,39.02,23.3611 +87,38,-0.0027,0.0002,642.63,1595.81,1399.22,21.61,553.92,2388.06,9062.02,47.45,522.24,2388.05,8.4481,394,38.9,23.3222 +87,39,0.0026,-0.0002,642.55,1593.07,1405.47,21.61,552.9,2388.05,9052.88,47.71,522.15,2388.08,8.4172,391,38.96,23.2849 +87,40,0.0006,0.0005,642.55,1585.56,1413.06,21.61,554.13,2388.08,9066.08,47.44,521.49,2388.08,8.4166,393,38.93,23.4115 +87,41,0.0031,-0.0004,642.67,1580.34,1404.35,21.61,553.73,2388.08,9063.22,47.43,522.26,2388.09,8.4239,393,38.85,23.3066 +87,42,0.0039,-0.0004,642.65,1590.73,1403.48,21.61,553.0,2388.0,9064.9,47.47,521.44,2388.08,8.3738,392,38.92,23.2766 +87,43,0.0,-0.0003,642.52,1589.2,1411.32,21.61,552.56,2388.12,9064.77,47.48,521.67,2388.08,8.4291,393,38.86,23.29 +87,44,0.0005,-0.0002,642.51,1587.58,1402.66,21.61,554.29,2388.03,9062.14,47.59,521.74,2388.04,8.4242,395,38.82,23.3118 +87,45,-0.0012,0.0005,642.5,1588.66,1402.98,21.61,553.94,2388.1,9057.77,47.35,522.22,2388.13,8.434,392,38.81,23.2995 +87,46,-0.0006,-0.0002,642.58,1583.81,1408.07,21.61,554.02,2388.09,9060.19,47.37,521.85,2388.1,8.3987,392,38.92,23.36 +87,47,-0.0044,-0.0005,642.16,1591.65,1406.84,21.61,553.6,2388.03,9069.6,47.46,522.12,2388.04,8.3991,394,38.63,23.4098 +87,48,-0.002,-0.0001,642.22,1589.94,1401.25,21.61,553.9,2388.08,9073.38,47.52,522.07,2388.06,8.4363,392,38.64,23.2825 +87,49,0.0033,-0.0,642.66,1589.24,1396.51,21.61,553.46,2388.06,9056.93,47.49,521.82,2388.05,8.4529,393,38.79,23.2133 +87,50,-0.0036,-0.0004,642.44,1588.7,1412.06,21.61,554.12,2388.11,9065.86,47.36,521.8,2388.07,8.4743,393,38.91,23.3193 +87,51,-0.0019,0.0002,642.77,1589.88,1407.25,21.61,553.46,2388.08,9061.02,47.53,521.37,2388.07,8.4623,393,39.09,23.2799 +87,52,0.0004,-0.0001,642.45,1594.63,1412.9,21.61,553.52,2388.08,9066.31,47.48,521.39,2388.06,8.445,391,38.95,23.273 +87,53,0.0018,0.0002,642.31,1589.75,1401.93,21.61,553.56,2388.05,9058.85,47.48,521.4,2388.03,8.4074,393,38.93,23.3945 +87,54,-0.0006,-0.0002,642.29,1587.71,1414.83,21.61,553.63,2388.12,9073.16,47.35,521.79,2388.07,8.448,392,38.79,23.352 +87,55,-0.0015,-0.0,642.85,1584.64,1406.35,21.61,553.45,2388.09,9061.23,47.37,521.97,2388.06,8.4392,392,38.88,23.3749 +87,56,-0.0001,-0.0003,642.48,1583.87,1409.17,21.61,553.24,2388.05,9066.78,47.44,521.99,2388.09,8.4045,391,38.71,23.3433 +87,57,-0.0003,0.0001,642.27,1588.25,1411.48,21.61,553.48,2388.12,9062.0,47.67,521.48,2388.14,8.4425,391,38.82,23.325 +87,58,0.0062,0.0001,642.4,1584.72,1407.46,21.61,553.37,2388.1,9059.92,47.58,521.75,2388.1,8.44,392,38.87,23.273 +87,59,-0.0015,0.0005,642.51,1592.67,1411.54,21.61,553.18,2388.05,9066.36,47.38,521.49,2388.06,8.4484,394,38.66,23.3123 +87,60,-0.003,0.0,642.8,1583.83,1408.96,21.61,553.54,2388.08,9063.67,47.46,521.54,2388.06,8.425,393,38.85,23.3097 +87,61,-0.001,-0.0003,642.53,1592.39,1408.38,21.61,553.05,2388.07,9066.47,47.47,521.24,2388.06,8.4338,392,38.91,23.3724 +87,62,-0.0028,-0.0004,642.73,1593.02,1408.53,21.61,554.01,2388.06,9065.14,47.59,521.31,2388.09,8.4202,391,38.92,23.2468 +87,63,-0.0009,0.0004,642.96,1591.62,1400.56,21.61,552.9,2388.05,9064.92,47.48,522.17,2388.11,8.4627,395,38.85,23.1955 +87,64,0.0003,-0.0003,642.55,1585.04,1405.63,21.61,553.44,2388.08,9066.11,47.68,520.98,2388.09,8.4472,396,38.92,23.3448 +87,65,0.0001,0.0005,642.63,1589.11,1403.53,21.61,553.48,2388.1,9066.14,47.56,522.0,2388.08,8.4499,391,38.82,23.2508 +87,66,-0.0009,0.0,642.67,1591.82,1410.38,21.61,553.72,2388.08,9059.36,47.64,521.52,2388.05,8.4616,391,38.94,23.2875 +87,67,0.0018,-0.0,642.24,1588.96,1409.77,21.61,553.95,2388.1,9069.26,47.62,521.48,2388.07,8.4346,393,38.69,23.371 +87,68,0.0021,0.0001,642.42,1591.45,1402.54,21.61,553.66,2388.09,9066.81,47.47,521.5,2388.07,8.4131,394,38.62,23.2755 +87,69,-0.0018,-0.0002,642.68,1592.95,1404.03,21.61,553.26,2388.12,9061.62,47.39,521.28,2388.02,8.4273,393,38.96,23.3442 +87,70,-0.0011,-0.0003,641.95,1584.95,1405.51,21.61,554.06,2388.1,9066.05,47.56,521.83,2388.05,8.3978,395,38.72,23.2847 +87,71,-0.0051,0.0004,642.46,1591.93,1408.13,21.61,553.27,2388.07,9067.45,47.44,521.26,2388.07,8.4481,393,38.75,23.2837 +87,72,0.0003,-0.0004,642.5,1587.01,1402.96,21.61,553.01,2388.05,9061.2,47.36,521.07,2388.07,8.4407,392,38.97,23.3345 +87,73,0.0019,0.0005,642.58,1589.55,1412.28,21.61,553.46,2388.11,9067.75,47.65,521.28,2388.07,8.4292,393,39.01,23.2988 +87,74,0.001,-0.0004,642.62,1596.33,1404.55,21.61,554.18,2388.08,9066.13,47.44,521.55,2388.07,8.4139,392,39.04,23.2598 +87,75,0.0001,0.0,642.7,1592.34,1408.68,21.61,554.47,2388.06,9056.69,47.68,521.3,2388.05,8.4087,393,38.98,23.368 +87,76,0.0015,-0.0,642.39,1592.08,1407.8,21.61,553.25,2388.08,9057.95,47.55,521.05,2388.12,8.4433,393,38.92,23.2997 +87,77,-0.0036,0.0003,642.44,1584.11,1411.11,21.61,553.53,2388.11,9061.61,47.36,521.31,2388.07,8.4656,394,38.85,23.3633 +87,78,-0.0023,-0.0003,642.92,1589.65,1402.61,21.61,553.04,2388.1,9062.33,47.43,521.98,2388.07,8.4471,392,38.71,23.3111 +87,79,0.0025,-0.0,642.77,1587.26,1407.46,21.61,552.86,2388.13,9066.69,47.55,521.37,2388.07,8.4514,392,38.97,23.3016 +87,80,-0.0024,-0.0001,642.42,1588.67,1408.29,21.61,553.07,2388.11,9061.78,47.48,520.9,2388.1,8.4423,394,38.99,23.355 +87,81,-0.0048,0.0,642.62,1585.3,1404.38,21.61,553.66,2388.09,9060.99,47.62,521.41,2388.12,8.4401,393,38.89,23.3566 +87,82,-0.0018,0.0005,642.77,1589.03,1398.67,21.61,553.03,2388.12,9060.88,47.59,521.36,2388.12,8.4438,393,38.9,23.389 +87,83,-0.002,0.0003,642.44,1585.57,1413.2,21.61,552.8,2388.12,9064.8,47.64,521.57,2388.11,8.451,394,38.79,23.3748 +87,84,-0.0047,0.0001,642.69,1586.54,1406.47,21.61,554.26,2388.1,9065.05,47.35,521.43,2388.09,8.431,393,38.81,23.3245 +87,85,0.0015,-0.0002,642.9,1583.34,1412.75,21.61,552.96,2388.07,9069.16,47.52,521.32,2388.13,8.4768,393,38.81,23.266 +87,86,-0.0024,-0.0004,642.57,1594.44,1403.4,21.61,553.59,2388.08,9056.19,47.47,521.61,2388.03,8.4285,392,38.63,23.2372 +87,87,0.0034,-0.0,642.88,1581.62,1402.49,21.61,552.65,2388.07,9065.1,47.46,521.41,2388.14,8.4502,392,38.77,23.2852 +87,88,-0.0024,0.0002,642.42,1587.76,1405.26,21.61,553.29,2388.09,9061.81,47.71,521.25,2388.09,8.4285,395,38.72,23.2825 +87,89,-0.003,-0.0003,643.02,1594.77,1401.27,21.61,553.22,2388.1,9066.32,47.43,521.22,2388.12,8.459,394,38.75,23.3441 +87,90,-0.0004,0.0001,642.67,1597.65,1406.69,21.61,553.92,2388.12,9064.42,47.46,521.39,2388.07,8.4441,393,38.72,23.3951 +87,91,-0.0028,0.0004,642.53,1594.94,1410.86,21.61,553.15,2388.11,9064.18,47.4,521.3,2388.1,8.4433,393,38.8,23.3453 +87,92,-0.0,-0.0003,642.56,1589.7,1405.14,21.61,553.42,2388.08,9057.68,47.57,521.11,2388.11,8.4211,392,38.64,23.2392 +87,93,0.0008,-0.0003,642.2,1588.18,1399.11,21.61,553.62,2388.09,9058.01,47.52,521.31,2388.06,8.3831,392,38.8,23.1919 +87,94,-0.002,0.0001,643.31,1594.98,1417.07,21.61,553.42,2388.16,9055.79,47.6,521.32,2388.11,8.4357,393,38.7,23.2332 +87,95,0.0008,-0.0002,643.18,1586.61,1412.2,21.61,553.78,2388.1,9058.39,47.52,521.59,2388.06,8.4278,393,38.99,23.248 +87,96,0.0006,-0.0003,643.08,1594.15,1412.72,21.61,553.54,2388.09,9059.65,47.59,521.35,2388.09,8.4141,393,38.92,23.1993 +87,97,-0.0027,-0.0003,643.32,1583.84,1402.35,21.61,553.49,2388.18,9062.17,47.56,521.59,2388.08,8.465,393,38.79,23.3093 +87,98,-0.0041,-0.0003,642.91,1586.47,1413.36,21.61,552.72,2388.09,9068.52,47.4,521.63,2388.13,8.4039,395,38.86,23.3759 +87,99,0.0009,-0.0,642.48,1590.91,1405.31,21.61,553.7,2388.05,9064.42,47.43,521.3,2388.12,8.4582,393,38.89,23.3004 +87,100,0.0026,0.0004,642.54,1588.01,1401.91,21.61,553.16,2388.1,9070.56,47.65,521.5,2388.1,8.4123,394,38.86,23.2858 +87,101,0.0042,-0.0002,642.63,1593.8,1408.98,21.61,552.76,2388.06,9066.76,47.36,521.37,2388.11,8.4731,393,38.75,23.1583 +87,102,-0.0038,-0.0002,641.89,1595.96,1408.0,21.61,553.59,2388.07,9058.81,47.54,521.34,2388.08,8.4299,393,38.85,23.2702 +87,103,-0.0015,0.0004,643.2,1590.63,1404.3,21.61,553.02,2388.13,9062.35,47.43,520.88,2388.13,8.4635,394,38.94,23.2079 +87,104,0.004,-0.0,643.11,1590.31,1410.48,21.61,554.07,2388.11,9065.29,47.51,520.97,2388.14,8.427,394,38.79,23.1964 +87,105,-0.0011,0.0004,642.46,1587.46,1407.01,21.61,553.38,2388.02,9062.66,47.39,520.88,2388.12,8.4226,393,38.74,23.1977 +87,106,0.0003,-0.0005,642.71,1591.92,1410.99,21.61,552.72,2388.11,9067.73,47.5,521.23,2388.11,8.4125,392,38.84,23.3085 +87,107,-0.0009,0.0003,642.69,1591.23,1403.87,21.61,553.3,2388.13,9066.77,47.56,521.39,2388.11,8.4705,395,38.86,23.3659 +87,108,0.0013,0.0003,642.89,1592.07,1407.82,21.61,553.04,2388.07,9066.76,47.6,521.42,2388.08,8.4595,395,38.89,23.2329 +87,109,0.0011,-0.0001,642.69,1591.8,1407.67,21.61,553.28,2388.18,9067.76,47.56,520.99,2388.12,8.4196,392,38.66,23.1913 +87,110,0.0026,-0.0005,642.85,1599.6,1408.0,21.61,553.16,2388.1,9063.96,47.58,521.73,2388.15,8.4346,393,38.55,23.3317 +87,111,-0.0007,0.0004,643.23,1594.8,1416.7,21.61,554.12,2388.17,9056.41,47.8,520.73,2388.15,8.456,392,38.74,23.2983 +87,112,0.0009,-0.0002,642.92,1588.67,1406.87,21.61,553.71,2388.1,9061.05,47.67,521.65,2388.14,8.4219,393,38.85,23.1821 +87,113,0.0015,-0.0004,642.87,1588.2,1411.7,21.61,553.1,2388.08,9060.29,47.94,520.94,2388.11,8.4549,396,38.62,23.2563 +87,114,-0.0003,0.0001,642.92,1586.95,1414.34,21.61,553.33,2388.11,9076.15,47.6,521.3,2388.12,8.4597,393,38.77,23.2962 +87,115,0.0048,-0.0003,643.4,1595.55,1417.17,21.61,552.93,2388.11,9059.41,47.86,521.63,2388.11,8.4268,393,38.74,23.3861 +87,116,0.0013,0.0005,642.93,1591.74,1402.2,21.61,552.62,2388.13,9062.98,47.68,520.76,2388.13,8.4568,392,38.84,23.1955 +87,117,-0.0025,-0.0003,642.39,1592.78,1416.93,21.61,553.65,2388.13,9058.2,47.47,520.77,2388.11,8.4564,394,38.79,23.2598 +87,118,-0.0007,-0.0002,643.02,1593.0,1412.99,21.61,552.97,2388.13,9068.19,47.39,521.31,2388.09,8.5044,394,38.77,23.2926 +87,119,-0.0005,0.0001,642.87,1595.71,1410.54,21.61,552.75,2388.14,9060.38,47.66,521.07,2388.14,8.4653,393,38.85,23.2218 +87,120,0.0019,-0.0003,642.56,1599.17,1413.6,21.61,552.86,2388.14,9054.4,47.76,521.06,2388.12,8.4522,393,38.81,23.3044 +87,121,0.0024,0.0002,642.9,1598.44,1417.71,21.61,553.27,2388.09,9059.98,47.52,520.83,2388.16,8.4739,394,38.69,23.2046 +87,122,-0.0006,-0.0001,642.29,1596.09,1416.66,21.61,553.23,2388.12,9068.08,47.57,520.92,2388.11,8.4317,394,38.67,23.2967 +87,123,-0.0039,0.0002,642.42,1595.11,1407.54,21.61,552.65,2388.12,9061.66,47.63,521.65,2388.09,8.4684,393,38.53,23.3174 +87,124,0.0004,-0.0002,643.29,1592.14,1410.78,21.61,553.59,2388.11,9057.62,47.66,521.11,2388.17,8.4486,393,38.74,23.2621 +87,125,0.0019,0.0004,642.76,1598.65,1411.23,21.61,552.76,2388.15,9057.39,47.57,520.65,2388.14,8.4623,396,38.84,23.2239 +87,126,-0.0043,-0.0001,642.32,1592.97,1407.75,21.61,552.77,2388.17,9058.0,47.78,521.55,2388.15,8.4699,395,38.6,23.2372 +87,127,0.0004,-0.0001,642.85,1587.79,1416.49,21.61,552.29,2388.13,9045.78,47.77,521.29,2388.11,8.467,394,38.73,23.2872 +87,128,-0.0001,0.0002,642.63,1595.88,1409.41,21.61,552.55,2388.1,9065.79,47.75,520.61,2388.14,8.4366,395,38.68,23.1833 +87,129,0.0033,-0.0001,643.13,1594.4,1412.33,21.61,552.39,2388.17,9062.33,47.67,520.7,2388.25,8.4474,394,38.79,23.2246 +87,130,0.0037,0.0001,642.77,1588.47,1416.35,21.61,552.82,2388.11,9063.39,47.59,521.31,2388.22,8.4564,393,38.57,23.2287 +87,131,0.001,-0.0,643.29,1592.19,1410.21,21.61,552.5,2388.11,9054.44,47.52,520.59,2388.1,8.4586,394,38.61,23.1694 +87,132,-0.005,-0.0002,642.94,1598.69,1417.38,21.61,552.77,2388.15,9068.6,47.71,520.52,2388.12,8.4776,393,38.8,23.2799 +87,133,0.0019,-0.0003,642.57,1600.07,1411.34,21.61,551.85,2388.2,9060.67,47.6,520.48,2388.11,8.4319,393,38.52,23.2487 +87,134,0.0004,0.0002,642.86,1589.95,1415.48,21.61,552.11,2388.14,9057.02,47.73,520.95,2388.18,8.4629,394,38.7,23.1725 +87,135,0.0018,-0.0003,643.17,1595.99,1417.82,21.61,552.72,2388.17,9060.22,47.66,520.8,2388.17,8.4226,395,38.82,23.1578 +87,136,0.0009,0.0005,642.9,1594.11,1414.73,21.61,552.91,2388.17,9055.95,47.95,520.91,2388.2,8.4773,394,38.68,23.2105 +87,137,0.002,-0.0003,643.1,1593.83,1415.8,21.61,552.92,2388.14,9056.74,47.48,520.99,2388.17,8.4512,392,38.69,23.214 +87,138,-0.0019,-0.0,642.63,1590.54,1415.21,21.61,552.52,2388.15,9059.33,47.78,520.88,2388.17,8.4848,393,38.8,23.2027 +87,139,-0.0011,0.0005,642.93,1594.03,1415.12,21.61,552.69,2388.21,9060.82,47.7,521.08,2388.16,8.4588,396,38.64,23.3226 +87,140,0.0008,0.0001,642.6,1590.06,1417.36,21.61,552.66,2388.11,9057.1,47.6,521.23,2388.19,8.4307,395,38.78,23.2673 +87,141,-0.0003,0.0003,643.16,1597.55,1416.61,21.61,553.06,2388.16,9057.02,47.8,520.41,2388.15,8.4787,393,38.86,23.1701 +87,142,-0.0006,0.0,642.99,1588.98,1418.29,21.61,553.04,2388.19,9057.43,47.86,521.15,2388.14,8.4916,394,38.68,23.2011 +87,143,-0.0003,-0.0001,642.86,1593.18,1417.63,21.61,552.85,2388.16,9060.59,47.86,521.26,2388.17,8.4802,394,38.84,23.1971 +87,144,0.0011,-0.0005,643.43,1596.34,1424.61,21.61,552.38,2388.19,9056.34,47.77,520.47,2388.18,8.429,394,38.69,23.2532 +87,145,-0.0028,0.0005,643.22,1595.12,1424.86,21.61,552.26,2388.17,9059.1,47.69,520.87,2388.18,8.4852,393,38.74,23.1952 +87,146,0.0022,0.0004,642.69,1593.51,1421.96,21.61,552.17,2388.17,9060.76,47.85,520.92,2388.19,8.4795,395,38.66,23.2183 +87,147,0.001,0.0,643.04,1594.36,1413.52,21.61,551.72,2388.18,9060.48,47.86,520.59,2388.2,8.494,396,38.63,23.2563 +87,148,0.0014,-0.0003,643.08,1589.78,1421.8,21.61,552.18,2388.14,9061.05,47.79,520.81,2388.22,8.4739,394,38.56,23.2516 +87,149,-0.0008,0.0005,643.25,1592.62,1420.58,21.61,552.84,2388.23,9061.87,48.01,520.86,2388.24,8.4875,395,38.38,23.2597 +87,150,0.0009,0.0002,643.36,1597.6,1417.16,21.61,552.74,2388.17,9052.73,47.95,520.58,2388.2,8.4769,394,38.7,23.1357 +87,151,0.0005,0.0001,642.74,1593.36,1417.63,21.61,552.06,2388.2,9052.4,47.76,520.77,2388.16,8.4876,393,38.53,23.1642 +87,152,0.0001,0.0,643.45,1600.35,1419.37,21.61,552.31,2388.24,9059.11,48.03,520.49,2388.21,8.4871,394,38.63,23.2057 +87,153,-0.0016,0.0001,643.27,1595.12,1415.82,21.61,552.42,2388.25,9061.6,47.69,521.04,2388.17,8.4808,395,38.46,23.1049 +87,154,-0.0,-0.0,643.01,1593.6,1422.24,21.61,552.11,2388.23,9054.42,47.86,520.46,2388.27,8.5212,396,38.7,23.1136 +87,155,0.0016,0.0001,642.92,1594.26,1417.08,21.61,551.89,2388.2,9063.41,47.8,520.44,2388.26,8.5014,396,38.64,23.1708 +87,156,-0.0009,0.0002,642.6,1596.0,1421.16,21.61,552.11,2388.21,9057.06,47.79,520.29,2388.19,8.4743,394,38.57,23.1811 +87,157,-0.0015,-0.0003,643.36,1600.61,1424.07,21.61,552.16,2388.26,9061.43,47.92,520.26,2388.2,8.5231,397,38.78,23.1228 +87,158,-0.0036,0.0001,643.97,1596.9,1417.94,21.61,551.94,2388.22,9053.07,47.75,519.82,2388.26,8.4868,395,38.51,23.1774 +87,159,0.0,-0.0003,643.83,1605.11,1419.85,21.61,552.01,2388.23,9052.32,47.87,520.03,2388.25,8.4874,396,38.52,23.1637 +87,160,0.001,0.0005,643.53,1593.46,1416.58,21.61,552.63,2388.24,9046.05,48.11,519.9,2388.19,8.5121,394,38.51,23.1153 +87,161,-0.0026,-0.0003,643.51,1600.8,1422.12,21.61,551.7,2388.21,9057.06,47.89,520.16,2388.23,8.5091,396,38.7,23.1756 +87,162,-0.0028,0.0001,643.51,1594.77,1427.56,21.61,552.73,2388.29,9049.62,48.0,520.28,2388.24,8.4873,395,38.59,23.1297 +87,163,-0.0017,0.0001,643.19,1599.47,1429.33,21.61,551.95,2388.15,9059.85,48.14,520.32,2388.24,8.5322,394,38.4,23.2423 +87,164,0.0001,-0.0001,643.37,1600.31,1424.29,21.61,552.21,2388.23,9053.86,48.05,520.78,2388.27,8.5183,395,38.46,23.0971 +87,165,0.0001,-0.0,643.28,1604.21,1423.87,21.61,551.76,2388.27,9055.64,48.11,519.8,2388.23,8.4967,395,38.62,23.1805 +87,166,0.0019,-0.0001,643.35,1604.57,1424.95,21.61,552.83,2388.23,9052.77,47.73,519.88,2388.28,8.5019,395,38.61,23.1761 +87,167,0.0014,-0.0004,643.54,1598.55,1425.07,21.61,551.36,2388.26,9061.64,48.13,519.79,2388.25,8.4983,394,38.54,23.0557 +87,168,-0.0017,0.0003,643.39,1603.78,1422.45,21.61,552.47,2388.28,9050.38,48.01,519.98,2388.22,8.4847,396,38.54,23.0734 +87,169,-0.0026,0.0002,643.27,1601.18,1420.46,21.61,552.15,2388.26,9043.85,48.03,519.98,2388.25,8.4881,396,38.47,23.1897 +87,170,0.0011,-0.0,644.13,1600.38,1422.7,21.61,551.51,2388.25,9051.79,48.12,519.67,2388.27,8.4944,396,38.51,23.0778 +87,171,-0.0028,0.0005,643.76,1606.22,1425.41,21.61,551.73,2388.26,9051.65,48.12,519.72,2388.23,8.5292,395,38.5,23.0723 +87,172,-0.0007,-0.0001,643.57,1598.99,1426.82,21.61,551.32,2388.26,9051.7,48.25,519.74,2388.27,8.5333,395,38.52,23.0464 +87,173,0.0009,-0.0003,643.23,1594.31,1426.94,21.61,551.7,2388.26,9050.49,47.96,520.47,2388.27,8.4905,395,38.35,23.0811 +87,174,-0.0019,-0.0004,643.41,1594.39,1437.64,21.61,551.53,2388.31,9052.23,48.04,519.93,2388.27,8.5638,396,38.34,23.0574 +87,175,-0.0011,-0.0003,643.78,1597.02,1428.38,21.61,550.54,2388.28,9047.37,48.2,519.65,2388.29,8.5168,397,38.52,23.0501 +87,176,0.0052,-0.0001,643.84,1600.14,1424.05,21.61,551.15,2388.28,9055.59,48.22,519.96,2388.28,8.5268,396,38.58,23.0729 +87,177,0.0016,-0.0005,643.8,1600.61,1432.55,21.61,551.18,2388.28,9047.59,48.34,519.78,2388.28,8.5164,395,38.25,23.0864 +87,178,0.001,0.0001,643.44,1597.69,1433.25,21.61,551.24,2388.32,9050.62,48.11,519.79,2388.31,8.5082,397,38.61,23.074 +89,10,0.0035,-0.0001,642.58,1591.4,1404.55,21.61,554.35,2388.03,9043.5,47.25,521.93,2388.04,8.4156,391,39.05,23.3366 +89,11,-0.0004,-0.0003,642.02,1584.73,1402.71,21.61,554.64,2388.05,9045.91,47.35,521.99,2388.06,8.3872,391,39.04,23.2997 +89,12,-0.0013,-0.0001,642.01,1584.41,1401.01,21.61,554.34,2388.09,9049.35,47.34,522.14,2388.08,8.4191,392,39.15,23.4216 +89,13,-0.0,0.0003,642.58,1578.37,1399.93,21.61,554.0,2388.07,9049.23,47.28,522.36,2388.06,8.4231,391,39.04,23.3964 +89,14,0.0015,-0.0002,641.9,1584.31,1400.4,21.61,553.94,2388.03,9051.37,47.33,522.14,2388.04,8.4347,390,38.98,23.4471 +89,15,-0.0006,-0.0005,642.26,1594.02,1399.47,21.61,554.25,2388.11,9045.08,47.11,521.88,2388.05,8.4081,392,39.15,23.4051 +89,16,0.0018,0.0003,642.19,1589.27,1404.25,21.61,553.95,2388.03,9050.58,47.15,522.27,2388.05,8.398,390,38.97,23.43 +89,17,-0.0034,0.0002,642.43,1584.33,1390.89,21.61,554.39,2388.09,9045.87,47.28,522.6,2388.11,8.3523,390,39.04,23.291 +89,18,-0.0011,0.0001,642.32,1583.23,1398.72,21.61,554.35,2388.03,9054.04,47.06,521.49,2388.02,8.4113,391,38.98,23.3062 +89,19,-0.0018,0.0003,642.04,1586.96,1399.48,21.61,553.88,2388.06,9045.4,47.22,522.56,2388.04,8.3885,392,38.97,23.2948 +89,20,0.0015,-0.0005,642.95,1584.72,1404.5,21.61,554.09,2388.06,9046.69,47.08,522.3,2388.06,8.3966,391,38.77,23.3943 +89,21,0.0018,0.0004,642.08,1584.99,1394.49,21.61,554.37,2388.06,9053.36,47.17,522.21,2388.08,8.416,391,38.91,23.4253 +89,22,-0.0033,-0.0005,642.59,1591.59,1403.04,21.61,553.71,2388.01,9037.21,47.21,522.33,2388.03,8.3996,392,39.03,23.4278 +89,23,0.002,-0.0004,641.67,1585.57,1404.21,21.61,554.23,2388.01,9051.14,47.3,522.23,2388.12,8.3875,392,38.98,23.4289 +89,24,-0.0002,-0.0002,641.86,1584.29,1398.94,21.61,554.37,2388.07,9049.29,47.29,521.61,2388.04,8.4237,391,38.96,23.3961 +89,25,-0.0015,-0.0002,642.19,1579.3,1398.88,21.61,554.29,2388.05,9053.66,47.25,521.99,2388.03,8.4062,392,39.09,23.2607 +89,26,0.0004,-0.0002,642.24,1581.53,1399.36,21.61,554.77,2388.06,9051.12,47.41,522.09,2388.04,8.3683,393,39.02,23.4481 +89,27,-0.0003,-0.0005,642.03,1580.0,1403.67,21.61,553.73,2388.12,9050.08,47.17,521.88,2388.06,8.4365,391,38.99,23.3912 +89,28,-0.002,-0.0001,642.39,1586.81,1401.72,21.61,554.7,2388.04,9043.3,47.35,522.01,2388.11,8.4137,391,39.01,23.4866 +89,29,-0.0,-0.0005,642.22,1585.76,1400.26,21.61,554.54,2388.09,9049.82,47.21,522.04,2388.08,8.3793,392,38.72,23.4411 +89,30,0.001,-0.0002,642.85,1586.04,1397.71,21.61,554.14,2388.06,9044.36,47.12,522.19,2388.03,8.4154,391,39.14,23.4423 +89,31,-0.0,-0.0004,642.03,1589.2,1401.08,21.61,553.83,2388.07,9043.05,47.26,522.01,2388.07,8.4033,391,39.07,23.3573 +89,32,-0.0018,0.0002,642.02,1582.03,1393.95,21.61,553.48,2387.96,9048.79,47.29,521.74,2388.03,8.4017,392,39.03,23.4392 +89,33,-0.0012,-0.0001,642.45,1581.35,1402.34,21.61,553.92,2388.05,9053.7,47.36,522.38,2388.04,8.3941,391,39.03,23.3913 +89,34,0.0031,-0.0001,641.69,1588.27,1400.59,21.61,554.23,2388.07,9049.21,47.16,522.77,2388.05,8.3807,392,38.93,23.3734 +89,35,-0.0027,0.0003,642.39,1596.03,1392.99,21.61,553.52,2388.05,9055.28,47.3,521.96,2388.0,8.4043,393,39.22,23.4139 +89,36,0.0018,0.0003,642.29,1584.9,1401.27,21.61,553.96,2388.05,9051.07,47.45,522.15,2388.07,8.3975,392,39.04,23.3479 +89,37,0.0006,0.0003,642.75,1590.28,1399.81,21.61,553.4,2388.02,9050.19,47.22,521.35,2388.01,8.4252,391,38.95,23.289 +89,38,-0.0028,0.0002,642.04,1590.25,1398.86,21.61,554.47,2388.07,9045.98,47.41,522.44,2388.04,8.4068,393,39.0,23.4375 +89,39,-0.0011,-0.0005,641.98,1585.94,1404.84,21.61,554.13,2388.06,9046.46,47.24,521.95,2388.06,8.4239,393,38.9,23.3592 +89,40,0.0029,0.0004,642.36,1589.44,1402.93,21.61,554.96,2388.05,9047.15,47.3,522.4,2388.04,8.422,393,39.03,23.3918 +89,41,0.0013,0.0002,641.79,1589.69,1393.18,21.61,554.51,2388.05,9043.33,47.41,521.79,2388.05,8.4035,392,39.03,23.3868 +89,42,-0.0024,-0.0002,642.11,1586.29,1398.1,21.61,553.35,2388.04,9050.61,47.23,521.58,2388.04,8.409,395,38.84,23.3995 +89,43,0.0023,-0.0001,642.35,1590.77,1403.31,21.61,554.79,2388.04,9049.42,47.17,522.1,2388.04,8.4158,392,38.92,23.3281 +89,44,-0.0023,0.0004,642.47,1581.8,1399.76,21.61,554.25,2388.03,9045.61,47.42,522.49,2388.05,8.408,391,38.99,23.3304 +89,45,-0.001,0.0004,641.81,1579.99,1396.67,21.61,554.07,2388.05,9049.61,47.22,522.39,2388.02,8.4157,393,39.08,23.4287 +89,46,0.0,0.0001,642.16,1585.78,1398.24,21.61,554.2,2388.02,9047.76,47.33,522.42,2388.06,8.4124,392,38.97,23.4112 +89,47,0.0002,0.0001,642.29,1597.71,1395.67,21.61,554.59,2388.07,9043.99,47.06,522.54,2388.05,8.4067,391,38.94,23.4081 +89,48,-0.0014,0.0002,642.24,1584.89,1405.7,21.61,554.58,2388.02,9054.06,47.26,522.59,2388.02,8.3923,391,38.93,23.3214 +89,49,-0.0005,0.0,642.44,1583.39,1403.9,21.61,554.34,2388.03,9049.85,47.32,522.26,2388.08,8.3964,393,39.01,23.409 +89,50,0.0002,-0.0004,642.32,1589.09,1403.89,21.61,553.62,2388.04,9045.57,47.19,522.27,2388.02,8.4225,392,39.08,23.4033 +89,51,0.0005,-0.0001,642.3,1586.23,1398.84,21.61,554.24,2388.0,9048.59,47.32,521.65,2388.07,8.3858,392,39.01,23.4709 +89,52,-0.0005,0.0003,642.24,1581.21,1394.4,21.61,553.77,2388.03,9056.11,47.02,522.02,2388.05,8.4017,392,38.96,23.4281 +89,53,0.0035,0.0001,641.92,1585.25,1407.35,21.61,554.09,2388.04,9040.51,47.01,522.04,2388.04,8.4171,391,38.96,23.2939 +89,54,-0.0004,0.0001,643.16,1586.37,1403.94,21.61,553.55,2388.04,9051.37,47.47,522.24,2388.12,8.4142,392,38.85,23.3623 +89,55,0.0025,-0.0001,642.19,1586.53,1401.24,21.61,553.96,2388.02,9047.34,47.39,521.81,2388.04,8.4163,391,38.93,23.448 +89,56,-0.0042,-0.0001,641.77,1585.72,1401.47,21.61,554.44,2388.01,9046.66,47.2,522.51,2388.06,8.4199,392,38.82,23.4378 +89,57,-0.0013,0.0003,642.43,1591.5,1393.35,21.61,553.43,2388.05,9044.69,47.51,521.48,2388.11,8.4126,391,38.81,23.4348 +89,58,-0.0044,0.0001,642.38,1582.59,1398.58,21.61,554.26,2388.03,9046.29,47.3,522.4,2388.02,8.4289,392,39.11,23.4697 +89,59,0.0027,-0.0,642.94,1589.83,1407.15,21.61,554.04,2388.06,9051.41,47.23,521.79,2388.06,8.3836,390,39.12,23.3982 +89,60,0.0002,-0.0001,642.06,1588.33,1397.54,21.61,554.15,2388.01,9048.43,47.39,521.79,2388.05,8.3928,392,39.03,23.3516 +89,61,-0.0025,-0.0004,641.97,1587.42,1396.75,21.61,553.44,2388.02,9054.72,47.46,521.88,2388.05,8.4144,392,38.93,23.3227 +89,62,0.0,-0.0005,642.86,1584.09,1401.04,21.61,554.49,2388.04,9049.37,47.06,522.18,2388.0,8.3839,392,39.05,23.3718 +89,63,0.0006,0.0004,642.44,1587.58,1407.82,21.61,554.2,2388.08,9052.42,47.28,522.17,2388.07,8.4058,393,38.84,23.4544 +89,64,-0.0012,0.0003,641.98,1592.33,1404.65,21.61,554.26,2388.03,9048.12,47.17,522.4,2388.07,8.3968,391,38.92,23.3508 +89,65,0.0012,0.0004,642.45,1583.77,1395.68,21.61,553.56,2388.05,9051.41,47.35,522.13,2388.09,8.4023,392,38.98,23.371 +89,66,-0.0026,-0.0,642.53,1581.34,1401.28,21.61,554.39,2388.08,9047.41,47.47,521.45,2388.01,8.4216,391,38.88,23.4394 +89,67,-0.0018,0.0001,642.44,1574.96,1408.12,21.61,553.76,2388.06,9047.55,47.28,522.01,2388.01,8.4284,392,38.89,23.3703 +89,68,-0.0024,0.0003,642.51,1583.34,1400.79,21.61,554.36,2388.09,9046.47,47.4,522.34,2388.09,8.4221,391,38.81,23.3412 +89,69,0.0006,0.0002,641.87,1589.89,1404.66,21.61,553.34,2388.03,9044.83,47.45,522.17,2388.09,8.4071,392,38.91,23.3925 +89,70,0.0027,0.0001,642.42,1587.75,1398.97,21.61,554.47,2388.07,9049.0,47.44,522.23,2388.07,8.4409,393,38.91,23.3887 +89,71,-0.0009,0.0001,642.23,1589.98,1402.57,21.61,554.36,2388.1,9052.68,47.26,522.41,2388.07,8.395,391,38.84,23.4214 +89,72,-0.0003,-0.0001,642.21,1583.02,1400.94,21.61,554.92,2388.06,9049.8,47.34,521.96,2388.03,8.4521,392,38.84,23.3088 +89,73,0.0016,-0.0001,641.97,1584.99,1402.35,21.61,554.79,2388.06,9053.62,47.35,522.39,2388.02,8.4188,392,39.07,23.3817 +89,74,-0.0015,0.0003,642.44,1587.73,1400.98,21.61,553.81,2388.03,9050.74,47.51,522.16,2388.09,8.4284,390,38.96,23.3593 +89,75,-0.0021,-0.0001,642.37,1591.54,1400.25,21.6,554.27,2388.07,9048.31,47.33,521.98,2388.11,8.397,392,38.95,23.4074 +89,76,0.0035,-0.0004,641.72,1591.84,1403.63,21.61,553.72,2388.08,9049.49,47.43,522.02,2388.07,8.3848,390,39.03,23.361 +89,77,0.0019,0.0,642.9,1589.5,1400.98,21.61,554.7,2388.03,9046.54,47.31,521.88,2388.07,8.3961,392,38.95,23.4287 +89,78,0.0023,0.0003,641.86,1582.7,1403.13,21.61,553.54,2388.1,9049.62,47.34,522.16,2388.07,8.3901,391,39.06,23.3262 +89,79,-0.0033,-0.0,641.89,1585.48,1402.01,21.61,553.83,2388.05,9049.98,47.15,522.01,2388.04,8.4009,392,38.88,23.3494 +89,80,-0.0025,-0.0002,642.45,1589.6,1398.8,21.6,553.41,2388.07,9051.7,47.27,521.83,2388.04,8.4007,392,38.94,23.3696 +89,81,-0.0031,-0.0001,642.44,1580.42,1400.64,21.61,554.67,2388.07,9052.87,47.36,522.63,2388.04,8.4341,392,39.0,23.3968 +89,82,0.0025,-0.0004,642.69,1586.06,1399.54,21.61,554.27,2388.06,9053.32,47.25,522.81,2388.0,8.4409,391,38.77,23.3995 +89,83,0.0022,0.0004,642.54,1583.62,1405.16,21.61,553.5,2388.07,9055.81,47.49,521.67,2388.1,8.426,391,39.12,23.2869 +89,84,0.0008,-0.0003,642.4,1580.86,1406.15,21.61,554.26,2388.07,9045.95,47.39,521.72,2388.06,8.4179,392,39.11,23.3763 +89,85,-0.0019,-0.0,642.08,1588.36,1401.67,21.61,554.39,2388.07,9044.99,47.28,521.72,2388.07,8.4005,391,39.07,23.2908 +89,86,0.0021,-0.0003,641.97,1581.08,1407.93,21.61,554.31,2387.99,9051.4,47.34,521.29,2388.08,8.3977,393,38.86,23.3034 +89,87,0.0012,0.0002,642.41,1587.55,1400.1,21.61,553.67,2388.05,9046.42,47.38,522.3,2388.1,8.4077,394,39.13,23.325 +89,88,0.0038,-0.0002,642.39,1583.06,1402.09,21.61,553.78,2388.09,9043.31,47.51,521.67,2388.05,8.4182,391,38.98,23.3645 +89,89,-0.0016,-0.0003,641.9,1583.66,1402.83,21.61,553.66,2388.08,9046.85,47.19,521.89,2388.03,8.4067,391,39.11,23.3826 +89,90,0.0031,0.0004,642.5,1586.44,1410.97,21.61,553.84,2388.06,9056.02,47.38,521.54,2388.04,8.4202,392,38.74,23.4298 +89,91,0.0003,0.0,642.21,1586.37,1398.48,21.61,553.94,2388.05,9047.63,47.21,521.98,2388.07,8.4091,392,39.05,23.3065 +89,92,0.0015,-0.0005,642.27,1579.97,1400.86,21.61,553.83,2388.09,9044.65,47.46,521.69,2388.05,8.4204,391,38.78,23.3806 +89,93,-0.0004,0.0,642.23,1579.12,1397.37,21.61,554.48,2388.07,9040.02,47.54,521.83,2388.04,8.3971,393,38.84,23.3069 +89,94,-0.0037,-0.0001,642.48,1579.36,1404.4,21.61,553.93,2388.09,9049.62,47.38,522.13,2388.09,8.4246,393,38.9,23.3925 +89,95,0.0008,-0.0005,642.47,1581.97,1399.86,21.61,553.78,2388.09,9050.59,47.39,522.48,2388.08,8.4061,392,38.88,23.4276 +89,96,-0.004,0.0002,642.28,1582.75,1397.01,21.61,554.18,2388.06,9049.77,47.43,521.42,2388.07,8.4236,390,38.92,23.3697 +89,97,0.002,-0.0004,642.56,1588.62,1405.94,21.61,554.46,2388.05,9048.72,47.44,521.96,2388.04,8.4139,392,38.77,23.3313 +89,98,-0.0002,-0.0006,642.43,1580.15,1398.86,21.61,553.15,2388.06,9051.93,47.32,521.68,2388.03,8.3937,391,38.87,23.3936 +89,99,-0.0049,-0.0002,642.55,1586.23,1407.23,21.61,554.6,2388.03,9049.55,47.27,522.07,2388.06,8.421,394,38.82,23.2953 +89,100,-0.0004,0.0003,642.4,1590.67,1406.01,21.61,553.12,2388.06,9046.42,47.28,522.0,2388.1,8.4465,392,38.85,23.3891 +89,101,-0.0015,-0.0005,641.99,1591.6,1404.97,21.61,554.16,2388.05,9048.73,47.31,521.36,2388.05,8.3821,392,38.94,23.2843 +89,102,-0.0031,0.0003,642.5,1587.82,1401.33,21.61,554.65,2388.1,9053.86,47.2,522.21,2388.03,8.4432,392,38.79,23.4595 +89,103,-0.001,-0.0005,642.48,1586.36,1400.0,21.61,553.64,2388.09,9048.61,47.38,521.65,2388.07,8.3972,392,38.92,23.2854 +89,104,-0.0,-0.0,642.45,1586.13,1396.74,21.61,554.1,2388.08,9051.44,47.24,521.6,2388.06,8.3752,392,38.9,23.2433 +89,105,0.0024,0.0,642.53,1585.83,1402.04,21.61,553.77,2388.06,9055.34,47.35,521.76,2388.06,8.4324,392,39.04,23.2507 +89,106,-0.0007,0.0003,642.47,1589.72,1403.95,21.61,554.0,2388.05,9055.89,47.34,522.07,2388.08,8.4272,393,38.9,23.2169 +89,107,-0.0018,0.0004,642.21,1590.34,1392.21,21.61,553.72,2388.05,9048.5,47.43,522.05,2388.02,8.3985,394,39.07,23.4121 +89,108,-0.0025,-0.0003,642.18,1584.0,1395.28,21.61,554.36,2388.05,9056.91,47.33,522.44,2388.04,8.4126,392,38.85,23.2699 +89,109,0.0031,-0.0005,642.46,1588.38,1407.86,21.61,553.87,2388.07,9046.53,47.26,522.28,2388.04,8.4099,392,38.82,23.3486 +89,110,0.0001,-0.0004,642.62,1589.47,1403.03,21.61,553.87,2388.11,9047.58,47.59,521.17,2388.06,8.4132,392,39.05,23.3855 +89,111,-0.0018,0.0004,642.19,1586.77,1397.86,21.61,553.29,2388.01,9049.91,47.28,521.67,2388.06,8.4296,394,39.05,23.243 +89,112,-0.0002,-0.0006,642.8,1584.58,1398.94,21.61,553.74,2388.05,9058.2,47.48,521.5,2388.05,8.4361,393,39.0,23.2143 +89,113,-0.0001,-0.0005,641.48,1587.88,1408.01,21.61,553.61,2388.07,9046.79,47.39,522.09,2388.05,8.4808,391,38.85,23.3617 +89,114,0.0013,-0.0003,642.79,1593.25,1407.14,21.61,554.35,2388.06,9044.01,47.27,522.14,2388.02,8.431,392,38.68,23.3719 +89,115,-0.002,-0.0002,642.18,1584.51,1408.31,21.61,554.26,2388.09,9051.78,47.3,522.02,2388.03,8.4279,392,38.96,23.3226 +89,116,-0.0022,-0.0001,642.15,1592.32,1407.02,21.61,553.21,2388.14,9042.84,47.56,521.66,2388.06,8.4257,392,38.9,23.3866 +89,117,-0.0013,0.0001,642.69,1582.62,1410.13,21.61,554.25,2388.03,9044.37,47.5,521.81,2388.05,8.4311,391,38.83,23.3735 +89,118,-0.0001,-0.0004,642.75,1582.44,1407.46,21.61,553.73,2388.05,9052.45,47.54,522.0,2388.08,8.3756,393,38.87,23.2439 +89,119,-0.0033,0.0002,643.09,1592.41,1407.33,21.61,553.82,2388.05,9046.55,47.59,521.67,2388.01,8.4236,392,39.09,23.3573 +89,120,-0.0014,0.0004,642.83,1592.85,1403.8,21.61,553.64,2388.04,9042.53,47.33,522.13,2388.06,8.4485,393,38.91,23.2912 +89,121,-0.0002,0.0,642.04,1597.54,1396.92,21.61,553.77,2388.08,9053.46,47.28,521.71,2388.12,8.3942,393,38.94,23.3897 +89,122,0.0023,-0.0004,642.63,1589.39,1400.47,21.61,554.17,2388.12,9048.19,47.47,521.56,2388.12,8.4294,392,39.05,23.3514 +89,123,-0.0034,-0.0001,642.64,1595.56,1409.84,21.61,553.95,2388.11,9053.39,47.35,522.47,2388.11,8.4124,393,38.79,23.2066 +89,124,-0.0025,0.0002,642.93,1588.93,1399.63,21.61,553.86,2388.09,9052.59,47.3,522.03,2388.08,8.4409,392,38.73,23.2728 +89,125,0.0016,-0.0,642.59,1592.14,1406.65,21.61,554.23,2388.06,9049.8,47.38,521.53,2388.11,8.4265,392,38.97,23.372 +89,126,-0.0042,0.0001,642.1,1587.55,1406.45,21.61,553.56,2388.12,9053.63,47.41,521.29,2388.08,8.4398,393,38.83,23.3403 +89,127,-0.0012,-0.0003,642.17,1589.51,1393.55,21.61,553.63,2388.09,9056.7,47.27,522.01,2388.1,8.4392,392,38.85,23.2887 +89,128,0.0013,-0.0004,642.46,1592.86,1400.17,21.61,553.52,2388.13,9057.12,47.45,522.47,2388.06,8.4142,392,38.9,23.3158 +89,129,-0.0059,0.0004,642.26,1587.92,1408.47,21.61,553.4,2388.05,9060.98,47.65,521.69,2388.09,8.4163,392,38.88,23.2645 +89,130,-0.003,0.0001,642.15,1586.88,1406.42,21.61,553.56,2388.14,9052.89,47.52,521.88,2388.1,8.4201,392,38.95,23.3842 +89,131,-0.0013,-0.0002,642.61,1595.31,1408.21,21.61,553.75,2388.1,9057.93,47.45,521.61,2388.11,8.4309,391,38.93,23.2494 +89,132,-0.0002,-0.0002,642.57,1589.95,1398.95,21.61,554.19,2388.1,9055.94,47.31,521.86,2388.1,8.4419,393,38.78,23.2758 +89,133,-0.0003,0.0002,642.31,1589.52,1408.33,21.61,553.28,2388.11,9050.1,47.45,521.82,2388.1,8.4411,393,38.97,23.5247 +89,134,-0.0011,-0.0004,642.31,1589.34,1401.12,21.61,553.43,2388.04,9060.98,47.57,521.64,2388.05,8.4512,392,38.84,23.2889 +89,135,0.0024,0.0002,642.51,1597.43,1407.12,21.61,553.55,2388.09,9043.99,47.45,522.19,2388.08,8.4245,392,38.87,23.2956 +89,136,-0.0021,0.0001,642.94,1593.53,1401.05,21.61,553.4,2388.07,9062.1,47.54,521.26,2388.13,8.4138,392,38.92,23.2576 +89,137,-0.0038,-0.0005,642.49,1587.62,1409.92,21.61,554.04,2388.16,9055.15,47.35,522.41,2388.1,8.4342,391,38.96,23.4065 +89,138,-0.0021,0.0001,642.62,1592.13,1404.76,21.61,553.51,2388.12,9062.8,47.35,521.58,2388.05,8.449,395,39.04,23.3601 +89,139,0.0011,-0.0003,642.81,1592.74,1410.58,21.61,553.18,2388.06,9054.39,47.3,521.33,2388.04,8.4642,394,38.74,23.2597 +89,140,-0.0002,-0.0003,642.23,1588.5,1408.7,21.61,553.49,2388.05,9054.33,47.44,521.41,2388.08,8.4321,391,38.91,23.2815 +89,141,0.0006,0.0002,643.17,1583.37,1407.7,21.61,553.86,2388.09,9055.45,47.48,521.6,2388.08,8.4072,391,38.85,23.2807 +89,142,-0.002,0.0001,642.52,1591.24,1407.0,21.61,553.41,2388.13,9055.74,47.32,521.55,2388.12,8.4276,393,38.97,23.2855 +89,143,0.0031,0.0003,642.5,1590.65,1411.09,21.61,552.75,2388.06,9055.09,47.51,521.81,2388.11,8.4626,393,38.73,23.3548 +89,144,-0.0033,-0.0004,642.59,1594.79,1401.75,21.61,552.88,2388.13,9047.08,47.35,521.64,2388.11,8.4115,392,38.89,23.2591 +89,145,0.0044,0.0,643.03,1587.32,1404.87,21.61,553.45,2388.09,9057.95,47.58,521.51,2388.06,8.4203,393,38.97,23.2774 +89,146,-0.0023,0.0001,642.94,1589.76,1407.33,21.61,553.52,2388.06,9050.47,47.44,521.61,2388.07,8.44,391,38.96,23.328 +89,147,0.0012,0.0004,642.1,1590.36,1412.8,21.61,553.0,2388.17,9066.45,47.37,521.74,2388.14,8.4431,392,38.82,23.3801 +89,148,-0.0023,-0.0004,642.93,1590.55,1406.1,21.61,553.96,2388.1,9054.87,47.59,521.63,2388.1,8.4309,394,38.92,23.3526 +89,149,-0.0003,0.0004,642.21,1595.17,1409.19,21.61,552.89,2388.09,9053.75,47.63,520.94,2388.08,8.4729,394,39.01,23.3267 +89,150,0.0026,-0.0002,642.42,1588.46,1407.3,21.61,554.04,2388.14,9058.56,47.37,521.57,2388.13,8.4445,392,38.69,23.3171 +89,151,0.0038,-0.0003,642.26,1589.39,1416.09,21.61,553.51,2388.1,9058.81,47.69,521.47,2388.09,8.4758,394,38.87,23.2824 +89,152,0.0009,-0.0002,642.78,1586.34,1412.42,21.61,553.4,2388.11,9054.33,47.57,521.38,2388.06,8.4132,392,38.76,23.2457 +89,153,-0.0006,-0.0001,642.77,1596.33,1405.23,21.61,552.89,2388.15,9056.6,47.41,521.63,2388.11,8.4832,393,38.91,23.2217 +89,154,0.0017,-0.0004,642.54,1589.48,1409.63,21.61,553.04,2388.13,9056.37,47.54,520.99,2388.04,8.4776,394,38.45,23.2179 +89,155,-0.0004,0.0001,643.12,1591.02,1410.64,21.61,552.79,2388.11,9056.65,47.6,521.35,2388.1,8.4671,393,38.65,23.2986 +89,156,-0.0002,0.0002,642.47,1596.3,1412.99,21.61,553.83,2388.06,9061.96,47.54,521.44,2388.08,8.4524,393,38.59,23.2906 +89,157,-0.0012,0.0004,642.77,1585.99,1407.43,21.61,553.07,2388.09,9060.92,47.48,521.38,2388.05,8.4869,392,38.73,23.3543 +89,158,-0.0036,-0.0001,642.85,1591.97,1404.28,21.61,553.24,2388.1,9065.73,47.52,521.81,2388.1,8.4285,393,38.75,23.3448 +89,159,-0.0026,0.0002,643.08,1588.0,1405.65,21.61,553.09,2388.14,9061.48,47.5,521.48,2388.14,8.4672,394,38.84,23.1872 +89,160,-0.0004,-0.0004,642.59,1593.75,1414.31,21.61,553.52,2388.12,9059.15,47.56,521.26,2388.14,8.4591,393,38.67,23.2932 +89,161,0.0013,0.0,642.77,1586.75,1409.53,21.61,553.98,2388.08,9055.92,47.67,521.29,2388.12,8.4503,393,38.89,23.2603 +89,162,-0.0026,0.0,642.8,1598.31,1409.93,21.61,552.82,2388.11,9062.21,47.7,520.74,2388.09,8.4455,393,38.75,23.2356 +89,163,-0.0028,0.0002,642.63,1595.61,1408.92,21.61,553.83,2388.1,9060.1,47.76,521.04,2388.15,8.3982,394,38.79,23.3476 +89,164,0.0011,-0.0003,642.64,1595.04,1408.08,21.61,553.33,2388.11,9066.23,47.63,521.52,2388.15,8.4378,392,38.63,23.2787 +89,165,-0.0011,-0.0005,643.01,1590.95,1412.88,21.61,552.69,2388.14,9056.34,47.45,520.71,2388.16,8.4619,395,38.88,23.3177 +89,166,0.002,0.0002,642.84,1587.42,1416.37,21.61,553.45,2388.18,9054.67,47.67,521.54,2388.16,8.4397,394,38.98,23.3298 +89,167,-0.0013,-0.0,642.83,1588.6,1416.69,21.61,553.05,2388.12,9056.77,47.62,521.4,2388.17,8.4681,394,38.64,23.2438 +89,168,0.0026,0.0002,642.96,1587.56,1409.55,21.61,553.04,2388.11,9061.63,47.56,521.11,2388.16,8.4257,394,38.75,23.3186 +89,169,-0.0032,-0.0004,642.69,1595.49,1412.11,21.61,553.06,2388.13,9063.34,47.64,521.06,2388.12,8.4671,392,38.59,23.3207 +89,170,-0.0015,0.0,643.09,1594.1,1408.05,21.61,553.16,2388.17,9059.21,47.8,521.23,2388.15,8.4625,393,38.8,23.2694 +89,171,0.003,-0.0002,642.92,1599.61,1415.33,21.61,553.84,2388.12,9065.59,47.7,520.99,2388.11,8.4381,394,38.75,23.3343 +89,172,0.0007,-0.0,642.87,1590.45,1413.28,21.61,552.27,2388.15,9062.44,47.67,521.13,2388.1,8.4617,394,38.85,23.1722 +89,173,0.0002,-0.0001,642.76,1593.25,1412.62,21.61,551.45,2388.11,9056.51,47.6,521.15,2388.14,8.4612,395,38.74,23.2136 +89,174,-0.0024,0.0,643.13,1589.33,1415.61,21.61,553.27,2388.14,9061.25,47.64,521.16,2388.16,8.4372,393,38.85,23.2787 +89,175,0.0005,0.0002,642.82,1592.73,1409.28,21.61,552.79,2388.17,9060.89,47.58,520.86,2388.15,8.5085,393,38.53,23.1813 +89,176,-0.0009,-0.0002,642.91,1595.34,1418.61,21.61,552.54,2388.17,9062.74,47.7,521.75,2388.09,8.4305,394,38.74,23.1298 +89,177,0.0027,-0.0001,643.15,1589.87,1406.56,21.61,552.69,2388.13,9065.84,47.68,520.72,2388.07,8.45,394,38.69,23.3096 +89,178,-0.0004,-0.0005,643.48,1593.15,1414.54,21.61,552.26,2388.14,9053.77,47.85,520.83,2388.19,8.4597,394,38.75,23.2209 +89,179,0.0002,-0.0004,643.38,1589.92,1411.76,21.61,552.86,2388.14,9064.01,47.84,520.9,2388.13,8.4672,393,38.78,23.2532 +89,180,-0.002,0.0001,642.85,1598.1,1413.79,21.61,553.33,2388.14,9054.5,47.85,521.36,2388.18,8.4457,394,38.57,23.2553 +89,181,-0.0019,-0.0001,642.9,1588.15,1409.11,21.61,552.58,2388.12,9070.16,47.69,520.87,2388.21,8.4799,393,38.55,23.2627 +89,182,0.0003,-0.0002,643.56,1596.13,1418.43,21.61,553.15,2388.14,9068.51,47.77,521.08,2388.13,8.4739,394,38.73,23.1997 +89,183,0.0046,0.0001,642.95,1595.04,1413.45,21.61,552.69,2388.11,9067.65,47.7,520.04,2388.17,8.4488,394,38.71,23.2242 +89,184,0.0007,0.0003,642.45,1595.17,1411.05,21.61,552.15,2388.19,9068.66,47.78,520.6,2388.16,8.468,395,38.64,23.1826 +89,185,-0.0,0.0,642.84,1599.19,1418.51,21.61,551.82,2388.22,9060.65,47.83,520.9,2388.09,8.4467,394,38.69,23.1949 +89,186,-0.0025,0.0002,642.9,1596.8,1418.5,21.61,553.03,2388.17,9066.37,47.79,520.18,2388.12,8.4606,394,38.79,23.1819 +89,187,0.0007,-0.0003,642.96,1589.55,1420.85,21.61,552.3,2388.18,9070.06,47.67,520.8,2388.18,8.476,395,38.55,23.1375 +89,188,-0.0026,-0.0003,643.3,1604.83,1411.74,21.61,552.93,2388.13,9062.17,47.92,520.85,2388.23,8.4641,394,38.68,23.1693 +89,189,-0.0004,0.0002,643.1,1584.4,1415.77,21.61,552.31,2388.15,9065.05,47.75,520.96,2388.22,8.4689,394,38.68,23.1862 +89,190,0.0009,0.0003,642.89,1594.55,1420.09,21.61,552.31,2388.16,9073.85,47.72,520.91,2388.15,8.4662,394,38.59,23.1022 +89,191,0.0043,-0.0001,643.4,1595.43,1412.1,21.61,552.49,2388.18,9069.91,47.94,520.36,2388.17,8.4703,393,38.58,23.1726 +89,192,-0.0025,-0.0001,642.84,1597.03,1420.85,21.61,552.57,2388.16,9065.61,47.79,520.74,2388.16,8.4762,395,38.79,23.2304 +89,193,-0.002,-0.0005,643.29,1593.05,1416.22,21.61,552.76,2388.13,9063.91,47.65,520.78,2388.16,8.4662,394,38.56,23.2332 +89,194,0.0012,-0.0001,643.36,1588.51,1413.85,21.61,552.38,2388.18,9073.71,47.82,520.69,2388.13,8.4624,394,38.5,23.0612 +89,195,-0.0012,0.0004,643.12,1600.09,1419.15,21.61,552.23,2388.14,9073.76,47.74,520.25,2388.18,8.5063,396,38.52,23.1635 +89,196,-0.0021,-0.0,643.52,1596.3,1421.22,21.61,551.61,2388.14,9073.72,47.9,520.0,2388.2,8.4903,394,38.49,23.1272 +89,197,-0.0012,0.0004,643.3,1600.02,1421.18,21.61,552.91,2388.17,9070.83,48.01,520.48,2388.23,8.5029,395,38.72,23.1597 +89,198,0.0004,0.0,642.86,1604.79,1424.43,21.61,552.95,2388.19,9071.49,47.92,519.58,2388.18,8.5067,395,38.71,23.1306 +89,199,-0.0012,-0.0005,643.36,1600.86,1421.55,21.61,552.06,2388.14,9067.11,48.16,520.15,2388.2,8.5341,394,38.51,23.1787 +89,200,0.0024,-0.0002,643.68,1596.87,1430.57,21.61,552.48,2388.15,9080.92,47.77,520.6,2388.12,8.4889,395,38.53,23.141 +89,201,-0.0064,0.0004,643.13,1596.76,1419.0,21.61,551.71,2388.2,9074.07,47.96,520.45,2388.24,8.487,396,38.46,23.2566 +89,202,-0.0017,-0.0003,643.35,1606.57,1428.24,21.61,551.17,2388.25,9074.29,47.94,519.93,2388.19,8.5091,397,38.64,23.1472 +89,203,0.0014,-0.0001,644.08,1600.49,1424.47,21.61,551.92,2388.16,9073.21,48.09,519.95,2388.23,8.5512,395,38.58,23.0807 +89,204,0.001,-0.0004,644.18,1601.77,1421.7,21.61,552.14,2388.13,9073.44,48.01,520.2,2388.2,8.4965,395,38.48,23.1124 +89,205,0.0028,0.0003,643.08,1591.69,1420.89,21.61,551.89,2388.22,9070.03,48.09,520.12,2388.18,8.4739,396,38.45,23.1243 +89,206,0.0004,-0.0003,643.32,1597.98,1421.76,21.61,552.3,2388.2,9084.69,48.2,519.95,2388.21,8.5319,397,38.52,23.0154 +89,207,-0.0011,-0.0001,643.46,1606.5,1428.42,21.61,551.22,2388.21,9072.4,47.8,520.07,2388.23,8.4962,397,38.32,23.0773 +89,208,-0.0019,-0.0002,643.47,1596.54,1422.41,21.61,551.76,2388.18,9077.19,47.98,519.84,2388.21,8.5044,395,38.55,23.0596 +89,209,0.002,0.0003,643.7,1605.06,1430.72,21.61,551.78,2388.18,9084.43,48.02,519.84,2388.17,8.5577,395,38.66,23.2052 +89,210,0.0023,0.0002,643.44,1599.78,1430.95,21.61,551.88,2388.22,9083.76,48.08,519.71,2388.23,8.5016,395,38.46,23.0903 +89,211,0.0017,0.0002,643.33,1599.81,1429.88,21.61,551.31,2388.25,9076.24,48.04,520.36,2388.19,8.5125,396,38.48,23.0963 +89,212,0.0003,0.0002,643.21,1598.68,1432.5,21.61,550.91,2388.17,9079.18,47.96,519.66,2388.25,8.4891,396,38.38,23.0103 +89,213,0.0001,-0.0003,643.49,1604.45,1426.52,21.61,550.85,2388.21,9085.94,48.16,519.63,2388.24,8.534,397,38.25,23.16 +89,214,0.0008,0.0003,643.24,1596.72,1426.05,21.61,551.15,2388.21,9081.74,47.99,519.7,2388.27,8.5041,396,38.54,23.1833 +89,215,0.0018,0.0,643.39,1603.19,1430.73,21.61,551.09,2388.2,9085.55,48.18,519.49,2388.16,8.5356,396,38.3,23.0166 +89,216,0.0004,0.0001,643.6,1604.76,1427.66,21.61,551.46,2388.26,9074.32,48.02,519.68,2388.21,8.5259,395,38.36,23.0164 +89,217,0.006,-0.0002,643.18,1603.61,1431.32,21.61,551.03,2388.17,9081.82,48.39,519.86,2388.22,8.4936,397,38.19,23.09 +92,10,0.0007,0.0004,642.01,1583.57,1405.64,21.61,554.55,2388.12,9049.06,47.16,522.06,2388.05,8.4174,392,38.91,23.4279 +92,11,-0.002,-0.0001,642.29,1588.19,1401.86,21.61,553.73,2388.02,9057.85,47.24,521.91,2388.05,8.4027,391,39.03,23.357 +92,12,-0.0027,-0.0003,642.17,1582.46,1403.46,21.61,553.86,2388.03,9059.18,47.41,522.27,2388.08,8.4135,391,39.01,23.2859 +92,13,-0.0018,0.0004,641.98,1586.12,1401.89,21.61,553.47,2388.02,9058.62,47.45,521.75,2388.04,8.4141,391,39.0,23.3892 +92,14,-0.0008,0.0,641.88,1583.3,1404.06,21.61,554.48,2388.09,9058.8,47.36,522.04,2388.02,8.4563,392,39.07,23.4336 +92,15,-0.0015,-0.0002,642.53,1583.04,1406.82,21.61,554.67,2388.13,9049.89,47.41,522.2,2388.03,8.4059,393,38.95,23.4128 +92,16,-0.0009,0.0004,642.62,1581.02,1404.36,21.61,554.46,2388.02,9051.78,47.26,522.05,2388.03,8.4214,392,38.92,23.2979 +92,17,-0.0007,0.0003,642.26,1583.97,1402.97,21.61,554.32,2388.03,9051.95,47.18,521.74,2388.06,8.4102,392,39.02,23.3179 +92,18,0.0014,0.0001,642.24,1587.47,1404.64,21.61,553.47,2388.04,9047.66,47.31,522.37,2388.02,8.4357,391,38.84,23.3386 +92,19,0.001,-0.0003,642.55,1581.12,1396.34,21.61,554.59,2388.09,9053.33,47.29,522.33,2388.1,8.3907,391,39.0,23.3678 +92,20,0.0035,0.0002,641.83,1587.57,1406.74,21.61,553.98,2388.06,9051.59,47.3,522.28,2388.07,8.4245,390,39.04,23.4178 +92,21,0.0029,-0.0,642.75,1591.17,1402.92,21.61,554.35,2387.98,9048.04,47.44,521.62,2388.03,8.4352,392,39.02,23.3464 +92,22,0.0027,-0.0002,642.19,1593.1,1399.67,21.61,553.28,2388.07,9054.72,47.23,521.95,2388.12,8.393,392,38.81,23.2988 +92,23,-0.0011,0.0003,642.38,1585.85,1403.87,21.61,553.75,2388.07,9055.89,47.35,521.51,2388.03,8.4139,391,38.88,23.4195 +92,24,0.0009,-0.0001,642.28,1594.5,1401.45,21.61,553.81,2388.06,9049.57,47.31,522.03,2388.05,8.4117,392,39.02,23.4684 +92,25,0.0014,0.0004,642.1,1588.83,1405.56,21.61,554.15,2388.08,9055.63,47.4,521.93,2388.09,8.408,392,38.89,23.4189 +92,26,-0.0002,-0.0001,642.37,1583.53,1409.94,21.61,554.18,2388.08,9055.47,46.99,522.37,2388.07,8.3621,393,38.92,23.3657 +92,27,-0.0016,-0.0002,642.39,1578.47,1409.17,21.61,553.99,2388.05,9057.92,47.34,522.17,2388.11,8.4346,390,38.88,23.3295 +92,28,-0.0012,0.0001,642.39,1589.61,1406.98,21.61,554.7,2388.04,9049.96,47.45,521.85,2388.09,8.3962,392,38.66,23.4373 +92,29,0.0001,-0.0003,642.46,1587.3,1398.55,21.61,554.36,2388.07,9049.14,47.24,522.3,2388.03,8.4046,390,39.13,23.4096 +92,30,-0.0005,0.0,642.24,1585.87,1400.49,21.61,553.76,2388.06,9059.54,47.36,522.18,2388.07,8.3755,394,39.12,23.4305 +92,31,0.0022,-0.0002,642.15,1590.49,1401.56,21.61,553.52,2388.05,9055.97,47.38,521.51,2388.1,8.4032,391,39.04,23.3824 +92,32,-0.0024,0.0005,642.4,1593.82,1400.43,21.61,554.18,2388.05,9056.9,47.35,522.24,2388.02,8.3967,395,38.95,23.2434 +92,33,-0.0023,0.0001,642.03,1575.52,1405.36,21.61,553.67,2388.07,9053.77,47.37,522.2,2388.0,8.4298,392,38.82,23.4074 +92,34,-0.0027,0.0004,641.86,1587.08,1404.28,21.61,554.39,2388.05,9062.59,47.35,522.11,2388.04,8.4067,392,39.04,23.3163 +92,35,0.0025,0.0001,642.3,1583.79,1404.96,21.61,553.55,2388.1,9055.07,47.06,521.79,2388.01,8.4097,391,38.86,23.3444 +92,36,-0.0003,0.0004,642.22,1588.96,1398.75,21.61,554.43,2388.02,9054.76,47.47,521.97,2388.04,8.4258,393,39.0,23.4078 +92,37,-0.0003,-0.0003,642.44,1592.49,1406.02,21.61,554.41,2388.1,9053.59,47.35,522.08,2388.07,8.4267,391,38.8,23.3089 +92,38,0.0002,0.0005,642.26,1585.66,1403.44,21.61,553.68,2388.06,9049.55,47.41,522.04,2388.08,8.4209,393,38.92,23.3347 +92,39,-0.0017,0.0006,642.58,1584.65,1405.68,21.61,553.86,2388.04,9051.49,47.46,521.94,2388.07,8.4379,392,39.0,23.407 +92,40,0.002,0.0002,642.57,1587.86,1407.95,21.61,553.81,2388.08,9049.61,47.36,521.98,2388.05,8.4058,392,38.95,23.4313 +92,41,0.0029,-0.0001,642.18,1579.04,1400.26,21.61,553.11,2388.04,9055.54,47.15,522.48,2388.06,8.4038,393,38.96,23.3017 +92,42,0.0014,0.0005,642.99,1589.37,1396.71,21.61,553.47,2388.07,9053.85,47.42,522.17,2388.06,8.4162,393,38.92,23.4293 +92,43,0.0027,-0.0003,642.65,1589.07,1408.18,21.61,554.16,2388.04,9053.58,47.26,521.67,2388.08,8.4391,394,38.93,23.447 +92,44,-0.0027,-0.0002,642.4,1583.66,1401.7,21.61,553.99,2388.16,9054.16,47.19,522.23,2388.02,8.4193,392,38.8,23.3891 +92,45,-0.0006,0.0004,641.89,1582.95,1405.86,21.61,553.73,2388.08,9058.77,47.37,523.0,2388.07,8.3974,393,38.84,23.4192 +92,46,0.0027,-0.0001,642.6,1580.43,1399.62,21.61,553.53,2388.07,9055.19,47.5,522.07,2388.09,8.4035,391,38.99,23.387 +92,47,0.0025,0.0004,642.61,1586.89,1405.3,21.61,553.81,2388.09,9051.35,47.36,521.78,2388.11,8.4298,392,38.97,23.3957 +92,48,0.0002,-0.0004,642.04,1583.9,1409.98,21.61,554.6,2388.09,9058.41,47.21,522.03,2388.04,8.4085,392,38.81,23.2036 +92,49,0.0022,0.0005,642.06,1588.85,1406.93,21.61,553.98,2388.01,9057.85,47.48,522.2,2388.09,8.4058,392,38.92,23.381 +92,50,-0.0036,-0.0003,642.64,1582.99,1398.75,21.61,554.65,2388.09,9050.1,47.39,521.95,2388.09,8.3974,393,39.09,23.3867 +92,51,0.0054,0.0002,642.08,1592.05,1402.54,21.61,554.01,2388.13,9053.92,47.35,521.32,2388.08,8.4238,392,38.87,23.2955 +92,52,0.005,0.0005,642.18,1581.25,1396.02,21.61,553.07,2388.07,9054.43,47.37,521.8,2388.1,8.4181,392,38.84,23.306 +92,53,-0.0026,0.0001,642.89,1580.12,1402.29,21.61,554.03,2388.03,9064.13,47.49,521.99,2388.0,8.4115,393,38.81,23.212 +92,54,0.002,0.0003,642.84,1579.56,1403.6,21.61,553.76,2388.05,9050.21,47.26,521.65,2388.03,8.413,393,39.02,23.4938 +92,55,-0.0003,0.0005,642.66,1582.76,1403.66,21.61,553.89,2388.06,9049.52,47.28,522.13,2388.01,8.4207,392,38.94,23.3001 +92,56,-0.0031,0.0004,642.85,1588.71,1399.05,21.61,554.57,2388.08,9058.88,47.37,521.86,2388.04,8.3989,390,39.09,23.3552 +92,57,-0.0018,0.0002,642.03,1579.35,1402.84,21.61,553.21,2388.07,9059.75,47.38,521.88,2388.12,8.4033,393,38.95,23.4467 +92,58,0.0005,-0.0004,642.08,1587.71,1401.77,21.61,554.3,2388.06,9050.38,47.33,522.22,2388.05,8.3951,392,38.85,23.3011 +92,59,-0.0081,0.0004,642.72,1584.59,1403.56,21.61,554.27,2388.07,9059.23,47.54,521.56,2388.09,8.4044,392,38.77,23.2625 +92,60,-0.0034,0.0004,641.96,1589.3,1403.47,21.61,554.25,2388.07,9053.2,47.42,521.2,2388.04,8.3931,391,38.82,23.3751 +92,61,-0.0021,-0.0001,642.64,1584.43,1400.86,21.61,553.48,2388.09,9057.55,47.23,522.25,2388.08,8.4528,392,38.92,23.3088 +92,62,0.002,0.0003,642.22,1585.2,1399.36,21.61,554.32,2388.05,9058.23,47.24,521.97,2388.01,8.4263,393,38.77,23.3701 +92,63,-0.0009,0.0005,642.12,1586.63,1401.87,21.61,553.52,2388.03,9056.08,47.2,521.91,2388.07,8.407,391,39.0,23.2848 +92,64,-0.0019,0.0004,642.31,1588.9,1408.18,21.61,554.01,2388.03,9053.15,47.48,521.91,2388.06,8.4055,391,38.85,23.3307 +92,65,-0.0019,0.0004,642.67,1593.98,1395.89,21.61,554.57,2388.03,9049.29,47.49,521.85,2388.05,8.4265,392,38.93,23.342 +92,66,-0.0038,0.0004,642.36,1590.6,1404.1,21.61,553.92,2388.07,9056.12,47.16,521.87,2388.02,8.4116,392,38.96,23.2726 +92,67,-0.0011,-0.0,642.64,1586.0,1402.49,21.61,554.57,2388.09,9057.15,47.36,522.33,2388.08,8.4431,393,38.95,23.5021 +92,68,0.0015,0.0001,642.26,1583.46,1399.45,21.61,553.96,2388.04,9056.37,47.2,521.75,2388.07,8.427,390,39.07,23.3185 +92,69,0.0016,0.0002,642.48,1580.12,1396.33,21.61,553.87,2388.11,9057.18,47.36,522.21,2388.05,8.4605,393,39.01,23.4044 +92,70,0.0024,0.0004,642.8,1593.82,1398.82,21.61,553.6,2388.03,9050.86,47.24,522.28,2388.07,8.4054,391,38.92,23.3203 +92,71,0.0003,0.0001,642.41,1579.73,1406.31,21.61,553.7,2388.05,9057.23,47.28,521.96,2388.05,8.4169,392,38.98,23.3491 +92,72,-0.0001,0.0005,642.67,1587.8,1399.5,21.61,554.34,2388.05,9049.63,47.39,521.64,2388.05,8.3925,392,39.01,23.3373 +92,73,0.0038,0.0001,642.0,1586.93,1408.25,21.61,554.58,2388.07,9055.69,47.53,521.85,2388.05,8.4128,394,38.83,23.4417 +92,74,-0.0017,0.0004,642.66,1577.89,1403.31,21.61,553.68,2388.08,9057.11,47.34,522.15,2388.13,8.3784,393,38.89,23.4006 +92,75,-0.0026,-0.0004,642.19,1585.31,1400.12,21.61,554.53,2388.03,9055.06,47.21,521.97,2387.98,8.3833,393,38.93,23.4145 +92,76,0.0035,0.0005,642.35,1592.59,1407.18,21.61,553.26,2388.06,9055.12,47.29,522.05,2388.04,8.4272,391,39.04,23.4256 +92,77,-0.0007,-0.0002,641.97,1585.48,1407.09,21.61,554.3,2388.03,9062.87,47.25,521.69,2388.09,8.4205,394,38.96,23.353 +92,78,-0.0011,-0.0002,642.58,1583.33,1394.65,21.61,554.07,2388.04,9054.79,47.38,522.4,2388.05,8.401,392,38.94,23.3582 +92,79,0.0023,-0.0004,642.71,1584.84,1398.13,21.61,553.61,2388.09,9060.37,47.3,522.36,2388.01,8.4521,393,38.75,23.2607 +92,80,0.0009,0.0005,642.12,1592.92,1409.29,21.61,554.17,2388.02,9058.89,47.34,522.03,2388.03,8.4061,391,38.92,23.3131 +92,81,-0.0009,0.0003,641.99,1592.38,1397.46,21.61,554.02,2388.07,9049.98,47.43,522.57,2388.08,8.446,391,38.99,23.3495 +92,82,0.0004,0.0004,642.2,1582.61,1409.01,21.61,554.52,2388.03,9057.42,47.21,521.94,2388.07,8.3946,392,38.93,23.405 +92,83,-0.0001,0.0005,642.1,1590.5,1403.3,21.61,554.23,2388.0,9056.41,47.55,521.8,2388.08,8.3709,392,38.73,23.3795 +92,84,0.0011,-0.0001,642.41,1589.13,1399.42,21.61,554.72,2388.05,9045.77,47.45,521.7,2388.06,8.4461,393,38.85,23.3692 +92,85,-0.0054,-0.0003,642.76,1586.64,1403.75,21.61,553.62,2388.05,9058.77,47.45,522.23,2388.04,8.3713,392,38.95,23.3127 +92,86,0.0015,0.0005,642.53,1585.07,1402.98,21.61,553.6,2388.02,9052.2,47.32,521.88,2388.09,8.4091,392,38.9,23.4116 +92,87,-0.0001,0.0001,642.49,1580.65,1401.81,21.61,553.99,2388.04,9062.16,47.27,521.89,2388.06,8.4312,392,39.01,23.3632 +92,88,-0.0014,0.0003,642.81,1587.19,1399.18,21.61,553.64,2388.04,9059.68,47.46,521.6,2388.03,8.4414,391,38.87,23.424 +92,89,0.0008,0.0004,642.02,1587.91,1398.83,21.61,553.94,2388.04,9052.18,47.4,522.0,2388.07,8.437,391,38.71,23.3583 +92,90,-0.0004,-0.0003,642.29,1589.08,1404.32,21.61,553.78,2388.04,9053.93,47.42,522.18,2388.12,8.4238,393,38.87,23.3229 +92,91,0.0039,-0.0004,642.33,1588.32,1402.8,21.61,553.89,2388.02,9062.08,47.13,521.54,2388.04,8.4184,392,38.88,23.2857 +92,92,0.0025,-0.0004,642.27,1593.85,1404.41,21.61,553.8,2388.04,9056.48,47.39,521.61,2388.1,8.4243,391,38.82,23.3625 +92,93,-0.0015,-0.0,641.95,1587.13,1402.4,21.6,554.09,2388.1,9064.27,47.48,521.87,2388.02,8.4303,392,38.99,23.4205 +92,94,0.0042,0.0002,642.74,1581.4,1404.18,21.61,554.28,2388.04,9054.54,47.29,521.79,2388.06,8.454,392,38.91,23.3789 +92,95,-0.0033,-0.0001,642.08,1583.79,1402.19,21.61,554.06,2388.06,9055.07,47.4,522.11,2388.04,8.4212,392,39.07,23.3361 +92,96,-0.0023,0.0004,642.63,1586.71,1403.18,21.61,553.59,2388.06,9057.19,47.59,521.72,2388.07,8.3912,393,38.99,23.3254 +92,97,-0.0008,0.0002,642.65,1591.87,1395.75,21.61,554.14,2388.1,9060.37,47.37,521.75,2388.04,8.4207,393,39.05,23.3799 +92,98,0.0047,-0.0001,642.32,1584.44,1410.48,21.61,554.29,2388.06,9050.56,47.41,521.9,2388.01,8.428,392,38.91,23.2805 +92,99,0.0026,0.0001,642.7,1579.86,1398.16,21.61,553.89,2388.07,9055.99,47.24,521.75,2388.1,8.3969,393,38.95,23.3102 +92,100,0.0022,-0.0003,642.66,1583.79,1402.36,21.61,554.19,2388.06,9056.49,47.6,522.0,2388.1,8.4274,390,38.88,23.4224 +92,101,0.0017,0.0005,642.41,1582.32,1406.5,21.61,553.4,2388.06,9060.01,47.32,521.66,2388.0,8.4033,392,38.91,23.3855 +92,102,0.0023,0.0002,642.33,1584.89,1404.1,21.61,553.73,2388.13,9056.62,47.5,521.94,2388.02,8.4018,393,38.98,23.3323 +92,103,-0.0009,-0.0004,642.27,1591.58,1399.17,21.61,553.33,2388.07,9061.17,47.5,521.72,2388.09,8.4137,393,38.88,23.324 +92,104,0.0038,0.0001,642.72,1594.07,1409.37,21.61,553.8,2388.07,9049.77,47.32,521.98,2388.12,8.4023,394,39.01,23.4795 +92,105,-0.0038,0.0004,642.75,1585.84,1401.93,21.61,552.99,2388.03,9050.33,47.52,521.53,2388.04,8.4319,393,38.81,23.3373 +92,106,0.0022,-0.0003,641.8,1578.55,1400.6,21.61,553.95,2388.06,9055.75,47.35,522.01,2388.08,8.436,393,38.81,23.3496 +92,107,0.0016,-0.0004,642.32,1586.95,1403.31,21.61,553.59,2388.07,9053.21,47.28,521.86,2388.01,8.45,393,38.83,23.2343 +92,108,-0.0037,-0.0001,642.49,1589.72,1406.16,21.61,553.3,2388.03,9054.89,47.34,521.98,2388.09,8.422,392,38.96,23.3638 +92,109,0.0008,0.0003,642.55,1574.86,1405.23,21.61,554.5,2388.08,9057.16,47.51,521.93,2388.05,8.4445,394,38.81,23.461 +92,110,-0.0008,-0.0003,642.73,1574.58,1398.92,21.61,553.9,2388.06,9055.03,47.31,521.89,2388.08,8.4061,394,39.08,23.4057 +92,111,-0.0017,-0.0,642.56,1587.06,1411.23,21.61,553.88,2388.01,9059.56,47.47,522.02,2388.1,8.4116,391,38.84,23.3873 +92,112,0.002,0.0001,642.21,1583.19,1407.36,21.61,554.18,2388.03,9058.25,47.31,521.75,2388.09,8.4427,393,38.97,23.239 +92,113,-0.0005,0.0006,642.68,1585.25,1398.48,21.61,553.99,2388.05,9064.35,47.44,522.0,2388.08,8.424,391,38.84,23.3821 +92,114,-0.0055,-0.0003,642.19,1587.0,1401.35,21.61,553.58,2388.05,9051.5,47.39,521.65,2388.13,8.4191,392,38.82,23.4194 +92,115,-0.0014,0.0001,642.31,1590.35,1406.12,21.61,554.55,2388.08,9055.56,47.23,521.36,2388.05,8.439,392,38.97,23.3515 +92,116,-0.0003,0.0005,642.73,1593.43,1403.79,21.61,554.05,2388.09,9049.53,47.53,521.77,2388.09,8.4558,391,38.98,23.3741 +92,117,0.0018,0.0002,642.16,1587.87,1407.27,21.61,553.62,2388.06,9060.92,47.36,521.65,2388.09,8.4002,390,39.0,23.2819 +92,118,0.0015,-0.0002,642.6,1587.68,1412.04,21.61,553.21,2388.06,9061.59,47.35,521.65,2388.11,8.4456,392,38.82,23.3956 +92,119,0.0031,-0.0002,642.74,1584.8,1395.12,21.61,554.41,2388.06,9058.12,47.37,521.98,2388.04,8.4183,393,38.83,23.39 +92,120,-0.0063,-0.0004,641.98,1588.36,1404.91,21.61,552.94,2388.05,9049.23,47.13,521.87,2388.06,8.4189,393,38.92,23.3996 +92,121,0.0015,-0.0002,642.95,1590.41,1400.67,21.61,553.96,2388.05,9064.58,47.41,521.18,2388.06,8.4009,393,38.81,23.3338 +92,122,0.0014,-0.0004,641.87,1582.92,1403.23,21.61,554.21,2388.07,9058.99,47.29,521.98,2388.01,8.4178,392,38.96,23.3386 +92,123,-0.0018,-0.0001,642.56,1590.62,1406.11,21.61,553.25,2388.02,9062.76,47.39,521.6,2388.04,8.4161,392,39.01,23.3215 +92,124,0.0002,-0.0002,642.82,1584.71,1403.57,21.61,554.83,2388.06,9060.45,47.46,521.72,2388.04,8.3983,392,38.79,23.4233 +92,125,0.0,0.0002,642.82,1584.12,1405.1,21.61,553.37,2388.05,9056.66,47.34,521.37,2388.1,8.459,395,39.1,23.364 +92,126,-0.0018,-0.0001,642.17,1589.4,1405.61,21.61,554.7,2388.05,9053.29,47.35,521.49,2388.07,8.4421,392,39.1,23.3371 +92,127,0.0011,-0.0002,642.39,1592.98,1405.9,21.61,554.54,2388.08,9054.69,47.33,521.71,2388.06,8.4663,392,38.92,23.3053 +92,128,0.0005,-0.0002,642.67,1586.53,1400.19,21.61,553.9,2388.07,9059.52,47.45,521.68,2388.07,8.4171,392,38.78,23.3676 +92,129,0.0019,0.0006,642.44,1590.68,1404.16,21.61,554.36,2388.04,9064.63,47.46,521.59,2388.04,8.3972,392,38.9,23.4004 +92,130,0.0028,0.0003,642.89,1584.71,1401.79,21.61,553.5,2388.02,9054.91,47.15,521.27,2388.09,8.4292,393,38.92,23.3677 +92,131,-0.0042,-0.0002,642.28,1589.03,1408.38,21.61,554.51,2388.08,9058.02,47.4,521.05,2388.04,8.411,392,38.87,23.2141 +92,132,-0.0015,-0.0003,642.6,1586.53,1402.05,21.61,553.67,2388.07,9055.48,47.32,522.27,2388.06,8.4306,395,39.1,23.2822 +92,133,0.001,0.0002,642.82,1594.97,1400.6,21.61,553.74,2388.08,9062.31,47.53,521.52,2388.0,8.4268,395,38.89,23.4712 +92,134,0.0014,0.0004,641.92,1590.75,1411.04,21.61,553.65,2388.06,9060.03,47.37,521.35,2388.05,8.4253,392,38.85,23.3838 +92,135,-0.0015,-0.0,642.26,1587.53,1398.06,21.61,553.36,2388.03,9064.3,47.36,521.76,2388.04,8.4433,392,38.8,23.3656 +92,136,-0.0005,-0.0003,642.24,1587.47,1409.23,21.61,554.19,2388.02,9063.15,47.38,521.84,2388.03,8.4121,394,38.83,23.2976 +92,137,-0.0018,-0.0002,642.6,1586.84,1404.47,21.61,553.78,2388.07,9061.68,47.2,521.24,2388.03,8.4225,391,38.87,23.3859 +92,138,-0.0019,-0.0002,642.49,1587.57,1395.62,21.61,554.49,2388.04,9058.52,47.37,522.09,2388.07,8.3902,392,38.99,23.3848 +92,139,0.0025,0.0004,642.29,1588.71,1407.45,21.61,553.7,2388.06,9056.26,47.23,521.62,2388.05,8.4165,392,38.76,23.2584 +92,140,-0.0009,-0.0001,642.14,1585.73,1409.56,21.61,553.58,2388.08,9056.7,47.48,521.73,2388.06,8.4298,394,38.76,23.3848 +92,141,0.0004,0.0005,642.77,1585.3,1405.4,21.61,553.51,2388.05,9060.08,47.33,521.96,2388.05,8.4339,393,38.92,23.4597 +92,142,-0.0009,0.0005,642.12,1595.92,1409.43,21.61,553.39,2388.02,9057.53,47.54,522.07,2388.09,8.4035,392,39.06,23.3265 +92,143,-0.0014,-0.0004,642.28,1586.38,1398.52,21.61,553.46,2388.08,9067.93,47.33,521.71,2388.02,8.4007,392,38.81,23.3807 +92,144,-0.0001,-0.0003,642.16,1595.23,1395.89,21.61,553.64,2388.06,9063.16,47.44,521.63,2388.05,8.4138,393,38.92,23.2852 +92,145,0.0025,0.0,642.89,1581.92,1410.49,21.61,554.22,2388.06,9060.81,47.45,521.89,2388.03,8.4184,392,38.86,23.2775 +92,146,-0.0029,0.0004,642.79,1585.48,1402.75,21.61,553.15,2388.05,9059.27,47.39,521.99,2388.09,8.414,391,39.0,23.3796 +92,147,0.0019,-0.0002,642.5,1593.86,1401.2,21.61,553.85,2388.08,9064.69,47.52,521.55,2388.02,8.4225,392,38.91,23.2841 +92,148,-0.0021,-0.0004,642.22,1594.18,1400.14,21.61,553.11,2388.09,9061.12,47.41,521.37,2388.05,8.4305,394,38.93,23.3481 +92,149,0.0016,0.0,642.49,1582.88,1407.02,21.61,553.12,2388.1,9064.04,47.51,521.79,2388.03,8.3937,392,38.87,23.303 +92,150,0.0002,0.0002,642.66,1589.43,1407.43,21.61,554.27,2388.03,9055.68,47.4,521.65,2388.07,8.4423,392,38.97,23.3531 +92,151,0.0008,0.0004,642.68,1590.71,1399.49,21.61,553.54,2388.1,9064.7,47.37,521.65,2388.12,8.4657,392,38.82,23.2828 +92,152,-0.0006,-0.0001,642.83,1583.64,1398.71,21.61,554.87,2388.07,9064.35,47.46,521.41,2388.09,8.4236,391,38.98,23.2829 +92,153,0.0008,0.0002,642.94,1590.98,1403.02,21.61,553.6,2388.02,9056.05,47.42,522.3,2388.09,8.4575,392,38.79,23.4108 +92,154,-0.0013,-0.0003,642.6,1587.38,1405.22,21.61,553.98,2388.05,9064.62,47.35,521.62,2388.04,8.4074,393,38.77,23.2856 +92,155,0.002,-0.0003,642.62,1587.56,1408.59,21.61,554.58,2388.05,9063.75,47.35,521.74,2388.02,8.4441,392,38.93,23.2578 +92,156,0.002,0.0,642.41,1588.41,1402.93,21.61,553.68,2388.03,9061.58,47.39,521.8,2388.1,8.4051,393,38.92,23.3447 +92,157,0.0014,0.0004,642.09,1590.38,1403.98,21.61,553.84,2388.06,9068.17,47.29,522.17,2388.08,8.4108,392,38.8,23.337 +92,158,-0.0026,-0.0,642.24,1584.61,1397.37,21.61,554.5,2388.11,9061.41,47.46,522.18,2388.07,8.41,393,38.97,23.4023 +92,159,0.0022,-0.0004,642.53,1589.33,1405.28,21.61,553.7,2388.03,9061.83,47.3,521.15,2388.04,8.423,391,38.83,23.3465 +92,160,0.0011,0.0001,642.85,1590.18,1398.33,21.61,553.74,2388.08,9064.04,47.43,521.74,2388.11,8.4418,394,38.91,23.2321 +92,161,0.0023,-0.0,642.38,1586.48,1406.49,21.61,553.74,2388.13,9065.22,47.45,521.68,2388.05,8.4125,394,38.81,23.4587 +92,162,-0.0003,-0.0002,642.57,1591.51,1405.06,21.61,553.64,2388.08,9063.44,47.51,522.28,2388.02,8.4319,393,38.81,23.3266 +92,163,-0.0004,0.0002,642.78,1587.89,1406.37,21.61,553.82,2388.12,9061.05,47.36,521.26,2388.06,8.4058,392,38.79,23.3621 +92,164,-0.0009,0.0004,642.76,1587.32,1401.98,21.61,553.96,2388.06,9067.6,47.43,521.46,2388.01,8.4286,394,38.78,23.3944 +92,165,-0.0055,-0.0003,642.54,1584.1,1408.37,21.61,553.43,2388.03,9058.63,47.52,521.6,2388.09,8.428,393,38.94,23.347 +92,166,0.0007,0.0003,642.42,1592.83,1404.92,21.61,553.93,2388.05,9062.62,47.33,521.51,2388.07,8.4458,393,38.94,23.2989 +92,167,-0.0041,-0.0004,642.74,1590.84,1408.3,21.61,553.63,2388.07,9062.92,47.52,521.59,2388.1,8.4666,392,38.87,23.2468 +92,168,0.0019,0.0002,642.41,1583.04,1408.48,21.61,553.6,2388.04,9062.51,47.43,522.11,2388.09,8.4158,393,38.83,23.2763 +92,169,-0.0035,0.0004,642.27,1583.65,1410.08,21.61,553.75,2388.09,9062.43,47.43,521.9,2388.08,8.4034,394,38.78,23.3387 +92,170,0.0009,-0.0,642.33,1581.87,1395.95,21.61,553.47,2388.01,9058.67,47.38,521.72,2388.04,8.4102,392,38.77,23.2924 +92,171,0.0011,0.0004,642.46,1587.81,1410.21,21.61,553.38,2388.1,9059.59,47.37,521.71,2388.08,8.4316,392,38.99,23.357 +92,172,0.0005,-0.0004,642.32,1591.8,1397.15,21.61,553.63,2388.09,9062.33,47.54,521.72,2388.09,8.4053,392,38.95,23.2169 +92,173,0.0008,0.0002,642.53,1584.69,1407.95,21.61,553.37,2388.01,9060.37,47.41,521.77,2388.08,8.4331,392,38.86,23.2531 +92,174,-0.0013,0.0005,642.3,1590.66,1400.62,21.61,553.8,2388.12,9057.33,47.38,521.28,2388.06,8.4087,392,39.12,23.3024 +92,175,-0.0,-0.0002,642.67,1590.64,1402.07,21.61,553.74,2388.09,9065.19,47.29,522.01,2388.05,8.4339,395,38.95,23.3568 +92,176,-0.0028,0.0002,642.01,1585.51,1404.65,21.61,554.26,2388.07,9056.11,47.5,521.31,2388.14,8.4194,392,38.87,23.2981 +92,177,-0.0011,0.0004,642.14,1587.06,1401.86,21.61,553.11,2388.04,9060.0,47.52,521.66,2388.07,8.4261,392,38.89,23.3623 +92,178,0.0002,0.0005,642.35,1596.41,1408.66,21.61,554.21,2388.11,9059.47,47.47,521.83,2388.09,8.4413,392,38.76,23.3265 +92,179,0.0006,-0.0,642.44,1588.56,1406.24,21.61,553.77,2388.08,9069.76,47.16,522.4,2388.02,8.4518,394,38.72,23.3774 +92,180,-0.0005,0.0005,642.84,1575.45,1407.29,21.61,553.58,2388.04,9065.22,47.47,522.16,2388.11,8.4647,394,38.91,23.4037 +92,181,-0.0019,-0.0004,642.62,1587.35,1401.35,21.61,553.21,2388.08,9064.21,47.58,521.69,2388.06,8.4072,393,38.86,23.2682 +92,182,0.002,0.0004,642.47,1587.51,1404.39,21.61,554.0,2388.05,9064.05,47.32,521.91,2388.08,8.4934,393,38.86,23.3623 +92,183,0.0015,-0.0001,642.6,1590.59,1404.23,21.61,553.85,2388.1,9066.79,47.63,520.99,2388.11,8.4268,393,38.81,23.3302 +92,184,0.0031,-0.0,642.66,1592.94,1412.79,21.61,553.72,2388.08,9059.53,47.37,521.2,2388.04,8.3923,393,38.79,23.2366 +92,185,0.0021,-0.0004,642.93,1593.05,1405.61,21.61,553.49,2388.06,9063.45,47.43,521.57,2388.11,8.4313,394,38.97,23.3019 +92,186,-0.0004,0.0003,642.33,1592.9,1411.25,21.61,553.57,2388.05,9066.08,47.48,521.81,2388.09,8.4312,390,38.88,23.2382 +92,187,-0.002,0.0004,642.21,1583.82,1405.42,21.61,554.06,2388.09,9066.64,47.29,521.55,2388.03,8.4278,391,38.9,23.4229 +92,188,0.0049,-0.0004,642.18,1594.46,1401.63,21.61,554.04,2388.09,9064.44,47.42,521.58,2388.1,8.4325,393,38.89,23.3051 +92,189,0.0028,0.0002,642.84,1581.9,1408.87,21.61,553.07,2388.12,9059.19,47.38,521.05,2388.09,8.4267,393,38.93,23.2414 +92,190,0.0001,-0.0003,642.74,1587.68,1406.89,21.61,553.43,2388.08,9071.27,47.76,521.39,2388.07,8.3796,393,38.97,23.3499 +92,191,0.001,0.0,642.36,1585.69,1400.0,21.61,553.48,2388.09,9072.43,47.44,521.97,2388.07,8.4085,395,38.68,23.3259 +92,192,-0.0015,-0.0004,642.04,1582.18,1410.08,21.61,553.89,2388.08,9066.17,47.47,522.51,2388.1,8.4149,392,38.89,23.3776 +92,193,0.0,0.0003,642.95,1590.41,1408.46,21.61,553.54,2388.06,9066.87,47.53,521.38,2388.09,8.4226,394,38.6,23.3283 +92,194,-0.0009,-0.0003,642.3,1588.61,1403.67,21.61,553.9,2388.1,9065.53,47.49,521.21,2388.08,8.4273,393,38.86,23.3814 +92,195,0.0011,0.0004,643.06,1588.61,1407.03,21.61,554.77,2388.13,9067.86,47.44,521.72,2388.05,8.4597,392,38.79,23.1667 +92,196,-0.0019,0.0,643.07,1581.48,1405.43,21.61,553.88,2388.07,9065.02,47.73,521.51,2388.15,8.469,393,38.81,23.3152 +92,197,-0.0018,-0.0,642.62,1588.51,1406.32,21.61,553.2,2388.14,9067.96,47.6,521.58,2388.08,8.4442,392,38.88,23.3102 +92,198,-0.0005,0.0005,642.66,1588.15,1402.24,21.61,553.23,2388.09,9068.88,47.48,521.18,2388.1,8.4374,394,39.04,23.3313 +92,199,-0.0043,0.0002,643.01,1585.46,1407.81,21.61,553.42,2388.08,9066.32,47.55,521.48,2388.13,8.3875,394,38.91,23.3936 +92,200,-0.0001,-0.0003,642.62,1593.28,1395.65,21.61,554.31,2388.09,9067.5,47.54,521.41,2388.12,8.4345,394,38.79,23.3903 +92,201,-0.0002,0.0003,642.53,1591.94,1405.37,21.61,553.62,2388.04,9068.14,47.66,521.95,2388.12,8.4139,391,38.74,23.3214 +92,202,0.0012,-0.0001,642.71,1585.67,1405.98,21.61,553.27,2388.08,9063.25,47.48,522.01,2388.1,8.4473,393,38.91,23.3289 +92,203,-0.0012,0.0003,642.18,1593.42,1404.78,21.61,553.39,2388.12,9069.02,47.49,521.43,2388.08,8.4521,393,38.81,23.3854 +92,204,-0.0032,0.0003,642.48,1589.14,1409.04,21.61,553.95,2388.05,9069.38,47.63,521.76,2388.07,8.4029,393,38.98,23.288 +92,205,0.0014,0.0001,642.92,1595.85,1402.89,21.61,553.18,2388.03,9068.28,47.63,521.58,2388.04,8.4313,393,38.79,23.24 +92,206,-0.0021,-0.0,643.32,1590.82,1409.96,21.61,553.21,2388.03,9070.58,47.41,521.58,2388.09,8.4261,394,38.72,23.2385 +92,207,0.0025,0.0005,642.27,1590.14,1409.8,21.61,553.93,2388.08,9067.56,47.4,521.13,2388.08,8.4338,393,38.76,23.3421 +92,208,0.0017,-0.0002,643.0,1587.89,1407.41,21.61,553.69,2388.07,9078.28,47.36,521.6,2388.09,8.4413,393,38.93,23.2318 +92,209,-0.0006,0.0001,643.19,1583.71,1400.97,21.61,553.3,2388.1,9072.1,47.3,521.5,2388.09,8.4623,392,38.92,23.3381 +92,210,0.0002,0.0002,642.84,1588.38,1410.07,21.61,553.8,2388.11,9066.15,47.33,522.01,2388.09,8.4655,392,38.77,23.2677 +92,211,-0.0005,-0.0002,642.47,1591.27,1401.84,21.61,553.99,2388.09,9068.84,47.33,521.42,2388.07,8.4225,392,38.86,23.315 +92,212,0.0006,0.0,642.58,1598.03,1404.45,21.61,553.29,2388.1,9070.93,47.38,521.2,2388.02,8.4374,393,39.0,23.3545 +92,213,0.002,0.0,642.45,1594.39,1413.61,21.61,553.76,2388.08,9070.08,47.44,521.42,2388.09,8.4133,394,38.85,23.284 +92,214,-0.0003,-0.0001,642.77,1591.78,1406.81,21.61,553.0,2388.1,9064.96,47.53,521.18,2388.08,8.4134,394,38.91,23.294 +92,215,-0.0039,-0.0003,642.18,1591.26,1405.43,21.61,553.1,2388.06,9067.63,47.54,521.72,2388.05,8.4426,395,38.83,23.3714 +92,216,-0.0009,-0.0002,642.78,1595.38,1404.66,21.61,553.52,2388.03,9065.83,47.55,521.47,2388.07,8.4272,393,38.78,23.2625 +92,217,0.004,-0.0004,642.34,1589.0,1406.74,21.61,553.33,2388.11,9071.46,47.49,521.42,2388.11,8.4537,395,38.66,23.2047 +92,218,-0.002,-0.0002,642.98,1588.43,1411.71,21.61,553.32,2388.16,9064.96,47.54,521.84,2388.1,8.3851,394,38.88,23.2561 +92,219,0.0009,-0.0001,642.47,1589.13,1410.11,21.61,553.52,2388.08,9066.97,47.56,521.52,2388.09,8.4382,394,38.73,23.2123 +92,220,0.0026,-0.0002,642.5,1586.91,1405.2,21.61,553.66,2388.08,9066.89,47.52,521.02,2388.03,8.4307,392,38.85,23.3068 +92,221,-0.0007,0.0004,642.78,1594.12,1409.11,21.61,552.98,2388.09,9074.5,47.59,520.65,2388.09,8.4468,393,38.98,23.4026 +92,222,-0.0005,0.0002,642.66,1589.6,1407.42,21.61,552.77,2388.09,9067.41,47.4,521.34,2388.11,8.422,394,38.74,23.3862 +92,223,0.0029,0.0004,642.92,1589.49,1409.25,21.61,553.63,2388.04,9077.17,47.64,521.4,2388.1,8.4014,393,38.69,23.4035 +92,224,0.0002,-0.0002,642.97,1590.64,1413.07,21.61,553.8,2388.14,9068.17,47.58,521.6,2388.15,8.4465,394,38.9,23.2317 +92,225,-0.0041,-0.0002,642.05,1595.68,1413.75,21.61,552.99,2388.11,9070.23,47.62,521.29,2388.09,8.4437,393,38.82,23.3694 +92,226,-0.0013,0.0002,643.09,1585.68,1407.64,21.61,553.06,2388.08,9076.75,47.47,521.19,2388.11,8.4375,394,38.73,23.2811 +92,227,-0.0016,-0.0003,642.43,1587.34,1412.44,21.61,553.48,2388.06,9068.24,47.49,521.5,2388.03,8.4354,394,38.68,23.2388 +92,228,0.0012,-0.0,642.87,1584.75,1410.51,21.61,553.2,2388.07,9067.25,47.63,521.01,2388.09,8.462,394,38.78,23.272 +92,229,0.0,-0.0,642.83,1586.25,1413.75,21.61,553.3,2388.07,9071.83,47.56,521.1,2388.11,8.4615,394,38.85,23.2746 +92,230,0.001,0.0002,642.7,1586.48,1402.85,21.61,552.9,2388.07,9072.7,47.5,521.71,2388.01,8.4439,394,38.73,23.2596 +92,231,-0.0002,0.0002,642.19,1592.54,1412.91,21.61,553.72,2388.14,9073.61,47.41,521.79,2388.07,8.4453,394,38.78,23.1573 +92,232,-0.0019,0.0004,642.51,1590.97,1411.53,21.61,553.41,2388.05,9074.22,47.47,521.58,2388.06,8.4209,394,38.87,23.2504 +92,233,-0.001,-0.0003,642.95,1592.55,1414.95,21.61,553.12,2388.05,9072.74,47.57,520.98,2388.09,8.4712,394,38.81,23.229 +92,234,0.0026,0.0001,642.83,1595.99,1414.43,21.61,553.51,2388.06,9074.15,47.44,521.73,2388.12,8.4912,394,38.86,23.265 +92,235,0.0003,0.0001,642.47,1591.39,1411.78,21.61,553.27,2388.1,9072.65,47.37,521.51,2388.13,8.4141,394,38.79,23.2996 +92,236,-0.0008,-0.0001,642.69,1592.68,1409.8,21.61,553.69,2388.06,9069.84,47.74,521.02,2388.16,8.4774,394,38.89,23.2392 +92,237,0.0027,0.0003,642.27,1592.41,1410.54,21.61,553.0,2388.14,9067.2,47.72,521.52,2388.11,8.4649,391,38.8,23.2287 +92,238,-0.0018,-0.0,642.85,1596.18,1412.99,21.61,552.98,2388.09,9072.02,47.47,521.22,2388.16,8.4578,395,38.8,23.2427 +92,239,0.0041,0.0002,642.42,1582.77,1408.36,21.61,552.81,2388.07,9073.46,47.62,521.21,2388.03,8.4749,393,38.89,23.301 +92,240,0.0013,-0.0004,642.66,1586.19,1407.24,21.61,554.07,2388.09,9074.2,47.59,521.83,2388.07,8.4466,394,38.78,23.2025 +92,241,0.0019,-0.0,642.94,1598.79,1408.42,21.61,552.84,2388.06,9076.75,47.53,521.19,2388.09,8.4132,393,38.86,23.3438 +92,242,-0.0018,-0.0001,642.42,1586.69,1406.68,21.61,552.55,2388.14,9080.13,47.45,521.42,2388.07,8.4386,392,38.71,23.1898 +92,243,0.0043,0.0001,642.74,1585.52,1416.73,21.61,552.82,2388.07,9076.4,47.53,521.64,2388.06,8.4419,394,38.92,23.1934 +92,244,-0.0001,-0.0004,642.97,1591.36,1411.18,21.61,553.85,2388.09,9071.12,47.57,520.67,2388.07,8.4617,393,38.74,23.2855 +92,245,-0.0023,0.0005,643.0,1592.92,1409.73,21.61,553.45,2388.08,9080.3,47.53,520.77,2388.1,8.4808,394,38.76,23.2771 +92,246,0.0019,-0.0003,642.77,1594.08,1409.33,21.61,552.79,2388.06,9075.93,47.69,521.02,2388.07,8.4629,394,38.72,23.2158 +92,247,0.0035,-0.0004,643.11,1590.85,1406.88,21.61,553.14,2388.07,9077.4,47.6,520.68,2388.15,8.428,394,38.58,23.2277 +92,248,-0.0015,-0.0001,642.69,1588.22,1412.96,21.61,553.23,2388.07,9074.57,47.64,521.48,2388.15,8.4821,395,38.79,23.3383 +92,249,-0.0033,-0.0004,642.82,1587.28,1414.4,21.61,554.21,2388.05,9078.74,47.54,521.04,2388.04,8.4467,394,38.75,23.2087 +92,250,0.0006,0.0003,642.65,1593.92,1409.65,21.61,552.88,2388.11,9074.59,47.77,520.65,2388.12,8.4028,393,38.82,23.2235 +92,251,-0.0002,-0.0002,642.25,1589.92,1416.45,21.61,553.29,2388.12,9074.69,47.67,521.22,2388.08,8.4596,393,38.61,23.3122 +92,252,0.0031,-0.0004,642.66,1592.54,1411.54,21.61,552.77,2388.08,9072.64,47.82,521.55,2388.07,8.4226,393,38.89,23.3495 +92,253,-0.0033,-0.0,642.76,1590.05,1417.94,21.61,553.07,2388.09,9076.51,47.61,521.42,2388.13,8.4282,393,38.77,23.3309 +92,254,-0.0012,-0.0001,643.24,1589.98,1411.86,21.61,553.54,2388.08,9082.26,47.61,521.1,2388.07,8.4426,394,38.57,23.2425 +92,255,0.006,-0.0003,642.97,1585.92,1414.77,21.61,553.36,2388.08,9081.37,47.62,520.86,2388.1,8.4289,394,38.81,23.2267 +92,256,0.0004,-0.0002,642.56,1590.31,1403.29,21.61,552.5,2388.11,9086.88,47.56,521.46,2388.06,8.4396,393,38.81,23.1964 +92,257,-0.0004,-0.0004,642.49,1591.75,1413.94,21.61,553.22,2388.08,9090.55,47.45,521.14,2388.09,8.4692,394,38.75,23.3371 +92,258,-0.0019,0.0003,642.41,1588.08,1410.89,21.61,552.7,2388.12,9079.78,47.58,521.07,2388.07,8.4606,393,38.82,23.2673 +92,259,0.0062,-0.0,642.93,1592.05,1415.56,21.61,553.18,2388.12,9072.27,47.85,521.23,2388.1,8.4554,394,38.67,23.2779 +92,260,0.0039,0.0005,643.16,1594.36,1420.25,21.61,553.32,2388.11,9078.64,47.71,521.19,2388.12,8.4565,394,38.66,23.2264 +92,261,0.0013,-0.0003,642.98,1599.23,1410.72,21.61,553.03,2388.07,9087.35,47.77,521.06,2388.11,8.4358,392,38.83,23.2338 +92,262,0.0013,0.0,642.97,1586.77,1412.68,21.61,552.73,2388.09,9083.12,47.45,520.71,2388.05,8.4481,394,38.9,23.3101 +92,263,-0.0025,-0.0,642.89,1600.39,1415.16,21.61,552.84,2388.1,9072.75,47.47,521.21,2388.05,8.4716,394,38.77,23.1702 +92,264,0.0028,0.0002,642.59,1597.61,1410.79,21.61,553.59,2388.12,9084.18,47.58,521.45,2388.08,8.4459,394,38.7,23.246 +92,265,-0.0008,0.0003,643.57,1590.06,1407.39,21.61,552.75,2388.06,9090.12,47.6,520.97,2388.13,8.4453,394,38.82,23.1808 +92,266,0.0002,0.0003,642.67,1590.78,1416.92,21.61,552.79,2388.1,9094.7,47.51,521.2,2388.13,8.4541,395,38.65,23.2242 +92,267,-0.0004,0.0003,642.94,1598.32,1409.49,21.61,552.4,2388.11,9078.34,47.85,521.06,2388.11,8.4658,394,38.88,23.3332 +92,268,0.0037,-0.0004,642.75,1593.61,1415.36,21.61,553.2,2388.09,9085.0,47.66,521.31,2388.06,8.4707,394,38.63,23.2119 +92,269,0.0032,-0.0004,642.47,1595.36,1415.98,21.61,552.78,2388.07,9087.28,47.61,520.95,2388.08,8.5006,394,38.62,23.1916 +92,270,0.0006,0.0005,642.92,1593.92,1408.27,21.61,552.51,2388.11,9091.49,47.84,521.17,2388.1,8.4426,393,38.7,23.1064 +92,271,-0.0046,0.0005,642.92,1596.76,1420.07,21.61,553.23,2388.14,9080.76,47.65,521.34,2388.13,8.4487,395,38.67,23.135 +92,272,-0.0017,0.0005,643.09,1592.2,1409.2,21.61,552.54,2388.14,9083.44,47.8,521.0,2388.08,8.4581,394,38.81,23.2708 +92,273,0.0004,0.0005,642.9,1591.45,1416.04,21.61,552.81,2388.11,9085.3,47.61,520.81,2388.11,8.4509,393,38.94,23.2799 +92,274,-0.0005,0.0005,643.27,1588.49,1414.61,21.61,553.0,2388.13,9084.17,47.92,520.83,2388.11,8.4889,394,38.71,23.2562 +92,275,-0.0022,-0.0,642.93,1591.77,1420.78,21.61,552.3,2388.11,9089.65,47.57,520.97,2388.08,8.4748,394,38.75,23.2142 +92,276,0.0006,0.0002,642.61,1599.47,1414.35,21.61,552.82,2388.05,9090.61,47.74,520.94,2388.17,8.4517,393,38.6,23.2003 +92,277,0.0011,-0.0004,642.56,1594.3,1419.78,21.61,552.52,2388.1,9091.74,47.83,520.92,2388.14,8.4999,395,38.48,23.1618 +92,278,0.0002,-0.0002,643.23,1589.24,1413.45,21.61,552.41,2388.13,9093.36,47.7,520.96,2388.14,8.4608,396,38.68,23.2041 +92,279,0.0004,0.0001,643.23,1595.95,1413.31,21.61,552.65,2388.12,9088.26,47.7,520.99,2388.08,8.461,394,38.63,23.1976 +92,280,-0.0056,0.0004,642.71,1593.5,1413.24,21.61,552.8,2388.1,9091.47,47.73,520.89,2388.14,8.4648,395,38.54,23.2942 +92,281,-0.0038,0.0003,642.33,1588.57,1419.04,21.61,553.0,2388.09,9084.0,47.77,521.06,2388.11,8.4863,394,38.75,23.2518 +92,282,-0.0006,0.0001,642.72,1586.44,1415.42,21.61,553.0,2388.13,9090.37,47.64,521.2,2388.1,8.4805,395,38.83,23.2668 +92,283,-0.0017,0.0004,643.13,1590.69,1421.77,21.61,552.38,2388.09,9088.23,47.7,521.28,2388.14,8.4825,394,38.76,23.0683 +92,284,-0.0005,0.0001,643.02,1599.5,1416.22,21.61,553.1,2388.1,9092.13,47.78,520.75,2388.11,8.4498,394,38.61,23.1949 +92,285,0.0011,-0.0003,643.59,1599.79,1415.23,21.61,552.98,2388.09,9085.5,47.75,520.99,2388.15,8.4556,395,38.66,23.1489 +92,286,0.0028,0.0001,642.8,1597.89,1420.96,21.61,553.1,2388.09,9090.47,47.71,521.04,2388.08,8.5003,394,38.58,23.191 +92,287,-0.0004,-0.0004,643.21,1594.19,1421.07,21.61,552.62,2388.16,9093.83,47.77,520.6,2388.14,8.4395,396,38.65,23.1964 +92,288,-0.0022,-0.0004,643.33,1601.71,1418.43,21.61,551.51,2388.12,9096.52,47.62,520.16,2388.14,8.4768,395,38.76,23.1445 +92,289,-0.0011,-0.0003,642.78,1595.91,1412.36,21.61,552.79,2388.1,9086.68,47.77,520.7,2388.12,8.4778,395,38.63,23.0169 +92,290,-0.0016,0.0003,643.37,1595.51,1417.22,21.61,552.25,2388.16,9095.79,47.83,520.74,2388.12,8.4889,394,38.54,23.1215 +92,291,0.004,0.0005,643.18,1591.64,1417.04,21.61,552.33,2388.13,9093.06,47.7,520.88,2388.12,8.4993,395,38.6,23.2049 +92,292,0.0024,0.0005,642.66,1594.36,1415.32,21.61,552.92,2388.06,9102.99,47.94,520.75,2388.17,8.4727,394,38.73,23.1946 +92,293,-0.0035,-0.0004,642.32,1599.58,1419.51,21.61,552.87,2388.18,9095.75,47.64,520.89,2388.18,8.4873,395,38.44,23.1963 +92,294,-0.0002,0.0003,643.29,1600.48,1414.81,21.61,552.86,2388.12,9091.86,47.84,520.62,2388.13,8.4579,394,38.75,23.1642 +92,295,-0.003,0.0002,643.09,1598.78,1412.62,21.61,552.68,2388.11,9102.53,47.6,520.08,2388.13,8.4549,393,38.47,23.1419 +92,296,0.0018,0.0001,642.94,1605.58,1415.17,21.61,552.65,2388.18,9098.21,47.82,520.5,2388.09,8.4713,393,38.68,23.1079 +92,297,0.0017,-0.0003,643.22,1594.91,1419.0,21.61,552.32,2388.19,9103.15,47.75,521.09,2388.15,8.4824,396,38.36,23.3614 +92,298,0.0001,0.0003,643.04,1601.88,1413.8,21.61,552.7,2388.11,9101.34,47.75,520.96,2388.09,8.4791,395,38.51,23.1106 +92,299,-0.0032,-0.0004,643.73,1596.23,1411.51,21.61,552.47,2388.13,9103.62,48.04,520.58,2388.14,8.4885,395,38.75,23.1063 +92,300,0.0032,-0.0003,642.75,1600.03,1420.71,21.61,552.72,2388.15,9102.49,47.78,520.47,2388.18,8.4628,394,38.86,23.1132 +92,301,0.0002,-0.0002,643.15,1595.44,1421.31,21.61,552.09,2388.09,9100.19,47.84,520.53,2388.1,8.4486,394,38.79,23.2632 +92,302,-0.0001,0.0001,643.28,1598.07,1419.8,21.61,552.23,2388.11,9102.9,47.8,520.3,2388.09,8.478,394,38.7,23.1241 +92,303,0.0002,-0.0003,643.32,1593.51,1425.88,21.61,552.49,2388.15,9105.25,47.86,521.06,2388.11,8.4892,394,38.71,23.1187 +92,304,0.002,0.0003,642.78,1591.33,1422.26,21.61,552.26,2388.19,9099.26,47.89,520.83,2388.16,8.4889,396,38.73,23.1806 +92,305,-0.0043,-0.0004,642.71,1593.94,1420.49,21.61,552.76,2388.13,9103.63,47.81,520.42,2388.19,8.5114,395,38.54,23.2503 +92,306,0.0014,-0.0002,643.23,1606.12,1419.36,21.61,552.01,2388.12,9107.82,47.72,520.6,2388.16,8.5017,395,38.66,23.1907 +92,307,-0.0002,0.0004,643.83,1594.67,1421.64,21.61,552.55,2388.12,9112.34,47.95,520.51,2388.11,8.4833,397,38.39,23.1031 +92,308,0.0009,0.0004,643.09,1601.18,1418.86,21.61,552.12,2388.15,9106.79,47.85,521.23,2388.07,8.4984,395,38.58,23.1867 +92,309,-0.0029,0.0004,642.95,1602.0,1420.04,21.61,551.69,2388.19,9112.75,47.89,520.84,2388.08,8.4896,395,38.66,23.0973 +92,310,-0.0002,0.0005,642.65,1605.66,1419.89,21.61,551.86,2388.14,9108.57,47.89,520.8,2388.11,8.5012,395,38.66,23.1339 +92,311,0.0009,-0.0001,643.11,1595.81,1427.3,21.61,552.97,2388.1,9111.76,47.91,520.37,2388.15,8.5269,396,38.57,23.1529 +92,312,-0.0035,0.0005,643.27,1602.2,1417.35,21.61,552.41,2388.13,9107.62,47.92,520.4,2388.14,8.5152,396,38.45,23.172 +92,313,-0.0024,0.0003,643.05,1602.0,1417.89,21.61,552.16,2388.1,9112.27,47.92,520.62,2388.14,8.502,395,38.5,23.1811 +92,314,0.002,0.0,643.02,1598.97,1418.0,21.61,552.08,2388.09,9103.52,47.97,520.36,2388.17,8.5025,396,38.63,23.2225 +92,315,-0.0036,-0.0004,642.85,1596.03,1416.63,21.61,552.46,2388.14,9107.07,47.96,520.63,2388.16,8.4351,395,38.74,23.2207 +92,316,-0.0017,0.0002,643.22,1599.9,1420.43,21.61,552.14,2388.13,9121.01,48.15,520.52,2388.15,8.4998,395,38.35,23.1849 +92,317,-0.0,-0.0002,643.39,1603.81,1429.09,21.61,552.6,2388.19,9114.45,48.04,521.07,2388.11,8.4945,395,38.73,23.2265 +92,318,0.0014,-0.0002,643.61,1599.34,1424.57,21.61,552.22,2388.16,9115.23,48.02,520.6,2388.16,8.498,395,38.5,23.0729 +92,319,-0.0027,0.0003,643.56,1601.69,1425.07,21.61,551.9,2388.2,9118.05,48.06,520.07,2388.14,8.507,395,38.51,23.2103 +92,320,0.0015,0.0002,643.31,1603.5,1421.89,21.61,552.59,2388.2,9116.34,48.14,520.05,2388.14,8.4957,397,38.5,23.0251 +92,321,0.0015,0.0006,643.73,1601.23,1425.6,21.61,551.73,2388.14,9118.02,48.03,520.48,2388.15,8.5099,397,38.26,23.1353 +92,322,-0.0047,-0.0,643.1,1595.79,1421.88,21.61,551.86,2388.17,9120.49,47.94,520.36,2388.15,8.5144,396,38.53,23.1435 +92,323,0.0024,0.0001,643.07,1605.0,1426.18,21.61,552.27,2388.23,9123.43,47.93,520.62,2388.19,8.4639,395,38.4,23.1423 +92,324,-0.0021,-0.0003,643.56,1600.14,1427.26,21.61,552.4,2388.18,9122.33,48.03,520.15,2388.15,8.5145,396,38.6,23.0718 +92,325,0.0023,0.0005,643.59,1609.03,1423.87,21.61,552.34,2388.13,9116.02,48.03,520.39,2388.14,8.5088,395,38.56,23.1559 +92,326,-0.0016,-0.0,643.29,1603.05,1429.19,21.61,552.14,2388.18,9120.87,47.78,520.85,2388.13,8.4913,395,38.43,23.037 +92,327,0.0008,0.0001,643.58,1602.9,1421.33,21.61,552.34,2388.15,9124.57,48.06,520.9,2388.09,8.508,396,38.45,23.1708 +92,328,-0.0018,0.0002,643.2,1604.25,1431.74,21.61,552.38,2388.17,9115.64,47.91,520.27,2388.17,8.5542,395,38.36,22.9785 +92,329,0.0023,0.0003,643.22,1602.52,1422.71,21.61,552.12,2388.16,9125.68,47.99,519.78,2388.19,8.4922,396,38.62,23.0517 +92,330,0.0029,0.0004,642.98,1597.48,1423.83,21.61,552.1,2388.15,9124.28,47.86,519.83,2388.2,8.501,394,38.46,23.2033 +92,331,0.0016,0.0005,643.33,1595.79,1419.96,21.61,551.84,2388.16,9125.7,47.94,519.66,2388.15,8.5141,396,38.48,23.0692 +92,332,-0.0044,-0.0003,643.23,1600.19,1429.95,21.61,551.56,2388.17,9131.55,48.03,519.75,2388.22,8.4952,394,38.49,23.0253 +92,333,-0.0025,0.0004,643.78,1600.8,1426.34,21.61,552.05,2388.21,9127.29,48.0,520.01,2388.19,8.5241,397,38.79,23.1304 +92,334,0.0003,0.0002,643.4,1604.03,1425.17,21.61,551.5,2388.13,9130.87,47.85,520.14,2388.14,8.5228,397,38.45,23.0678 +92,335,-0.0002,0.0004,643.66,1601.83,1432.0,21.61,551.35,2388.15,9130.7,48.07,520.04,2388.16,8.4789,396,38.36,23.0794 +92,336,-0.0035,0.0001,643.86,1601.27,1434.22,21.61,551.52,2388.17,9132.52,48.09,520.59,2388.19,8.5192,397,38.47,23.0699 +92,337,0.0027,-0.0,643.51,1600.95,1426.48,21.61,551.58,2388.17,9132.81,48.16,519.98,2388.17,8.4973,396,38.52,23.1537 +92,338,-0.002,0.0004,644.17,1600.59,1425.63,21.61,551.42,2388.14,9128.64,48.08,519.7,2388.19,8.5028,396,38.35,23.0181 +92,339,-0.0026,0.0003,643.41,1605.22,1428.24,21.61,551.18,2388.2,9137.65,48.19,519.92,2388.2,8.5063,395,38.4,23.0027 +92,340,0.0016,0.0005,644.02,1599.06,1429.58,21.61,550.77,2388.24,9138.69,48.14,519.66,2388.15,8.5268,396,38.56,23.0422 +92,341,-0.0,-0.0004,644.04,1607.05,1428.06,21.61,551.34,2388.23,9143.56,48.01,519.83,2388.15,8.5403,397,38.26,23.0719 +93,10,-0.0018,0.0,642.0,1584.78,1398.88,21.61,554.22,2388.03,9063.0,47.34,522.41,2388.06,8.3859,392,38.92,23.3936 +93,11,0.0016,0.0003,642.13,1585.78,1397.07,21.61,554.43,2388.03,9063.65,47.32,521.9,2388.02,8.4371,391,38.97,23.2917 +93,12,0.0024,-0.0001,641.88,1591.53,1395.74,21.61,554.54,2388.02,9058.5,47.2,522.22,2387.99,8.4631,392,38.95,23.4204 +93,13,-0.0016,-0.0001,642.09,1587.5,1395.74,21.61,554.58,2387.98,9059.31,47.27,522.32,2388.02,8.3733,392,39.12,23.3624 +93,14,-0.0011,-0.0003,642.55,1578.26,1407.54,21.61,554.7,2387.98,9063.17,47.35,522.08,2388.03,8.4249,391,39.04,23.3249 +93,15,0.002,0.0004,641.74,1591.68,1397.78,21.61,554.8,2388.04,9057.33,47.2,522.13,2387.99,8.3771,390,39.03,23.3488 +93,16,0.0012,-0.0001,641.99,1583.33,1400.41,21.61,554.26,2388.07,9053.17,47.19,521.68,2388.04,8.418,392,38.95,23.3007 +93,17,-0.002,-0.0004,642.4,1583.88,1400.02,21.61,554.02,2388.01,9062.9,47.29,521.88,2388.05,8.4206,391,39.07,23.4115 +93,18,-0.0015,-0.0004,642.14,1575.08,1405.49,21.61,554.59,2388.0,9058.84,47.34,521.9,2388.04,8.4278,392,38.81,23.4692 +93,19,0.0003,-0.0004,642.19,1590.07,1397.8,21.61,553.86,2388.06,9059.77,47.16,522.44,2388.03,8.3891,392,39.03,23.2859 +93,20,-0.0029,-0.0002,642.04,1587.41,1400.46,21.61,554.37,2388.06,9062.78,47.32,522.25,2388.01,8.4121,392,38.88,23.3637 +93,21,0.0034,-0.0002,642.15,1585.73,1405.02,21.61,554.26,2388.04,9060.61,47.48,522.53,2388.02,8.4088,391,39.02,23.4172 +93,22,0.0001,-0.0002,641.97,1589.43,1398.5,21.61,554.37,2388.02,9063.9,47.26,521.82,2387.98,8.4277,392,38.95,23.2934 +93,23,0.0011,0.0002,642.46,1588.59,1403.26,21.6,553.99,2388.0,9063.86,47.33,522.57,2388.08,8.4197,391,39.05,23.3539 +93,24,-0.0005,0.0002,642.39,1578.51,1397.71,21.61,554.46,2388.04,9059.71,47.26,522.44,2388.03,8.4333,390,38.81,23.4792 +93,25,0.0,-0.0003,642.35,1580.64,1401.57,21.61,553.97,2388.03,9068.92,47.43,522.01,2388.06,8.4482,392,39.04,23.4259 +93,26,-0.0004,0.0005,642.06,1585.43,1397.36,21.61,554.77,2388.0,9049.76,47.08,522.6,2388.02,8.4149,391,38.97,23.2488 +93,27,-0.0004,0.0001,642.31,1588.46,1400.88,21.61,554.56,2387.99,9061.56,47.15,522.1,2388.0,8.4,392,38.96,23.3691 +93,28,0.0007,-0.0002,642.12,1587.13,1398.04,21.61,554.42,2388.04,9068.01,47.22,521.82,2388.01,8.432,391,38.95,23.3347 +93,29,-0.0004,0.0004,641.66,1580.35,1404.17,21.61,553.95,2388.03,9061.99,47.11,521.87,2388.13,8.3854,390,39.09,23.3577 +93,30,-0.0026,0.0005,642.63,1587.73,1401.9,21.61,554.28,2388.05,9061.31,47.27,521.94,2388.01,8.4132,392,39.0,23.3961 +93,31,-0.003,0.0003,642.45,1583.37,1404.61,21.61,554.0,2388.03,9059.16,47.07,522.24,2388.02,8.4343,392,39.08,23.526 +93,32,0.0023,-0.0002,642.21,1592.82,1405.31,21.61,554.2,2388.08,9064.25,47.15,522.56,2387.99,8.4177,391,39.1,23.3063 +93,33,0.001,-0.0002,642.05,1582.57,1395.11,21.61,554.16,2388.02,9063.94,47.07,522.43,2388.05,8.4023,391,38.99,23.3747 +93,34,0.0064,-0.0001,642.56,1589.82,1386.29,21.61,554.26,2388.03,9068.16,47.28,521.93,2388.06,8.4112,392,39.04,23.419 +93,35,-0.0054,-0.0001,642.0,1591.39,1395.39,21.61,553.64,2388.04,9060.18,47.38,522.27,2388.01,8.432,392,38.97,23.383 +93,36,0.0026,0.0003,642.15,1577.88,1395.64,21.61,554.0,2388.03,9057.78,47.07,521.16,2388.03,8.4367,393,38.95,23.3592 +93,37,0.0004,-0.0003,642.19,1586.89,1405.15,21.61,553.94,2388.01,9071.15,47.18,522.8,2388.0,8.3954,392,39.01,23.3922 +93,38,0.0014,-0.0001,642.45,1591.49,1400.04,21.61,553.71,2388.07,9063.87,47.37,522.11,2388.02,8.4347,393,39.0,23.3595 +93,39,-0.0033,0.0001,642.21,1587.41,1396.13,21.61,554.04,2388.02,9058.95,47.07,521.19,2388.01,8.4289,391,38.87,23.4622 +93,40,0.0012,0.0005,642.84,1583.49,1403.31,21.61,554.06,2388.07,9056.56,47.27,521.58,2388.03,8.4133,392,39.01,23.3409 +93,41,0.0011,0.0001,642.03,1585.82,1388.75,21.61,553.7,2388.03,9056.21,47.18,522.06,2388.02,8.398,391,38.95,23.4546 +93,42,-0.005,0.0,641.77,1581.84,1402.11,21.61,554.06,2388.0,9060.62,47.2,521.89,2388.06,8.3853,393,38.97,23.4096 +93,43,-0.0006,-0.0003,642.66,1590.02,1400.53,21.61,553.83,2388.05,9058.82,47.44,522.25,2388.03,8.3885,391,38.95,23.3824 +93,44,-0.0009,0.0005,642.26,1579.57,1403.01,21.61,553.39,2388.08,9059.16,47.19,522.28,2388.05,8.449,391,38.9,23.3625 +93,45,-0.0015,-0.0001,642.1,1580.86,1398.83,21.61,554.46,2388.05,9068.15,47.24,522.06,2388.02,8.3365,391,38.83,23.3948 +93,46,0.0006,0.0003,642.42,1587.65,1403.45,21.61,554.48,2388.03,9061.63,47.4,521.78,2388.07,8.42,391,38.93,23.3844 +93,47,-0.0005,0.0005,642.22,1581.14,1399.4,21.61,554.56,2388.0,9060.76,47.24,521.38,2388.04,8.4657,392,39.09,23.2828 +93,48,0.0027,-0.0,642.2,1581.03,1397.15,21.61,554.21,2388.01,9053.7,47.23,521.67,2388.06,8.4587,392,38.99,23.395 +93,49,0.0015,0.0004,642.67,1586.7,1399.43,21.61,554.38,2388.12,9051.11,47.2,522.3,2388.03,8.3865,391,38.81,23.4098 +93,50,-0.0029,0.0001,642.77,1591.11,1398.31,21.61,553.63,2387.99,9055.0,47.26,521.63,2387.98,8.3442,392,38.83,23.4036 +93,51,-0.0023,0.0002,642.24,1583.89,1400.62,21.61,554.21,2388.03,9070.23,47.25,521.82,2388.04,8.3968,392,38.92,23.3083 +93,52,0.0013,0.0003,642.11,1583.97,1403.76,21.61,554.1,2388.03,9059.69,47.41,521.89,2388.09,8.4019,392,39.04,23.4703 +93,53,-0.0007,0.0003,642.89,1576.32,1397.79,21.61,554.03,2387.99,9062.45,47.28,522.14,2388.06,8.3933,393,38.97,23.2884 +93,54,-0.0026,-0.0004,641.66,1584.01,1402.01,21.61,554.14,2387.96,9062.23,47.57,522.01,2388.03,8.4084,392,39.03,23.3563 +93,55,-0.0022,-0.0,641.95,1590.86,1397.56,21.6,554.15,2388.06,9058.54,47.48,521.62,2388.01,8.3655,391,38.98,23.427 +93,56,0.0021,-0.0001,641.72,1592.11,1403.0,21.61,554.77,2388.01,9059.37,47.2,522.37,2388.05,8.4458,392,39.12,23.2846 +93,57,0.0002,-0.0004,642.16,1588.7,1403.15,21.61,553.91,2388.02,9064.33,47.27,522.07,2388.02,8.4497,392,38.92,23.4204 +93,58,0.0007,0.0004,642.74,1586.71,1402.02,21.61,554.14,2388.01,9066.28,47.32,522.1,2388.01,8.4171,393,39.13,23.3799 +93,59,0.001,0.0002,642.16,1585.41,1403.26,21.61,554.0,2388.05,9058.6,47.27,522.06,2388.05,8.4343,392,38.93,23.3422 +93,60,-0.0016,0.0005,642.35,1583.99,1406.37,21.61,554.01,2388.06,9066.47,47.45,521.75,2388.04,8.3981,391,38.98,23.5351 +93,61,0.0007,0.0004,642.25,1585.11,1397.99,21.61,554.26,2388.01,9059.35,47.44,522.07,2388.04,8.3813,393,38.7,23.3242 +93,62,-0.0036,-0.0003,642.63,1582.12,1396.84,21.61,554.18,2388.03,9063.41,47.47,521.99,2388.02,8.4442,392,39.09,23.2784 +93,63,0.0025,0.0004,642.13,1587.61,1403.96,21.6,554.5,2388.06,9062.21,47.49,522.14,2388.05,8.4301,394,39.06,23.3871 +93,64,0.0023,0.0002,641.69,1587.33,1404.9,21.61,554.37,2388.06,9063.82,47.31,522.07,2388.07,8.3889,393,38.92,23.3226 +93,65,0.0016,-0.0004,641.82,1585.99,1402.55,21.61,554.15,2388.05,9054.08,47.4,522.25,2387.96,8.3916,393,39.09,23.4733 +93,66,-0.003,-0.0003,641.83,1592.16,1400.57,21.61,554.15,2388.01,9060.67,47.37,521.27,2388.06,8.4255,393,38.74,23.3521 +93,67,-0.0018,-0.0004,642.6,1584.13,1397.59,21.61,554.08,2388.02,9064.41,47.36,521.77,2388.07,8.382,394,38.97,23.2231 +93,68,-0.003,0.0002,642.39,1585.98,1404.64,21.61,554.17,2388.1,9066.44,47.34,522.51,2387.99,8.3909,393,38.93,23.3535 +93,69,-0.0021,-0.0001,642.33,1588.38,1392.02,21.61,553.92,2388.05,9057.19,47.49,521.97,2388.08,8.4009,391,38.95,23.3082 +93,70,-0.003,0.0001,642.76,1583.26,1401.75,21.61,553.67,2388.05,9063.12,47.47,521.44,2388.11,8.404,393,38.95,23.3257 +93,71,-0.0007,0.0002,642.45,1585.17,1407.3,21.61,553.67,2388.03,9063.3,47.39,522.45,2388.03,8.4027,392,38.96,23.2835 +93,72,0.0008,0.0003,642.53,1590.39,1403.15,21.61,554.19,2388.07,9058.83,47.37,522.07,2388.05,8.3885,393,38.94,23.3261 +93,73,-0.0052,-0.0004,642.34,1585.74,1405.91,21.61,553.94,2388.06,9059.73,47.36,521.53,2388.04,8.4234,393,39.12,23.2725 +93,74,0.0007,0.0003,642.45,1580.14,1402.48,21.61,553.43,2388.08,9064.92,47.43,522.07,2388.02,8.4324,391,38.83,23.4194 +93,75,0.0011,-0.0002,642.48,1583.4,1404.88,21.61,553.69,2388.08,9069.7,47.46,521.5,2388.01,8.4192,391,39.01,23.3159 +93,76,-0.0022,0.0004,641.99,1581.51,1399.16,21.61,553.82,2388.03,9070.46,47.42,522.24,2388.05,8.4494,392,38.94,23.3328 +93,77,0.0004,0.0005,642.73,1585.39,1409.38,21.61,553.61,2388.11,9064.31,47.36,521.96,2388.02,8.4487,392,38.75,23.4681 +93,78,-0.0016,0.0003,642.38,1581.38,1403.96,21.61,553.76,2388.07,9055.95,47.27,522.04,2388.01,8.423,392,38.91,23.3571 +93,79,-0.0009,0.0003,642.5,1582.64,1405.45,21.61,553.55,2388.05,9063.8,47.2,521.97,2388.09,8.3958,392,38.85,23.2773 +93,80,-0.0008,0.0005,641.87,1584.95,1406.25,21.61,553.93,2388.06,9057.95,47.37,521.26,2388.09,8.4193,395,38.96,23.4346 +93,81,0.0015,0.0004,642.51,1586.93,1404.91,21.61,554.66,2388.02,9057.79,47.41,521.7,2388.06,8.4265,391,38.75,23.34 +93,82,-0.0006,-0.0004,642.62,1587.91,1404.35,21.61,553.69,2388.05,9068.04,47.44,521.65,2388.06,8.4398,393,38.87,23.3893 +93,83,0.0004,0.0001,642.2,1589.82,1407.63,21.61,553.52,2388.09,9067.4,47.52,521.68,2388.05,8.437,393,38.9,23.3653 +93,84,0.0003,-0.0002,642.53,1590.72,1405.63,21.61,553.5,2388.03,9059.27,47.4,521.6,2388.1,8.4416,392,38.98,23.3274 +93,85,-0.0021,0.0,642.54,1584.24,1406.3,21.61,554.07,2388.03,9070.11,47.42,521.46,2388.07,8.4382,392,38.96,23.3757 +93,86,0.003,0.0004,641.95,1589.58,1408.57,21.61,553.66,2388.08,9064.9,47.54,521.44,2388.05,8.4622,393,38.98,23.3607 +93,87,0.0024,-0.0,642.64,1595.75,1409.26,21.61,553.03,2388.11,9064.26,47.64,521.8,2388.06,8.4241,391,38.83,23.3294 +93,88,-0.0028,-0.0004,642.77,1589.68,1405.07,21.61,553.34,2388.05,9069.06,47.37,521.74,2388.07,8.4179,393,38.89,23.351 +93,89,0.0007,-0.0001,642.46,1590.6,1408.35,21.61,554.44,2388.02,9058.17,47.47,522.15,2388.08,8.4206,392,38.96,23.2839 +93,90,-0.0002,0.0005,642.75,1585.44,1401.07,21.61,553.83,2388.09,9066.97,47.54,521.85,2388.07,8.3924,392,38.93,23.3511 +93,91,0.0009,-0.0003,642.07,1580.49,1408.78,21.61,553.74,2388.05,9065.54,47.48,521.7,2388.05,8.4429,392,39.03,23.3163 +93,92,0.005,0.0002,642.85,1588.85,1398.35,21.61,553.33,2388.05,9061.41,47.59,522.0,2388.09,8.4174,394,38.87,23.4654 +93,93,-0.0024,0.0002,642.83,1589.44,1409.78,21.61,553.17,2388.07,9062.6,47.38,521.57,2388.11,8.3855,393,38.79,23.3849 +93,94,-0.0006,0.0004,642.58,1589.08,1407.43,21.61,553.37,2388.08,9063.31,47.64,521.61,2388.05,8.4153,391,38.84,23.3869 +93,95,-0.0008,-0.0,642.86,1591.35,1408.12,21.61,554.09,2388.03,9066.51,47.45,521.59,2388.01,8.4516,394,39.06,23.3451 +93,96,0.0013,0.0005,642.72,1585.77,1397.82,21.61,553.95,2388.02,9065.32,47.61,521.71,2388.04,8.4359,393,38.85,23.3058 +93,97,-0.0038,0.0003,642.52,1586.19,1403.1,21.61,554.84,2388.04,9070.57,47.34,521.77,2388.07,8.4526,393,38.92,23.3804 +93,98,-0.0013,-0.0003,641.85,1588.24,1409.43,21.61,554.11,2388.12,9064.42,47.64,521.74,2388.06,8.4052,393,38.88,23.3068 +93,99,0.0006,0.0005,642.34,1591.79,1405.81,21.61,554.1,2388.1,9057.39,47.53,521.68,2388.07,8.4218,393,38.92,23.4398 +93,100,0.0017,0.0004,642.41,1585.46,1406.68,21.61,553.11,2388.08,9063.8,47.51,521.97,2388.11,8.4413,391,38.77,23.2732 +93,101,-0.0018,0.0005,642.78,1590.13,1408.17,21.61,553.87,2388.05,9064.79,47.65,521.67,2388.07,8.4469,393,38.82,23.3281 +93,102,-0.0016,0.0002,642.89,1591.14,1402.03,21.61,553.29,2388.08,9060.28,47.54,521.07,2388.11,8.4351,395,38.88,23.2447 +93,103,0.0027,-0.0002,642.44,1592.5,1411.61,21.61,553.87,2388.11,9057.54,47.48,521.01,2388.04,8.4389,394,38.9,23.2774 +93,104,-0.0031,0.0001,642.1,1591.78,1405.31,21.61,553.75,2388.11,9059.99,47.56,520.91,2388.09,8.4361,393,38.64,23.4862 +93,105,0.0015,0.0004,642.47,1591.03,1400.55,21.61,553.26,2388.12,9065.44,47.47,521.32,2388.07,8.4298,395,38.77,23.1773 +93,106,-0.0047,-0.0004,642.24,1585.26,1413.02,21.61,552.98,2388.06,9068.27,47.5,521.17,2388.11,8.4158,392,38.74,23.4261 +93,107,-0.0028,-0.0004,642.7,1590.69,1410.27,21.61,553.14,2388.1,9071.93,47.44,521.55,2388.1,8.4397,393,38.82,23.2549 +93,108,-0.0035,-0.0,642.35,1586.55,1409.36,21.61,553.28,2388.14,9066.28,47.43,521.24,2388.12,8.4353,393,38.81,23.2275 +93,109,-0.0006,0.0002,642.82,1592.48,1407.74,21.61,553.04,2388.14,9068.03,47.47,521.6,2388.15,8.4398,393,38.78,23.2493 +93,110,0.0023,0.0001,642.57,1589.87,1414.9,21.61,552.9,2388.11,9066.27,47.71,520.96,2388.07,8.4357,394,38.93,23.2599 +93,111,0.0013,0.0001,642.35,1579.17,1414.88,21.61,553.22,2388.11,9061.05,47.62,521.48,2388.13,8.4442,393,38.73,23.2775 +93,112,0.0002,-0.0001,642.75,1602.29,1407.51,21.61,553.76,2388.01,9064.94,47.42,520.64,2388.04,8.4054,393,38.75,23.2543 +93,113,0.0016,0.0005,642.2,1592.3,1411.81,21.61,553.19,2388.11,9066.19,47.48,521.54,2388.12,8.4576,395,38.86,23.2804 +93,114,-0.0047,-0.0001,642.78,1582.66,1418.45,21.61,552.85,2388.12,9065.67,47.49,520.75,2388.11,8.4631,393,38.69,23.2189 +93,115,-0.0021,-0.0,642.24,1589.85,1414.88,21.61,553.31,2388.15,9061.57,47.68,521.06,2388.13,8.4427,394,38.77,23.2818 +93,116,-0.0021,-0.0,642.75,1583.22,1412.31,21.61,553.5,2388.11,9058.81,47.59,521.29,2388.13,8.4901,392,38.74,23.3533 +93,117,-0.0027,0.0005,643.11,1593.53,1409.26,21.61,553.51,2388.07,9065.38,47.48,521.09,2388.08,8.4635,393,38.66,23.237 +93,118,0.0002,-0.0,643.01,1588.31,1415.0,21.61,552.8,2388.09,9060.44,47.76,521.03,2388.12,8.468,394,38.74,23.2127 +93,119,-0.0013,0.0002,642.94,1600.33,1417.43,21.61,552.52,2388.07,9055.98,47.6,521.45,2388.13,8.4529,393,38.83,23.1137 +93,120,-0.001,0.0001,642.44,1592.27,1412.49,21.61,553.29,2388.17,9066.94,47.63,521.49,2388.17,8.4894,394,38.86,23.268 +93,121,0.0025,0.0004,643.1,1590.6,1412.04,21.61,552.77,2388.1,9071.0,47.69,521.41,2388.11,8.4549,394,38.91,23.3353 +93,122,-0.0004,0.0003,642.81,1588.64,1409.63,21.61,552.94,2388.15,9065.08,47.67,520.68,2388.11,8.4514,396,38.8,23.3032 +93,123,0.001,0.0003,642.63,1590.75,1410.54,21.61,553.26,2388.16,9068.06,47.91,521.1,2388.08,8.4585,392,38.64,23.2347 +93,124,-0.0017,0.0003,643.09,1583.78,1413.49,21.61,553.64,2388.19,9060.97,47.62,521.32,2388.14,8.4398,394,38.67,23.1611 +93,125,0.0015,0.0003,642.82,1595.08,1422.75,21.61,553.06,2388.17,9071.07,47.66,520.54,2388.15,8.5068,393,38.59,23.1397 +93,126,-0.0023,0.0001,643.09,1586.82,1415.7,21.61,552.74,2388.16,9065.48,47.73,521.02,2388.15,8.4748,393,38.72,23.1972 +93,127,0.0019,0.0,642.25,1598.49,1415.58,21.61,552.88,2388.17,9076.08,47.59,520.8,2388.12,8.4614,394,38.79,23.3213 +93,128,-0.0024,0.0,643.02,1596.28,1421.63,21.61,552.58,2388.17,9060.0,47.67,520.51,2388.09,8.4669,395,38.75,23.3117 +93,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861 +93,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895 +93,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531 +93,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035 +93,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127 +93,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983 +93,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482 +93,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555 +93,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159 +93,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711 +93,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691 +93,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576 +93,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253 +93,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465 +93,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075 +93,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209 +93,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795 +93,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539 +93,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075 +93,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208 +93,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482 +93,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064 +93,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142 +93,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12 +93,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388 +93,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633 +93,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179 +94,10,-0.0017,-0.0003,642.04,1587.15,1405.05,21.61,553.79,2388.14,9049.58,47.48,521.65,2388.14,8.4085,395,38.98,23.344 +94,11,-0.0008,-0.0,642.57,1588.92,1408.0,21.61,552.95,2388.13,9046.44,47.56,521.03,2388.11,8.4192,391,38.81,23.2437 +94,12,-0.0032,-0.0005,642.74,1589.91,1414.13,21.61,553.09,2388.15,9047.25,47.54,521.36,2388.13,8.4136,394,38.83,23.3718 +94,13,-0.0008,0.0003,643.39,1590.95,1407.04,21.61,554.46,2388.17,9042.54,47.63,521.14,2388.13,8.504,394,38.81,23.3233 +94,14,0.0007,0.0004,642.6,1593.44,1412.94,21.61,553.12,2388.12,9044.22,47.58,521.45,2388.13,8.4433,393,38.82,23.2344 +94,15,-0.0008,0.0001,642.69,1587.27,1405.2,21.61,553.0,2388.17,9046.89,47.54,521.48,2388.16,8.4235,393,38.77,23.2681 +94,16,-0.0003,-0.0003,643.14,1594.29,1409.58,21.61,553.24,2388.14,9046.53,47.72,521.3,2388.06,8.4167,392,38.88,23.3135 +94,17,0.0022,-0.0002,642.72,1588.34,1407.18,21.61,553.49,2388.08,9053.83,47.43,521.66,2388.11,8.4182,395,38.82,23.3268 +94,18,0.0015,-0.0004,643.58,1591.88,1411.04,21.61,552.85,2388.14,9042.85,47.57,521.3,2388.16,8.4391,392,38.81,23.316 +94,19,0.0038,-0.0004,642.65,1588.34,1408.13,21.61,553.1,2388.13,9038.02,47.55,520.77,2388.17,8.4403,393,38.75,23.1817 +94,20,-0.0004,0.0002,642.65,1584.61,1410.11,21.61,552.91,2388.12,9038.2,47.39,521.19,2388.16,8.4459,393,38.87,23.2433 +94,21,0.0007,0.0,642.92,1592.66,1413.1,21.61,554.0,2388.15,9042.34,47.6,521.19,2388.1,8.4294,393,39.02,23.2572 +94,22,-0.0025,-0.0001,642.76,1597.76,1406.16,21.61,552.87,2388.07,9044.79,47.57,521.75,2388.09,8.4522,394,38.85,23.3212 +94,23,0.0009,-0.0,642.49,1587.83,1408.72,21.61,553.82,2388.15,9044.74,47.58,521.73,2388.12,8.4303,392,39.06,23.3325 +94,24,-0.0016,-0.0005,642.7,1582.29,1406.91,21.61,553.19,2388.08,9038.85,47.54,522.03,2388.19,8.4534,394,38.79,23.2931 +94,25,0.004,0.0001,642.62,1582.15,1410.33,21.61,554.24,2388.08,9042.03,47.64,521.09,2388.12,8.4209,393,39.05,23.3355 +94,26,-0.0,0.0001,642.37,1589.72,1414.06,21.61,553.66,2388.12,9044.23,47.46,521.18,2388.16,8.4372,393,38.66,23.3204 +94,27,-0.0031,0.0001,642.7,1592.66,1410.87,21.61,553.39,2388.08,9035.75,47.64,521.07,2388.1,8.4312,395,38.9,23.2716 +94,28,-0.0002,-0.0003,642.83,1592.76,1408.13,21.61,553.49,2388.2,9043.79,47.52,521.54,2388.14,8.4462,394,38.92,23.3661 +94,29,0.002,-0.0003,642.92,1596.64,1407.04,21.61,553.28,2388.14,9041.21,47.56,521.16,2388.14,8.4462,393,38.65,23.336 +94,30,-0.0,0.0001,642.64,1594.97,1411.08,21.61,553.46,2388.16,9055.34,47.69,521.14,2388.15,8.4806,394,39.03,23.2881 +94,31,0.0047,-0.0001,642.05,1584.0,1402.17,21.61,552.98,2388.1,9045.48,47.73,521.51,2388.09,8.4242,394,38.72,23.2202 +94,32,-0.0018,0.0004,642.29,1586.9,1408.64,21.61,553.43,2388.13,9042.48,47.55,521.0,2388.14,8.4683,393,38.82,23.3429 +94,33,-0.0036,-0.0002,642.87,1590.02,1408.0,21.61,552.7,2388.14,9049.75,47.62,522.05,2388.16,8.4122,392,38.79,23.2454 +94,34,-0.0021,0.0001,642.84,1587.74,1404.3,21.61,552.75,2388.19,9050.59,47.52,521.04,2388.15,8.4228,394,38.8,23.2373 +94,35,-0.0004,0.0004,642.76,1594.56,1400.41,21.61,553.34,2388.14,9046.16,47.64,521.21,2388.1,8.4416,394,38.85,23.2637 +94,36,0.003,0.0001,643.07,1590.24,1412.97,21.61,553.18,2388.09,9046.81,47.64,521.35,2388.16,8.4522,394,38.69,23.2729 +94,37,0.0009,0.0001,642.88,1587.04,1413.45,21.61,553.05,2388.08,9048.76,47.44,521.13,2388.16,8.4442,393,38.78,23.369 +94,38,-0.0001,0.0001,642.7,1591.15,1402.51,21.61,552.9,2388.14,9047.69,47.48,521.43,2388.15,8.4478,393,38.89,23.4636 +94,39,0.0053,-0.0005,642.52,1593.84,1408.47,21.61,553.4,2388.1,9038.51,47.68,521.19,2388.09,8.4484,393,38.78,23.2749 +94,40,0.0042,-0.0003,642.39,1591.09,1409.47,21.61,552.59,2388.07,9038.32,47.53,521.54,2388.1,8.4285,392,38.87,23.2443 +94,41,0.0015,-0.0,642.54,1594.04,1407.24,21.61,552.63,2388.15,9046.22,47.42,521.64,2388.12,8.4053,393,38.72,23.2602 +94,42,0.0014,0.0003,642.64,1585.88,1411.35,21.61,552.42,2388.07,9041.86,47.65,520.97,2388.12,8.4429,392,38.82,23.1934 +94,43,-0.0018,0.0004,642.83,1585.98,1410.96,21.61,553.55,2388.16,9044.81,47.48,521.84,2388.12,8.4303,394,38.78,23.2976 +94,44,-0.002,0.0001,642.65,1590.27,1403.28,21.61,553.07,2388.11,9043.7,47.7,521.35,2388.16,8.4316,393,38.96,23.2609 +94,45,-0.0005,-0.0002,642.48,1586.36,1411.92,21.61,553.51,2388.13,9039.86,47.67,521.39,2388.09,8.4862,394,38.81,23.3143 +94,46,0.0012,-0.0,642.43,1586.92,1412.32,21.61,553.09,2388.07,9044.76,47.53,520.96,2388.18,8.4552,393,38.84,23.283 +94,47,-0.0016,-0.0005,642.71,1588.01,1415.87,21.61,553.3,2388.12,9039.99,47.55,521.02,2388.11,8.414,392,38.91,23.3137 +94,48,-0.0001,-0.0004,642.7,1584.34,1411.37,21.61,553.41,2388.11,9045.09,47.48,521.66,2388.14,8.4023,395,39.02,23.3044 +94,49,-0.0,-0.0002,643.04,1588.81,1406.9,21.61,553.3,2388.14,9050.35,47.57,520.88,2388.09,8.4975,394,38.75,23.3436 +94,50,-0.0002,-0.0003,643.01,1590.56,1409.42,21.61,553.36,2388.13,9054.25,47.42,521.54,2388.16,8.4365,394,38.82,23.2742 +94,51,0.0005,0.0004,643.3,1590.35,1409.69,21.61,553.68,2388.12,9052.1,47.48,521.12,2388.14,8.493,392,38.92,23.3295 +94,52,-0.0031,0.0003,642.52,1592.98,1404.07,21.61,553.1,2388.14,9039.43,47.67,520.88,2388.12,8.4463,394,38.85,23.2591 +94,53,0.001,-0.0002,642.93,1581.52,1409.68,21.61,553.67,2388.14,9044.23,47.5,521.34,2388.16,8.4613,394,38.89,23.1694 +94,54,-0.0027,-0.0004,642.43,1593.14,1408.71,21.61,553.43,2388.1,9048.55,47.46,520.89,2388.09,8.4273,393,38.86,23.1906 +94,55,-0.0014,0.0002,642.75,1591.49,1403.86,21.61,553.47,2388.18,9040.64,47.29,521.13,2388.15,8.4577,392,38.95,23.3929 +94,56,0.0034,0.0002,642.11,1593.04,1406.5,21.61,552.43,2388.14,9044.39,47.66,520.8,2388.14,8.4487,393,38.79,23.3 +94,57,-0.0002,0.0003,643.04,1589.62,1406.78,21.61,552.04,2388.14,9052.54,47.64,521.18,2388.15,8.4621,394,38.87,23.2951 +94,58,0.0001,-0.0005,642.58,1590.55,1409.17,21.61,553.85,2388.14,9038.69,47.42,521.87,2388.14,8.4476,393,38.95,23.2601 +94,59,0.0019,-0.0005,643.11,1581.52,1406.57,21.61,553.05,2388.15,9051.81,47.54,521.79,2388.13,8.4042,392,38.7,23.2574 +94,60,0.0025,0.0001,642.48,1591.43,1407.05,21.61,553.63,2388.14,9045.03,47.51,521.13,2388.1,8.4366,393,38.85,23.3193 +94,61,0.0003,-0.0004,642.98,1588.23,1405.15,21.61,553.71,2388.18,9045.73,47.52,521.21,2388.14,8.4567,392,39.09,23.224 +94,62,0.0025,-0.0004,642.5,1586.95,1408.43,21.61,553.71,2388.11,9041.62,47.55,520.62,2388.15,8.4238,394,38.87,23.3344 +94,63,-0.0003,-0.0001,642.64,1582.6,1401.64,21.61,553.4,2388.1,9046.7,47.65,521.14,2388.13,8.4352,392,38.76,23.2528 +94,64,-0.0029,-0.0003,642.4,1596.44,1412.55,21.61,552.91,2388.12,9051.82,47.59,521.38,2388.12,8.4236,394,38.71,23.1512 +94,65,0.0001,0.0001,642.82,1580.52,1410.21,21.61,552.71,2388.14,9047.66,47.6,520.97,2388.15,8.4484,395,38.7,23.2365 +94,66,-0.002,-0.0003,642.71,1596.24,1409.01,21.61,552.45,2388.15,9044.01,47.64,521.43,2388.16,8.4392,393,38.63,23.2162 +94,67,-0.0008,-0.0001,642.62,1591.29,1409.3,21.61,553.52,2388.11,9042.71,47.69,521.26,2388.17,8.4171,392,38.83,23.2782 +94,68,0.0018,0.0002,642.2,1593.15,1407.6,21.61,553.26,2388.16,9046.53,47.57,521.63,2388.16,8.4857,394,38.92,23.2167 +94,69,-0.0007,-0.0,642.29,1593.89,1408.83,21.61,553.75,2388.14,9043.27,47.47,521.56,2388.12,8.4374,392,38.92,23.3088 +94,70,0.0,-0.0003,642.92,1590.54,1413.86,21.61,552.82,2388.16,9045.49,47.55,521.09,2388.15,8.4579,394,38.7,23.205 +94,71,0.0035,0.0001,642.85,1581.9,1409.35,21.61,553.53,2388.15,9045.78,47.45,521.42,2388.14,8.4532,391,39.04,23.247 +94,72,-0.0021,-0.0001,642.65,1597.18,1404.5,21.61,553.23,2388.06,9050.06,47.54,521.78,2388.12,8.481,393,38.74,23.2219 +94,73,0.0039,0.0003,642.99,1592.77,1414.58,21.61,553.36,2388.16,9050.96,47.47,521.45,2388.08,8.4499,393,38.88,23.4025 +94,74,0.001,0.0004,642.99,1593.6,1401.66,21.61,553.05,2388.14,9046.52,47.57,520.79,2388.12,8.4547,393,38.71,23.3781 +94,75,-0.0016,-0.0005,642.93,1590.58,1406.67,21.61,552.92,2388.13,9055.01,47.56,520.98,2388.09,8.4361,393,38.84,23.319 +94,76,-0.0023,-0.0004,642.44,1586.46,1408.61,21.61,553.13,2388.17,9042.5,47.48,521.02,2388.15,8.452,395,38.93,23.3111 +94,77,0.0005,0.0,642.47,1590.34,1408.61,21.61,553.6,2388.14,9047.17,47.3,521.19,2388.08,8.4326,392,38.77,23.2763 +94,78,-0.0035,-0.0005,642.48,1593.47,1406.56,21.61,553.11,2388.1,9045.03,47.46,521.35,2388.16,8.4724,393,38.8,23.2828 +94,79,0.0039,-0.0003,643.14,1589.27,1416.93,21.61,553.54,2388.13,9047.14,47.64,521.03,2388.12,8.4349,393,38.74,23.3258 +94,80,-0.0012,-0.0002,642.59,1589.7,1412.56,21.61,553.22,2388.13,9051.36,47.52,521.54,2388.14,8.46,394,38.71,23.3434 +94,81,-0.0032,0.0003,642.87,1594.51,1405.73,21.61,553.53,2388.13,9050.53,47.65,521.05,2388.13,8.4523,393,38.86,23.2657 +94,82,-0.0024,0.0003,642.33,1579.97,1401.14,21.61,553.42,2388.12,9046.29,47.59,521.53,2388.13,8.4627,394,38.88,23.2966 +94,83,-0.0019,0.0004,642.63,1590.4,1407.24,21.61,553.46,2388.17,9049.23,47.53,520.93,2388.14,8.4324,392,38.85,23.2718 +94,84,-0.0008,-0.0002,642.84,1592.71,1406.92,21.61,553.22,2388.1,9042.6,47.66,520.85,2388.18,8.4305,392,38.81,23.2706 +94,85,0.0011,-0.0003,643.13,1588.08,1410.45,21.61,553.12,2388.15,9048.67,47.63,521.34,2388.09,8.4672,395,38.73,23.2682 +94,86,-0.002,-0.0005,643.01,1586.32,1410.5,21.61,552.71,2388.14,9050.81,47.57,520.96,2388.07,8.4573,394,38.75,23.3114 +94,87,0.0006,0.0003,642.74,1591.85,1408.66,21.61,553.74,2388.14,9051.35,47.62,521.64,2388.17,8.4666,393,38.7,23.179 +94,88,-0.004,0.0001,642.35,1581.19,1409.49,21.61,553.44,2388.12,9046.98,47.53,521.39,2388.16,8.429,392,38.77,23.3332 +94,89,-0.0001,-0.0005,642.38,1581.67,1409.97,21.61,553.44,2388.11,9047.43,47.39,521.02,2388.14,8.4553,395,38.61,23.2794 +94,90,-0.0022,0.0003,642.72,1593.9,1410.14,21.61,553.62,2388.11,9055.0,47.43,521.9,2388.15,8.4693,392,38.77,23.3568 +94,91,-0.0014,-0.0001,643.02,1588.74,1413.08,21.61,552.74,2388.14,9050.53,47.72,520.6,2388.12,8.4666,392,38.55,23.2224 +94,92,0.0004,-0.0,643.17,1598.93,1407.0,21.61,553.77,2388.17,9048.8,47.66,520.88,2388.11,8.4393,393,38.89,23.2898 +94,93,0.0014,0.0001,642.61,1588.34,1401.37,21.61,552.84,2388.15,9046.68,47.52,521.17,2388.19,8.4489,394,38.73,23.1659 +94,94,-0.0009,0.0003,642.35,1580.61,1407.06,21.61,553.44,2388.09,9050.09,47.36,521.55,2388.09,8.4638,394,38.9,23.2161 +94,95,-0.0004,-0.0005,642.45,1593.18,1411.34,21.61,553.34,2388.16,9048.13,47.61,521.56,2388.06,8.4368,394,38.88,23.317 +94,96,0.0006,-0.0,642.39,1588.3,1415.27,21.61,553.05,2388.19,9050.82,47.61,521.22,2388.14,8.4672,392,38.8,23.3536 +94,97,0.0003,0.0005,642.45,1589.29,1409.33,21.61,553.2,2388.14,9049.74,47.69,520.95,2388.18,8.4671,392,38.83,23.1886 +94,98,0.0024,0.0002,642.94,1584.67,1413.28,21.61,553.46,2388.1,9046.41,47.68,521.0,2388.11,8.4424,393,38.68,23.2785 +94,99,0.0003,-0.0,642.62,1584.25,1404.38,21.61,553.08,2388.17,9051.11,47.63,521.34,2388.09,8.427,394,38.77,23.2255 +94,100,-0.001,0.0003,642.48,1593.86,1409.6,21.61,553.41,2388.1,9045.81,47.42,521.33,2388.15,8.4513,394,38.89,23.2332 +94,101,0.0007,-0.0002,643.41,1592.44,1406.37,21.61,552.35,2388.17,9055.75,47.61,521.19,2388.15,8.4314,394,38.88,23.156 +94,102,-0.0033,0.0,642.3,1596.17,1412.3,21.61,553.21,2388.21,9045.45,47.58,521.19,2388.15,8.446,394,38.7,23.2154 +94,103,-0.0012,-0.0002,642.75,1590.12,1415.68,21.61,552.64,2388.13,9044.54,47.51,521.32,2388.14,8.4371,394,38.73,23.3245 +94,104,0.0009,0.0004,643.01,1592.07,1405.21,21.61,552.6,2388.12,9048.93,47.63,520.98,2388.12,8.44,393,38.73,23.3792 +94,105,-0.0035,0.0002,642.72,1590.59,1409.61,21.61,552.77,2388.09,9053.88,47.67,520.89,2388.11,8.4145,393,38.65,23.2495 +94,106,0.0007,-0.0004,642.98,1590.5,1413.87,21.61,553.45,2388.13,9055.53,47.44,520.63,2388.1,8.467,394,38.7,23.198 +94,107,-0.0002,-0.0001,642.57,1584.31,1410.41,21.61,553.81,2388.12,9051.79,47.47,520.99,2388.13,8.4604,393,38.97,23.3504 +94,108,0.0022,-0.0002,642.78,1594.67,1410.93,21.61,553.55,2388.15,9046.3,47.47,521.01,2388.09,8.4829,393,38.77,23.2628 +94,109,-0.0028,-0.0003,642.83,1587.29,1414.48,21.61,553.41,2388.11,9051.94,47.63,520.73,2388.14,8.4382,394,38.77,23.1968 +94,110,0.0013,0.0004,642.84,1594.48,1409.66,21.61,553.72,2388.18,9058.44,47.48,521.13,2388.14,8.4679,393,38.87,23.297 +94,111,0.0019,-0.0003,642.74,1591.81,1406.25,21.61,553.29,2388.12,9051.14,47.42,521.31,2388.14,8.4548,394,38.78,23.1953 +94,112,0.0009,-0.0002,642.59,1595.07,1405.28,21.61,552.91,2388.16,9046.97,47.79,520.99,2388.13,8.438,393,38.74,23.3163 +94,113,-0.0015,-0.0002,642.85,1591.59,1414.32,21.61,552.97,2388.14,9047.14,47.69,521.42,2388.14,8.4151,393,38.88,23.214 +94,114,-0.0019,0.0003,642.9,1589.83,1411.58,21.61,553.38,2388.13,9049.66,47.66,521.46,2388.11,8.4736,394,38.61,23.2935 +94,115,0.0049,-0.0003,642.67,1595.45,1408.64,21.61,553.88,2388.14,9052.31,47.68,521.38,2388.11,8.4313,392,38.76,23.2402 +94,116,-0.0007,-0.0,643.16,1592.57,1412.85,21.61,552.64,2388.12,9049.28,47.43,521.16,2388.1,8.4603,394,38.76,23.322 +94,117,0.0008,0.0001,642.51,1587.45,1403.49,21.61,553.74,2388.06,9056.57,47.77,521.1,2388.12,8.463,395,38.74,23.3025 +94,118,-0.0015,-0.0003,642.02,1592.15,1416.12,21.61,553.27,2388.17,9046.29,47.5,521.22,2388.09,8.458,393,38.74,23.2835 +94,119,0.0015,0.0002,642.98,1586.89,1409.34,21.61,553.05,2388.17,9048.54,47.57,521.67,2388.12,8.4507,395,38.98,23.3091 +94,120,-0.0017,0.0001,642.44,1589.58,1406.43,21.61,553.52,2388.15,9057.51,47.66,521.24,2388.06,8.4364,395,38.99,23.2353 +94,121,0.0013,-0.0005,642.85,1583.13,1403.25,21.61,553.49,2388.1,9053.05,47.67,520.89,2388.12,8.4667,394,38.68,23.2902 +94,122,-0.0003,0.0002,643.23,1597.79,1416.97,21.61,553.22,2388.14,9055.91,47.69,520.99,2388.13,8.4567,393,39.0,23.3536 +94,123,-0.0003,-0.0001,642.41,1591.15,1416.14,21.61,552.88,2388.16,9056.3,47.51,521.09,2388.1,8.4127,392,38.93,23.2002 +94,124,0.0007,-0.0002,642.92,1591.95,1415.12,21.61,553.02,2388.15,9053.81,47.69,521.61,2388.17,8.4843,395,38.7,23.2506 +94,125,0.0005,-0.0002,643.15,1586.35,1410.09,21.61,553.57,2388.15,9045.81,47.64,521.35,2388.16,8.4208,393,38.83,23.3286 +94,126,-0.0017,-0.0004,642.91,1591.1,1412.47,21.61,552.91,2388.13,9049.29,47.51,521.6,2388.17,8.4591,394,38.81,23.1779 +94,127,-0.0022,0.0001,642.65,1585.75,1406.46,21.61,553.1,2388.14,9053.02,47.74,521.2,2388.15,8.4349,393,38.68,23.2988 +94,128,0.0012,-0.0004,642.5,1591.06,1408.89,21.61,552.58,2388.09,9049.79,47.58,521.41,2388.16,8.423,394,38.74,23.2247 +94,129,0.0001,-0.0004,643.55,1590.3,1411.59,21.61,553.38,2388.11,9059.88,47.67,521.29,2388.08,8.4483,393,38.79,23.3333 +94,130,0.001,-0.0001,642.57,1594.11,1410.62,21.61,552.87,2388.13,9053.57,47.64,521.58,2388.18,8.4538,394,38.9,23.3544 +94,131,0.0003,0.0002,642.67,1580.9,1416.68,21.61,553.64,2388.16,9053.79,47.47,520.94,2388.09,8.4438,394,38.66,23.3321 +94,132,-0.0009,-0.0004,642.45,1590.95,1411.34,21.61,553.21,2388.13,9053.26,47.79,520.87,2388.11,8.46,393,38.81,23.2689 +94,133,-0.0006,0.0004,642.81,1595.73,1411.56,21.61,553.42,2388.15,9048.07,47.6,520.76,2388.15,8.4489,392,38.73,23.1438 +94,134,0.0022,-0.0001,642.32,1590.0,1410.88,21.61,553.72,2388.11,9050.16,47.69,521.52,2388.15,8.4498,394,38.84,23.2227 +94,135,0.0002,0.0003,643.19,1587.11,1410.13,21.61,552.82,2388.16,9051.77,47.71,521.32,2388.14,8.4293,393,38.84,23.263 +94,136,0.0012,-0.0001,642.56,1591.75,1413.54,21.61,553.16,2388.14,9056.28,47.58,521.03,2388.12,8.432,393,38.56,23.3326 +94,137,-0.0038,-0.0002,643.21,1594.03,1410.03,21.61,552.73,2388.12,9061.33,47.77,521.47,2388.14,8.4374,393,38.82,23.2623 +94,138,-0.0012,0.0002,643.06,1590.7,1412.53,21.61,552.85,2388.11,9053.99,47.59,521.14,2388.16,8.4453,394,38.81,23.2599 +94,139,0.0031,-0.0003,643.23,1597.15,1414.69,21.61,552.22,2388.19,9060.39,47.59,520.94,2388.14,8.4494,390,38.94,23.3243 +94,140,0.0016,-0.0003,641.73,1596.86,1409.91,21.61,552.92,2388.12,9064.72,47.48,520.68,2388.14,8.4821,396,38.82,23.2397 +94,141,0.0026,-0.0001,642.72,1592.46,1416.77,21.61,553.44,2388.13,9051.89,47.52,521.09,2388.05,8.426,392,38.61,23.2964 +94,142,-0.0024,-0.0,642.67,1586.41,1407.93,21.61,553.31,2388.14,9059.95,47.86,521.07,2388.13,8.4557,393,38.81,23.2763 +94,143,-0.0013,-0.0004,642.44,1599.0,1417.13,21.61,553.34,2388.12,9048.8,47.5,521.29,2388.16,8.4345,393,39.05,23.3201 +94,144,-0.0019,-0.0004,642.17,1591.94,1404.46,21.61,552.25,2388.11,9049.83,47.62,520.78,2388.1,8.4335,393,38.72,23.23 +94,145,-0.0026,-0.0001,642.35,1590.35,1412.84,21.61,552.12,2388.12,9062.17,47.5,521.38,2388.12,8.4633,393,38.76,23.2382 +94,146,-0.0022,0.0003,642.63,1598.11,1410.4,21.61,552.51,2388.18,9059.44,47.61,521.16,2388.09,8.4274,393,38.84,23.3332 +94,147,-0.0016,-0.0001,642.42,1593.4,1411.18,21.61,552.39,2388.11,9062.58,47.57,521.29,2388.17,8.4603,393,38.74,23.4441 +94,148,0.0023,-0.0001,642.84,1594.03,1410.75,21.61,553.37,2388.13,9052.36,47.62,521.66,2388.09,8.4468,393,38.91,23.2185 +94,149,-0.0005,0.0003,642.45,1598.95,1415.95,21.61,553.09,2388.14,9059.18,47.57,520.88,2388.15,8.4487,394,38.82,23.2164 +94,150,0.0003,-0.0,642.75,1593.56,1408.2,21.61,553.24,2388.13,9052.98,47.56,521.71,2388.11,8.45,393,38.74,23.3317 +94,151,-0.0004,0.0,642.59,1592.56,1416.94,21.61,552.68,2388.09,9061.09,47.68,521.38,2388.09,8.4202,395,38.82,23.2799 +94,152,0.0024,0.0004,642.93,1589.88,1413.26,21.61,552.71,2388.13,9058.98,47.56,520.92,2388.14,8.422,393,38.69,23.2357 +94,153,-0.0021,-0.0004,642.85,1593.27,1414.42,21.61,553.83,2388.14,9068.51,47.77,520.77,2388.11,8.4342,392,38.81,23.2957 +94,154,0.0003,-0.0001,642.44,1591.63,1418.53,21.61,553.09,2388.15,9061.51,47.54,520.93,2388.2,8.4744,394,38.53,23.2545 +94,155,-0.0025,0.0004,642.38,1592.44,1413.67,21.61,553.19,2388.09,9062.4,47.66,520.49,2388.14,8.4665,392,38.79,23.2408 +94,156,0.0019,-0.0003,642.9,1601.2,1412.75,21.61,552.67,2388.19,9060.59,47.73,521.42,2388.13,8.4586,394,38.9,23.1997 +94,157,-0.0026,-0.0002,642.65,1590.15,1420.37,21.61,553.22,2388.18,9058.17,47.84,521.19,2388.07,8.4594,394,38.8,23.255 +94,158,-0.002,-0.0001,643.2,1595.31,1416.42,21.61,553.34,2388.1,9065.32,47.53,521.07,2388.11,8.4544,396,38.89,23.2269 +94,159,-0.0041,0.0004,643.25,1589.47,1414.37,21.61,552.45,2388.12,9064.25,47.76,520.63,2388.19,8.4334,392,38.79,23.2741 +94,160,-0.0021,-0.0003,642.52,1595.3,1409.13,21.61,552.7,2388.23,9061.27,47.76,520.96,2388.18,8.479,392,38.69,23.3786 +94,161,-0.0025,-0.0004,642.63,1593.2,1410.92,21.61,553.19,2388.1,9062.23,47.65,521.13,2388.12,8.4249,394,38.83,23.1902 +94,162,-0.002,-0.0,642.87,1595.59,1407.98,21.61,553.57,2388.14,9061.93,47.75,520.66,2388.1,8.4781,393,38.72,23.2038 +94,163,-0.0021,-0.0002,642.6,1596.48,1414.23,21.61,552.71,2388.16,9067.05,47.67,521.2,2388.11,8.4762,394,38.75,23.2624 +94,164,-0.0009,0.0,642.99,1593.48,1414.22,21.61,553.05,2388.13,9064.02,47.64,520.83,2388.12,8.4391,394,38.74,23.303 +94,165,-0.0004,0.0003,642.18,1594.36,1412.69,21.61,552.91,2388.12,9063.37,47.66,521.29,2388.16,8.4472,394,38.78,23.2438 +94,166,-0.0051,-0.0,643.11,1592.6,1408.37,21.61,553.23,2388.11,9066.37,47.82,520.79,2388.16,8.4759,395,38.57,23.2628 +94,167,-0.0009,0.0003,643.04,1582.75,1408.09,21.61,553.19,2388.12,9060.21,47.65,521.44,2388.15,8.4305,393,38.57,23.269 +94,168,-0.0007,0.0003,642.73,1591.14,1417.3,21.61,553.52,2388.17,9063.41,47.64,520.91,2388.11,8.4807,394,38.73,23.2685 +94,169,-0.0046,-0.0003,643.12,1589.21,1415.41,21.61,553.03,2388.17,9063.9,47.8,521.23,2388.07,8.4711,394,38.85,23.2407 +94,170,0.0039,-0.0001,642.58,1592.17,1416.05,21.61,552.98,2388.09,9062.84,47.7,521.13,2388.1,8.5019,393,38.79,23.2668 +94,171,-0.0033,-0.0003,642.79,1597.39,1414.62,21.61,552.41,2388.09,9069.88,47.67,521.48,2388.12,8.4664,393,38.41,23.2027 +94,172,0.0032,0.0002,643.03,1588.47,1412.49,21.61,553.3,2388.14,9065.71,47.68,521.25,2388.15,8.4949,392,38.88,23.3669 +94,173,0.0013,0.0002,642.45,1594.29,1411.47,21.61,552.57,2388.1,9065.15,47.64,520.86,2388.11,8.4536,396,38.59,23.2508 +94,174,-0.0006,-0.0,643.08,1597.44,1413.23,21.61,553.05,2388.09,9066.25,47.71,521.0,2388.14,8.4537,395,38.84,23.1996 +94,175,-0.0001,-0.0002,642.77,1595.02,1420.07,21.61,552.82,2388.15,9070.46,47.8,520.82,2388.14,8.4666,395,38.89,23.2765 +94,176,-0.0048,0.0003,642.86,1595.07,1413.06,21.61,552.68,2388.11,9065.72,47.58,521.59,2388.15,8.4936,394,38.72,23.2015 +94,177,0.0015,-0.0003,643.07,1592.29,1410.45,21.61,553.43,2388.13,9070.18,47.6,521.53,2388.11,8.453,394,38.75,23.1948 +94,178,-0.0004,0.0003,643.0,1590.44,1418.9,21.61,552.53,2388.17,9062.92,47.59,521.05,2388.13,8.4722,394,38.77,23.3261 +94,179,0.0011,0.0005,642.52,1593.37,1416.53,21.61,553.18,2388.1,9065.83,47.59,521.08,2388.08,8.464,394,38.68,23.2253 +94,180,-0.0012,0.0002,643.04,1595.83,1413.52,21.61,553.02,2388.08,9059.06,47.71,520.91,2388.1,8.4469,394,38.85,23.2584 +94,181,-0.0013,0.0002,643.24,1600.92,1419.52,21.61,552.86,2388.14,9068.09,47.61,520.82,2388.09,8.5103,394,38.69,23.2264 +94,182,-0.0013,-0.0001,642.75,1592.73,1413.72,21.61,553.6,2388.12,9068.98,47.63,520.85,2388.11,8.4673,394,38.65,23.3302 +94,183,-0.0006,-0.0002,643.23,1589.14,1409.72,21.61,552.56,2388.14,9070.54,47.76,520.88,2388.12,8.4787,395,38.75,23.2786 +94,184,0.001,0.0001,642.94,1592.14,1407.31,21.61,553.31,2388.05,9067.52,47.78,520.73,2388.08,8.4517,394,38.87,23.1831 +94,185,0.0006,-0.0,642.47,1592.23,1414.35,21.61,552.8,2388.1,9070.92,47.69,521.12,2388.1,8.5142,394,38.73,23.2634 +94,186,-0.0041,-0.0002,643.26,1591.53,1423.63,21.61,552.65,2388.13,9071.7,47.6,521.08,2388.15,8.4586,394,38.83,23.2577 +94,187,-0.0038,-0.0002,642.97,1590.03,1419.04,21.61,553.34,2388.12,9076.63,47.72,520.83,2388.1,8.451,394,38.68,23.2808 +94,188,0.0007,-0.0004,643.23,1592.59,1415.33,21.61,553.08,2388.17,9081.09,47.89,520.51,2388.11,8.4764,394,38.83,23.2111 +94,189,-0.0049,-0.0002,643.0,1590.41,1412.95,21.61,552.82,2388.11,9083.02,47.87,520.6,2388.14,8.4184,393,38.72,23.1447 +94,190,0.0028,-0.0,642.19,1587.37,1411.76,21.61,552.51,2388.11,9079.34,47.7,520.75,2388.06,8.4705,395,38.75,23.1987 +94,191,0.0006,-0.0004,642.38,1584.46,1415.32,21.61,552.71,2388.18,9081.76,47.83,520.72,2388.1,8.4531,396,38.74,23.2195 +94,192,0.003,0.0001,642.88,1589.55,1417.38,21.61,553.15,2388.13,9077.03,47.84,521.17,2388.15,8.4855,396,38.78,23.2646 +94,193,0.0016,-0.0002,643.14,1585.94,1410.26,21.61,552.93,2388.1,9078.85,47.8,520.96,2388.12,8.5017,394,38.76,23.2833 +94,194,-0.0003,-0.0003,642.93,1597.72,1420.12,21.61,551.77,2388.18,9069.48,47.72,521.16,2388.15,8.4466,397,38.63,23.2574 +94,195,-0.0004,-0.0004,642.84,1596.98,1420.15,21.61,552.82,2388.09,9073.12,47.62,520.78,2388.14,8.499,395,38.6,23.1526 +94,196,-0.003,0.0,642.99,1592.74,1416.51,21.61,552.63,2388.13,9085.95,47.83,521.21,2388.12,8.4391,395,38.65,23.2994 +94,197,0.0017,-0.0003,642.85,1600.25,1410.05,21.61,552.6,2388.14,9077.84,47.7,520.99,2388.17,8.4704,392,38.66,23.1685 +94,198,-0.0012,0.0004,643.24,1598.94,1404.79,21.61,553.47,2388.15,9076.93,47.64,520.3,2388.12,8.4748,395,38.66,23.2911 +94,199,0.0015,-0.0004,642.6,1601.14,1417.95,21.61,553.16,2388.15,9077.97,47.92,521.18,2388.11,8.4456,394,38.51,23.1574 +94,200,0.0008,0.0004,643.11,1591.13,1417.05,21.61,553.02,2388.09,9084.1,47.9,521.01,2388.12,8.4467,395,38.76,23.2419 +94,201,-0.001,0.0001,642.74,1587.69,1420.93,21.61,552.83,2388.16,9081.32,47.68,520.24,2388.17,8.4942,394,38.81,23.2242 +94,202,-0.0017,-0.0005,643.06,1602.52,1418.36,21.61,552.17,2388.15,9083.21,47.72,520.47,2388.15,8.4559,395,38.69,23.2895 +94,203,0.0001,-0.0,643.09,1594.55,1418.27,21.61,552.89,2388.1,9083.36,47.85,520.68,2388.09,8.5031,395,38.6,23.0708 +94,204,-0.0028,-0.0004,643.03,1587.06,1411.34,21.61,553.24,2388.19,9079.79,47.88,520.58,2388.13,8.4495,394,38.67,23.2738 +94,205,-0.001,-0.0003,642.89,1586.84,1417.06,21.61,552.82,2388.12,9081.96,47.74,520.93,2388.14,8.4937,396,38.53,23.2235 +94,206,0.0011,-0.0003,642.91,1591.81,1414.29,21.61,552.83,2388.17,9087.11,47.85,520.66,2388.11,8.476,393,38.65,23.1633 +94,207,-0.0011,0.0003,643.65,1594.19,1419.36,21.61,552.55,2388.18,9087.64,47.62,520.85,2388.18,8.476,396,38.64,23.0937 +94,208,0.0009,-0.0003,643.27,1589.98,1417.88,21.61,552.23,2388.12,9087.59,47.59,520.97,2388.17,8.4772,393,38.51,23.0869 +94,209,-0.0038,-0.0,643.47,1593.77,1422.5,21.61,553.12,2388.1,9081.42,47.6,521.29,2388.1,8.4547,395,38.78,23.2365 +94,210,0.0008,0.0003,643.34,1595.2,1417.06,21.61,552.1,2388.17,9096.89,47.74,520.95,2388.15,8.4682,395,38.73,23.1642 +94,211,-0.0005,0.0003,642.97,1601.66,1418.08,21.61,551.75,2388.13,9087.55,47.99,520.89,2388.13,8.4809,394,38.79,23.2682 +94,212,-0.0007,0.0,642.9,1590.8,1417.47,21.61,551.88,2388.17,9087.02,47.77,520.59,2388.12,8.4784,396,38.69,23.1824 +94,213,-0.0005,-0.0003,643.22,1595.42,1423.57,21.61,552.15,2388.16,9088.72,47.84,520.56,2388.14,8.4171,393,38.7,23.1923 +94,214,0.002,-0.0003,642.16,1593.01,1422.71,21.61,551.89,2388.13,9085.22,47.88,520.61,2388.17,8.5024,396,38.54,23.224 +94,215,0.0023,-0.0002,643.23,1599.87,1416.34,21.61,552.68,2388.13,9092.2,47.81,520.66,2388.15,8.4784,395,38.74,23.2058 +94,216,-0.0043,-0.0002,642.69,1599.43,1413.25,21.61,552.8,2388.15,9095.81,47.7,521.06,2388.11,8.4495,396,38.5,23.1336 +94,217,0.0004,0.0004,643.19,1604.92,1420.03,21.61,552.4,2388.09,9092.75,47.8,520.75,2388.12,8.4856,394,38.51,23.1182 +94,218,0.0003,0.0004,643.42,1602.05,1409.85,21.61,552.97,2388.05,9096.86,47.7,520.44,2388.14,8.465,396,38.76,23.2601 +94,219,0.0031,-0.0003,643.12,1596.07,1415.62,21.61,552.16,2388.12,9099.88,47.77,520.33,2388.12,8.5219,393,38.55,23.1172 +94,220,0.0012,0.0004,642.8,1591.17,1421.27,21.61,552.52,2388.16,9095.01,47.93,520.26,2388.22,8.519,395,38.66,23.1685 +94,221,-0.001,0.0003,643.29,1596.49,1418.78,21.61,552.33,2388.1,9091.97,47.64,520.54,2388.14,8.4748,394,38.69,23.1717 +94,222,-0.0016,0.0001,643.33,1601.79,1424.33,21.61,552.55,2388.15,9109.65,47.86,520.87,2388.11,8.4413,394,38.57,23.2284 +94,223,-0.0042,-0.0005,643.1,1606.01,1424.49,21.61,551.98,2388.16,9100.1,47.95,520.62,2388.14,8.4876,396,38.52,23.1702 +94,224,0.0007,-0.0004,643.38,1597.15,1419.26,21.61,552.46,2388.13,9100.79,47.9,520.83,2388.17,8.4912,395,38.58,23.0794 +94,225,0.0005,-0.0003,643.06,1593.44,1426.88,21.61,552.09,2388.13,9102.42,47.84,521.0,2388.08,8.5007,394,38.46,23.2041 +94,226,0.0053,0.0001,643.1,1597.14,1416.53,21.61,552.48,2388.14,9099.98,47.83,520.96,2388.17,8.5199,395,38.6,23.2338 +94,227,0.0049,-0.0002,643.29,1592.75,1421.59,21.61,552.31,2388.12,9107.01,47.78,520.25,2388.15,8.4798,396,38.48,23.1289 +94,228,-0.0014,0.0001,643.36,1600.8,1425.77,21.61,552.21,2388.17,9103.83,47.99,520.6,2388.1,8.4685,396,38.61,23.2294 +94,229,-0.0006,0.0002,642.79,1601.49,1423.53,21.61,552.43,2388.11,9113.04,47.94,520.21,2388.1,8.4736,395,38.46,23.1739 +94,230,0.002,-0.0003,642.98,1602.56,1414.09,21.61,552.47,2388.15,9105.83,47.91,521.02,2388.15,8.4939,394,38.56,23.2648 +94,231,0.0011,0.0002,642.78,1594.89,1430.41,21.61,552.42,2388.07,9110.49,47.73,520.64,2388.14,8.5181,396,38.57,23.1292 +94,232,-0.0021,0.0001,643.57,1597.56,1408.06,21.61,552.58,2388.13,9114.73,47.94,520.41,2388.18,8.4725,395,38.62,23.0843 +94,233,-0.0058,0.0,643.11,1601.31,1424.44,21.61,553.16,2388.17,9110.5,48.06,520.05,2388.12,8.5068,395,38.43,23.2232 +94,234,-0.0038,0.0001,643.32,1597.76,1429.23,21.61,552.25,2388.11,9109.87,48.0,520.94,2388.07,8.5164,394,38.57,23.1905 +94,235,-0.0003,-0.0001,642.99,1598.11,1426.15,21.61,552.2,2388.16,9110.05,48.11,520.39,2388.17,8.4818,397,38.63,23.1621 +94,236,-0.0012,-0.0003,643.47,1603.24,1426.19,21.61,551.63,2388.15,9117.53,48.06,520.34,2388.16,8.481,396,38.61,23.2129 +94,237,-0.0006,0.0,644.18,1605.84,1424.01,21.61,552.51,2388.19,9112.47,48.14,520.12,2388.12,8.4587,394,38.61,23.1538 +94,238,-0.0004,0.0004,643.09,1604.75,1420.79,21.61,552.4,2388.19,9120.92,47.82,520.5,2388.17,8.5019,395,38.76,23.1615 +94,239,-0.0035,0.0002,643.47,1601.22,1423.49,21.61,552.25,2388.19,9120.77,48.03,520.4,2388.13,8.5101,395,38.59,23.0952 +94,240,-0.0002,-0.0001,643.87,1601.79,1425.24,21.61,551.9,2388.14,9116.86,48.06,520.31,2388.11,8.5123,396,38.45,23.1856 +94,241,-0.0018,0.0002,643.39,1597.99,1421.07,21.61,552.64,2388.15,9122.98,47.94,520.95,2388.13,8.503,395,38.52,23.1268 +94,242,-0.0036,-0.0003,643.54,1605.23,1418.43,21.61,552.88,2388.11,9125.96,48.1,520.14,2388.21,8.4921,395,38.36,23.235 +94,243,-0.0012,-0.0001,642.91,1601.17,1430.06,21.61,551.31,2388.15,9128.54,47.85,520.45,2388.14,8.5083,395,38.66,23.1806 +94,244,0.0027,0.0,643.97,1598.56,1423.54,21.61,552.24,2388.11,9122.99,48.02,519.91,2388.19,8.503,395,38.5,23.1723 +94,245,-0.0015,0.0002,642.92,1598.99,1431.21,21.61,552.51,2388.17,9141.46,47.88,520.21,2388.12,8.4944,395,38.61,23.1142 +94,246,-0.0032,0.0,643.22,1606.44,1430.55,21.61,550.74,2388.15,9132.74,47.9,520.09,2388.21,8.5078,395,38.37,23.1534 +94,247,0.0004,-0.0004,643.55,1599.21,1431.52,21.61,552.2,2388.2,9138.9,48.18,520.35,2388.15,8.5299,394,38.52,23.0614 +94,248,-0.0027,-0.0002,643.29,1606.35,1419.8,21.61,552.81,2388.14,9135.98,48.05,520.07,2388.12,8.5214,397,38.65,23.1162 +94,249,0.0023,-0.0004,644.04,1600.85,1420.47,21.61,551.97,2388.13,9139.87,48.01,520.38,2388.16,8.5378,397,38.49,23.098 +94,250,0.0009,0.0,643.48,1600.99,1424.95,21.61,551.72,2388.15,9135.87,47.98,519.8,2388.21,8.5354,397,38.24,23.0782 +94,251,0.0004,-0.0005,643.47,1592.46,1429.17,21.61,551.87,2388.2,9139.66,48.0,519.85,2388.21,8.524,397,38.4,23.1917 +94,252,0.0003,0.0004,643.78,1598.39,1427.48,21.61,551.85,2388.19,9145.48,48.06,519.99,2388.15,8.521,396,38.51,22.9914 +94,253,-0.0014,-0.0003,643.74,1605.27,1436.02,21.61,552.05,2388.12,9139.75,48.16,520.01,2388.14,8.5423,396,38.61,22.9593 +94,254,0.0004,-0.0001,643.6,1601.94,1432.25,21.61,551.76,2388.16,9144.87,48.02,520.33,2388.16,8.5299,395,38.46,23.1186 +94,255,0.0006,0.0003,643.25,1602.62,1430.43,21.61,552.07,2388.16,9146.93,47.98,519.63,2388.15,8.5147,397,38.42,22.9984 +94,256,0.0016,0.0004,643.83,1600.52,1428.51,21.61,552.08,2388.19,9151.14,48.07,519.57,2388.17,8.5452,396,38.3,23.098 +94,257,-0.0036,-0.0002,643.3,1604.05,1431.12,21.61,551.32,2388.22,9148.49,48.32,520.02,2388.22,8.4959,396,38.21,23.1518 +94,258,0.003,0.0004,644.07,1600.69,1425.25,21.61,551.27,2388.15,9153.46,48.26,519.74,2388.19,8.5335,396,38.3,22.9862 +95,10,0.004,-0.0004,641.97,1580.85,1392.92,21.61,554.64,2387.95,9079.37,47.05,522.32,2387.96,8.3772,392,39.07,23.435 +95,11,-0.0039,0.0004,642.17,1580.17,1391.9,21.61,554.23,2388.0,9065.5,47.13,522.61,2387.98,8.3855,391,39.19,23.4258 +95,12,-0.0006,0.0002,642.77,1581.11,1394.96,21.61,554.24,2387.99,9069.42,47.09,522.35,2388.0,8.4267,393,38.71,23.4034 +95,13,0.0006,0.0003,641.96,1579.14,1397.16,21.61,554.69,2388.0,9073.49,47.22,521.83,2387.95,8.3812,392,39.09,23.4318 +95,14,-0.0017,-0.0003,641.89,1582.89,1393.8,21.61,554.9,2387.91,9074.5,47.05,523.01,2387.96,8.3516,391,39.13,23.4343 +95,15,-0.0019,0.0002,641.3,1586.3,1393.76,21.61,554.55,2387.98,9069.95,47.18,522.58,2387.96,8.4019,392,39.12,23.4835 +95,16,0.0014,0.0003,642.32,1592.95,1400.76,21.61,554.73,2388.04,9068.86,47.07,521.95,2387.99,8.376,390,39.02,23.2972 +95,17,0.0023,-0.0003,642.08,1580.6,1397.17,21.61,554.14,2388.0,9069.57,47.07,522.41,2387.97,8.4093,391,39.11,23.3484 +95,18,0.0054,-0.0004,642.07,1577.97,1399.9,21.61,555.15,2388.0,9067.77,47.08,522.89,2387.96,8.4382,390,39.04,23.4898 +95,19,0.0037,-0.0002,642.0,1588.23,1388.48,21.61,554.69,2387.99,9063.33,47.11,522.89,2387.98,8.4159,392,38.89,23.4366 +95,20,0.0028,0.0002,642.45,1583.3,1395.34,21.61,554.3,2388.03,9065.74,47.19,522.57,2387.98,8.4166,391,39.17,23.3666 +95,21,0.0004,0.0002,642.12,1593.38,1392.33,21.61,554.81,2388.03,9064.57,47.21,521.96,2387.96,8.3511,391,39.06,23.4729 +95,22,0.005,-0.0001,641.84,1582.17,1391.81,21.6,554.55,2387.99,9069.16,47.1,522.83,2388.0,8.3757,392,39.03,23.4455 +95,23,-0.0021,0.0001,641.8,1575.04,1397.13,21.61,554.6,2387.93,9070.08,47.29,522.05,2387.97,8.4104,391,38.95,23.3788 +95,24,0.0035,0.0002,641.98,1585.72,1398.31,21.61,555.3,2387.97,9071.23,47.25,522.45,2388.0,8.3732,391,39.06,23.407 +95,25,-0.0048,0.0004,642.4,1583.59,1397.7,21.61,554.58,2387.95,9063.76,47.1,522.42,2388.0,8.3871,392,39.05,23.4489 +95,26,-0.0043,-0.0003,642.23,1586.48,1396.63,21.61,554.23,2388.01,9074.65,47.28,522.54,2388.02,8.4473,392,39.09,23.4367 +95,27,0.0019,0.0003,642.31,1582.21,1394.01,21.61,554.42,2388.06,9061.31,47.06,522.1,2388.05,8.3927,390,39.07,23.3856 +95,28,-0.0005,-0.0001,642.37,1585.04,1391.76,21.61,554.49,2388.02,9075.88,47.29,522.26,2388.04,8.3959,392,39.03,23.4403 +95,29,-0.0007,0.0,642.09,1583.66,1398.05,21.61,554.89,2387.94,9079.77,47.21,522.36,2388.02,8.3957,392,39.02,23.4545 +95,30,0.0034,-0.0004,641.85,1585.64,1394.45,21.61,554.54,2388.0,9066.67,47.34,521.93,2387.98,8.423,391,39.07,23.3813 +95,31,-0.0018,0.0003,642.3,1590.52,1399.81,21.61,554.52,2388.0,9067.08,47.22,522.17,2387.94,8.3745,390,38.98,23.3721 +95,32,-0.0039,0.0001,641.72,1582.27,1402.71,21.61,554.54,2387.95,9065.37,47.18,522.4,2388.01,8.4311,390,38.91,23.3865 +95,33,0.0016,-0.0004,641.55,1590.63,1399.09,21.6,554.1,2388.03,9068.15,47.12,521.71,2388.0,8.4021,393,39.11,23.4466 +95,34,-0.0015,-0.0,641.92,1589.0,1402.82,21.61,554.68,2388.02,9072.29,47.32,522.57,2388.03,8.379,391,38.97,23.3428 +95,35,0.0015,0.0005,642.4,1584.73,1401.7,21.61,555.07,2388.02,9067.48,47.13,522.01,2387.97,8.4079,392,39.05,23.432 +95,36,-0.0031,-0.0004,642.04,1590.03,1398.98,21.61,554.94,2388.05,9068.37,47.24,522.24,2388.0,8.3863,392,38.94,23.4308 +95,37,-0.0025,0.0002,641.96,1583.28,1402.33,21.61,554.59,2388.03,9069.38,47.25,522.19,2387.96,8.4193,391,38.94,23.3415 +95,38,0.0007,-0.0005,641.75,1589.11,1393.12,21.61,555.13,2388.0,9066.51,47.28,521.99,2388.06,8.3805,391,39.05,23.4627 +95,39,-0.0025,-0.0004,641.95,1581.66,1397.86,21.6,554.1,2388.02,9067.91,47.04,522.68,2387.96,8.3849,391,39.13,23.5627 +95,40,0.0024,-0.0002,642.58,1579.72,1397.73,21.61,553.96,2387.98,9065.43,47.18,522.31,2388.02,8.4018,393,39.06,23.5442 +95,41,0.002,-0.0003,641.59,1585.47,1404.29,21.61,554.02,2387.99,9061.27,47.46,522.49,2387.99,8.3802,391,39.03,23.3525 +95,42,-0.0016,-0.0001,642.33,1590.25,1397.99,21.61,553.98,2388.01,9072.0,47.15,522.81,2388.01,8.3495,392,38.89,23.4256 +95,43,-0.0007,-0.0004,642.03,1584.33,1399.94,21.61,554.81,2388.0,9066.59,47.36,523.03,2388.0,8.4152,391,38.96,23.5188 +95,44,-0.0005,-0.0004,641.96,1587.69,1397.5,21.61,553.63,2387.99,9065.16,47.11,522.76,2388.06,8.3756,391,39.03,23.4025 +95,45,0.0014,0.0003,642.3,1583.86,1398.33,21.61,554.78,2387.99,9072.27,47.13,522.71,2388.0,8.4047,392,38.99,23.4181 +95,46,-0.0013,0.0001,642.02,1577.92,1399.47,21.61,554.95,2388.02,9068.4,47.15,522.48,2387.99,8.3992,391,39.03,23.3803 +95,47,-0.002,-0.0003,642.4,1577.55,1399.76,21.6,554.41,2387.93,9064.74,47.23,522.58,2388.01,8.3903,391,38.92,23.391 +95,48,0.0006,0.0002,642.22,1583.56,1404.86,21.61,554.71,2387.95,9073.24,47.28,522.04,2388.03,8.4048,391,38.87,23.4361 +95,49,0.0028,-0.0002,641.98,1586.83,1398.0,21.6,554.45,2387.97,9061.2,47.33,522.05,2388.0,8.4161,394,38.85,23.2893 +95,50,0.0004,-0.0005,642.12,1593.21,1391.86,21.61,554.0,2388.0,9060.98,47.34,522.52,2388.03,8.3792,392,38.99,23.4067 +95,51,0.0022,-0.0004,642.23,1587.91,1397.38,21.6,555.12,2387.95,9068.2,46.97,522.43,2388.02,8.4209,390,38.95,23.5191 +95,52,-0.0036,-0.0002,642.4,1588.23,1401.23,21.61,554.1,2387.99,9069.15,47.31,522.55,2387.96,8.3787,392,39.06,23.4409 +95,53,0.0037,-0.0003,642.17,1588.17,1398.24,21.61,554.53,2388.03,9067.52,47.23,522.42,2388.04,8.3964,393,38.99,23.3749 +95,54,-0.0044,0.0003,641.46,1587.17,1399.17,21.61,554.39,2388.01,9063.54,47.13,522.2,2388.04,8.4254,391,38.97,23.4667 +95,55,0.0012,-0.0005,641.83,1589.14,1393.55,21.61,554.54,2388.01,9062.98,47.22,522.06,2388.0,8.3883,391,38.95,23.3812 +95,56,0.002,0.0001,642.33,1579.24,1399.08,21.61,554.16,2388.0,9068.7,47.12,522.53,2387.99,8.3919,390,39.2,23.3888 +95,57,0.0017,0.0003,641.91,1579.12,1396.6,21.61,554.66,2388.0,9071.14,47.07,522.06,2387.95,8.37,391,39.01,23.3966 +95,58,-0.001,0.0003,642.12,1589.09,1385.19,21.61,554.38,2387.96,9067.64,47.14,522.13,2388.02,8.4145,390,39.0,23.5333 +95,59,0.0034,0.0,641.78,1583.73,1393.7,21.61,554.01,2387.96,9073.22,47.23,522.68,2388.02,8.3946,390,39.07,23.4327 +95,60,0.0001,-0.0003,642.04,1587.87,1394.6,21.61,554.39,2387.96,9075.08,47.18,522.53,2387.97,8.4098,391,39.15,23.4324 +95,61,-0.0024,-0.0003,642.24,1587.45,1402.6,21.61,554.27,2388.07,9074.84,47.31,522.22,2388.02,8.4165,391,38.97,23.4084 +95,62,-0.0042,0.0002,641.78,1576.36,1399.9,21.61,554.1,2388.05,9066.72,47.23,522.7,2387.98,8.4068,392,38.88,23.2807 +95,63,-0.0027,-0.0002,642.33,1576.15,1399.66,21.61,554.42,2388.0,9073.46,47.14,522.56,2387.97,8.4254,391,39.02,23.3505 +95,64,-0.0013,0.0,642.11,1585.01,1392.21,21.6,555.06,2387.97,9077.08,47.08,522.29,2388.0,8.3834,391,39.05,23.456 +95,65,0.0032,-0.0005,642.36,1582.01,1400.4,21.6,555.64,2387.96,9068.88,47.33,522.45,2387.95,8.3818,393,38.92,23.3155 +95,66,-0.0024,0.0002,641.99,1579.36,1399.82,21.61,555.01,2387.98,9065.63,47.11,522.16,2387.99,8.3968,392,38.85,23.3596 +95,67,-0.002,0.0004,642.18,1585.97,1394.71,21.61,554.25,2387.97,9075.63,47.24,522.17,2388.02,8.3907,392,38.9,23.4372 +95,68,-0.0013,-0.0002,641.75,1579.66,1403.48,21.61,554.44,2388.01,9067.73,47.21,521.9,2388.02,8.3917,393,39.07,23.4962 +95,69,0.0028,-0.0001,642.49,1581.55,1397.54,21.61,554.43,2388.0,9069.3,47.19,521.99,2388.0,8.3908,393,39.06,23.3071 +95,70,0.0022,0.0002,642.31,1584.75,1395.67,21.6,554.99,2387.99,9065.54,47.43,522.33,2387.96,8.4136,392,38.98,23.3647 +95,71,-0.0024,-0.0,641.82,1588.7,1397.86,21.61,554.85,2388.02,9065.18,47.03,521.92,2387.99,8.4022,391,39.06,23.4485 +95,72,-0.0006,0.0001,641.76,1582.8,1399.66,21.61,554.38,2388.05,9065.97,47.27,521.84,2388.02,8.416,392,39.12,23.3942 +95,73,0.0014,0.0002,641.89,1591.38,1397.57,21.61,553.84,2388.01,9064.99,47.19,522.58,2387.96,8.3979,392,38.92,23.3184 +95,74,0.0023,-0.0002,641.71,1583.15,1401.99,21.61,553.85,2388.01,9064.72,47.24,522.74,2387.97,8.414,391,38.93,23.4971 +95,75,0.0016,0.0003,641.61,1581.14,1400.82,21.61,554.06,2387.99,9070.46,47.18,522.43,2387.97,8.4092,393,39.0,23.3081 +95,76,-0.0006,-0.0001,641.91,1584.51,1392.36,21.61,554.5,2388.04,9072.52,47.29,522.13,2387.98,8.3879,391,39.07,23.4344 +95,77,0.0043,0.0001,642.8,1578.35,1398.83,21.61,554.46,2388.0,9070.43,47.21,521.97,2388.01,8.3708,391,39.15,23.3313 +95,78,0.003,-0.0003,642.55,1585.96,1392.8,21.61,554.29,2387.96,9063.02,47.11,522.39,2388.01,8.3958,392,39.22,23.4162 +95,79,0.0024,0.0,642.15,1586.93,1397.07,21.61,553.84,2388.0,9068.29,47.23,522.22,2387.97,8.3822,391,39.15,23.3262 +95,80,-0.0013,0.0003,641.96,1583.86,1392.35,21.6,553.8,2388.03,9067.9,47.3,522.18,2387.92,8.373,390,39.02,23.4595 +95,81,-0.0017,0.0002,642.04,1584.35,1394.84,21.61,554.74,2388.01,9077.45,47.43,522.08,2387.98,8.3921,391,39.02,23.4055 +95,82,-0.0024,-0.0003,641.74,1584.75,1394.62,21.61,553.72,2388.01,9066.38,47.08,521.88,2387.97,8.3956,390,38.93,23.4541 +95,83,-0.0004,0.0004,642.28,1583.52,1408.22,21.61,554.99,2388.04,9074.54,47.27,522.57,2388.02,8.4035,392,39.09,23.3536 +95,84,0.0004,0.0003,642.58,1591.9,1397.98,21.61,554.66,2388.0,9065.7,47.23,522.51,2387.99,8.3802,391,39.11,23.4007 +95,85,-0.0019,0.0003,641.91,1581.22,1400.16,21.61,554.8,2388.0,9067.21,47.18,522.46,2388.01,8.4153,390,39.04,23.3966 +95,86,0.0005,-0.0001,642.34,1580.64,1397.34,21.61,554.18,2387.96,9071.99,47.45,521.9,2388.06,8.3923,393,39.01,23.5311 +95,87,0.0031,-0.0001,642.26,1591.11,1397.78,21.61,554.02,2387.98,9060.76,47.16,522.48,2387.99,8.3855,392,39.04,23.5197 +95,88,0.0005,-0.0003,642.1,1580.42,1398.26,21.61,554.11,2387.97,9069.27,47.11,521.8,2387.99,8.4405,392,38.96,23.3708 +95,89,0.0026,-0.0001,642.06,1587.62,1393.99,21.61,553.6,2387.99,9071.33,47.4,521.92,2388.02,8.4024,391,39.05,23.3651 +95,90,0.0003,0.0004,642.28,1588.46,1406.19,21.61,554.23,2388.01,9062.57,47.09,522.45,2387.97,8.392,392,38.92,23.4211 +95,91,-0.0015,0.0003,642.07,1583.01,1394.44,21.61,554.71,2387.99,9068.74,47.28,522.81,2388.0,8.4039,391,38.99,23.3145 +95,92,-0.0045,0.0001,642.51,1582.87,1397.31,21.6,553.39,2387.97,9069.2,47.12,522.24,2387.95,8.3978,393,38.88,23.3029 +95,93,0.0008,0.0003,642.13,1589.76,1407.41,21.61,554.41,2388.01,9077.07,47.1,522.37,2388.02,8.3799,389,39.08,23.432 +95,94,-0.0016,0.0001,641.33,1581.77,1396.4,21.61,553.69,2388.01,9071.65,47.08,522.24,2387.98,8.3808,391,38.97,23.3824 +95,95,-0.0013,0.0002,642.36,1592.95,1395.68,21.61,554.49,2388.01,9078.51,47.13,522.64,2387.99,8.4018,392,38.83,23.4057 +95,96,0.0,-0.0002,642.34,1591.09,1404.42,21.61,554.32,2388.0,9069.33,47.16,522.4,2388.02,8.3689,394,39.0,23.4466 +95,97,-0.0014,-0.0003,642.18,1590.79,1392.48,21.61,554.74,2388.0,9069.59,47.14,522.21,2387.95,8.4375,392,39.09,23.333 +95,98,-0.0013,0.0005,642.08,1583.36,1400.98,21.61,554.37,2388.03,9075.3,47.24,522.59,2387.99,8.4211,391,39.04,23.313 +95,99,0.0015,0.0004,642.38,1580.28,1404.26,21.61,553.76,2387.98,9065.33,47.2,522.61,2387.96,8.4175,393,38.99,23.5004 +95,100,0.0008,0.0001,642.54,1589.45,1402.46,21.61,554.59,2388.01,9069.05,47.11,522.45,2387.95,8.4363,392,38.92,23.3356 +95,101,-0.0039,0.0,641.79,1585.48,1397.83,21.61,554.3,2387.96,9066.38,47.32,522.28,2387.98,8.4474,392,38.88,23.4572 +95,102,0.0014,-0.0005,642.33,1587.3,1392.28,21.61,554.15,2388.02,9070.74,47.33,522.52,2388.03,8.3973,391,39.02,23.38 +95,103,-0.0013,-0.0002,641.56,1592.15,1399.89,21.61,554.19,2388.02,9072.13,47.23,522.11,2387.94,8.3962,392,39.01,23.4325 +95,104,0.0025,0.0004,642.55,1593.81,1403.41,21.61,554.25,2388.03,9069.96,47.28,522.34,2387.95,8.4069,392,39.14,23.3588 +95,105,-0.0013,0.0002,642.34,1588.83,1404.64,21.6,554.26,2387.99,9065.28,47.18,521.76,2387.95,8.3617,393,39.07,23.4055 +95,106,-0.0006,0.0005,641.81,1580.34,1401.84,21.61,554.74,2388.03,9062.61,47.2,522.26,2388.01,8.4111,392,38.98,23.5379 +95,107,0.0003,0.0004,641.8,1587.09,1403.51,21.61,554.42,2388.03,9077.5,47.33,522.1,2387.99,8.4281,392,39.03,23.3986 +95,108,0.0004,0.0005,642.13,1587.76,1397.98,21.61,554.02,2388.0,9067.8,47.33,522.49,2388.0,8.3961,392,39.04,23.451 +95,109,-0.0008,0.0003,642.24,1595.25,1403.28,21.61,554.66,2388.02,9070.75,47.13,522.22,2388.02,8.3982,390,39.08,23.4312 +95,110,0.0013,-0.0004,642.46,1582.91,1405.19,21.61,554.41,2387.95,9066.11,47.27,522.27,2388.04,8.4525,392,38.78,23.3485 +95,111,0.0028,-0.0,642.12,1578.68,1403.06,21.61,554.26,2388.01,9073.19,47.31,522.56,2388.01,8.3703,393,39.06,23.3337 +95,112,-0.0007,0.0001,642.4,1591.13,1397.0,21.61,553.28,2387.97,9076.87,47.19,521.98,2387.98,8.4013,391,38.86,23.4631 +95,113,-0.0009,0.0001,642.41,1591.1,1400.5,21.61,553.68,2388.0,9068.47,47.17,522.17,2387.97,8.3958,391,38.93,23.4026 +95,114,-0.0019,0.0002,641.97,1581.33,1397.52,21.61,554.46,2387.96,9075.74,47.37,522.63,2387.96,8.4055,392,39.01,23.3446 +95,115,-0.0006,-0.0004,642.52,1591.47,1401.33,21.61,554.06,2388.0,9069.48,47.34,522.19,2388.0,8.3913,391,39.07,23.4132 +95,116,-0.003,0.0002,641.85,1582.95,1400.42,21.61,554.46,2388.04,9071.59,47.03,522.21,2388.01,8.4088,392,39.13,23.3432 +95,117,-0.001,0.0001,642.63,1581.96,1392.27,21.61,554.38,2387.97,9072.45,47.1,522.3,2388.06,8.399,391,38.89,23.4329 +95,118,0.0013,-0.0005,642.59,1583.32,1392.45,21.61,554.26,2387.97,9066.59,47.2,522.2,2388.05,8.4147,390,39.1,23.4153 +95,119,-0.0017,-0.0,642.71,1588.53,1399.35,21.61,554.72,2387.98,9074.87,47.18,522.09,2388.0,8.4344,392,38.9,23.3867 +95,120,-0.003,-0.0002,642.11,1576.77,1399.03,21.61,554.43,2388.04,9066.56,47.04,522.29,2387.97,8.4085,391,38.92,23.3877 +95,121,-0.0017,-0.0002,642.41,1584.43,1405.4,21.61,553.66,2388.0,9075.52,47.27,522.25,2388.0,8.4346,393,39.01,23.3196 +95,122,0.0057,-0.0005,642.28,1586.48,1395.38,21.61,553.84,2388.03,9076.06,47.23,522.69,2388.08,8.4041,391,39.01,23.3606 +95,123,-0.0001,0.0001,642.05,1584.43,1403.02,21.61,554.86,2388.03,9076.81,47.2,522.42,2387.95,8.3878,391,38.94,23.3338 +95,124,-0.0003,0.0002,642.28,1584.2,1396.44,21.61,554.11,2388.01,9067.29,47.27,522.45,2388.02,8.4035,391,39.06,23.3633 +95,125,0.0017,0.0001,641.85,1584.78,1401.17,21.61,554.22,2388.01,9073.39,47.22,522.04,2387.96,8.4315,391,38.96,23.4351 +95,126,0.0018,0.0003,642.43,1588.4,1397.39,21.61,553.87,2388.01,9064.51,47.25,522.68,2388.01,8.4064,392,39.02,23.4135 +95,127,0.0023,0.0003,642.77,1588.68,1398.64,21.61,553.94,2387.96,9067.16,47.22,522.19,2387.98,8.3856,393,39.12,23.392 +95,128,0.0012,0.0001,642.12,1588.53,1405.04,21.61,554.3,2388.05,9064.85,47.36,522.15,2387.96,8.4027,391,39.02,23.3738 +95,129,-0.0033,0.0001,642.74,1590.89,1398.99,21.61,553.73,2387.95,9074.2,47.36,521.93,2388.05,8.4176,393,38.99,23.2857 +95,130,0.0019,0.0002,642.51,1579.22,1396.7,21.6,554.31,2387.98,9068.78,47.2,522.13,2388.0,8.3894,392,38.95,23.2674 +95,131,-0.0036,-0.0004,642.82,1581.63,1397.16,21.61,553.82,2388.03,9079.23,47.28,522.19,2388.0,8.3985,391,38.9,23.3979 +95,132,0.0015,0.0002,642.03,1587.62,1400.74,21.61,554.47,2388.05,9067.97,47.29,522.87,2388.0,8.4033,392,38.91,23.3719 +95,133,0.0004,-0.0001,642.43,1588.11,1397.39,21.61,554.08,2387.99,9077.36,47.28,522.41,2387.97,8.404,390,39.1,23.3421 +95,134,0.0022,-0.0003,642.54,1590.29,1399.8,21.61,554.67,2388.01,9072.7,47.32,521.28,2388.03,8.4506,392,38.93,23.3081 +95,135,-0.0009,0.0,642.11,1586.87,1400.93,21.61,554.82,2388.0,9079.33,47.3,521.69,2388.05,8.4129,392,39.16,23.3882 +95,136,0.006,0.0001,641.94,1587.8,1403.51,21.61,553.95,2388.02,9072.33,47.38,521.96,2388.02,8.4359,393,38.93,23.237 +95,137,-0.002,0.0001,641.83,1587.74,1400.25,21.61,554.29,2388.03,9070.15,47.34,522.16,2388.0,8.4162,392,39.01,23.445 +95,138,0.0046,0.0004,642.56,1590.99,1405.51,21.61,554.24,2388.0,9072.56,47.42,522.22,2388.0,8.4243,392,38.95,23.367 +95,139,-0.0011,-0.0003,642.87,1581.36,1395.12,21.61,553.95,2387.99,9074.08,47.38,521.78,2388.03,8.4018,393,38.76,23.4701 +95,140,-0.0023,0.0005,642.39,1592.17,1399.15,21.61,553.52,2388.02,9075.4,47.28,522.45,2388.06,8.4115,393,38.91,23.4167 +95,141,-0.0021,0.0005,642.59,1590.99,1400.57,21.61,553.63,2388.02,9076.59,47.23,522.4,2388.02,8.409,392,39.15,23.3256 +95,142,-0.0011,-0.0003,642.73,1582.42,1408.5,21.61,554.74,2388.01,9075.65,47.22,521.69,2388.02,8.3956,393,38.96,23.4092 +95,143,0.0014,0.0002,641.78,1587.17,1399.26,21.61,554.05,2388.04,9072.95,47.27,521.77,2388.04,8.4383,392,38.95,23.3957 +95,144,0.0004,0.0004,642.28,1584.55,1400.7,21.61,553.98,2388.04,9077.21,47.38,522.55,2388.01,8.4145,392,38.84,23.4767 +95,145,-0.0042,-0.0002,642.32,1583.14,1399.38,21.61,553.96,2388.09,9068.38,47.31,521.85,2388.02,8.4153,391,38.86,23.3159 +95,146,-0.0027,-0.0003,641.89,1590.89,1396.8,21.61,554.39,2388.02,9072.44,47.31,521.56,2387.98,8.4049,394,38.94,23.4033 +95,147,-0.0024,-0.0002,642.34,1584.97,1399.64,21.61,553.96,2388.07,9077.03,47.33,522.15,2387.99,8.3504,392,38.9,23.3908 +95,148,0.0022,-0.0,642.03,1584.78,1407.54,21.61,554.27,2387.99,9073.2,47.35,522.22,2388.0,8.387,393,39.1,23.3138 +95,149,-0.0024,-0.0003,641.98,1592.61,1405.6,21.61,553.77,2388.04,9070.98,47.25,522.73,2388.01,8.4123,393,38.94,23.3638 +95,150,0.0005,-0.0002,642.39,1585.21,1409.2,21.61,553.65,2388.01,9068.11,47.44,522.28,2387.98,8.4127,393,39.13,23.4728 +95,151,0.0012,0.0002,642.24,1581.38,1402.65,21.61,554.49,2388.0,9069.42,47.24,522.18,2388.03,8.4186,393,39.0,23.2735 +95,152,0.001,-0.0002,641.91,1590.39,1399.01,21.61,554.8,2388.03,9072.97,47.32,522.57,2388.02,8.4122,392,38.93,23.467 +95,153,-0.0055,-0.0003,642.91,1590.99,1398.15,21.61,553.82,2388.04,9077.08,47.26,521.88,2388.0,8.413,391,39.0,23.4206 +95,154,0.0012,0.0001,641.82,1589.22,1400.55,21.61,553.28,2388.01,9072.53,47.4,522.14,2388.04,8.3719,391,38.93,23.3483 +95,155,0.0017,-0.0003,641.82,1584.81,1399.21,21.61,554.19,2388.01,9074.59,47.29,522.54,2387.97,8.4199,391,38.95,23.2489 +95,156,0.0024,0.0,642.9,1579.08,1398.26,21.61,554.04,2388.05,9078.91,47.29,521.64,2388.01,8.4317,393,38.8,23.3931 +95,157,0.0021,0.0002,642.49,1585.71,1408.04,21.61,553.8,2388.03,9074.32,47.18,521.3,2388.1,8.4111,393,38.87,23.2966 +95,158,0.0025,0.0003,642.06,1584.05,1401.99,21.61,553.99,2388.0,9078.64,47.44,521.87,2388.05,8.4353,392,38.88,23.4948 +95,159,0.0044,0.0003,642.27,1580.42,1393.35,21.61,553.72,2388.0,9076.53,47.46,522.02,2387.98,8.3846,394,38.81,23.4131 +95,160,-0.0008,-0.0,643.02,1591.79,1401.55,21.61,553.86,2388.14,9077.23,47.43,521.77,2388.02,8.3719,392,38.92,23.3938 +95,161,-0.0015,0.0004,642.53,1585.48,1405.04,21.61,553.79,2388.06,9077.64,47.33,521.97,2388.06,8.4415,391,38.94,23.2145 +95,162,-0.0014,0.0,642.61,1583.17,1400.5,21.61,553.76,2388.03,9078.51,47.4,521.83,2387.97,8.3958,392,39.05,23.3126 +95,163,-0.0019,0.0003,642.37,1586.48,1405.83,21.61,553.86,2388.02,9077.46,47.35,521.7,2388.04,8.3691,392,39.0,23.2776 +95,164,0.0028,0.0001,641.79,1590.34,1412.12,21.61,553.75,2388.01,9070.99,47.35,522.28,2388.02,8.3877,393,39.0,23.381 +95,165,0.0014,-0.0004,642.18,1587.17,1403.68,21.61,554.24,2388.02,9069.13,47.2,522.05,2388.06,8.4267,393,38.87,23.3095 +95,166,0.0052,0.0001,642.74,1588.49,1399.51,21.61,554.56,2387.98,9080.4,47.33,521.51,2387.96,8.4175,393,39.06,23.4982 +95,167,-0.0012,-0.0003,642.5,1585.29,1411.22,21.61,553.82,2388.01,9078.42,47.47,522.2,2388.1,8.4283,391,39.0,23.3513 +95,168,0.0009,-0.0004,642.38,1586.19,1395.87,21.61,553.64,2388.01,9078.55,47.44,521.72,2388.04,8.4354,393,38.9,23.2932 +95,169,-0.0,-0.0005,642.53,1585.09,1403.81,21.61,554.87,2388.02,9080.36,47.28,522.1,2388.06,8.4001,393,38.99,23.2581 +95,170,0.0016,-0.0003,641.9,1590.12,1401.84,21.61,553.88,2388.06,9074.09,47.26,521.87,2388.01,8.4337,392,38.9,23.3517 +95,171,0.0004,-0.0001,641.99,1579.98,1405.06,21.61,553.43,2388.01,9074.24,47.33,522.1,2388.07,8.4248,393,39.05,23.4166 +95,172,0.0027,0.0004,642.22,1586.2,1395.96,21.61,553.54,2388.01,9078.67,47.49,521.87,2388.04,8.4182,392,38.91,23.3969 +95,173,-0.0042,0.0001,642.08,1592.64,1400.55,21.61,553.53,2388.03,9078.97,47.35,522.06,2388.05,8.4155,393,38.9,23.4406 +95,174,-0.0,-0.0005,642.43,1585.27,1403.68,21.61,554.57,2388.03,9077.69,47.52,521.88,2387.99,8.4061,392,38.94,23.2876 +95,175,0.0014,-0.0,642.47,1584.35,1399.68,21.61,553.93,2388.03,9080.31,47.31,522.16,2388.07,8.4165,392,38.88,23.2629 +95,176,-0.0007,-0.0004,642.37,1587.69,1408.49,21.61,554.58,2388.06,9071.81,47.3,521.42,2388.04,8.4247,393,39.09,23.3448 +95,177,-0.0033,-0.0001,642.31,1594.42,1392.6,21.61,553.65,2388.02,9077.13,47.48,522.22,2388.08,8.4138,392,39.06,23.384 +95,178,0.0031,-0.0001,641.97,1587.07,1401.88,21.61,553.4,2388.04,9082.41,47.35,521.86,2388.06,8.4246,393,38.91,23.3981 +95,179,0.0031,0.0002,642.61,1587.74,1403.9,21.61,553.5,2388.03,9077.23,47.41,521.43,2388.06,8.4601,393,38.82,23.372 +95,180,-0.0007,-0.0,642.02,1582.67,1401.78,21.61,553.67,2388.01,9080.85,47.43,521.62,2388.08,8.425,392,38.84,23.2953 +95,181,0.0039,-0.0001,642.71,1588.76,1404.52,21.61,553.92,2388.07,9080.77,47.23,521.89,2388.07,8.4407,391,38.75,23.325 +95,182,0.0034,-0.0003,642.09,1588.55,1404.45,21.61,553.2,2388.07,9074.9,47.41,521.65,2388.06,8.4415,393,38.94,23.2994 +95,183,0.0007,0.0004,642.29,1585.09,1399.66,21.61,553.69,2388.04,9068.98,47.41,521.85,2388.07,8.4162,393,38.96,23.3933 +95,184,0.0009,-0.0004,642.58,1587.84,1407.53,21.61,554.13,2388.02,9079.87,47.46,521.87,2388.03,8.4641,393,38.84,23.2227 +95,185,-0.0017,0.0003,643.08,1592.45,1407.79,21.61,554.27,2388.06,9080.77,47.28,521.05,2388.0,8.4388,393,38.76,23.3264 +95,186,0.0019,-0.0002,643.16,1592.0,1412.64,21.61,553.41,2388.04,9076.71,47.26,521.2,2388.03,8.4326,393,38.95,23.1849 +95,187,-0.0029,-0.0,642.74,1587.24,1401.49,21.61,553.53,2388.05,9078.4,47.46,521.85,2388.01,8.4545,392,38.86,23.3067 +95,188,-0.0028,0.0002,642.16,1588.01,1410.54,21.61,552.5,2388.08,9082.81,47.37,521.79,2388.06,8.4442,392,38.96,23.3167 +95,189,0.003,0.0002,643.02,1590.43,1408.82,21.61,553.66,2388.06,9084.41,47.53,522.19,2388.08,8.3769,392,38.79,23.3154 +95,190,0.0008,-0.0002,642.54,1590.8,1406.08,21.61,553.9,2388.09,9084.04,47.43,521.08,2388.06,8.4189,394,39.0,23.256 +95,191,0.001,-0.0001,642.69,1583.4,1405.29,21.61,553.42,2388.05,9082.56,47.34,520.96,2388.04,8.4268,394,38.99,23.3554 +95,192,-0.0041,0.0002,642.55,1586.0,1400.74,21.61,554.33,2388.02,9079.42,47.43,521.44,2388.04,8.3995,393,38.93,23.3611 +95,193,-0.0009,0.0003,642.43,1584.59,1403.75,21.61,553.64,2388.06,9077.81,47.5,521.95,2388.01,8.4242,394,38.7,23.4737 +95,194,0.0044,-0.0,642.44,1599.01,1401.81,21.61,553.18,2388.05,9081.54,47.35,522.04,2388.01,8.4459,393,38.96,23.3818 +95,195,-0.0009,0.0001,642.54,1588.55,1411.99,21.61,553.48,2388.06,9082.55,47.47,521.36,2387.99,8.4484,392,38.73,23.3213 +95,196,-0.001,-0.0004,642.47,1588.04,1409.74,21.61,553.0,2388.12,9073.66,47.39,521.71,2388.08,8.4228,391,39.02,23.4345 +95,197,0.0011,0.0001,643.02,1589.01,1402.16,21.61,553.63,2388.08,9078.29,47.66,521.72,2388.06,8.4606,393,38.96,23.3095 +95,198,0.0013,-0.0001,642.28,1590.39,1409.82,21.61,553.39,2388.08,9070.99,47.67,521.33,2388.05,8.4566,395,38.83,23.3629 +95,199,0.0007,-0.0003,642.59,1592.07,1408.87,21.61,554.19,2388.06,9077.04,47.57,522.23,2388.09,8.449,394,38.74,23.3208 +95,200,0.0001,0.0004,642.26,1588.46,1410.83,21.61,554.15,2388.09,9078.18,47.35,521.46,2388.05,8.4382,392,38.82,23.2417 +95,201,0.002,-0.0005,643.18,1592.75,1408.54,21.61,553.8,2388.11,9089.03,47.42,521.82,2388.0,8.4441,394,38.93,23.3059 +95,202,-0.0019,0.0003,642.94,1586.51,1408.2,21.61,553.52,2388.08,9086.98,47.56,521.51,2388.06,8.4391,393,38.86,23.2139 +95,203,-0.0025,0.0001,642.41,1586.44,1409.74,21.61,553.79,2388.03,9082.55,47.55,521.94,2388.1,8.4316,394,38.86,23.3468 +95,204,-0.0035,0.0001,642.57,1592.87,1410.59,21.61,553.55,2388.08,9092.37,47.39,521.5,2388.05,8.4315,393,38.88,23.4003 +95,205,0.0029,0.0004,642.81,1594.49,1411.49,21.61,553.49,2388.06,9077.51,47.57,521.29,2388.04,8.4657,394,38.91,23.4012 +95,206,-0.0019,-0.0002,642.36,1587.01,1406.57,21.61,553.06,2388.11,9089.8,47.43,521.57,2388.07,8.4716,393,38.98,23.2798 +95,207,0.0012,0.0001,642.42,1590.51,1412.31,21.61,553.97,2388.07,9075.8,47.54,521.06,2388.05,8.4649,394,38.94,23.3592 +95,208,0.0025,0.0003,642.92,1593.0,1403.58,21.61,553.46,2388.07,9081.94,47.49,522.04,2388.12,8.4313,391,38.81,23.2553 +95,209,0.0006,0.0002,642.51,1595.87,1404.78,21.61,553.29,2388.05,9082.52,47.66,521.34,2388.01,8.4352,393,38.85,23.4043 +95,210,-0.0017,0.0,643.0,1586.67,1409.24,21.61,553.39,2388.05,9084.26,47.49,521.13,2388.01,8.4083,392,38.68,23.3064 +95,211,0.0008,-0.0002,642.67,1593.03,1404.44,21.61,553.27,2388.07,9082.59,47.66,521.67,2388.04,8.4779,393,38.92,23.2911 +95,212,0.0015,-0.0003,642.85,1592.81,1411.26,21.61,553.47,2388.09,9080.32,47.34,520.61,2388.08,8.4445,393,38.74,23.1327 +95,213,0.0015,0.0005,643.14,1590.59,1415.19,21.61,553.36,2388.08,9092.1,47.64,521.48,2388.08,8.4234,392,38.72,23.2328 +95,214,0.0016,-0.0003,642.06,1587.7,1409.15,21.61,553.91,2388.04,9076.22,47.49,521.63,2388.1,8.445,394,38.75,23.291 +95,215,0.0027,-0.0005,642.37,1592.25,1410.6,21.61,553.38,2388.06,9082.72,47.65,520.93,2388.11,8.4598,393,38.55,23.3309 +95,216,0.0017,-0.0003,642.64,1594.5,1405.95,21.61,554.0,2388.12,9086.86,47.47,521.78,2388.09,8.4392,393,38.91,23.358 +95,217,0.0012,0.0002,642.5,1591.88,1407.93,21.61,552.73,2388.08,9082.1,47.65,521.81,2388.07,8.4275,392,38.85,23.1949 +95,218,-0.0041,-0.0003,642.36,1593.46,1413.2,21.61,553.01,2388.05,9091.58,47.68,521.53,2388.13,8.4614,394,38.66,23.329 +95,219,-0.0042,0.0004,642.54,1588.5,1413.89,21.61,553.03,2388.01,9086.62,47.5,521.37,2388.07,8.452,393,38.87,23.3002 +95,220,-0.0,0.0004,642.59,1591.11,1410.51,21.61,553.5,2388.08,9087.78,47.53,520.99,2388.07,8.429,393,38.86,23.1862 +95,221,0.0022,0.0,642.79,1593.47,1407.35,21.61,553.82,2388.13,9080.7,47.53,521.24,2388.07,8.4959,394,38.68,23.3632 +95,222,-0.0028,0.0003,643.17,1587.47,1412.71,21.61,552.94,2388.11,9089.71,47.6,521.12,2388.07,8.4396,395,38.7,23.275 +95,223,0.0041,0.0003,643.01,1594.59,1417.29,21.61,553.67,2388.06,9086.41,47.6,521.38,2388.08,8.4695,393,38.76,23.2584 +95,224,-0.0017,-0.0,643.32,1593.76,1413.4,21.61,553.37,2388.08,9088.61,47.36,521.75,2388.13,8.4646,394,38.69,23.2738 +95,225,-0.0002,0.0002,642.83,1589.24,1412.13,21.61,553.22,2388.1,9083.77,47.55,521.91,2388.05,8.4687,392,38.75,23.1903 +95,226,-0.0033,-0.0001,642.63,1595.26,1413.93,21.61,553.31,2388.1,9091.97,47.61,520.79,2388.1,8.4554,394,38.81,23.3485 +95,227,0.0008,-0.0001,642.98,1590.97,1410.36,21.61,553.26,2388.01,9095.71,47.52,521.44,2388.06,8.4726,393,38.85,23.3497 +95,228,-0.001,0.0001,643.41,1593.95,1409.01,21.61,552.83,2388.11,9086.8,47.56,521.51,2388.1,8.4403,393,38.62,23.2262 +95,229,0.0012,0.0003,642.69,1595.2,1403.5,21.61,553.44,2388.1,9084.68,47.66,521.25,2388.06,8.4796,393,38.77,23.2904 +95,230,-0.0016,0.0003,642.45,1588.33,1419.72,21.61,553.2,2388.16,9086.83,47.71,521.33,2388.04,8.4618,393,38.77,23.1725 +95,231,0.0018,-0.0001,642.62,1588.75,1413.11,21.61,552.38,2388.03,9083.0,47.63,521.34,2388.05,8.4697,395,38.66,23.1973 +95,232,0.0,-0.0002,643.04,1597.96,1425.23,21.61,552.74,2388.08,9082.75,47.47,520.48,2388.11,8.4545,394,38.65,23.2602 +95,233,0.0005,-0.0004,643.23,1584.05,1416.52,21.61,553.18,2388.11,9092.11,47.78,521.56,2388.1,8.4943,392,38.71,23.2971 +95,234,0.0015,-0.0001,642.69,1592.35,1416.54,21.61,552.93,2388.1,9092.3,47.57,520.77,2388.04,8.4626,395,38.81,23.214 +95,235,0.0004,-0.0,642.78,1583.39,1413.07,21.61,552.51,2388.11,9089.11,47.61,521.25,2388.15,8.4374,394,38.67,23.2588 +95,236,-0.0008,0.0004,642.92,1587.95,1420.27,21.61,553.52,2388.08,9100.9,47.7,521.31,2388.08,8.4865,395,38.7,23.204 +95,237,-0.0021,-0.0002,643.27,1596.17,1411.07,21.61,552.12,2388.11,9095.51,47.73,520.96,2388.13,8.4452,393,38.69,23.2732 +95,238,-0.0033,0.0005,643.34,1592.91,1411.04,21.61,551.96,2388.1,9085.08,47.87,520.87,2388.11,8.4479,391,38.6,23.3056 +95,239,-0.0033,-0.0,643.05,1597.28,1421.15,21.61,552.59,2388.09,9094.44,47.88,521.09,2388.09,8.4521,394,38.9,23.1602 +95,240,0.0005,0.0003,642.84,1592.3,1416.72,21.61,552.67,2388.13,9090.11,47.71,521.23,2388.07,8.4917,393,38.61,23.2902 +95,241,0.0019,-0.0003,643.14,1594.93,1417.09,21.61,553.17,2388.11,9086.96,47.73,520.99,2388.14,8.485,395,38.76,23.306 +95,242,0.0001,-0.0001,642.8,1597.89,1414.26,21.61,552.82,2388.1,9092.96,47.71,521.39,2388.03,8.4742,395,38.63,23.14 +95,243,0.003,-0.0005,642.83,1594.59,1414.52,21.61,552.93,2388.09,9093.85,47.67,521.22,2388.14,8.4672,394,38.54,23.1678 +95,244,-0.0014,-0.0003,643.7,1591.34,1412.59,21.61,553.92,2388.08,9093.27,47.68,520.85,2388.12,8.4792,397,38.73,23.1629 +95,245,0.0046,0.0004,642.93,1591.21,1414.35,21.61,553.12,2388.11,9097.44,47.72,520.66,2388.15,8.4425,395,38.51,23.1956 +95,246,-0.0012,-0.0002,643.3,1600.9,1413.57,21.61,552.54,2388.13,9101.05,47.69,521.21,2388.11,8.4612,394,38.67,23.1091 +95,247,-0.0012,-0.0004,642.69,1589.24,1416.05,21.61,552.78,2388.14,9094.57,47.72,520.97,2388.05,8.4449,395,38.59,23.153 +95,248,-0.0036,-0.0,642.61,1588.43,1414.16,21.61,552.59,2388.09,9085.61,47.79,521.04,2388.07,8.4849,396,38.71,23.2199 +95,249,-0.002,-0.0003,643.36,1599.08,1413.06,21.61,552.87,2388.08,9104.58,47.92,520.7,2388.1,8.4523,394,38.84,23.1392 +95,250,-0.0049,-0.0003,643.47,1601.42,1418.2,21.61,552.0,2388.12,9098.81,47.68,521.04,2388.07,8.4801,396,38.62,23.2511 +95,251,-0.005,0.0004,643.73,1594.94,1413.76,21.61,552.88,2388.13,9094.54,47.74,521.33,2388.09,8.471,396,38.74,23.255 +95,252,0.0019,-0.0,643.16,1598.05,1418.2,21.61,552.4,2388.11,9099.3,47.72,520.94,2388.13,8.4655,394,38.81,23.2585 +95,253,-0.0005,-0.0,642.91,1595.74,1420.01,21.61,552.84,2388.15,9099.64,47.76,520.39,2388.11,8.4801,395,38.87,23.1829 +95,254,0.0017,-0.0002,642.92,1597.45,1422.15,21.61,552.1,2388.11,9098.19,47.89,520.31,2388.16,8.4923,394,38.47,23.2208 +95,255,-0.003,0.0001,642.96,1592.55,1419.6,21.61,552.73,2388.15,9098.15,47.71,520.69,2388.15,8.4587,395,38.59,23.2747 +95,256,-0.001,0.0002,643.08,1599.25,1425.68,21.61,552.41,2388.13,9095.15,47.83,521.08,2388.14,8.494,395,38.71,23.1661 +95,257,-0.0019,-0.0001,642.82,1597.63,1417.8,21.61,552.49,2388.12,9107.8,47.89,520.82,2388.16,8.4869,396,38.75,23.2454 +95,258,0.0015,0.0005,643.99,1604.87,1425.25,21.61,552.84,2388.15,9102.97,48.02,520.28,2388.12,8.4497,395,38.67,23.1568 +95,259,-0.0001,0.0005,642.85,1594.0,1419.68,21.61,552.53,2388.12,9104.12,47.66,520.58,2388.13,8.4669,393,38.54,23.2435 +95,260,0.0004,-0.0,642.91,1601.4,1427.34,21.61,553.22,2388.15,9102.15,47.83,521.07,2388.13,8.4943,395,38.46,23.242 +95,261,0.0027,-0.0003,642.9,1598.91,1418.11,21.61,552.32,2388.13,9099.09,47.69,520.62,2388.17,8.4854,394,38.56,23.0962 +95,262,0.0018,-0.0002,643.15,1588.37,1422.01,21.61,552.56,2388.13,9106.96,47.91,520.1,2388.13,8.4885,396,38.53,23.284 +95,263,0.002,-0.0004,643.38,1597.08,1416.45,21.61,551.99,2388.17,9097.76,48.05,520.3,2388.13,8.4758,395,38.67,23.2573 +95,264,0.0039,0.0005,643.66,1602.89,1422.97,21.61,552.19,2388.14,9098.64,47.97,520.6,2388.17,8.5087,396,38.61,23.1596 +95,265,-0.0009,-0.0,643.06,1596.39,1420.26,21.61,552.86,2388.14,9114.24,48.09,520.46,2388.16,8.4915,396,38.56,23.176 +95,266,-0.0026,-0.0003,643.19,1604.41,1421.42,21.61,552.75,2388.11,9117.21,47.97,520.48,2388.15,8.4722,396,38.73,23.138 +95,267,-0.0014,0.0003,643.56,1598.53,1425.34,21.61,552.41,2388.18,9100.21,47.92,520.7,2388.17,8.5353,395,38.47,23.1151 +95,268,0.0021,-0.0003,643.33,1605.54,1422.62,21.61,552.41,2388.11,9102.96,47.92,520.45,2388.14,8.5002,396,38.59,23.1617 +95,269,-0.0035,0.0004,643.71,1600.34,1419.24,21.61,552.13,2388.15,9104.44,48.05,520.38,2388.16,8.4875,396,38.57,23.1263 +95,270,-0.0019,0.0001,643.37,1602.32,1426.52,21.61,551.81,2388.2,9107.2,48.16,520.29,2388.15,8.5218,397,38.52,23.23 +95,271,-0.0,-0.0001,643.69,1603.01,1423.72,21.61,552.11,2388.18,9109.48,48.07,519.8,2388.14,8.5333,396,38.62,23.091 +95,272,-0.0001,-0.0003,643.56,1603.46,1424.87,21.61,551.98,2388.15,9106.55,47.99,520.49,2388.2,8.5264,395,38.58,23.1766 +95,273,0.0039,0.0005,643.69,1602.9,1430.41,21.61,551.8,2388.14,9109.55,48.08,520.03,2388.18,8.4998,397,38.6,23.1296 +95,274,-0.0025,-0.0004,643.57,1594.78,1429.65,21.61,552.63,2388.18,9115.96,47.92,520.35,2388.11,8.5064,396,38.48,23.1083 +95,275,0.0031,0.0003,643.53,1600.52,1433.16,21.61,551.49,2388.12,9109.96,48.13,520.0,2388.19,8.509,395,38.37,23.1235 +95,276,0.0013,0.0,643.63,1599.1,1417.99,21.61,551.55,2388.21,9107.69,48.17,519.5,2388.16,8.4701,397,38.41,23.2082 +95,277,-0.0004,-0.0002,643.12,1596.97,1429.86,21.61,551.96,2388.12,9115.48,48.01,520.27,2388.15,8.4956,395,38.55,23.1698 +95,278,-0.0022,-0.0004,644.0,1592.75,1434.45,21.61,551.61,2388.19,9115.71,48.16,519.97,2388.18,8.5212,395,38.37,23.0713 +95,279,-0.0008,0.0,643.57,1603.69,1435.36,21.61,551.09,2388.16,9120.0,48.05,520.1,2388.19,8.518,395,38.46,23.1727 +95,280,-0.0011,-0.0004,643.46,1604.45,1433.15,21.61,551.13,2388.13,9116.78,48.17,520.27,2388.23,8.5225,396,38.44,23.1157 +95,281,0.0026,0.0001,644.21,1595.63,1430.88,21.61,552.64,2388.19,9117.06,48.15,519.91,2388.21,8.5007,395,38.65,23.1434 +95,282,-0.0007,-0.0004,643.65,1609.32,1422.01,21.61,551.18,2388.13,9119.64,48.34,520.54,2388.16,8.5332,395,38.45,23.0771 +95,283,0.0019,0.0003,643.43,1609.16,1430.97,21.61,551.48,2388.21,9120.46,48.16,519.27,2388.2,8.5648,396,38.37,23.1041 +96,10,0.0042,0.0001,641.97,1587.86,1408.76,21.61,553.92,2388.05,9050.81,47.24,522.29,2388.04,8.398,392,38.86,23.5344 +96,11,-0.0005,-0.0001,642.42,1588.7,1396.68,21.61,554.07,2388.05,9054.9,47.37,522.0,2388.06,8.4534,393,38.92,23.4007 +96,12,0.0038,-0.0,642.09,1580.9,1398.01,21.6,554.43,2388.05,9047.87,47.19,522.14,2388.05,8.4037,391,38.95,23.4199 +96,13,-0.0015,-0.0001,642.16,1586.38,1407.59,21.61,554.38,2388.0,9045.95,47.34,522.43,2388.04,8.4001,392,38.93,23.295 +96,14,0.0004,0.0005,642.73,1588.64,1397.55,21.61,553.39,2388.0,9046.56,47.31,521.95,2388.09,8.3756,391,38.86,23.3464 +96,15,0.0037,-0.0002,642.17,1581.43,1399.91,21.61,554.18,2388.04,9055.24,47.36,522.53,2388.07,8.3882,392,39.03,23.4392 +96,16,0.0016,-0.0003,642.13,1578.69,1403.3,21.61,554.44,2387.98,9054.89,47.02,522.05,2388.08,8.4112,393,38.95,23.4259 +96,17,-0.0008,0.0003,642.63,1585.38,1404.67,21.61,553.59,2388.03,9053.77,47.22,522.32,2388.1,8.437,391,39.0,23.3382 +96,18,0.0032,-0.0003,642.01,1583.03,1397.32,21.61,553.23,2388.02,9051.39,47.42,521.99,2388.04,8.4481,393,39.05,23.3905 +96,19,-0.0028,-0.0002,641.93,1583.78,1401.88,21.61,553.97,2388.05,9055.55,47.36,521.84,2388.02,8.3837,392,39.15,23.4007 +96,20,-0.0005,-0.0005,642.18,1583.28,1404.79,21.61,554.57,2388.08,9057.11,47.38,521.54,2388.05,8.4191,392,38.93,23.3624 +96,21,-0.0037,0.0005,642.23,1588.23,1397.7,21.61,554.24,2388.03,9053.79,47.28,522.37,2388.03,8.4194,392,38.96,23.3706 +96,22,-0.0022,0.0002,642.22,1584.66,1406.21,21.61,554.48,2387.97,9060.63,47.43,521.93,2388.02,8.3961,392,38.77,23.3102 +96,23,0.0002,0.0,642.52,1575.65,1398.56,21.61,554.39,2388.04,9058.85,47.19,521.77,2388.07,8.4178,392,38.86,23.4381 +96,24,-0.0011,0.0003,642.27,1584.93,1397.8,21.61,554.45,2388.05,9055.87,47.29,522.47,2388.01,8.4012,392,39.05,23.3216 +96,25,0.003,0.0005,642.27,1584.35,1404.23,21.61,553.87,2388.07,9051.1,47.24,521.75,2387.99,8.4617,392,38.95,23.3556 +96,26,-0.0026,0.0001,642.21,1585.18,1401.97,21.61,554.44,2388.05,9056.53,47.26,522.46,2388.04,8.4268,392,38.91,23.3176 +96,27,-0.0021,0.0001,642.05,1587.26,1398.19,21.61,554.01,2388.1,9045.93,47.35,522.08,2388.1,8.4186,393,39.06,23.485 +96,28,0.0024,-0.0001,642.34,1587.93,1398.68,21.61,554.83,2388.06,9048.09,47.35,521.88,2388.06,8.3983,392,38.87,23.3695 +96,29,-0.0036,-0.0003,642.39,1578.06,1402.89,21.61,554.11,2388.04,9053.18,47.37,521.52,2388.05,8.4268,392,39.03,23.3051 +96,30,-0.0007,0.0,642.28,1588.73,1399.72,21.61,555.27,2388.0,9052.71,47.23,522.06,2388.06,8.4019,391,39.09,23.2911 +96,31,0.0004,0.0005,642.04,1588.89,1401.76,21.61,554.19,2388.04,9049.98,47.2,521.47,2388.06,8.4078,393,38.93,23.4791 +96,32,-0.0045,-0.0004,642.92,1583.99,1402.85,21.61,554.63,2388.06,9053.9,47.35,522.26,2388.09,8.3985,392,38.97,23.3493 +96,33,0.0019,-0.0,642.57,1586.94,1398.36,21.61,554.25,2388.1,9058.49,47.26,522.28,2388.09,8.4244,391,39.0,23.3649 +96,34,-0.0002,0.0002,642.33,1589.76,1406.01,21.61,554.21,2388.07,9045.11,47.29,520.82,2388.04,8.401,391,39.05,23.3203 +96,35,0.0027,0.0001,641.63,1584.2,1396.97,21.61,554.13,2388.06,9044.22,47.14,522.26,2388.02,8.4146,392,38.87,23.3176 +96,36,-0.0008,0.0002,642.25,1587.65,1402.43,21.61,554.51,2388.02,9053.84,47.21,521.98,2388.04,8.4123,392,38.95,23.4124 +96,37,-0.0007,-0.0001,642.54,1587.41,1409.13,21.61,554.0,2388.05,9057.45,47.46,522.39,2388.06,8.4248,392,39.1,23.3888 +96,38,0.0009,-0.0003,642.1,1585.02,1398.37,21.61,553.11,2388.03,9046.77,47.47,522.2,2388.06,8.4128,392,38.84,23.3303 +96,39,-0.003,0.0001,642.3,1584.48,1402.96,21.61,554.32,2388.07,9044.67,47.33,521.74,2388.05,8.4071,392,39.08,23.3403 +96,40,-0.0,0.0003,642.45,1586.71,1394.76,21.61,553.31,2388.03,9058.89,47.35,522.21,2388.07,8.3951,393,38.92,23.4348 +96,41,-0.0009,-0.0005,642.53,1587.48,1397.57,21.61,554.08,2388.08,9053.24,47.27,522.62,2388.07,8.4056,391,38.92,23.4974 +96,42,-0.0009,-0.0004,642.5,1583.98,1403.99,21.61,554.15,2388.03,9045.48,47.4,522.06,2388.09,8.4327,392,38.91,23.4001 +96,43,0.0024,0.0005,641.74,1588.24,1398.53,21.61,554.9,2388.07,9048.54,47.57,522.18,2388.04,8.4486,393,38.8,23.2853 +96,44,0.0002,0.0003,642.47,1580.95,1402.17,21.61,554.43,2388.07,9056.09,47.3,521.9,2388.07,8.4157,392,38.93,23.2927 +96,45,-0.0027,-0.0001,642.03,1591.73,1399.15,21.61,554.19,2388.04,9046.49,47.42,521.55,2388.01,8.4132,393,38.64,23.3319 +96,46,0.0014,-0.0003,641.95,1585.7,1400.91,21.61,553.54,2388.04,9053.03,47.34,521.87,2388.05,8.3732,392,38.76,23.3517 +96,47,0.0029,-0.0002,641.96,1589.24,1401.91,21.61,553.78,2388.02,9050.66,47.13,522.13,2388.07,8.3933,391,38.84,23.381 +96,48,-0.0024,0.0003,642.19,1579.94,1400.08,21.61,554.04,2388.03,9057.03,47.23,521.39,2388.1,8.4344,392,38.96,23.2573 +96,49,-0.0004,0.0003,642.26,1585.05,1399.07,21.61,553.95,2388.07,9057.1,47.12,521.85,2388.1,8.4279,391,39.04,23.5215 +96,50,-0.0011,-0.0005,642.56,1585.47,1399.51,21.61,554.03,2388.04,9053.16,47.33,521.99,2388.1,8.4231,394,38.84,23.3313 +96,51,-0.0002,0.0001,642.66,1579.83,1399.1,21.61,554.92,2388.05,9050.69,47.31,522.06,2388.08,8.4432,393,39.17,23.3341 +96,52,-0.0014,0.0003,642.27,1585.82,1395.46,21.61,554.41,2387.99,9049.45,47.23,521.98,2388.08,8.4189,393,39.1,23.4054 +96,53,0.0007,0.0002,642.03,1585.22,1406.32,21.61,553.91,2388.05,9054.08,47.38,521.19,2388.03,8.4226,391,38.93,23.4147 +96,54,0.0027,0.0001,642.04,1590.66,1400.26,21.61,554.03,2388.06,9058.28,47.41,522.68,2388.04,8.4213,392,38.93,23.3654 +96,55,0.0015,0.0005,641.94,1583.94,1405.16,21.61,553.54,2388.04,9051.01,47.51,521.91,2388.07,8.4038,391,39.08,23.3846 +96,56,0.0026,0.0002,642.41,1589.73,1400.93,21.61,553.67,2388.08,9050.53,47.3,521.95,2388.06,8.4225,393,39.02,23.3419 +96,57,-0.0009,0.0001,642.36,1584.49,1404.11,21.61,553.68,2388.03,9050.36,47.35,522.08,2388.04,8.4175,392,38.76,23.4331 +96,58,0.0019,-0.0004,642.28,1597.41,1406.95,21.61,554.21,2388.07,9047.27,47.52,522.14,2388.07,8.4633,392,39.03,23.2925 +96,59,-0.0012,0.0005,642.8,1589.51,1400.57,21.61,554.27,2388.05,9045.33,47.33,521.8,2388.06,8.4128,392,38.93,23.3685 +96,60,-0.0009,-0.0,642.11,1590.71,1399.39,21.61,554.68,2388.1,9052.15,47.38,521.77,2388.05,8.428,392,38.99,23.4389 +96,61,0.0016,-0.0001,643.06,1588.17,1408.68,21.6,553.98,2388.12,9054.02,47.33,521.72,2388.07,8.3934,391,38.87,23.384 +96,62,-0.001,-0.0001,641.98,1590.27,1398.67,21.61,554.16,2388.05,9056.18,47.21,522.77,2388.03,8.3961,393,39.03,23.3657 +96,63,0.0016,-0.0001,642.35,1581.98,1404.52,21.61,553.61,2388.09,9057.59,47.23,521.98,2388.05,8.4249,392,38.83,23.3595 +96,64,0.0001,0.0002,642.62,1590.55,1395.02,21.61,554.24,2387.99,9052.99,47.22,522.37,2388.05,8.4239,392,38.97,23.3756 +96,65,0.0009,-0.0001,641.61,1581.42,1393.86,21.61,554.28,2388.06,9051.02,47.38,521.73,2388.05,8.4013,390,39.13,23.3997 +96,66,0.0,-0.0005,641.94,1590.1,1404.9,21.61,554.07,2388.06,9057.09,47.24,522.06,2387.97,8.3938,393,39.08,23.3604 +96,67,0.004,-0.0,642.12,1581.85,1409.01,21.61,554.13,2388.03,9051.48,47.21,521.97,2388.03,8.4235,391,38.75,23.3228 +96,68,0.0006,0.0001,642.13,1582.75,1401.69,21.61,554.19,2388.02,9049.63,47.29,522.14,2388.03,8.402,392,39.06,23.3701 +96,69,0.0019,0.0002,642.77,1591.14,1400.21,21.61,553.77,2388.04,9056.14,47.37,521.6,2388.02,8.4281,392,39.03,23.406 +96,70,-0.0033,-0.0005,642.95,1578.17,1402.44,21.61,553.76,2388.12,9047.49,47.34,521.9,2388.04,8.4276,393,39.07,23.3014 +96,71,0.0001,-0.0001,642.32,1588.49,1400.3,21.61,554.65,2388.01,9050.91,47.34,522.21,2388.1,8.412,390,38.89,23.3862 +96,72,-0.0006,-0.0001,642.1,1583.12,1401.76,21.61,554.0,2387.99,9055.53,47.27,521.64,2388.03,8.4037,391,38.86,23.3804 +96,73,-0.0005,0.0004,643.0,1582.73,1402.55,21.61,553.97,2388.06,9044.52,47.32,522.23,2388.1,8.4065,395,38.96,23.4397 +96,74,0.0007,-0.0001,641.99,1578.25,1401.91,21.61,553.15,2388.11,9055.43,47.28,521.87,2388.04,8.389,392,38.88,23.4704 +96,75,-0.0039,-0.0,642.18,1586.35,1407.26,21.61,554.19,2388.08,9052.7,47.4,522.19,2388.07,8.3891,392,38.98,23.4267 +96,76,-0.0034,0.0002,642.09,1582.32,1396.95,21.61,554.33,2388.03,9047.0,47.22,522.19,2388.13,8.4266,392,38.88,23.3764 +96,77,0.0002,-0.0002,642.14,1585.65,1402.57,21.61,554.06,2388.06,9053.55,47.34,521.69,2388.04,8.428,391,38.9,23.3045 +96,78,0.0006,-0.0004,642.06,1589.29,1402.55,21.61,554.44,2388.01,9052.82,47.31,522.08,2388.03,8.4248,392,38.82,23.3668 +96,79,-0.0007,-0.0003,642.27,1585.81,1398.25,21.61,554.5,2388.04,9058.5,47.33,521.7,2388.08,8.3951,392,39.04,23.2809 +96,80,0.0021,0.0004,642.64,1581.32,1398.19,21.61,554.08,2388.03,9052.93,47.35,522.07,2388.08,8.4248,391,38.92,23.2671 +96,81,-0.0031,-0.0003,642.6,1582.03,1406.24,21.61,553.97,2388.09,9049.62,47.15,521.74,2388.1,8.4133,394,38.92,23.2151 +96,82,-0.0009,-0.0003,642.93,1581.84,1394.42,21.61,553.56,2388.07,9050.61,47.35,521.64,2388.03,8.411,394,39.09,23.3709 +96,83,-0.002,-0.0001,642.59,1592.25,1400.82,21.61,553.58,2388.1,9047.35,47.32,521.91,2388.04,8.3994,392,39.04,23.421 +96,84,-0.0008,-0.0004,642.0,1586.68,1406.8,21.61,553.92,2388.04,9051.36,47.1,521.89,2388.07,8.4314,391,39.11,23.3857 +96,85,0.0009,-0.0003,642.14,1589.12,1406.9,21.61,554.17,2388.1,9053.07,47.29,522.29,2388.02,8.4265,393,38.79,23.3899 +96,86,0.0002,-0.0004,642.49,1591.25,1401.04,21.6,554.24,2388.09,9057.57,47.34,522.2,2388.08,8.4101,391,38.97,23.3738 +96,87,0.0012,0.0,643.14,1587.44,1404.02,21.61,553.22,2388.08,9049.08,47.53,522.14,2388.1,8.4038,391,38.98,23.2839 +96,88,-0.002,-0.0003,642.22,1586.38,1405.64,21.61,554.27,2388.1,9053.47,47.37,521.91,2388.05,8.4144,391,39.11,23.361 +96,89,-0.0004,0.0004,641.94,1586.85,1403.85,21.61,553.84,2388.01,9057.84,47.26,521.68,2388.04,8.3846,393,38.89,23.4517 +96,90,0.0012,-0.0003,641.67,1585.27,1398.5,21.61,554.27,2388.01,9054.89,47.16,521.5,2388.04,8.4478,392,38.98,23.2615 +96,91,-0.0018,0.0001,642.37,1584.34,1393.25,21.61,553.58,2388.06,9061.1,47.27,521.65,2388.07,8.4072,392,38.95,23.4174 +96,92,0.0042,0.0001,642.45,1588.74,1400.92,21.61,552.97,2388.08,9051.79,47.25,522.04,2388.11,8.4179,391,38.98,23.4433 +96,93,-0.0044,-0.0002,641.7,1585.22,1397.22,21.61,554.01,2388.06,9047.32,47.3,521.7,2388.07,8.4118,390,38.89,23.3702 +96,94,-0.0039,-0.0004,642.76,1585.91,1398.29,21.61,553.48,2388.05,9053.37,47.35,522.17,2388.0,8.4274,394,39.08,23.4479 +96,95,0.0031,0.0005,642.76,1593.76,1394.88,21.61,554.08,2388.06,9050.52,47.28,522.02,2388.07,8.3867,394,39.13,23.4309 +96,96,-0.0013,0.0001,642.32,1582.94,1405.05,21.61,554.59,2388.01,9055.65,47.28,522.29,2388.01,8.4271,392,38.83,23.3584 +96,97,-0.0,-0.0004,642.99,1587.87,1404.63,21.61,554.42,2388.08,9046.24,47.27,521.94,2388.07,8.4208,394,39.01,23.3831 +96,98,-0.0,-0.0002,642.61,1586.02,1392.99,21.61,554.24,2388.11,9048.5,47.19,521.88,2388.04,8.4073,393,39.02,23.3239 +96,99,0.0012,-0.0004,642.41,1591.71,1401.64,21.61,553.07,2388.05,9051.45,47.21,521.92,2388.05,8.4156,392,39.12,23.2593 +96,100,-0.0004,0.0001,642.38,1587.67,1404.62,21.61,553.93,2388.04,9059.06,47.31,521.55,2388.05,8.4308,392,39.06,23.3407 +96,101,0.0012,0.0003,642.07,1585.28,1400.12,21.61,554.74,2388.03,9051.0,47.5,521.84,2388.04,8.4099,391,38.93,23.4168 +96,102,0.0021,0.0003,642.57,1591.95,1401.75,21.61,553.94,2388.05,9056.19,47.29,521.93,2388.03,8.4233,392,38.87,23.374 +96,103,0.0006,-0.0,642.54,1585.98,1401.16,21.61,554.33,2388.07,9059.1,47.27,521.91,2388.07,8.4246,394,38.91,23.4543 +96,104,-0.0009,0.0002,642.16,1585.93,1393.97,21.61,553.75,2388.04,9063.61,47.34,521.42,2388.1,8.4063,394,38.77,23.4865 +96,105,0.0042,0.0003,642.06,1587.91,1401.39,21.61,554.11,2388.09,9053.52,47.35,522.23,2388.1,8.3845,392,38.89,23.3565 +96,106,-0.0012,-0.0002,642.63,1587.13,1402.03,21.61,553.64,2388.09,9049.25,47.43,521.96,2388.02,8.4254,392,38.78,23.381 +96,107,-0.0015,-0.0003,642.29,1585.79,1405.09,21.61,554.5,2388.05,9056.58,47.34,521.82,2388.1,8.4266,392,38.94,23.3761 +96,108,0.0001,0.0003,642.63,1584.49,1401.33,21.61,554.02,2388.12,9051.29,47.35,521.95,2388.03,8.4122,393,38.78,23.3834 +96,109,-0.0012,0.0001,642.61,1587.6,1405.76,21.61,554.7,2388.04,9058.14,47.1,522.15,2388.04,8.4175,393,38.85,23.35 +96,110,0.0035,0.0001,643.03,1590.8,1402.39,21.61,554.28,2388.09,9058.84,47.31,521.82,2388.07,8.4697,390,39.01,23.2926 +96,111,-0.0004,0.0003,642.63,1584.15,1402.37,21.61,553.77,2388.05,9048.45,47.35,521.9,2388.03,8.4007,393,38.76,23.339 +96,112,0.0012,-0.0004,642.43,1586.49,1404.64,21.61,554.56,2388.06,9055.62,47.41,522.41,2388.03,8.4145,392,38.99,23.381 +96,113,0.0015,-0.0004,642.21,1588.67,1394.61,21.61,553.76,2388.09,9053.96,47.31,521.27,2388.09,8.41,392,38.83,23.3935 +96,114,-0.0017,0.0002,642.09,1578.21,1406.9,21.61,553.92,2388.04,9051.45,47.28,521.28,2388.1,8.3812,394,39.05,23.4754 +96,115,0.0005,0.0002,642.26,1586.14,1397.24,21.61,554.07,2388.08,9059.67,47.52,522.13,2388.11,8.4463,392,38.96,23.2928 +96,116,0.0002,0.0003,642.4,1584.33,1404.02,21.61,554.25,2388.08,9053.82,47.42,522.05,2388.15,8.4308,394,38.96,23.476 +96,117,-0.0026,-0.0001,643.06,1592.87,1404.84,21.61,553.83,2388.06,9051.56,47.19,521.49,2388.11,8.3802,393,38.89,23.3787 +96,118,0.0027,0.0,642.6,1592.72,1401.72,21.61,554.15,2388.05,9052.38,47.37,521.75,2388.07,8.3988,393,38.96,23.3399 +96,119,0.0002,-0.0001,642.58,1594.41,1402.05,21.61,553.61,2388.09,9049.72,47.56,522.11,2388.08,8.4184,392,38.89,23.3445 +96,120,-0.0026,0.0003,641.87,1584.11,1401.98,21.61,554.03,2388.09,9049.66,47.35,521.9,2388.09,8.4136,393,39.08,23.3331 +96,121,0.0024,-0.0001,642.62,1590.51,1407.17,21.61,554.48,2388.08,9055.74,47.44,521.99,2388.15,8.4206,392,39.1,23.3702 +96,122,-0.0025,0.0001,642.43,1586.33,1406.45,21.61,553.56,2388.09,9058.51,47.53,521.66,2388.08,8.465,394,38.94,23.3937 +96,123,0.0013,-0.0004,642.16,1579.14,1399.02,21.61,553.06,2388.1,9056.44,47.19,521.99,2388.04,8.4264,392,38.78,23.457 +96,124,-0.0002,0.0005,642.3,1588.64,1402.66,21.61,554.46,2388.09,9051.31,47.18,522.15,2388.08,8.3967,392,39.0,23.3735 +96,125,-0.0006,-0.0003,642.45,1586.77,1398.63,21.61,553.75,2388.06,9055.58,47.37,522.18,2388.04,8.3956,392,38.89,23.3881 +96,126,-0.0012,0.0002,642.66,1582.18,1404.76,21.61,554.2,2388.11,9047.03,47.26,521.7,2388.09,8.4227,392,38.87,23.2889 +96,127,-0.0008,-0.0003,642.01,1587.72,1405.86,21.61,553.99,2388.02,9044.78,47.36,522.47,2388.04,8.4278,391,39.08,23.3712 +96,128,-0.0031,-0.0002,642.48,1583.03,1404.86,21.61,554.36,2388.05,9054.09,47.37,521.89,2388.06,8.4033,392,38.92,23.2672 +96,129,0.0006,0.0001,641.71,1590.58,1405.72,21.61,553.68,2388.07,9054.16,47.38,521.8,2388.03,8.3721,392,39.18,23.3271 +96,130,0.0009,-0.0001,641.85,1580.37,1403.66,21.61,553.63,2388.05,9052.27,47.33,521.56,2388.09,8.4005,393,38.97,23.4149 +96,131,-0.0,0.0001,642.65,1588.97,1398.8,21.61,553.99,2388.09,9051.92,47.16,522.25,2388.08,8.4233,392,38.88,23.427 +96,132,-0.0026,0.0004,642.01,1586.74,1406.08,21.61,554.29,2388.05,9045.45,47.26,521.57,2388.09,8.4102,392,38.89,23.4088 +96,133,0.0017,-0.0004,642.49,1579.51,1408.0,21.61,553.28,2388.08,9052.99,47.39,521.95,2388.12,8.3972,392,38.76,23.3097 +96,134,-0.0,0.0002,642.28,1587.94,1409.3,21.61,554.57,2388.03,9056.48,47.21,522.47,2388.02,8.4445,393,39.08,23.4067 +96,135,-0.0027,-0.0002,642.39,1590.11,1401.91,21.61,553.3,2388.11,9052.4,47.51,521.28,2388.04,8.3704,391,38.82,23.4213 +96,136,-0.0018,-0.0002,642.96,1590.94,1399.6,21.61,553.98,2388.12,9049.97,47.41,522.05,2388.08,8.3893,392,38.94,23.302 +96,137,0.001,0.0003,642.24,1585.92,1409.24,21.61,553.64,2388.05,9055.19,47.28,522.04,2388.01,8.4793,394,38.97,23.3395 +96,138,-0.0001,0.0001,642.42,1579.23,1400.25,21.61,554.36,2388.14,9053.6,47.4,521.79,2388.07,8.4099,393,39.0,23.3927 +96,139,0.003,-0.0003,642.01,1577.72,1403.1,21.61,554.25,2388.08,9055.47,47.44,522.04,2388.04,8.4003,394,39.03,23.3759 +96,140,-0.0001,0.0003,642.54,1584.79,1402.76,21.61,554.15,2388.09,9050.99,47.48,521.92,2388.03,8.4396,393,38.74,23.4065 +96,141,-0.0013,0.0005,642.82,1591.08,1399.84,21.61,554.27,2388.03,9056.87,47.53,521.47,2388.1,8.4485,392,38.85,23.3401 +96,142,-0.0047,0.0002,642.66,1584.35,1399.49,21.61,554.45,2388.1,9053.34,47.3,521.66,2388.05,8.4325,393,38.88,23.4319 +96,143,-0.0,0.0004,642.02,1587.97,1402.18,21.61,553.97,2388.09,9056.75,47.51,521.78,2388.07,8.4483,392,38.9,23.3988 +96,144,0.0008,-0.0003,642.67,1588.24,1399.62,21.61,553.66,2388.05,9054.0,47.41,521.82,2388.08,8.4331,394,38.97,23.2896 +96,145,-0.0009,0.0001,641.85,1585.26,1401.8,21.61,554.34,2388.06,9053.91,47.39,521.38,2388.03,8.4319,393,38.79,23.3414 +96,146,-0.0017,-0.0002,642.59,1588.44,1401.42,21.61,553.87,2387.96,9045.0,47.35,521.81,2388.06,8.4197,393,38.98,23.3508 +96,147,-0.0023,0.0003,642.29,1592.87,1412.14,21.61,553.97,2388.06,9059.03,47.41,522.07,2388.14,8.4263,394,38.81,23.2049 +96,148,-0.003,-0.0002,641.9,1586.05,1408.75,21.61,553.91,2388.06,9057.1,47.53,522.14,2388.1,8.41,393,38.78,23.3077 +96,149,0.003,-0.0,642.46,1590.93,1406.47,21.61,554.06,2388.14,9053.11,47.52,522.58,2388.07,8.394,395,39.01,23.2268 +96,150,-0.0027,0.0001,642.44,1590.27,1402.43,21.61,553.76,2388.03,9055.89,47.4,521.67,2388.07,8.428,394,38.83,23.2503 +96,151,-0.0013,-0.0001,642.5,1593.48,1405.39,21.61,553.36,2388.05,9052.6,47.27,521.89,2388.07,8.4371,391,38.83,23.3448 +96,152,-0.0025,-0.0,642.53,1592.04,1400.49,21.61,554.13,2388.05,9054.37,47.36,521.47,2388.09,8.4151,392,38.98,23.2782 +96,153,-0.0002,-0.0002,642.06,1587.52,1408.05,21.61,553.54,2388.06,9061.98,47.25,521.78,2388.11,8.3959,392,38.93,23.4154 +96,154,-0.0014,0.0002,642.75,1589.99,1400.36,21.61,553.98,2388.06,9048.82,47.52,521.91,2388.09,8.404,393,38.91,23.3923 +96,155,0.0002,0.0001,642.38,1583.92,1406.72,21.61,554.58,2388.07,9053.22,47.3,521.75,2388.07,8.4006,393,38.87,23.3241 +96,156,0.0009,0.0003,642.37,1583.54,1407.57,21.61,553.65,2388.09,9050.73,47.37,521.87,2388.11,8.4164,392,38.98,23.3675 +96,157,0.0015,-0.0001,642.35,1590.22,1410.76,21.61,553.11,2388.1,9056.23,47.54,521.66,2388.1,8.4364,391,38.97,23.3997 +96,158,-0.0004,0.0001,642.59,1596.77,1402.3,21.61,554.1,2388.12,9059.46,47.32,521.6,2388.13,8.4082,392,38.84,23.3237 +96,159,-0.0019,0.0005,641.55,1589.51,1406.72,21.61,553.66,2388.05,9049.14,47.63,521.47,2388.02,8.4536,393,38.63,23.2801 +96,160,-0.0011,-0.0005,642.53,1590.14,1405.53,21.61,554.17,2388.06,9053.91,47.21,521.74,2388.05,8.4119,392,38.93,23.3257 +96,161,-0.0011,0.0002,642.09,1587.64,1397.97,21.61,553.62,2388.08,9054.22,47.32,521.69,2388.08,8.3556,393,38.98,23.3516 +96,162,0.0006,-0.0001,642.83,1587.26,1402.9,21.61,554.26,2388.06,9056.1,47.29,521.53,2388.04,8.4201,392,38.96,23.4465 +96,163,-0.0013,0.0003,642.56,1594.68,1404.73,21.61,554.09,2388.12,9048.07,47.38,521.45,2388.07,8.449,393,38.9,23.2669 +96,164,-0.0042,0.0001,642.65,1581.52,1400.81,21.61,554.41,2388.06,9052.02,47.48,521.8,2388.06,8.4274,391,39.09,23.375 +96,165,0.0011,0.0002,642.38,1588.95,1398.17,21.61,553.8,2388.1,9055.06,47.3,521.85,2388.01,8.4299,394,38.97,23.3277 +96,166,0.0008,-0.0004,642.98,1588.44,1405.59,21.61,554.14,2388.09,9055.77,47.32,521.5,2388.08,8.4281,392,38.93,23.2091 +96,167,-0.0038,0.0003,642.61,1588.43,1411.68,21.61,553.9,2388.09,9054.18,47.31,521.58,2388.1,8.4451,391,38.76,23.1533 +96,168,0.0007,0.0003,641.91,1588.52,1402.08,21.61,553.21,2388.08,9046.84,47.45,522.24,2388.09,8.4582,394,39.09,23.2941 +96,169,0.0014,0.0003,642.94,1589.72,1402.31,21.61,554.06,2388.08,9058.02,47.4,520.99,2388.01,8.4197,392,38.84,23.3188 +96,170,-0.0006,0.0002,642.37,1586.54,1404.43,21.61,553.72,2388.07,9062.86,47.39,521.76,2388.02,8.4016,393,39.04,23.3343 +96,171,0.0001,0.0001,642.6,1588.47,1410.13,21.61,553.46,2388.04,9054.97,47.57,521.58,2388.06,8.4132,393,38.85,23.1859 +96,172,-0.0034,0.0001,642.59,1586.86,1401.94,21.61,553.88,2388.02,9060.08,47.55,521.82,2388.06,8.4386,393,38.92,23.3152 +96,173,0.0013,-0.0,642.53,1587.0,1409.96,21.61,553.47,2388.05,9058.21,47.29,521.74,2388.04,8.4179,393,38.97,23.417 +96,174,-0.0045,-0.0002,642.84,1589.33,1411.87,21.61,553.84,2388.09,9049.96,47.46,521.88,2388.09,8.4033,393,38.89,23.3065 +96,175,0.0004,0.0,642.03,1585.55,1411.62,21.61,553.63,2388.09,9052.9,47.52,521.62,2388.05,8.4044,393,38.94,23.3393 +96,176,-0.0005,0.0001,642.51,1589.64,1403.19,21.61,553.96,2388.07,9059.39,47.44,522.14,2388.06,8.4427,392,38.93,23.3965 +96,177,-0.0043,-0.0,643.06,1587.44,1407.18,21.61,553.75,2388.06,9062.09,47.41,521.73,2388.04,8.4221,394,38.69,23.3091 +96,178,-0.0004,-0.0004,642.34,1589.95,1398.25,21.61,553.09,2388.04,9051.91,47.46,521.7,2388.06,8.4116,393,38.81,23.2271 +96,179,0.0038,-0.0005,641.89,1594.64,1399.22,21.61,553.85,2388.1,9060.71,47.39,521.43,2388.08,8.4141,392,38.91,23.4029 +96,180,-0.003,0.0,642.61,1592.04,1406.01,21.61,553.57,2388.13,9059.96,47.42,521.66,2388.13,8.4282,393,39.03,23.3085 +96,181,0.0,-0.0002,642.28,1594.59,1408.63,21.61,553.48,2388.08,9053.98,47.42,522.2,2388.11,8.4497,392,38.93,23.2964 +96,182,0.0013,0.0005,643.18,1591.11,1409.34,21.6,553.22,2388.06,9052.63,47.48,521.53,2388.06,8.4516,394,38.82,23.2967 +96,183,-0.0011,0.0003,642.37,1590.28,1393.76,21.61,553.41,2388.05,9052.12,47.3,521.68,2388.07,8.4351,394,38.91,23.3311 +96,184,-0.0023,-0.0002,642.43,1590.95,1410.64,21.61,554.28,2388.13,9055.88,47.38,522.05,2388.09,8.4057,393,38.82,23.3358 +96,185,-0.0017,0.0003,642.33,1588.04,1409.96,21.61,553.69,2388.1,9054.88,47.32,521.91,2388.11,8.4484,394,38.79,23.3886 +96,186,-0.0001,-0.0002,642.67,1590.9,1397.47,21.61,553.89,2388.06,9051.15,47.67,521.48,2388.07,8.4146,394,38.95,23.2501 +96,187,-0.0007,-0.0004,642.44,1589.64,1406.17,21.61,554.24,2388.07,9054.73,47.41,521.24,2388.06,8.4396,392,38.78,23.3342 +96,188,0.0018,0.0005,643.05,1591.29,1399.9,21.61,553.43,2388.1,9057.3,47.55,521.73,2388.08,8.4642,394,38.95,23.3557 +96,189,0.003,0.0005,641.8,1593.73,1410.48,21.61,553.57,2388.05,9057.89,47.52,521.26,2388.03,8.4102,392,38.84,23.3311 +96,190,-0.0017,-0.0001,642.38,1592.01,1401.92,21.61,553.95,2388.08,9055.24,47.59,521.46,2388.09,8.3889,393,38.77,23.2473 +96,191,0.0048,0.0003,642.38,1594.9,1405.62,21.61,553.52,2388.05,9057.06,47.46,521.76,2388.1,8.4418,394,38.9,23.2422 +96,192,-0.0017,0.0003,642.42,1595.78,1409.35,21.61,553.44,2388.07,9055.64,47.32,521.32,2388.05,8.4307,394,38.93,23.2574 +96,193,0.002,0.0003,642.82,1589.43,1402.98,21.61,553.11,2388.03,9049.64,47.51,521.27,2388.05,8.4222,391,38.88,23.3713 +96,194,-0.0013,-0.0005,642.05,1588.49,1405.94,21.61,553.48,2388.11,9058.72,47.67,521.66,2388.07,8.4541,393,38.75,23.2109 +96,195,-0.0035,0.0004,642.64,1584.55,1397.43,21.61,553.7,2388.09,9052.14,47.44,521.35,2388.11,8.4058,392,38.83,23.3818 +96,196,-0.0021,-0.0,643.01,1590.92,1403.48,21.61,553.74,2388.1,9055.98,47.41,521.65,2388.13,8.4234,392,38.7,23.3152 +96,197,-0.0003,-0.0,642.75,1589.96,1405.73,21.61,554.01,2388.07,9053.26,47.36,522.06,2388.08,8.4165,394,38.83,23.3274 +96,198,-0.0002,0.0003,642.91,1595.02,1405.19,21.61,553.36,2388.09,9049.58,47.64,521.13,2388.13,8.4286,391,38.75,23.3566 +96,199,0.0018,0.0004,642.42,1586.01,1413.25,21.61,553.67,2388.1,9062.53,47.61,521.74,2388.07,8.4497,393,38.8,23.2648 +96,200,0.0001,0.0,642.38,1587.91,1408.98,21.61,553.8,2388.08,9054.33,47.45,522.18,2388.08,8.4277,393,38.92,23.2778 +96,201,-0.0053,0.0002,642.33,1584.08,1408.39,21.61,553.5,2388.1,9053.07,47.62,521.53,2388.1,8.4329,392,38.85,23.3444 +96,202,-0.002,0.0003,642.69,1586.55,1414.38,21.61,553.54,2388.11,9057.52,47.4,521.89,2388.09,8.4305,394,38.85,23.4283 +96,203,0.0013,-0.0003,643.27,1593.37,1409.24,21.61,553.55,2388.09,9054.95,47.63,520.91,2388.07,8.4474,393,38.73,23.3369 +96,204,0.0011,0.0001,642.5,1592.98,1406.45,21.61,553.75,2388.14,9059.32,47.48,522.02,2388.09,8.4893,393,38.82,23.2849 +96,205,0.0005,0.0002,642.72,1592.6,1408.81,21.61,553.95,2388.1,9049.67,47.41,521.5,2388.16,8.4346,393,38.76,23.2738 +96,206,-0.0012,0.0003,642.54,1592.56,1403.51,21.61,553.57,2388.04,9056.35,47.58,522.4,2388.14,8.478,393,38.78,23.335 +96,207,0.0006,-0.0002,642.07,1592.26,1403.63,21.61,553.25,2388.08,9055.04,47.75,521.71,2388.09,8.4353,394,38.77,23.2998 +96,208,0.0011,-0.0002,642.83,1588.47,1406.82,21.61,553.6,2388.11,9057.58,47.57,521.41,2388.05,8.4527,393,38.99,23.379 +96,209,0.0045,-0.0003,642.5,1591.09,1408.98,21.61,553.95,2388.1,9065.05,47.49,521.73,2388.05,8.4306,391,38.88,23.3356 +96,210,-0.0042,-0.0003,642.69,1585.77,1401.37,21.61,553.37,2388.09,9060.23,47.27,521.12,2388.1,8.4417,393,38.81,23.2124 +96,211,0.0,0.0,642.7,1590.85,1410.33,21.61,552.67,2388.08,9052.98,47.48,521.48,2388.12,8.4341,393,38.64,23.3123 +96,212,0.0009,0.0002,642.53,1588.67,1403.79,21.61,553.83,2388.08,9057.51,47.58,522.14,2388.08,8.4328,392,38.79,23.2464 +96,213,-0.0017,-0.0002,642.72,1592.56,1409.29,21.61,553.13,2388.2,9048.51,47.46,521.32,2388.13,8.4211,393,39.03,23.2575 +96,214,0.0006,-0.0002,642.27,1594.68,1407.56,21.61,553.49,2388.07,9058.43,47.73,521.2,2388.15,8.4206,393,38.76,23.3875 +96,215,-0.0007,-0.0002,642.38,1592.23,1405.12,21.61,553.42,2388.09,9060.43,47.35,520.99,2388.1,8.432,393,38.85,23.3707 +96,216,-0.0028,0.0003,642.42,1584.19,1404.22,21.61,553.32,2388.16,9054.72,47.62,520.68,2388.08,8.4846,393,38.82,23.3681 +96,217,0.0005,-0.0001,642.59,1587.44,1408.7,21.61,552.91,2388.1,9060.3,47.62,521.98,2388.14,8.4416,391,38.82,23.3539 +96,218,-0.0026,0.0,642.37,1595.46,1407.35,21.61,553.75,2388.11,9056.97,47.67,521.33,2388.07,8.4109,394,38.67,23.2277 +96,219,-0.0021,0.0002,642.26,1586.61,1406.28,21.61,553.95,2388.17,9063.21,47.62,521.03,2388.15,8.4506,394,38.79,23.2347 +96,220,-0.0005,0.0,642.18,1589.6,1407.02,21.61,553.43,2388.15,9058.46,47.36,521.65,2388.06,8.4345,393,38.74,23.2151 +96,221,0.0008,-0.0001,642.92,1589.96,1408.78,21.61,553.37,2388.07,9057.41,47.45,521.79,2388.11,8.4235,392,38.83,23.2941 +96,222,-0.0044,-0.0003,642.59,1593.67,1412.84,21.61,553.14,2388.07,9054.49,47.43,520.98,2388.09,8.4332,393,38.81,23.2502 +96,223,0.0047,-0.0005,642.85,1585.36,1412.16,21.61,553.62,2388.1,9061.77,47.58,521.3,2388.12,8.4688,395,38.87,23.3303 +96,224,0.0022,0.0001,642.96,1589.19,1407.43,21.61,552.77,2388.06,9047.72,47.6,521.36,2388.1,8.4571,393,38.86,23.3637 +96,225,0.0044,-0.0002,642.72,1590.54,1410.39,21.61,552.87,2388.09,9059.53,47.56,520.96,2388.09,8.4187,394,38.78,23.3659 +96,226,0.0018,0.0003,642.66,1588.32,1410.47,21.61,553.3,2388.1,9058.42,47.57,521.14,2388.07,8.4566,391,38.76,23.4475 +96,227,-0.0007,0.0002,642.56,1587.57,1407.62,21.61,553.19,2388.05,9052.97,47.6,520.94,2388.1,8.3959,392,38.75,23.3261 +96,228,-0.0026,-0.0,642.37,1590.12,1408.72,21.61,553.17,2388.12,9060.49,47.33,521.1,2388.13,8.4513,394,38.68,23.2289 +96,229,0.0049,-0.0004,642.68,1592.7,1406.03,21.61,553.47,2388.1,9060.52,47.62,521.63,2388.11,8.4465,392,38.47,23.2881 +96,230,0.0004,-0.0001,642.47,1593.23,1410.75,21.61,552.96,2388.06,9062.99,47.63,521.13,2388.15,8.4401,393,38.81,23.3004 +96,231,0.0014,0.0005,642.91,1589.55,1415.9,21.61,553.24,2388.16,9058.19,47.47,521.68,2388.15,8.438,392,38.91,23.3061 +96,232,-0.0002,0.0003,643.17,1592.56,1414.33,21.61,553.38,2388.08,9054.7,47.51,521.13,2388.14,8.4423,394,38.84,23.3073 +96,233,0.0012,-0.0,643.2,1584.32,1407.07,21.61,553.63,2388.12,9057.75,47.63,521.27,2388.09,8.4183,393,38.65,23.24 +96,234,-0.0018,0.0002,643.17,1589.45,1408.28,21.61,552.78,2388.14,9058.49,47.57,521.43,2388.14,8.4404,394,38.85,23.2418 +96,235,-0.0023,0.0005,642.96,1591.53,1408.34,21.61,552.68,2388.07,9052.5,47.66,521.41,2388.12,8.4456,393,38.62,23.3015 +96,236,0.0005,-0.0003,643.16,1589.64,1414.52,21.61,553.01,2388.11,9054.24,47.39,521.46,2388.12,8.4151,391,38.66,23.3819 +96,237,-0.0017,-0.0001,642.58,1591.62,1405.0,21.61,553.62,2388.11,9063.02,47.66,521.32,2388.12,8.4404,395,38.88,23.3065 +96,238,-0.0038,0.0004,642.41,1593.96,1412.58,21.61,552.59,2388.12,9067.14,47.68,521.3,2388.15,8.4333,393,38.83,23.4173 +96,239,-0.0001,0.0004,642.97,1594.68,1410.88,21.61,552.93,2388.1,9061.23,47.53,521.55,2388.12,8.4041,394,38.84,23.2292 +96,240,-0.0,0.0005,642.87,1598.59,1411.03,21.61,552.78,2388.08,9060.45,47.55,521.56,2388.14,8.462,394,38.66,23.2819 +96,241,-0.0012,0.0004,642.88,1587.66,1404.53,21.61,552.72,2388.16,9053.16,47.57,521.12,2388.08,8.4329,393,38.83,23.3471 +96,242,0.0029,-0.0,642.17,1591.52,1414.0,21.61,554.4,2388.11,9063.79,47.55,521.43,2388.08,8.4359,394,38.63,23.2846 +96,243,0.0009,-0.0001,642.27,1590.26,1416.24,21.61,552.74,2388.11,9061.34,47.78,520.8,2388.12,8.4539,395,38.73,23.2862 +96,244,-0.0038,0.0002,643.05,1590.19,1403.31,21.61,552.63,2388.09,9061.4,47.52,521.81,2388.15,8.4501,394,38.81,23.1947 +96,245,-0.0018,0.0004,642.88,1604.56,1414.27,21.61,553.0,2388.1,9062.81,47.68,521.38,2388.12,8.4276,392,38.81,23.282 +96,246,-0.0004,-0.0001,643.03,1588.51,1410.97,21.61,552.7,2388.15,9058.53,47.67,521.34,2388.14,8.4498,392,38.86,23.3789 +96,247,0.003,-0.0003,642.77,1593.93,1410.02,21.61,553.2,2388.12,9060.36,47.72,521.15,2388.11,8.4784,394,38.86,23.2371 +96,248,0.002,-0.0002,642.77,1584.2,1408.09,21.61,553.5,2388.12,9061.66,47.78,521.42,2388.14,8.4823,394,38.8,23.3245 +96,249,-0.0005,-0.0003,643.17,1594.95,1414.47,21.61,553.34,2388.19,9064.92,47.54,520.56,2388.06,8.4858,393,38.94,23.1804 +96,250,0.0038,0.0002,642.39,1590.68,1411.92,21.61,553.14,2388.15,9059.64,47.53,520.81,2388.17,8.464,394,38.65,23.1816 +96,251,0.0012,-0.0004,643.34,1586.82,1416.93,21.61,552.85,2388.15,9058.15,47.61,521.13,2388.12,8.4626,394,38.65,23.2542 +96,252,0.0009,0.0001,643.35,1595.03,1405.56,21.61,553.64,2388.13,9050.99,47.52,521.04,2388.15,8.4029,393,38.65,23.3074 +96,253,0.0014,-0.0004,642.76,1595.07,1421.42,21.61,552.57,2388.12,9061.84,47.73,520.95,2388.12,8.4703,394,38.81,23.2332 +96,254,0.0014,-0.0001,642.79,1589.76,1414.03,21.61,553.65,2388.11,9061.44,47.58,521.42,2388.14,8.4873,394,38.72,23.1492 +96,255,0.0041,-0.0001,642.96,1592.41,1416.77,21.61,552.67,2388.12,9059.03,47.77,520.43,2388.16,8.4561,394,38.65,23.3182 +96,256,-0.0011,-0.0,642.62,1597.4,1413.34,21.61,553.13,2388.13,9062.95,47.77,520.93,2388.17,8.4471,394,38.8,23.2637 +96,257,-0.0022,0.0001,642.74,1589.9,1411.28,21.61,553.52,2388.17,9061.04,47.62,520.88,2388.2,8.4438,394,38.86,23.1841 +96,258,0.003,-0.0001,642.4,1590.06,1408.76,21.61,553.33,2388.12,9060.64,47.56,520.93,2388.1,8.428,394,38.72,23.2828 +96,259,-0.0014,0.0001,642.48,1582.05,1420.36,21.61,553.63,2388.14,9053.3,47.71,521.62,2388.13,8.4812,396,38.74,23.2121 +96,260,0.0019,-0.0003,642.74,1592.98,1414.04,21.61,552.96,2388.07,9061.14,47.51,520.97,2388.07,8.4968,395,38.62,23.1429 +96,261,0.0028,0.0002,642.5,1597.06,1416.29,21.61,553.38,2388.11,9063.72,47.53,521.09,2388.16,8.4158,395,38.78,23.2603 +96,262,0.0007,0.0002,642.73,1599.76,1415.68,21.61,552.64,2388.15,9069.35,47.62,521.31,2388.12,8.4558,394,38.67,23.2402 +96,263,-0.0035,0.0004,642.37,1588.69,1414.29,21.61,552.67,2388.1,9058.94,47.64,521.13,2388.15,8.4609,393,38.8,23.2598 +96,264,0.0042,-0.0001,642.56,1589.79,1408.63,21.61,552.55,2388.15,9060.33,47.77,520.78,2388.12,8.4492,394,38.73,23.2889 +96,265,0.0005,0.0001,642.85,1590.86,1412.99,21.61,552.94,2388.12,9057.1,47.86,520.92,2388.04,8.4759,395,38.8,23.2587 +96,266,0.0019,0.0001,642.96,1591.67,1415.19,21.61,552.96,2388.15,9064.08,47.88,520.39,2388.17,8.4645,394,38.58,23.2004 +96,267,-0.002,-0.0002,642.74,1591.84,1422.18,21.61,552.98,2388.11,9062.66,47.65,521.2,2388.12,8.4632,394,38.55,23.2158 +96,268,-0.0004,-0.0005,642.56,1594.89,1406.85,21.61,553.8,2388.11,9060.55,47.68,521.06,2388.18,8.4387,394,38.78,23.2077 +96,269,-0.0001,0.0002,642.88,1591.78,1412.08,21.61,552.93,2388.11,9061.66,47.77,520.97,2388.14,8.4476,394,38.71,23.1073 +96,270,-0.0007,0.0003,643.24,1592.6,1415.18,21.61,552.94,2388.15,9068.55,47.62,520.99,2388.18,8.4505,392,38.6,23.2532 +96,271,0.0009,0.0005,643.15,1593.0,1406.1,21.61,553.01,2388.14,9061.32,47.72,520.98,2388.17,8.4977,393,38.77,23.117 +96,272,-0.0004,-0.0004,642.96,1585.65,1414.21,21.61,552.4,2388.11,9062.27,47.78,520.77,2388.12,8.4686,393,38.76,23.2366 +96,273,-0.0004,0.0002,643.32,1599.47,1413.71,21.61,553.26,2388.15,9062.13,47.62,520.53,2388.13,8.4588,395,38.86,23.0915 +96,274,0.002,-0.0001,642.65,1595.03,1413.64,21.61,552.76,2388.15,9070.82,47.74,520.76,2388.19,8.4717,395,38.6,23.1534 +96,275,0.0003,0.0003,642.91,1595.86,1410.38,21.61,552.33,2388.12,9058.77,47.82,520.55,2388.12,8.4634,393,38.74,23.2818 +96,276,-0.0013,0.0003,642.88,1603.35,1416.09,21.61,552.78,2388.2,9063.77,47.67,520.27,2388.14,8.4777,394,38.61,23.2954 +96,277,-0.0013,0.0005,643.07,1592.24,1418.79,21.61,553.2,2388.18,9059.8,47.94,520.41,2388.17,8.4899,395,38.73,23.2931 +96,278,-0.0015,-0.0002,642.97,1589.3,1414.27,21.61,552.7,2388.11,9063.55,47.7,520.95,2388.1,8.4559,396,38.61,23.2727 +96,279,-0.0014,0.0002,642.86,1600.83,1416.58,21.61,553.41,2388.13,9064.81,47.73,520.43,2388.15,8.4716,394,38.74,23.1914 +96,280,0.0005,0.0005,642.85,1593.45,1420.77,21.61,552.36,2388.16,9061.63,47.87,520.53,2388.21,8.4744,394,38.75,23.3031 +96,281,0.0022,-0.0001,642.96,1589.04,1409.52,21.61,552.28,2388.15,9061.95,47.88,521.59,2388.12,8.4537,394,38.76,23.25 +96,282,0.0034,0.0003,642.71,1593.79,1416.24,21.61,552.27,2388.09,9065.04,47.85,520.5,2388.12,8.4415,395,38.7,23.193 +96,283,-0.0009,0.0,643.19,1593.18,1421.4,21.61,553.39,2388.11,9069.47,47.8,520.26,2388.23,8.4922,394,38.87,23.1892 +96,284,-0.0024,0.0002,643.3,1602.23,1413.76,21.61,552.09,2388.12,9066.62,47.72,520.59,2388.11,8.4749,395,38.53,23.3001 +96,285,-0.0038,0.0001,642.52,1593.16,1415.2,21.61,552.0,2388.2,9068.67,47.77,520.74,2388.16,8.4857,394,38.73,23.1449 +96,286,0.0021,0.0002,642.84,1601.01,1416.19,21.61,552.56,2388.15,9067.6,47.91,520.16,2388.17,8.502,395,38.59,23.1976 +96,287,0.0035,-0.0002,642.92,1599.22,1418.5,21.61,552.71,2388.18,9065.88,47.86,520.88,2388.12,8.5066,396,38.73,23.1783 +96,288,0.0038,-0.0001,643.1,1598.31,1421.8,21.61,552.74,2388.12,9069.11,47.71,520.71,2388.16,8.4958,396,38.85,23.2128 +96,289,0.0024,-0.0004,643.48,1589.88,1417.83,21.61,552.31,2388.24,9059.58,47.91,520.68,2388.21,8.4471,395,38.76,23.0072 +96,290,-0.0003,-0.0001,643.32,1599.77,1421.42,21.61,553.32,2388.21,9063.24,47.93,520.51,2388.13,8.4582,395,38.6,23.273 +96,291,0.0026,-0.0003,642.44,1599.32,1426.5,21.61,552.71,2388.18,9067.2,47.88,520.73,2388.19,8.464,397,38.55,23.2071 +96,292,0.0025,-0.0004,643.22,1599.71,1417.07,21.61,552.6,2388.18,9067.72,47.86,520.47,2388.13,8.4644,395,38.67,23.1544 +96,293,-0.0017,0.0001,643.57,1596.51,1421.48,21.61,551.64,2388.2,9064.5,47.74,520.77,2388.11,8.466,394,38.46,23.114 +96,294,-0.002,0.0003,643.67,1601.09,1412.83,21.61,552.95,2388.14,9067.71,47.93,520.15,2388.22,8.4812,394,38.57,23.1354 +96,295,-0.0021,-0.0004,643.64,1601.01,1417.53,21.61,552.74,2388.23,9066.39,47.81,520.44,2388.18,8.4699,396,38.46,23.2896 +96,296,0.0007,0.0003,643.34,1599.4,1427.1,21.61,552.06,2388.15,9054.91,47.73,521.19,2388.19,8.4935,392,38.61,23.1054 +96,297,-0.0021,0.0002,643.15,1594.18,1416.14,21.61,552.01,2388.18,9070.58,47.88,520.15,2388.23,8.4663,396,38.44,23.1551 +96,298,0.0001,0.0,643.34,1602.08,1428.24,21.61,552.46,2388.17,9067.22,47.87,520.98,2388.15,8.4852,396,38.57,23.1607 +96,299,-0.0004,-0.0001,642.91,1608.62,1418.54,21.61,552.12,2388.18,9061.81,47.93,520.65,2388.17,8.4851,395,38.64,23.2477 +96,300,-0.0009,-0.0001,643.29,1601.55,1417.98,21.61,551.45,2388.2,9069.31,47.79,521.02,2388.18,8.5295,395,38.7,23.1168 +96,301,-0.0025,-0.0004,643.82,1600.94,1428.54,21.61,552.32,2388.15,9071.12,47.85,520.84,2388.19,8.5172,393,38.61,23.1598 +96,302,0.0008,0.0005,643.51,1595.33,1413.99,21.61,552.03,2388.21,9064.78,47.92,520.94,2388.17,8.4821,396,38.58,23.1788 +96,303,-0.0045,0.0002,643.43,1601.56,1419.64,21.61,552.52,2388.21,9064.74,48.03,520.16,2388.24,8.4888,396,38.58,23.1447 +96,304,0.0018,-0.0001,643.5,1600.37,1423.31,21.61,551.83,2388.22,9068.54,48.13,520.45,2388.19,8.5028,394,38.5,23.2297 +96,305,-0.0013,-0.0001,643.21,1591.05,1425.69,21.61,552.46,2388.15,9059.71,47.91,520.05,2388.21,8.5092,393,38.73,23.1561 +96,306,-0.0012,-0.0003,643.73,1596.28,1418.72,21.61,552.27,2388.18,9068.24,47.95,520.48,2388.14,8.4708,394,38.7,23.2241 +96,307,0.0034,-0.0003,643.14,1590.44,1420.58,21.61,551.68,2388.18,9064.16,47.87,519.82,2388.15,8.5084,394,38.6,23.2222 +96,308,0.0,0.0002,643.26,1601.04,1425.46,21.61,552.35,2388.22,9071.81,48.0,520.77,2388.19,8.4763,394,38.5,23.137 +96,309,-0.0012,0.0003,643.23,1595.06,1423.02,21.61,552.02,2388.25,9068.47,48.0,520.91,2388.19,8.5269,396,38.48,23.1215 +96,310,-0.0018,0.0004,642.97,1592.28,1417.02,21.61,551.78,2388.15,9075.63,48.11,520.13,2388.24,8.496,398,38.6,23.1111 +96,311,0.0028,-0.0002,643.07,1597.94,1420.88,21.61,552.34,2388.19,9063.69,48.03,520.72,2388.22,8.4897,395,38.47,23.1538 +96,312,0.0018,0.0005,643.57,1596.22,1421.81,21.61,551.16,2388.22,9073.59,47.99,520.35,2388.19,8.4472,396,38.41,23.1584 +96,313,-0.0024,0.0001,643.67,1599.44,1417.06,21.61,551.91,2388.19,9065.93,47.92,520.28,2388.22,8.5067,395,38.62,23.1101 +96,314,0.003,0.0001,643.66,1599.37,1425.25,21.61,552.15,2388.19,9063.24,48.1,519.59,2388.22,8.4917,397,38.41,23.1374 +96,315,0.0008,0.0001,643.89,1596.52,1419.81,21.61,551.27,2388.26,9061.37,47.88,519.82,2388.14,8.5116,394,38.53,23.1329 +96,316,-0.0002,-0.0,643.32,1594.62,1416.36,21.61,552.22,2388.21,9068.3,48.07,520.61,2388.2,8.4946,396,38.57,23.0648 +96,317,-0.0008,0.0001,643.43,1602.6,1423.25,21.61,551.61,2388.2,9076.05,48.07,519.81,2388.19,8.508,396,38.42,23.1558 +96,318,0.0006,0.0003,643.01,1599.14,1416.3,21.61,551.87,2388.16,9069.61,48.02,520.02,2388.23,8.4865,397,38.57,23.1202 +96,319,0.0001,-0.0002,643.34,1592.75,1423.84,21.61,552.01,2388.2,9069.04,47.88,520.05,2388.18,8.475,397,38.45,23.0792 +96,320,0.0008,-0.0003,643.24,1594.58,1428.81,21.61,551.54,2388.26,9067.99,47.99,520.19,2388.25,8.5188,396,38.55,23.0632 +96,321,-0.0022,-0.0002,643.48,1591.28,1424.22,21.61,552.05,2388.19,9073.42,47.98,520.73,2388.23,8.4949,395,38.5,23.0989 +96,322,-0.0012,0.0,643.84,1592.24,1420.86,21.61,551.95,2388.22,9064.5,48.11,520.27,2388.23,8.5024,396,38.41,23.1199 +96,323,-0.0034,0.0002,643.13,1598.09,1428.51,21.61,551.75,2388.15,9070.76,48.21,520.26,2388.24,8.4715,396,38.37,23.1919 +96,324,0.0003,-0.0,643.85,1603.01,1428.1,21.61,551.92,2388.27,9069.3,48.05,520.3,2388.21,8.4761,395,38.47,23.0053 +96,325,-0.0019,0.0005,643.57,1602.58,1429.81,21.61,551.29,2388.25,9069.77,48.16,519.72,2388.22,8.5615,396,38.55,22.8942 +96,326,0.001,0.0001,643.72,1591.42,1425.74,21.61,551.35,2388.22,9064.41,48.05,519.97,2388.23,8.5195,395,38.39,23.1027 +96,327,0.0019,-0.0,643.69,1604.73,1430.58,21.61,551.5,2388.24,9064.7,47.99,520.09,2388.22,8.5208,395,38.4,23.0722 +96,328,-0.0001,0.0005,643.62,1598.42,1430.42,21.61,550.82,2388.22,9069.87,48.03,519.14,2388.28,8.5124,397,38.38,23.1484 +96,329,0.0025,0.0002,643.43,1599.78,1426.81,21.61,551.5,2388.26,9068.69,48.26,519.88,2388.22,8.5264,397,38.42,23.072 +96,330,0.0028,-0.0002,644.0,1602.21,1432.39,21.61,551.43,2388.23,9075.54,48.14,519.99,2388.23,8.5336,395,38.5,23.0216 +96,331,-0.001,0.0002,643.88,1601.34,1431.16,21.61,551.52,2388.25,9071.86,48.02,520.23,2388.27,8.5055,395,38.27,23.0869 +96,332,-0.0034,0.0005,643.45,1603.59,1432.65,21.61,551.38,2388.25,9075.89,48.13,519.47,2388.25,8.5109,395,38.53,23.0965 +96,333,0.0015,0.0004,644.2,1603.88,1426.93,21.61,551.45,2388.21,9073.41,48.08,519.49,2388.2,8.5158,396,38.3,23.0309 +96,334,-0.0028,-0.0002,643.62,1599.47,1431.08,21.61,551.14,2388.22,9077.86,48.22,519.48,2388.27,8.5165,395,38.63,23.1059 +96,335,0.0001,0.0005,644.13,1595.57,1430.52,21.61,551.64,2388.24,9075.38,48.1,519.61,2388.25,8.5615,396,38.51,23.0118 +96,336,-0.0031,-0.0005,643.74,1599.2,1432.12,21.61,550.78,2388.28,9075.64,48.17,519.18,2388.24,8.5022,397,38.36,23.0258 +98,10,0.0024,-0.0004,642.07,1584.36,1396.5,21.61,552.81,2388.02,9075.91,47.24,522.49,2388.03,8.4025,392,38.99,23.5006 +98,11,0.0012,-0.0001,642.6,1583.96,1401.37,21.61,554.39,2388.0,9073.5,47.09,522.39,2387.95,8.4142,391,39.01,23.383 +98,12,-0.0031,-0.0005,641.87,1579.66,1397.29,21.61,554.43,2387.94,9069.02,47.28,522.59,2388.07,8.3912,392,38.94,23.3952 +98,13,-0.0012,-0.0003,641.86,1578.11,1396.26,21.61,554.91,2387.97,9066.55,47.46,522.65,2388.0,8.4239,391,39.02,23.4809 +98,14,0.0016,0.0001,642.74,1586.49,1393.15,21.61,554.62,2388.03,9071.68,47.36,521.81,2388.04,8.3817,392,39.0,23.5295 +98,15,-0.0002,-0.0003,642.17,1584.16,1399.3,21.61,554.09,2388.02,9064.26,47.15,522.51,2387.98,8.3773,393,38.9,23.4568 +98,16,0.0015,-0.0002,642.71,1584.08,1399.74,21.61,554.68,2388.01,9065.01,47.08,522.32,2387.97,8.451,392,39.3,23.4036 +98,17,-0.0009,-0.0003,642.31,1588.54,1396.08,21.61,554.07,2388.05,9065.0,47.14,521.95,2388.01,8.3717,392,38.98,23.4329 +98,18,-0.003,-0.0003,642.25,1588.99,1389.48,21.61,554.67,2388.03,9070.59,47.05,522.04,2388.01,8.4145,391,39.06,23.4741 +98,19,0.0008,0.0002,641.98,1581.82,1401.22,21.61,553.62,2387.98,9062.51,47.22,522.23,2388.0,8.4365,391,38.96,23.4827 +98,20,0.0004,-0.0,642.54,1592.0,1403.12,21.61,554.61,2387.99,9066.84,47.16,522.17,2387.99,8.4288,391,39.05,23.4116 +98,21,-0.0024,0.0001,642.04,1580.39,1391.4,21.61,554.69,2387.95,9061.52,47.04,522.32,2388.04,8.4007,391,39.04,23.4487 +98,22,0.0037,0.0001,641.79,1588.86,1404.83,21.61,554.52,2388.0,9058.49,47.3,522.35,2388.01,8.4028,392,38.99,23.3938 +98,23,-0.0032,-0.0004,642.18,1586.09,1392.01,21.61,553.9,2388.0,9073.55,47.25,522.5,2388.01,8.4143,394,38.89,23.3942 +98,24,-0.0026,0.0001,642.49,1587.08,1399.07,21.61,554.33,2388.04,9066.75,47.3,522.36,2388.04,8.3925,392,38.89,23.3854 +98,25,-0.0007,-0.0003,642.29,1587.33,1399.04,21.61,553.75,2388.04,9065.66,47.18,522.05,2388.06,8.4209,392,39.0,23.3737 +98,26,0.0013,0.0002,642.05,1582.42,1395.86,21.61,554.16,2388.02,9073.28,47.39,522.28,2388.02,8.3736,393,38.98,23.3906 +98,27,0.0004,0.0002,642.23,1587.5,1397.2,21.61,554.44,2388.01,9062.15,47.12,522.36,2388.0,8.3796,390,39.05,23.5187 +98,28,-0.0016,0.0,641.65,1579.76,1404.49,21.61,555.16,2387.98,9073.08,47.13,521.94,2387.98,8.3892,391,39.18,23.398 +98,29,-0.0027,0.0001,642.39,1589.91,1395.46,21.61,553.99,2387.99,9069.19,47.24,523.04,2388.0,8.3945,393,39.0,23.3431 +98,30,0.0024,-0.0001,641.85,1578.57,1403.12,21.61,554.13,2388.02,9073.59,47.14,522.55,2388.04,8.4169,391,38.84,23.3659 +98,31,0.0003,-0.0002,642.29,1590.14,1395.81,21.61,554.19,2388.0,9060.52,47.26,522.24,2387.97,8.4081,391,39.01,23.3748 +98,32,-0.0005,-0.0006,642.43,1577.66,1397.86,21.61,553.93,2388.03,9067.98,47.29,522.38,2388.01,8.3847,392,38.79,23.5033 +98,33,0.0005,-0.0002,642.54,1583.68,1395.59,21.61,554.26,2388.01,9064.47,47.2,522.57,2388.0,8.4139,391,39.02,23.4388 +98,34,-0.0023,-0.0,641.97,1576.7,1405.03,21.61,554.24,2388.0,9065.85,47.27,521.99,2387.96,8.3934,392,39.0,23.3007 +98,35,0.0001,0.0002,642.49,1584.26,1394.32,21.61,554.38,2387.94,9071.88,47.31,522.37,2387.98,8.3912,392,39.09,23.4646 +98,36,0.0029,0.0001,642.05,1585.2,1401.0,21.6,554.01,2388.04,9066.5,47.04,522.37,2388.04,8.3897,392,38.98,23.3563 +98,37,0.0013,0.0003,642.08,1584.48,1397.06,21.61,554.57,2388.02,9067.98,47.35,522.05,2388.04,8.3982,392,38.91,23.4044 +98,38,0.0003,-0.0001,642.19,1581.77,1403.97,21.61,553.92,2388.0,9069.11,46.93,521.63,2388.04,8.3911,393,39.16,23.4276 +98,39,-0.0008,-0.0002,642.22,1591.83,1395.37,21.61,555.23,2388.05,9061.38,47.22,521.89,2387.99,8.4405,392,39.18,23.3503 +98,40,0.0027,-0.0004,642.18,1586.95,1405.05,21.61,554.02,2388.06,9073.83,47.19,521.74,2388.03,8.3915,393,39.01,23.3683 +98,41,-0.0024,-0.0004,642.12,1583.57,1397.44,21.61,555.03,2387.99,9061.36,47.17,522.81,2388.03,8.4281,392,38.98,23.3513 +98,42,-0.0004,0.0004,642.49,1578.29,1399.01,21.61,553.78,2388.01,9073.44,47.15,521.97,2387.97,8.4199,392,38.99,23.4173 +98,43,-0.0013,-0.0001,642.11,1586.62,1401.16,21.61,554.18,2388.01,9064.02,47.54,522.58,2388.02,8.4134,392,38.85,23.3247 +98,44,0.0026,-0.0001,642.7,1588.84,1400.69,21.6,553.64,2387.95,9064.95,47.32,522.35,2388.02,8.4107,392,38.87,23.4442 +98,45,0.0025,0.0003,642.04,1583.26,1402.79,21.61,554.24,2387.97,9074.64,47.12,522.11,2388.04,8.4072,392,38.94,23.3934 +98,46,-0.0006,0.0001,642.26,1579.48,1409.27,21.61,554.25,2388.06,9068.63,47.34,522.25,2388.03,8.4034,392,38.91,23.3597 +98,47,-0.0043,0.0004,642.08,1593.46,1391.23,21.61,554.49,2388.03,9068.46,47.17,522.77,2388.07,8.432,391,38.9,23.3767 +98,48,-0.0033,-0.0004,642.02,1580.31,1403.28,21.61,553.65,2388.04,9062.33,47.28,522.31,2388.02,8.4227,391,38.97,23.3767 +98,49,0.0006,-0.0001,642.44,1584.88,1399.16,21.61,554.09,2387.96,9060.72,47.31,522.52,2388.03,8.4078,391,38.83,23.4616 +98,50,0.0008,-0.0002,642.61,1582.93,1390.36,21.61,554.9,2388.05,9063.93,47.38,522.45,2388.12,8.4068,391,38.9,23.3734 +98,51,0.0031,0.0002,642.37,1585.49,1397.87,21.61,553.86,2388.04,9063.93,47.37,522.18,2388.04,8.4103,393,39.06,23.2097 +98,52,-0.005,-0.0002,641.94,1586.48,1401.36,21.61,554.23,2388.05,9074.7,47.28,522.13,2387.99,8.3842,392,39.14,23.3048 +98,53,0.0003,0.0,642.13,1578.09,1406.78,21.61,553.9,2387.98,9071.23,47.43,522.07,2388.04,8.4258,391,38.91,23.4229 +98,54,0.0037,-0.0002,641.98,1582.21,1403.17,21.61,553.77,2388.03,9067.85,47.22,521.58,2388.01,8.418,392,38.83,23.3561 +98,55,-0.0017,-0.0,642.27,1586.97,1395.14,21.61,554.31,2388.02,9072.53,47.35,522.42,2388.03,8.4046,391,38.97,23.5461 +98,56,-0.0005,-0.0002,642.07,1583.54,1409.74,21.61,554.37,2388.07,9066.47,47.32,521.73,2388.04,8.4141,393,38.96,23.42 +98,57,0.0012,-0.0001,642.13,1586.22,1395.44,21.61,554.43,2388.04,9064.42,47.17,521.98,2387.97,8.4328,391,39.04,23.4336 +98,58,-0.0003,-0.0001,642.54,1582.9,1397.63,21.61,554.28,2387.98,9063.01,47.28,522.09,2388.03,8.3992,390,38.84,23.3763 +98,59,0.0027,0.0003,642.33,1584.25,1396.07,21.61,554.89,2388.0,9070.95,47.19,522.23,2388.04,8.4193,393,38.97,23.4885 +98,60,0.0013,0.0003,642.2,1590.1,1399.36,21.61,553.39,2388.01,9069.8,47.19,522.38,2388.02,8.3781,392,39.0,23.4278 +98,61,0.0005,0.0,642.32,1585.53,1404.77,21.61,553.82,2388.01,9066.49,47.29,521.96,2388.05,8.4321,394,39.11,23.4125 +98,62,-0.0007,0.0,642.11,1590.76,1403.54,21.61,554.22,2388.05,9074.3,47.2,521.99,2388.0,8.4251,392,38.84,23.2169 +98,63,0.0022,-0.0003,642.19,1594.98,1403.92,21.61,553.84,2388.04,9061.47,47.52,521.43,2388.04,8.4291,392,38.81,23.3579 +98,64,-0.0001,-0.0005,642.32,1591.68,1407.83,21.61,554.05,2388.03,9072.34,47.29,522.05,2388.04,8.4161,392,38.88,23.4101 +98,65,0.0008,-0.0003,642.6,1580.89,1401.02,21.61,554.45,2388.0,9068.84,47.31,522.25,2388.03,8.4361,392,38.84,23.3786 +98,66,0.0011,0.0003,642.65,1592.52,1402.74,21.61,554.0,2387.97,9056.28,47.13,521.4,2387.99,8.4204,392,39.08,23.4166 +98,67,0.0026,-0.0001,643.02,1590.13,1403.9,21.61,554.28,2388.01,9067.76,47.29,521.89,2388.02,8.4218,392,39.16,23.3795 +98,68,-0.0021,-0.0004,642.3,1584.1,1404.16,21.61,554.05,2388.0,9070.03,47.39,522.21,2388.01,8.4086,391,39.12,23.4344 +98,69,-0.0003,-0.0001,642.13,1592.26,1403.12,21.61,553.98,2388.01,9074.25,47.23,521.89,2388.06,8.3906,392,38.86,23.4807 +98,70,-0.0017,0.0002,642.64,1587.58,1396.18,21.61,553.9,2388.05,9071.74,47.34,521.93,2388.03,8.4357,394,38.98,23.449 +98,71,-0.0024,-0.0001,642.41,1584.12,1401.42,21.61,553.64,2388.05,9060.43,47.37,522.07,2388.02,8.3863,393,38.87,23.3731 +98,72,0.0036,0.0003,642.38,1591.36,1403.37,21.61,553.46,2387.99,9064.82,47.59,522.55,2388.03,8.4503,392,38.9,23.4023 +98,73,0.0,0.0003,642.94,1580.76,1402.19,21.61,554.45,2388.03,9078.04,47.28,521.74,2388.07,8.4335,392,39.02,23.3035 +98,74,0.0027,-0.0001,642.57,1579.97,1395.71,21.61,553.5,2388.02,9065.03,47.38,522.44,2388.04,8.4393,393,38.92,23.38 +98,75,0.0017,-0.0001,642.26,1587.36,1401.72,21.61,554.12,2388.04,9078.12,47.16,521.83,2388.02,8.4247,391,38.83,23.4185 +98,76,0.0025,-0.0004,642.16,1586.25,1401.99,21.6,554.88,2388.01,9059.23,47.3,522.5,2388.03,8.3935,393,38.98,23.3505 +98,77,-0.0014,0.0002,643.06,1588.13,1400.95,21.61,554.2,2388.04,9075.92,47.4,521.85,2388.05,8.4026,391,38.88,23.3291 +98,78,0.0006,0.0003,642.74,1590.08,1407.36,21.61,553.68,2388.02,9067.37,47.45,522.03,2388.06,8.4329,393,38.86,23.3604 +98,79,-0.0014,0.0003,642.35,1588.89,1401.75,21.61,554.17,2388.0,9069.95,47.48,521.51,2388.01,8.4095,392,38.66,23.1844 +98,80,0.0009,0.0001,642.18,1588.39,1399.37,21.61,554.46,2387.99,9069.46,47.38,522.24,2388.05,8.3976,392,38.86,23.3362 +98,81,0.0022,-0.0003,642.09,1594.45,1405.73,21.61,553.43,2387.98,9064.09,47.53,521.94,2388.09,8.4383,394,38.86,23.2744 +98,82,-0.0012,-0.0001,642.53,1586.69,1397.63,21.61,553.47,2388.02,9074.76,47.16,521.79,2388.04,8.4363,392,39.01,23.3698 +98,83,0.0022,-0.0003,642.26,1589.48,1408.3,21.61,553.93,2388.06,9067.82,47.34,521.98,2388.06,8.4027,391,38.82,23.3319 +98,84,0.001,-0.0006,642.24,1580.32,1394.62,21.61,554.11,2388.04,9074.75,47.3,522.08,2388.03,8.4341,392,38.87,23.4319 +98,85,0.0001,-0.0,642.3,1584.96,1399.72,21.61,554.08,2388.02,9065.43,47.56,522.16,2388.08,8.4069,392,38.71,23.2839 +98,86,-0.001,0.0001,642.95,1591.44,1403.02,21.61,553.15,2388.03,9069.38,47.4,522.01,2388.08,8.4127,393,38.9,23.2703 +98,87,0.0025,-0.0003,642.84,1584.84,1405.9,21.61,553.82,2388.1,9064.62,47.44,521.94,2388.06,8.4223,391,38.77,23.3793 +98,88,-0.0002,0.0001,642.92,1585.14,1398.43,21.61,553.82,2388.03,9067.5,47.39,522.19,2388.05,8.4494,393,38.81,23.2808 +98,89,0.0014,-0.0004,642.45,1588.13,1403.63,21.61,554.14,2388.03,9060.76,47.4,521.93,2388.06,8.4368,393,38.99,23.3648 +98,90,-0.0006,0.0,642.26,1583.76,1395.52,21.61,553.66,2388.08,9063.01,47.4,521.37,2388.06,8.4482,392,38.92,23.4034 +98,91,-0.0004,-0.0003,642.09,1591.18,1409.03,21.61,553.78,2388.03,9073.98,47.51,521.75,2388.05,8.4447,393,39.05,23.3836 +98,92,0.0022,-0.0005,642.84,1592.3,1408.8,21.61,554.61,2388.07,9073.14,47.42,521.05,2388.03,8.4334,393,38.78,23.3295 +98,93,-0.0006,0.0001,642.78,1592.95,1410.56,21.61,553.94,2388.01,9065.76,47.5,521.65,2388.06,8.4319,392,38.94,23.3429 +98,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745 +98,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315 +98,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839 +98,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567 +98,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252 +98,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405 +98,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594 +98,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209 +98,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586 +98,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236 +98,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186 +98,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766 +98,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073 +98,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261 +98,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297 +98,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969 +98,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736 +98,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976 +98,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348 +98,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527 +98,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057 +98,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035 +98,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524 +98,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222 +98,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505 +98,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997 +98,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368 +98,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158 +98,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338 +98,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001 +98,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875 +98,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527 +98,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362 +98,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736 +98,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541 +98,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225 +98,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14 +98,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894 +98,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456 +98,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257 +98,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161 +98,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071 +98,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364 +98,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724 +98,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177 +98,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215 +98,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314 +98,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511 +98,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351 +98,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984 +98,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163 +98,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174 +98,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121 +98,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201 +98,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058 +98,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567 +98,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656 +98,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13 +98,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092 +98,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466 +98,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139 +98,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874 +98,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137 +99,10,0.0021,0.0003,641.89,1584.64,1394.87,21.61,554.12,2388.02,9053.56,47.32,521.73,2388.05,8.4089,391,39.08,23.3028 +99,11,0.0026,-0.0003,641.78,1584.18,1402.93,21.61,553.77,2388.03,9057.11,47.3,521.93,2388.08,8.401,392,38.85,23.3946 +99,12,0.0004,0.0003,642.19,1586.32,1400.37,21.61,554.19,2388.04,9053.93,47.24,522.31,2388.04,8.3713,392,38.95,23.348 +99,13,0.0024,-0.0003,642.61,1582.63,1401.53,21.61,554.26,2388.05,9057.7,47.26,522.52,2388.05,8.4046,392,39.04,23.398 +99,14,0.0006,-0.0005,642.35,1586.21,1405.73,21.61,554.01,2388.1,9056.64,47.06,522.65,2388.08,8.4146,393,38.98,23.3352 +99,15,0.0031,0.0003,643.11,1580.86,1397.06,21.61,554.61,2388.08,9057.25,47.2,521.97,2388.08,8.4288,394,38.99,23.4502 +99,16,0.0018,0.0003,641.85,1581.41,1408.72,21.61,553.65,2388.05,9061.91,47.44,521.72,2388.06,8.3972,393,38.91,23.3309 +99,17,-0.0022,-0.0004,642.31,1583.0,1400.57,21.61,553.56,2388.0,9056.2,47.2,522.55,2387.99,8.3898,392,38.89,23.4659 +99,18,-0.0021,0.0004,642.6,1583.21,1405.55,21.61,554.18,2388.03,9050.81,47.17,521.82,2387.99,8.4418,392,39.0,23.3785 +99,19,-0.0003,-0.0002,642.56,1583.55,1401.88,21.61,554.19,2388.09,9047.98,47.28,521.87,2388.04,8.3837,393,39.01,23.3041 +99,20,-0.0025,-0.0004,642.38,1580.21,1398.14,21.61,553.91,2388.0,9051.56,47.37,522.32,2388.06,8.378,391,38.9,23.3528 +99,21,-0.0023,-0.0005,642.46,1589.27,1401.16,21.61,554.25,2388.04,9059.85,47.16,522.05,2388.03,8.3895,391,39.13,23.3479 +99,22,-0.0005,0.0004,642.19,1586.16,1404.0,21.61,554.22,2388.05,9058.75,47.24,522.27,2388.04,8.4273,392,39.04,23.386 +99,23,0.0004,-0.0004,642.26,1583.33,1405.54,21.61,554.78,2388.02,9057.64,47.45,522.24,2388.13,8.3916,392,39.07,23.3914 +99,24,-0.0018,0.0005,642.16,1581.29,1401.38,21.61,553.11,2388.08,9050.28,47.06,522.21,2388.03,8.3879,393,38.99,23.454 +99,25,-0.0009,0.0004,642.1,1589.73,1394.99,21.61,553.33,2388.13,9056.55,47.36,522.05,2388.06,8.414,391,39.07,23.3418 +99,26,-0.0018,0.0002,642.18,1591.84,1398.46,21.61,554.65,2388.04,9050.27,47.26,521.77,2388.07,8.3824,392,38.85,23.3222 +99,27,-0.0036,0.0001,642.5,1587.57,1401.83,21.61,554.21,2388.02,9053.71,47.22,521.89,2388.0,8.4322,392,38.94,23.3923 +99,28,-0.0014,0.0003,642.21,1582.97,1392.53,21.61,554.44,2388.02,9057.51,47.31,522.3,2388.08,8.3945,392,39.18,23.2712 +99,29,-0.0016,0.0,642.15,1594.17,1399.51,21.61,554.0,2388.08,9051.46,47.23,522.14,2388.03,8.4036,391,38.96,23.3564 +99,30,0.0013,-0.0,642.1,1586.84,1402.89,21.61,554.15,2388.07,9057.65,47.08,522.37,2388.08,8.4196,392,39.02,23.3313 +99,31,0.0004,0.0003,642.81,1580.48,1400.89,21.61,553.88,2388.03,9054.22,47.17,521.6,2388.07,8.4381,393,38.79,23.3038 +99,32,-0.0015,0.0002,642.29,1581.47,1401.43,21.61,553.85,2388.09,9056.37,47.37,521.9,2388.1,8.439,393,39.0,23.3889 +99,33,-0.003,0.0004,642.7,1584.69,1406.07,21.61,553.19,2388.01,9055.64,47.19,522.08,2388.03,8.4019,392,38.97,23.452 +99,34,-0.0017,0.0,642.43,1587.55,1398.13,21.61,554.41,2388.09,9053.68,47.42,521.84,2388.03,8.4312,392,39.01,23.307 +99,35,0.0003,-0.0004,642.67,1582.74,1399.51,21.61,553.63,2388.07,9057.53,47.44,522.17,2388.05,8.4283,393,38.86,23.4327 +99,36,-0.0018,-0.0002,641.75,1582.24,1403.9,21.61,554.96,2388.06,9053.59,47.43,522.62,2388.04,8.4303,394,38.96,23.452 +99,37,-0.0015,-0.0001,642.38,1583.16,1400.86,21.61,554.19,2388.06,9061.12,47.38,522.68,2388.0,8.3941,392,38.88,23.3606 +99,38,-0.001,-0.0002,642.13,1584.93,1408.46,21.61,555.07,2388.02,9063.85,47.22,522.75,2388.03,8.4062,393,39.17,23.3277 +99,39,-0.0009,0.0003,642.26,1582.63,1399.6,21.61,555.03,2388.01,9060.91,47.21,521.81,2388.06,8.3901,392,38.95,23.3281 +99,40,0.0013,0.0002,642.02,1589.95,1400.82,21.61,554.32,2388.0,9057.69,47.35,522.12,2388.02,8.4319,391,38.9,23.3708 +99,41,0.0036,-0.0002,641.88,1588.07,1402.1,21.6,554.14,2388.11,9054.4,47.4,522.22,2388.07,8.3759,392,38.78,23.4523 +99,42,0.0037,-0.0001,642.26,1586.81,1409.67,21.61,554.37,2388.06,9054.48,47.26,522.41,2388.08,8.4311,393,38.92,23.3913 +99,43,-0.0001,-0.0003,642.08,1583.88,1395.34,21.61,554.02,2388.1,9058.25,47.34,522.02,2388.05,8.4287,393,39.01,23.3901 +99,44,-0.0013,-0.0004,642.73,1581.72,1404.9,21.61,553.98,2388.06,9053.88,47.28,522.12,2388.05,8.4027,392,38.88,23.4643 +99,45,-0.0012,-0.0001,642.33,1586.14,1402.87,21.61,554.17,2388.07,9058.63,47.28,522.04,2388.07,8.3991,392,38.87,23.3812 +99,46,0.0,0.0002,642.57,1591.82,1406.86,21.61,553.98,2388.06,9059.5,47.24,522.09,2388.04,8.4285,392,38.99,23.2691 +99,47,-0.0018,0.0,642.13,1586.01,1398.52,21.61,554.62,2388.09,9062.04,47.32,522.5,2388.05,8.4356,393,39.03,23.3823 +99,48,0.0019,0.0003,642.26,1584.55,1404.46,21.61,553.97,2388.05,9055.06,47.31,521.64,2388.02,8.4225,393,38.93,23.3093 +99,49,0.0003,-0.0004,642.68,1584.27,1403.95,21.61,554.62,2388.05,9057.64,47.4,521.7,2388.09,8.4101,391,39.04,23.4054 +99,50,-0.0023,-0.0004,641.88,1591.72,1400.68,21.61,554.5,2388.11,9054.98,47.44,522.24,2388.06,8.4188,391,38.88,23.3519 +99,51,-0.001,0.0003,642.63,1591.75,1403.08,21.61,554.11,2388.08,9054.64,47.23,522.85,2388.01,8.4388,392,38.79,23.396 +99,52,0.0022,0.0003,641.95,1588.5,1397.35,21.61,553.34,2388.03,9050.36,47.55,521.63,2388.08,8.4234,392,38.97,23.249 +99,53,-0.002,-0.0001,642.77,1587.76,1402.1,21.61,553.97,2388.06,9061.35,47.23,522.24,2388.06,8.4128,392,38.88,23.2709 +99,54,-0.0049,0.0004,641.99,1589.97,1400.29,21.61,553.85,2388.05,9059.31,47.32,521.28,2388.11,8.4318,391,38.98,23.2592 +99,55,-0.001,-0.0002,642.44,1586.52,1397.43,21.61,553.61,2387.97,9054.62,47.19,522.11,2388.07,8.405,393,38.9,23.443 +99,56,0.0003,0.0005,642.09,1590.09,1400.65,21.61,554.22,2388.07,9063.6,47.52,521.81,2388.06,8.4081,393,38.88,23.467 +99,57,0.0001,0.0005,642.07,1587.02,1401.42,21.61,553.59,2388.03,9052.5,47.3,522.29,2388.08,8.4146,391,38.86,23.4333 +99,58,0.0012,0.0003,642.76,1589.86,1397.79,21.61,553.94,2388.01,9052.49,47.39,521.89,2388.02,8.419,393,38.9,23.4608 +99,59,-0.0014,-0.0,642.19,1588.61,1410.52,21.61,553.36,2388.14,9054.42,47.34,521.94,2388.03,8.4193,392,38.72,23.397 +99,60,-0.0028,0.0004,642.16,1586.33,1402.31,21.61,554.43,2388.04,9054.04,47.44,521.61,2388.06,8.4072,393,39.04,23.3517 +99,61,0.0013,-0.0001,642.26,1584.33,1399.36,21.61,554.55,2388.01,9051.48,47.21,522.12,2388.06,8.4131,393,38.83,23.395 +99,62,0.0003,-0.0002,642.42,1599.53,1398.57,21.61,554.3,2388.02,9063.57,47.34,522.0,2388.03,8.4244,393,38.91,23.3605 +99,63,0.0008,0.0003,642.28,1580.25,1393.6,21.61,553.37,2388.02,9063.41,47.47,522.23,2388.05,8.4238,394,38.97,23.3743 +99,64,0.0008,0.0002,641.8,1577.12,1395.95,21.61,553.78,2388.01,9056.64,47.32,521.66,2388.05,8.4413,392,39.0,23.4075 +99,65,-0.0023,-0.0,642.44,1589.66,1406.99,21.61,554.37,2388.04,9052.37,47.19,522.25,2388.06,8.4222,392,39.13,23.4986 +99,66,0.0023,-0.0004,642.81,1592.3,1398.55,21.61,554.17,2388.06,9056.93,47.41,521.87,2388.01,8.3689,391,39.11,23.3709 +99,67,0.0013,0.0,642.5,1583.06,1402.83,21.61,553.15,2388.09,9059.87,47.15,521.92,2388.04,8.4009,394,39.03,23.3992 +99,68,-0.0018,0.0003,642.79,1591.76,1399.98,21.61,553.68,2388.05,9057.9,47.17,521.99,2388.05,8.3893,393,38.98,23.4365 +99,69,0.0009,0.0001,642.23,1583.23,1403.94,21.61,554.55,2388.06,9056.31,47.45,521.61,2388.08,8.423,391,38.86,23.363 +99,70,0.0024,0.0003,642.64,1585.1,1396.42,21.61,553.7,2388.08,9058.42,47.32,521.5,2388.0,8.4078,392,38.87,23.3361 +99,71,-0.0001,0.0001,642.21,1588.34,1405.04,21.61,554.41,2388.04,9058.36,47.44,521.66,2388.03,8.4073,392,39.11,23.4205 +99,72,0.0016,0.0,642.15,1590.18,1404.94,21.61,554.76,2388.07,9058.68,47.29,521.77,2388.05,8.3707,392,38.93,23.4045 +99,73,0.0008,0.0003,642.13,1590.01,1403.5,21.61,553.97,2388.01,9056.24,47.45,521.9,2388.03,8.4189,393,39.0,23.2735 +99,74,0.0009,0.0001,642.56,1586.01,1406.32,21.61,553.38,2388.03,9056.89,47.18,522.0,2388.05,8.4336,391,38.98,23.4097 +99,75,0.0006,0.0005,642.14,1586.56,1403.68,21.61,554.16,2388.11,9055.87,47.14,521.53,2388.05,8.3879,392,38.85,23.4856 +99,76,0.0005,0.0,641.72,1590.66,1399.15,21.61,554.54,2388.06,9060.54,47.42,521.69,2388.05,8.39,392,39.04,23.3697 +99,77,0.0029,0.0003,642.01,1588.38,1401.42,21.61,555.02,2388.08,9056.92,47.4,521.92,2388.06,8.4333,393,38.82,23.3636 +99,78,-0.0025,-0.0001,642.45,1588.97,1399.74,21.61,554.55,2388.07,9056.35,47.36,521.76,2388.05,8.4294,392,38.99,23.3855 +99,79,-0.0025,0.0003,642.22,1586.26,1402.84,21.61,553.7,2388.06,9064.16,47.3,521.68,2388.09,8.4071,393,38.82,23.3907 +99,80,-0.0034,-0.0003,642.66,1584.48,1405.68,21.61,554.09,2388.07,9053.94,47.42,521.89,2388.1,8.4008,392,38.81,23.2832 +99,81,0.0031,0.0002,642.46,1585.62,1404.45,21.61,553.66,2388.02,9051.04,47.3,521.98,2388.07,8.4434,393,38.88,23.2988 +99,82,0.004,0.0,642.39,1589.81,1401.18,21.61,553.91,2388.08,9048.36,47.39,522.01,2388.04,8.4046,391,38.97,23.3228 +99,83,0.0008,0.0001,642.03,1586.95,1403.33,21.61,553.57,2388.04,9057.63,47.4,521.94,2388.03,8.4222,394,39.07,23.3777 +99,84,0.0027,0.0003,642.6,1587.84,1406.72,21.61,553.76,2388.06,9053.41,47.41,522.27,2388.08,8.4176,393,38.88,23.3038 +99,85,-0.0011,-0.0004,642.83,1596.34,1416.6,21.61,553.59,2388.12,9062.86,47.45,521.4,2388.1,8.414,393,38.75,23.3077 +99,86,-0.0036,0.0002,642.57,1590.87,1403.88,21.61,553.92,2387.98,9064.16,47.36,521.83,2388.03,8.4129,393,38.81,23.3359 +99,87,-0.0034,-0.0001,642.1,1583.11,1400.87,21.61,553.89,2388.03,9051.89,47.43,522.09,2388.07,8.4363,393,38.89,23.3552 +99,88,0.0001,-0.0003,642.15,1586.41,1407.61,21.61,553.89,2388.06,9056.19,47.35,521.94,2388.05,8.4136,392,39.2,23.2502 +99,89,0.0004,0.0002,642.54,1580.09,1398.89,21.61,553.79,2388.13,9059.83,47.43,521.45,2388.01,8.4359,392,38.87,23.4736 +99,90,-0.0038,0.0002,642.51,1590.24,1403.56,21.61,554.25,2388.05,9059.34,47.41,522.23,2388.04,8.4149,392,39.16,23.4668 +99,91,0.0021,-0.0003,642.77,1589.57,1400.7,21.61,554.0,2387.97,9053.69,47.41,521.89,2388.06,8.4008,394,39.04,23.3295 +99,92,0.001,-0.0003,642.56,1580.68,1403.9,21.61,553.44,2388.1,9054.66,47.43,521.86,2388.04,8.4253,393,38.87,23.3287 +99,93,0.0025,0.0002,642.55,1589.25,1402.97,21.61,553.96,2388.06,9051.24,47.39,521.89,2388.04,8.4355,393,38.97,23.2884 +99,94,-0.0025,-0.0003,643.22,1591.12,1402.43,21.61,553.71,2388.04,9057.28,47.33,522.25,2388.04,8.4333,392,39.05,23.288 +99,95,-0.004,0.0002,642.23,1591.63,1401.97,21.61,554.35,2388.07,9063.61,47.34,521.81,2388.02,8.4034,393,38.93,23.4009 +99,96,-0.0002,-0.0002,642.51,1596.06,1406.14,21.61,554.17,2388.03,9054.24,47.45,521.55,2388.07,8.4015,393,38.96,23.3917 +99,97,-0.0019,-0.0004,642.56,1584.88,1399.62,21.61,553.95,2388.07,9055.14,47.25,521.11,2388.08,8.4282,395,39.01,23.3544 +99,98,0.0022,-0.0001,642.42,1591.57,1409.28,21.61,554.38,2388.01,9060.14,47.49,521.53,2388.03,8.4175,393,38.87,23.2451 +99,99,0.0012,-0.0001,642.73,1585.3,1412.48,21.61,554.4,2388.08,9050.42,47.4,521.81,2388.1,8.4064,394,39.04,23.3335 +99,100,-0.002,-0.0002,642.15,1591.06,1407.6,21.61,553.65,2388.09,9052.75,47.47,521.48,2388.12,8.4152,392,38.91,23.2626 +99,101,-0.0013,-0.0,642.33,1588.88,1402.33,21.61,553.59,2388.09,9060.7,47.56,521.42,2388.1,8.4096,394,38.89,23.2587 +99,102,0.0026,0.0002,643.0,1592.56,1404.95,21.61,553.66,2388.08,9059.93,47.3,521.16,2388.07,8.4199,393,38.96,23.4268 +99,103,0.0007,0.0001,642.22,1584.21,1408.0,21.61,553.67,2388.02,9054.73,47.57,522.05,2388.12,8.4338,393,38.84,23.2674 +99,104,-0.0025,-0.0001,642.76,1585.59,1406.4,21.61,553.98,2388.1,9056.11,47.43,522.38,2388.08,8.4117,391,38.91,23.3027 +99,105,0.0044,-0.0,642.26,1590.99,1413.3,21.61,553.75,2388.01,9056.42,47.41,522.07,2388.11,8.4642,390,38.82,23.2148 +99,106,-0.0005,-0.0002,642.52,1594.67,1403.25,21.61,553.25,2388.07,9059.24,47.51,521.88,2388.11,8.4303,393,38.7,23.3228 +99,107,-0.0015,-0.0004,642.63,1584.12,1404.87,21.61,553.6,2388.11,9062.43,47.49,521.86,2388.14,8.471,394,38.88,23.2396 +99,108,-0.0002,0.0002,642.43,1586.46,1400.47,21.61,554.05,2388.08,9053.91,47.43,522.03,2388.07,8.4337,393,38.92,23.4021 +99,109,0.0024,0.0002,642.49,1585.56,1410.12,21.61,553.73,2388.15,9056.28,47.55,521.96,2388.12,8.3877,392,38.78,23.2756 +99,110,-0.0021,0.0002,642.51,1591.79,1410.84,21.61,553.76,2388.12,9054.64,47.42,521.6,2388.05,8.468,391,38.85,23.3668 +99,111,-0.0046,0.0002,642.76,1593.84,1410.1,21.61,553.47,2388.06,9053.64,47.64,521.63,2388.11,8.4347,392,39.01,23.355 +99,112,0.0031,-0.0002,642.45,1589.53,1411.06,21.61,553.68,2388.02,9052.55,47.46,521.63,2388.1,8.3894,393,38.83,23.2951 +99,113,-0.0,-0.0003,643.2,1590.71,1402.66,21.61,553.72,2388.13,9055.8,47.47,521.29,2388.06,8.4388,393,39.1,23.3315 +99,114,-0.0012,-0.0004,643.2,1585.4,1404.81,21.61,553.8,2388.1,9060.98,47.84,520.96,2388.1,8.4255,393,38.86,23.332 +99,115,-0.0044,-0.0002,642.49,1589.41,1408.43,21.61,553.49,2388.05,9060.78,47.51,521.38,2388.08,8.4265,394,38.93,23.2668 +99,116,-0.0016,0.0002,642.41,1594.89,1404.82,21.61,553.57,2388.1,9063.32,47.56,521.69,2388.08,8.3947,393,38.76,23.2987 +99,117,0.0004,0.0003,642.27,1592.28,1404.82,21.61,553.24,2388.06,9053.64,47.35,521.59,2388.1,8.4047,391,38.81,23.2542 +99,118,0.0009,-0.0,642.24,1583.29,1407.97,21.61,554.01,2388.07,9055.49,47.37,522.07,2388.09,8.4033,392,38.81,23.3944 +99,119,0.0002,-0.0002,642.81,1587.63,1409.06,21.61,553.18,2388.11,9061.86,47.48,521.54,2388.11,8.4483,392,38.66,23.2476 +99,120,-0.0024,-0.0002,641.98,1592.68,1396.96,21.61,553.28,2388.08,9055.34,47.32,521.4,2388.09,8.4516,393,38.86,23.3471 +99,121,-0.0006,0.0,642.61,1591.59,1407.89,21.61,553.41,2388.09,9056.11,47.49,521.72,2388.1,8.4493,394,38.92,23.3184 +99,122,0.0008,0.0003,642.52,1587.8,1403.28,21.61,553.79,2388.13,9044.04,47.51,521.59,2388.09,8.4532,395,38.82,23.2366 +99,123,-0.0037,-0.0001,642.57,1592.45,1409.76,21.61,553.77,2388.11,9057.6,47.67,521.58,2388.11,8.4157,392,38.91,23.217 +99,124,-0.0033,0.0005,642.54,1585.3,1410.71,21.61,553.42,2388.11,9058.02,47.37,521.46,2388.16,8.4694,394,38.82,23.3309 +99,125,-0.002,-0.0001,643.0,1592.82,1412.87,21.61,553.07,2388.14,9057.44,47.41,521.56,2388.08,8.4111,395,38.83,23.2922 +99,126,-0.0015,-0.0003,642.88,1589.06,1410.82,21.61,553.5,2388.12,9053.92,47.4,521.4,2388.1,8.4402,393,38.74,23.2894 +99,127,-0.0008,-0.0003,642.76,1592.09,1409.56,21.61,553.3,2388.11,9059.83,47.45,521.55,2388.1,8.4312,394,38.86,23.3106 +99,128,0.0006,0.0002,642.66,1586.95,1414.18,21.61,553.66,2388.1,9052.85,47.33,521.53,2388.11,8.4452,393,38.94,23.2365 +99,129,-0.0017,-0.0002,642.48,1590.45,1408.14,21.61,553.01,2388.09,9058.22,47.57,521.06,2388.1,8.4071,395,38.74,23.3063 +99,130,0.0011,0.0,643.04,1587.66,1407.25,21.61,553.49,2388.13,9062.15,47.69,521.27,2388.06,8.4387,393,38.93,23.3177 +99,131,-0.0031,-0.0002,643.03,1591.33,1414.63,21.61,553.63,2388.12,9054.7,47.54,521.46,2388.11,8.4708,395,38.8,23.2895 +99,132,0.0038,0.0002,642.63,1589.21,1421.31,21.61,553.14,2388.08,9056.36,47.56,521.06,2388.09,8.4382,395,38.77,23.2553 +99,133,0.0059,0.0,643.3,1595.48,1415.53,21.61,553.67,2388.1,9057.28,47.57,521.19,2388.09,8.4649,394,38.86,23.2886 +99,134,-0.0006,-0.0,642.18,1584.97,1408.22,21.61,553.65,2388.18,9062.28,47.34,521.55,2388.14,8.4438,393,38.83,23.2863 +99,135,0.0034,0.0002,642.7,1593.27,1414.14,21.61,553.27,2388.14,9053.98,47.53,521.09,2388.15,8.4574,393,38.52,23.2615 +99,136,0.0004,-0.0001,642.9,1588.16,1415.75,21.61,553.42,2388.1,9052.69,47.58,521.53,2388.13,8.4513,394,38.72,23.3528 +99,137,-0.0018,0.0004,642.55,1587.37,1420.92,21.61,553.01,2388.11,9058.18,47.53,520.93,2388.15,8.4433,394,38.93,23.2642 +99,138,0.003,0.0002,642.74,1591.33,1414.33,21.61,552.29,2388.16,9049.21,47.75,521.69,2388.08,8.5135,393,38.86,23.362 +99,139,-0.0002,0.0004,642.55,1592.34,1405.81,21.61,553.65,2388.11,9056.76,47.61,520.91,2388.16,8.4625,393,38.79,23.1976 +99,140,-0.0025,-0.0001,642.93,1595.86,1409.95,21.61,552.99,2388.02,9058.8,47.64,520.85,2388.13,8.4712,394,38.76,23.2131 +99,141,0.0004,0.0001,642.79,1593.26,1412.81,21.61,552.91,2388.14,9056.61,47.61,521.41,2388.13,8.465,394,38.69,23.2406 +99,142,-0.0033,-0.0002,642.61,1592.68,1410.71,21.61,552.89,2388.16,9051.01,47.7,521.32,2388.08,8.4563,395,38.78,23.2047 +99,143,0.0002,-0.0004,642.71,1592.74,1412.67,21.61,553.53,2388.15,9057.33,47.56,521.2,2388.18,8.4053,394,38.84,23.3185 +99,144,-0.0014,0.0004,643.05,1591.17,1417.14,21.61,552.66,2388.19,9061.7,47.59,521.06,2388.09,8.4578,392,38.77,23.2809 +99,145,0.0022,-0.0002,642.99,1588.93,1411.67,21.61,552.04,2388.12,9057.82,47.77,520.63,2388.19,8.4887,393,38.83,23.1053 +99,146,-0.0024,-0.0002,642.76,1589.84,1415.07,21.61,552.24,2388.11,9061.93,47.58,521.29,2388.12,8.4493,394,38.83,23.3851 +99,147,0.002,0.0001,642.75,1593.61,1418.73,21.61,553.16,2388.17,9055.58,47.86,521.38,2388.15,8.4573,395,38.62,23.3479 +99,148,-0.0029,0.0002,642.34,1588.7,1413.67,21.61,553.47,2388.12,9059.64,47.68,521.16,2388.16,8.474,394,38.83,23.1142 +99,149,-0.0005,0.0005,643.31,1594.62,1408.22,21.61,552.93,2388.17,9061.51,47.64,520.59,2388.1,8.4476,395,38.89,23.2288 +99,150,0.0006,-0.0001,643.04,1587.67,1413.24,21.61,552.77,2388.14,9061.79,47.78,520.71,2388.12,8.4683,394,38.75,23.1938 +99,151,0.005,0.0004,642.46,1593.87,1412.51,21.61,552.61,2388.16,9061.25,47.71,521.2,2388.18,8.4461,393,38.94,23.2105 +99,152,-0.0034,0.0003,642.99,1596.35,1413.5,21.61,552.2,2388.14,9058.32,47.91,520.47,2388.11,8.4645,394,38.63,23.2544 +99,153,0.0031,0.0001,643.67,1593.08,1413.79,21.61,553.58,2388.18,9048.05,47.69,520.73,2388.17,8.4957,394,38.86,23.2623 +99,154,0.0018,-0.0,643.34,1595.65,1406.34,21.61,552.84,2388.13,9062.73,47.87,520.54,2388.13,8.4735,393,38.74,23.2378 +99,155,-0.0031,0.0,642.79,1591.83,1410.65,21.61,553.18,2388.18,9058.64,47.72,520.89,2388.22,8.4634,394,38.62,23.2935 +99,156,0.0003,0.0001,642.7,1595.69,1418.76,21.61,552.63,2388.18,9054.81,47.75,520.85,2388.19,8.471,395,38.56,23.2711 +99,157,-0.0019,0.0001,643.21,1593.98,1411.48,21.61,552.36,2388.17,9057.03,47.69,521.02,2388.17,8.4301,395,38.76,23.2735 +99,158,-0.0008,-0.0,642.98,1586.36,1419.16,21.61,552.35,2388.2,9054.63,47.77,521.35,2388.16,8.4548,396,38.48,23.1447 +99,159,0.001,0.0005,643.58,1589.34,1423.07,21.61,552.92,2388.15,9059.55,47.78,520.47,2388.18,8.4303,394,38.78,23.1769 +99,160,0.0031,-0.0001,643.03,1589.34,1420.74,21.61,553.19,2388.17,9052.95,47.79,520.77,2388.18,8.4822,395,38.65,23.1901 +99,161,0.003,0.0002,642.73,1595.02,1423.85,21.61,552.24,2388.21,9046.66,47.95,520.9,2388.2,8.4929,394,38.86,23.1594 +99,162,-0.0007,0.0001,643.03,1592.73,1421.55,21.61,552.93,2388.21,9059.79,47.94,520.72,2388.18,8.477,395,38.73,23.1239 +99,163,-0.0018,0.0002,643.32,1602.25,1423.21,21.61,552.32,2388.25,9059.23,47.8,519.99,2388.22,8.514,395,38.66,23.2784 +99,164,-0.004,0.0,643.19,1587.96,1418.84,21.61,552.57,2388.18,9053.15,47.81,520.27,2388.16,8.5064,394,38.76,23.087 +99,165,0.0007,-0.0002,643.35,1594.52,1411.23,21.61,552.19,2388.18,9060.26,47.79,520.43,2388.17,8.5103,395,38.74,23.2613 +99,166,0.0011,-0.0005,642.94,1594.5,1416.34,21.61,552.06,2388.2,9058.1,47.87,520.2,2388.21,8.4852,397,38.54,23.1342 +99,167,0.0039,-0.0004,643.32,1596.06,1414.56,21.61,551.99,2388.21,9055.62,47.95,520.46,2388.26,8.4931,394,38.66,23.0035 +99,168,0.0015,0.0005,643.29,1594.27,1419.05,21.61,551.48,2388.23,9060.87,47.89,519.76,2388.24,8.4851,396,38.54,23.0252 +99,169,0.0028,-0.0003,643.18,1601.47,1412.04,21.61,552.39,2388.19,9066.55,47.97,519.81,2388.23,8.4988,395,38.64,23.1979 +99,170,0.0011,0.0002,643.13,1598.69,1425.74,21.61,552.5,2388.25,9060.82,48.0,520.15,2388.2,8.4981,396,38.67,23.2425 +99,171,0.0005,-0.0002,643.28,1597.62,1424.06,21.61,552.19,2388.23,9054.31,47.83,520.42,2388.27,8.4701,397,38.61,23.1183 +99,172,-0.0012,0.0003,643.2,1601.71,1424.56,21.61,551.69,2388.22,9064.97,48.05,520.6,2388.21,8.4742,395,38.65,23.1243 +99,173,0.0007,-0.0002,643.94,1593.05,1420.66,21.61,551.89,2388.22,9049.51,48.04,520.33,2388.24,8.5194,393,38.39,23.1984 +99,174,-0.002,0.0004,643.6,1597.44,1422.01,21.61,551.7,2388.21,9055.57,48.02,519.91,2388.19,8.5154,396,38.67,23.0744 +99,175,0.0022,-0.0005,643.85,1598.4,1423.7,21.61,551.85,2388.27,9053.73,47.99,520.42,2388.26,8.5181,396,38.51,23.148 +99,176,-0.0005,-0.0004,643.44,1595.16,1420.93,21.61,551.99,2388.21,9057.85,48.06,519.5,2388.26,8.4987,394,38.48,23.224 +99,177,-0.0023,0.0003,643.69,1592.46,1429.64,21.61,551.83,2388.25,9055.1,48.04,520.04,2388.21,8.4787,397,38.63,23.1627 +99,178,-0.0014,0.0,643.65,1603.89,1427.84,21.61,551.81,2388.22,9057.31,48.09,519.46,2388.23,8.5163,396,38.56,23.0589 +99,179,0.0009,0.0002,643.27,1598.04,1430.96,21.61,551.14,2388.29,9058.47,48.14,519.64,2388.31,8.5199,397,38.45,23.1405 +99,180,0.0009,-0.0001,643.35,1616.91,1428.75,21.61,551.23,2388.24,9059.16,48.26,519.32,2388.22,8.4729,396,38.49,22.9396 +99,181,-0.0015,-0.0001,643.72,1600.39,1428.03,21.61,551.09,2388.27,9054.88,48.23,519.6,2388.29,8.4885,396,38.5,23.0425 +99,182,-0.0027,-0.0003,643.52,1605.33,1430.32,21.61,551.61,2388.26,9063.31,48.16,519.32,2388.27,8.5124,393,38.39,22.9674 +99,183,-0.0031,-0.0003,643.96,1606.95,1427.9,21.61,550.86,2388.32,9055.8,48.48,519.69,2388.31,8.5374,395,38.57,23.144 +99,184,-0.001,-0.0001,644.1,1600.2,1436.54,21.61,551.51,2388.29,9060.79,48.12,519.84,2388.33,8.5592,395,38.45,23.0478 +99,185,-0.0019,-0.0004,643.93,1598.42,1421.56,21.61,550.64,2388.29,9050.61,48.29,519.99,2388.24,8.5425,397,38.49,23.1931 +100,10,0.005,-0.0002,642.4,1589.51,1408.18,21.61,553.98,2388.06,9063.84,47.26,521.76,2388.04,8.429,392,39.06,23.4296 +100,11,-0.0011,-0.0005,642.38,1587.75,1403.69,21.61,553.43,2388.02,9062.92,47.46,522.23,2388.02,8.3973,393,39.04,23.4191 +100,12,-0.0032,0.0004,642.82,1584.34,1406.55,21.61,553.81,2388.07,9066.16,47.43,521.76,2388.07,8.3963,393,38.78,23.3514 +100,13,0.0004,-0.0005,642.39,1587.66,1397.0,21.61,553.63,2388.01,9067.1,47.52,521.62,2388.06,8.4317,392,39.02,23.3646 +100,14,0.0037,0.0004,642.2,1591.53,1404.71,21.61,553.2,2388.08,9065.8,47.48,522.16,2388.08,8.4267,391,38.94,23.3218 +100,15,-0.0011,-0.0001,642.89,1584.27,1406.16,21.61,553.92,2388.08,9065.53,47.45,522.12,2388.1,8.427,392,38.83,23.3122 +100,16,-0.0001,0.0003,641.85,1585.17,1402.02,21.61,554.67,2388.1,9058.6,47.39,521.61,2388.09,8.4239,394,38.93,23.375 +100,17,0.0023,0.0003,641.93,1589.53,1402.42,21.61,554.03,2388.04,9062.5,47.17,521.68,2388.05,8.4283,392,38.89,23.2414 +100,18,-0.0033,-0.0005,642.68,1587.3,1401.1,21.61,554.24,2388.02,9068.87,47.4,521.91,2388.04,8.3894,394,38.91,23.3639 +100,19,0.0015,0.0,641.76,1584.41,1401.32,21.61,553.6,2388.08,9064.41,47.36,522.04,2388.07,8.4547,393,38.89,23.4532 +100,20,-0.0009,0.0,642.25,1589.1,1403.74,21.61,553.46,2388.06,9065.2,47.44,521.61,2388.09,8.4159,392,38.84,23.3421 +100,21,-0.0,-0.0005,643.12,1592.96,1400.04,21.61,554.4,2388.07,9060.51,47.4,522.01,2388.04,8.403,393,38.81,23.4146 +100,22,-0.0019,0.0,641.97,1584.66,1408.27,21.61,553.85,2388.07,9069.04,47.36,521.84,2388.1,8.4204,393,39.02,23.3341 +100,23,-0.0002,0.0001,642.36,1585.63,1408.06,21.61,553.77,2388.07,9058.47,47.28,521.65,2388.09,8.4358,392,38.8,23.3439 +100,24,0.0017,-0.0001,642.39,1582.67,1399.26,21.61,554.22,2388.06,9046.8,47.4,521.91,2388.06,8.443,390,38.94,23.2103 +100,25,0.0019,-0.0005,642.8,1591.79,1404.26,21.61,553.44,2388.07,9054.88,47.24,521.69,2388.08,8.4473,391,38.83,23.3884 +100,26,-0.0003,-0.0,642.37,1593.05,1409.27,21.61,553.96,2388.12,9057.56,47.51,522.19,2388.07,8.4029,390,38.71,23.3509 +100,27,0.0002,0.0003,642.5,1587.63,1405.48,21.61,553.96,2388.06,9060.08,47.36,521.84,2388.11,8.4242,392,38.92,23.3996 +100,28,0.0,0.0003,642.5,1586.03,1404.55,21.61,554.32,2388.1,9058.6,47.25,521.56,2388.07,8.4474,394,38.81,23.3865 +100,29,0.0019,0.0001,642.64,1587.14,1410.27,21.61,552.83,2388.04,9051.46,47.33,521.48,2388.01,8.4258,393,38.83,23.3288 +100,30,-0.0009,-0.0003,642.4,1586.59,1398.54,21.61,554.08,2388.08,9061.48,47.37,521.57,2388.03,8.4058,392,38.88,23.3513 +100,31,-0.0002,-0.0003,642.49,1589.08,1402.83,21.61,552.97,2388.02,9065.03,47.32,521.48,2388.11,8.4134,394,38.9,23.4513 +100,32,0.0014,0.0003,642.83,1591.57,1402.16,21.61,554.13,2388.07,9061.1,47.38,521.56,2388.05,8.4457,392,38.84,23.3812 +100,33,-0.0029,0.0003,642.08,1586.01,1400.43,21.61,553.56,2388.07,9059.64,47.4,521.99,2388.08,8.4507,392,38.83,23.3339 +100,34,-0.0035,-0.0004,642.68,1584.24,1403.31,21.61,553.35,2388.06,9061.18,47.33,521.94,2388.08,8.4589,393,38.99,23.4216 +100,35,0.0003,0.0001,642.34,1588.33,1408.75,21.61,553.57,2388.02,9060.37,47.28,521.46,2388.06,8.4023,393,38.88,23.3595 +100,36,-0.0019,0.0003,642.1,1589.13,1404.27,21.61,552.88,2388.16,9057.48,47.44,521.84,2388.03,8.447,393,38.93,23.4056 +100,37,-0.0018,-0.0005,642.35,1584.41,1402.96,21.61,552.92,2388.09,9061.4,47.4,521.76,2388.08,8.4212,393,38.96,23.3381 +100,38,-0.0033,-0.0003,642.09,1591.0,1397.88,21.61,553.7,2388.03,9059.62,47.4,521.82,2388.09,8.4515,393,38.81,23.3758 +100,39,0.0021,0.0004,641.96,1584.63,1410.99,21.61,553.62,2388.04,9063.22,47.51,521.72,2388.09,8.4308,394,38.91,23.3452 +100,40,-0.0007,0.0002,642.55,1586.92,1409.9,21.61,553.36,2388.07,9066.42,47.5,522.24,2388.04,8.4446,392,39.05,23.3823 +100,41,0.001,0.0001,642.52,1590.51,1396.0,21.61,553.94,2388.04,9063.69,47.39,521.99,2388.1,8.4582,392,39.09,23.4122 +100,42,-0.0018,-0.0005,641.65,1593.0,1406.24,21.61,553.89,2388.06,9054.22,47.43,521.73,2388.08,8.4419,392,39.1,23.3482 +100,43,-0.0051,-0.0005,642.8,1587.73,1397.11,21.61,552.69,2388.05,9058.7,47.38,521.77,2388.02,8.4069,392,38.79,23.3366 +100,44,0.0012,-0.0002,642.34,1593.33,1399.12,21.61,553.79,2388.1,9058.39,47.43,522.11,2388.06,8.4225,393,38.99,23.3048 +100,45,0.0006,-0.0004,642.11,1595.56,1403.01,21.61,553.38,2388.13,9066.29,47.45,521.59,2388.09,8.4261,394,38.93,23.3881 +100,46,0.0006,0.0002,641.89,1590.41,1407.74,21.61,553.46,2388.03,9060.94,47.4,522.11,2388.1,8.4179,392,39.0,23.3354 +100,47,0.0049,-0.0003,642.4,1589.47,1400.46,21.61,553.56,2388.07,9064.08,47.33,522.27,2388.01,8.4014,393,38.95,23.4195 +100,48,-0.0008,0.0003,642.22,1593.61,1407.74,21.61,554.66,2388.0,9057.82,47.43,521.79,2388.08,8.465,394,38.9,23.26 +100,49,0.0018,0.0001,642.71,1587.37,1407.65,21.61,554.22,2388.07,9063.27,47.12,522.14,2388.07,8.384,393,38.88,23.405 +100,50,0.0005,0.0004,642.47,1584.2,1403.28,21.61,553.53,2388.07,9063.38,47.31,521.64,2388.05,8.4159,394,38.88,23.3556 +100,51,0.0004,0.0001,642.61,1586.94,1411.15,21.61,553.46,2388.06,9063.29,47.42,521.86,2388.06,8.4078,393,39.0,23.2991 +100,52,0.0025,-0.0004,642.89,1588.31,1404.65,21.61,553.95,2388.06,9058.2,47.34,521.73,2388.06,8.3916,393,38.89,23.3739 +100,53,0.0038,0.0004,642.46,1587.91,1400.06,21.61,553.0,2388.06,9062.4,47.48,521.82,2388.01,8.4381,394,38.89,23.2749 +100,54,-0.0009,-0.0002,642.56,1588.37,1401.73,21.61,553.89,2388.08,9057.81,47.52,521.69,2388.09,8.4083,392,38.83,23.2969 +100,55,-0.0044,-0.0002,642.32,1587.76,1404.22,21.61,554.69,2388.08,9062.75,47.17,521.31,2388.04,8.4419,393,38.89,23.3735 +100,56,0.0019,0.0001,642.68,1579.42,1403.78,21.61,554.32,2388.07,9058.01,47.46,521.39,2388.09,8.4091,393,38.95,23.284 +100,57,-0.0036,-0.0005,642.7,1591.41,1397.21,21.61,553.79,2388.06,9067.46,47.41,521.65,2388.06,8.44,393,38.83,23.2574 +100,58,0.0006,-0.0005,642.81,1583.0,1403.22,21.61,553.78,2388.05,9074.49,47.48,521.39,2388.06,8.4515,393,38.99,23.2474 +100,59,0.0007,-0.0001,642.44,1592.61,1406.87,21.61,554.13,2388.03,9066.0,47.38,521.29,2387.99,8.4109,392,38.8,23.3673 +100,60,-0.0033,0.0004,643.01,1593.27,1410.68,21.6,553.32,2388.09,9065.5,47.46,521.89,2388.02,8.4118,394,38.89,23.2747 +100,61,0.0005,-0.0005,642.22,1590.65,1404.25,21.61,553.08,2388.09,9062.26,47.39,521.73,2388.06,8.3933,392,38.86,23.1918 +100,62,-0.0024,-0.0001,642.83,1584.5,1411.47,21.61,553.36,2388.06,9069.14,47.46,521.62,2388.05,8.4139,393,38.9,23.2975 +100,63,-0.0035,-0.0,642.28,1583.2,1409.0,21.61,553.45,2388.13,9067.22,47.56,521.54,2388.04,8.4332,393,38.94,23.2606 +100,64,-0.0011,-0.0004,641.92,1587.59,1409.97,21.61,553.62,2388.07,9060.04,47.21,521.87,2388.02,8.4417,393,38.84,23.3614 +100,65,-0.0002,-0.0001,642.5,1593.72,1410.59,21.61,553.85,2388.1,9057.44,47.5,522.07,2388.09,8.4227,394,39.09,23.363 +100,66,-0.0005,-0.0002,642.66,1591.48,1407.63,21.61,554.37,2388.1,9068.59,47.46,522.12,2388.05,8.4628,392,38.85,23.4266 +100,67,-0.001,-0.0,642.95,1582.47,1409.41,21.61,553.92,2388.05,9058.27,47.46,521.32,2388.03,8.4598,394,38.85,23.3233 +100,68,-0.0015,0.0004,642.79,1590.2,1404.67,21.61,554.16,2388.04,9066.29,47.45,521.29,2388.05,8.4187,392,38.96,23.2107 +100,69,-0.0013,-0.0005,642.55,1587.13,1415.27,21.61,553.54,2388.08,9062.93,47.5,521.81,2388.08,8.4097,391,38.74,23.401 +100,70,0.0015,-0.0004,642.0,1586.98,1410.26,21.61,554.08,2388.04,9065.12,47.41,521.69,2388.09,8.4377,393,38.85,23.3086 +100,71,-0.0014,-0.0003,642.38,1583.54,1406.45,21.61,552.98,2388.08,9064.33,47.39,521.74,2388.01,8.4235,392,38.98,23.3037 +100,72,0.0015,-0.0004,642.42,1588.02,1410.46,21.61,554.11,2388.1,9059.96,47.49,521.96,2388.05,8.4446,393,38.82,23.3201 +100,73,0.0001,0.0002,642.4,1587.35,1408.64,21.61,554.03,2388.06,9067.13,47.52,522.2,2388.07,8.4052,395,38.98,23.2318 +100,74,-0.0001,-0.0006,642.19,1586.92,1399.46,21.61,554.54,2388.06,9060.54,47.48,521.59,2388.07,8.4239,392,38.94,23.3564 +100,75,-0.0018,0.0004,642.7,1593.66,1407.71,21.61,553.56,2388.04,9065.47,47.35,522.3,2388.06,8.4152,392,38.86,23.3278 +100,76,0.002,-0.0006,642.55,1586.38,1412.76,21.61,554.18,2388.09,9058.75,47.47,521.69,2388.07,8.4369,392,38.72,23.3806 +100,77,0.0039,0.0001,642.68,1586.45,1408.87,21.61,552.69,2388.06,9061.88,47.56,521.8,2388.09,8.4007,394,38.85,23.2574 +100,78,0.0001,0.0003,642.31,1587.27,1405.75,21.61,553.91,2388.07,9057.17,47.36,521.55,2388.05,8.4056,392,38.94,23.2741 +100,79,-0.0009,-0.0003,642.82,1592.63,1399.94,21.61,554.0,2388.08,9056.65,47.6,522.08,2388.05,8.4616,393,38.74,23.3852 +100,80,0.0023,-0.0003,641.8,1590.87,1405.64,21.61,552.95,2388.1,9058.89,47.52,521.69,2388.08,8.4675,396,38.98,23.1682 +100,81,0.0011,0.0002,642.91,1591.13,1403.38,21.61,553.47,2388.04,9066.5,47.44,521.64,2388.09,8.4029,393,39.03,23.351 +100,82,0.0045,0.0002,642.64,1587.28,1404.68,21.61,553.45,2388.09,9059.24,47.55,521.65,2388.06,8.4522,393,38.53,23.2628 +100,83,0.0041,0.0001,642.23,1593.53,1411.11,21.61,553.16,2388.07,9063.2,47.76,521.66,2388.06,8.4351,394,38.68,23.3406 +100,84,-0.0007,-0.0002,642.24,1593.81,1407.46,21.61,553.88,2388.09,9062.73,47.61,521.16,2388.13,8.4455,392,38.99,23.3335 +100,85,0.0016,-0.0004,642.26,1592.0,1412.81,21.61,553.89,2388.08,9064.63,47.33,521.77,2388.07,8.4489,394,38.72,23.2257 +100,86,-0.0001,-0.0005,643.21,1594.06,1406.27,21.61,554.0,2388.1,9067.74,47.62,521.19,2388.14,8.4124,394,38.9,23.3466 +100,87,-0.004,-0.0003,642.26,1590.8,1402.2,21.61,553.2,2388.13,9064.03,47.47,521.71,2388.08,8.4472,393,38.82,23.2879 +100,88,-0.0021,-0.0002,642.97,1592.72,1404.73,21.61,553.62,2388.12,9069.74,47.35,522.09,2388.09,8.44,393,38.83,23.1952 +100,89,-0.0022,-0.0005,642.54,1591.42,1402.37,21.61,553.6,2388.09,9059.75,47.48,520.71,2388.11,8.4265,394,38.96,23.3632 +100,90,0.0022,-0.0005,642.37,1594.18,1410.9,21.61,553.2,2388.05,9055.89,47.53,521.21,2388.11,8.4351,393,39.1,23.3733 +100,91,-0.0015,0.0004,642.87,1583.41,1406.11,21.61,553.02,2388.05,9066.52,47.47,521.5,2388.08,8.4711,392,38.92,23.3175 +100,92,0.0008,0.0001,642.86,1587.74,1405.16,21.61,553.48,2388.08,9063.38,47.47,521.67,2388.09,8.4358,392,38.99,23.3381 +100,93,-0.0043,0.0001,642.63,1591.57,1415.6,21.61,553.58,2388.02,9064.71,47.45,521.68,2388.05,8.4364,394,38.8,23.3228 +100,94,-0.0028,-0.0002,642.88,1589.58,1404.38,21.61,552.61,2388.11,9058.25,47.62,522.08,2388.07,8.4,392,38.94,23.3167 +100,95,-0.0025,0.0001,642.64,1588.7,1405.42,21.61,553.16,2388.05,9065.4,47.47,521.8,2388.08,8.4224,393,38.73,23.3069 +100,96,0.0003,-0.0005,642.92,1580.58,1410.85,21.61,553.22,2388.06,9066.69,47.48,521.21,2388.1,8.4191,394,38.77,23.199 +100,97,0.0037,-0.0001,642.54,1594.51,1405.88,21.61,553.37,2388.11,9073.86,47.47,521.1,2388.04,8.4248,391,38.84,23.389 +100,98,-0.0024,0.0003,642.79,1589.34,1404.17,21.61,553.11,2388.08,9068.4,47.64,521.56,2388.09,8.4425,393,38.83,23.2491 +100,99,-0.0004,0.0,642.95,1594.81,1405.84,21.61,553.31,2388.09,9062.18,47.48,521.58,2388.06,8.4007,393,38.91,23.3667 +100,100,-0.0013,-0.0002,642.35,1594.59,1404.4,21.61,552.82,2388.13,9066.9,47.68,521.05,2388.05,8.4521,395,38.76,23.2905 +100,101,-0.003,-0.0004,642.19,1585.58,1415.4,21.61,553.87,2388.06,9062.9,47.65,521.65,2388.12,8.4287,394,38.83,23.3244 +100,102,0.0028,-0.0004,642.81,1587.36,1401.05,21.61,553.26,2388.09,9067.09,47.59,521.41,2388.06,8.442,394,38.98,23.1838 +100,103,-0.0014,0.0001,642.7,1588.14,1405.28,21.61,552.47,2388.08,9066.73,47.59,521.45,2388.13,8.4459,395,38.67,23.1666 +100,104,0.0017,-0.0001,642.25,1584.94,1405.65,21.61,553.85,2388.07,9060.21,47.38,521.94,2388.09,8.4466,392,38.88,23.2623 +100,105,0.0008,-0.0001,642.51,1588.76,1407.18,21.61,553.42,2388.14,9067.65,47.39,522.01,2388.08,8.4303,393,38.82,23.3207 +100,106,-0.0033,-0.0005,642.41,1592.35,1406.61,21.61,553.62,2388.1,9066.56,47.44,521.3,2388.08,8.4096,393,38.83,23.2998 +100,107,-0.0028,0.0002,642.17,1586.39,1404.62,21.61,553.13,2388.11,9066.82,47.51,521.56,2388.1,8.4267,393,38.96,23.2582 +100,108,-0.0049,-0.0002,642.11,1595.71,1404.27,21.61,553.35,2388.13,9068.53,47.46,521.22,2388.09,8.4318,394,38.73,23.4211 +100,109,0.0029,0.0001,642.23,1594.45,1406.13,21.61,552.91,2388.09,9064.06,47.39,521.83,2388.06,8.4285,394,38.93,23.3845 +100,110,0.0006,-0.0004,643.37,1587.51,1406.25,21.61,553.23,2388.14,9062.22,47.46,520.96,2388.14,8.4458,394,38.52,23.2913 +100,111,-0.0019,-0.0005,643.12,1585.29,1410.89,21.61,553.99,2388.08,9065.76,47.54,521.82,2388.12,8.448,394,38.78,23.323 +100,112,-0.0029,0.0003,642.88,1588.53,1399.33,21.61,553.62,2388.06,9058.52,47.56,521.34,2388.08,8.4062,392,38.88,23.2731 +100,113,0.0003,-0.0002,642.91,1585.4,1411.93,21.61,553.45,2388.09,9061.44,47.52,521.35,2388.08,8.4392,395,38.62,23.252 +100,114,-0.0001,-0.0005,642.77,1589.75,1408.96,21.61,553.7,2388.06,9066.23,47.29,520.96,2388.1,8.4242,394,38.73,23.328 +100,115,-0.0012,-0.0001,643.23,1593.19,1410.42,21.61,553.35,2388.09,9067.02,47.33,521.31,2388.06,8.4303,393,38.86,23.3282 +100,116,0.0006,0.0,642.36,1591.22,1407.75,21.61,553.4,2388.11,9071.17,47.56,521.41,2388.07,8.4126,392,39.05,23.3016 +100,117,0.0006,-0.0001,642.77,1590.85,1412.0,21.61,552.79,2388.1,9060.4,47.51,521.74,2388.13,8.4345,394,38.79,23.3007 +100,118,0.0018,-0.0002,642.21,1586.56,1405.31,21.61,553.25,2388.09,9067.24,47.52,521.33,2388.09,8.459,393,38.81,23.2483 +100,119,0.002,-0.0003,642.57,1588.46,1405.24,21.61,553.85,2388.13,9066.63,47.81,521.1,2388.07,8.4512,394,38.77,23.2437 +100,120,0.0004,0.0003,642.66,1588.09,1407.57,21.61,553.76,2388.07,9060.17,47.7,520.73,2388.07,8.4193,394,38.78,23.3422 +100,121,0.0001,-0.0003,642.82,1595.0,1408.18,21.61,552.88,2388.09,9066.41,47.67,521.09,2388.11,8.4716,393,38.8,23.2392 +100,122,-0.0003,-0.0,642.09,1595.79,1409.35,21.61,553.2,2388.11,9065.94,47.5,521.51,2388.17,8.4376,394,38.94,23.2959 +100,123,-0.0012,-0.0005,643.57,1585.7,1406.45,21.61,552.96,2388.09,9063.13,47.59,521.67,2388.05,8.4335,392,38.81,23.3136 +100,124,-0.0016,0.0002,642.83,1593.15,1411.26,21.61,553.62,2388.1,9067.61,47.77,521.18,2388.08,8.4668,392,38.91,23.3014 +100,125,-0.0017,-0.0001,642.91,1585.48,1408.02,21.61,553.26,2388.11,9071.88,47.74,520.96,2388.13,8.4664,394,38.73,23.2742 +100,126,0.0056,0.0002,642.79,1596.77,1411.89,21.61,552.67,2388.1,9066.84,47.62,521.41,2388.14,8.4438,393,38.77,23.2112 +100,127,-0.0017,-0.0005,642.65,1589.32,1410.21,21.61,552.94,2388.13,9066.14,47.7,521.08,2388.16,8.4465,394,38.7,23.1842 +100,128,-0.0021,0.0,643.19,1592.88,1415.34,21.61,552.98,2388.03,9064.52,47.6,521.22,2388.15,8.4586,394,38.9,23.2595 +100,129,0.0042,-0.0005,642.47,1587.63,1410.71,21.61,552.83,2388.04,9067.77,47.59,521.44,2388.17,8.4431,394,38.77,23.3381 +100,130,-0.0022,0.0001,642.51,1590.18,1405.59,21.61,553.51,2388.07,9058.88,47.49,521.14,2388.08,8.4389,393,38.73,23.2763 +100,131,0.002,0.0004,643.61,1594.07,1411.33,21.61,552.92,2388.09,9066.6,47.71,521.53,2388.09,8.4567,393,38.8,23.2973 +100,132,-0.0021,-0.0003,643.02,1593.41,1411.12,21.61,552.85,2388.17,9064.98,47.63,521.31,2388.11,8.4516,393,38.82,23.3347 +100,133,0.0002,-0.0001,642.53,1591.15,1411.94,21.61,552.8,2388.17,9063.15,47.64,521.2,2388.14,8.4328,395,38.9,23.1969 +100,134,-0.0006,-0.0004,643.12,1603.18,1411.99,21.61,553.29,2388.12,9054.82,47.46,521.09,2388.12,8.4667,393,38.7,23.2011 +100,135,-0.0027,0.0,643.44,1589.27,1414.95,21.61,552.43,2388.1,9066.88,47.51,520.78,2388.05,8.4929,394,38.69,23.3241 +100,136,0.0016,-0.0004,642.82,1599.46,1410.87,21.61,553.97,2388.12,9066.74,47.7,521.35,2388.11,8.4474,393,38.76,23.3341 +100,137,-0.0009,0.0003,642.7,1591.19,1409.19,21.61,553.47,2388.13,9063.52,47.43,521.22,2388.13,8.5138,392,38.56,23.2542 +100,138,-0.002,-0.0005,642.83,1587.62,1404.92,21.61,553.41,2388.11,9064.25,47.56,521.15,2388.16,8.4818,394,38.79,23.2457 +100,139,-0.0017,0.0002,642.86,1596.71,1408.67,21.61,552.64,2388.1,9064.89,47.62,521.29,2388.12,8.439,394,38.85,23.3012 +100,140,0.0023,-0.0003,642.41,1597.2,1414.0,21.61,553.06,2388.13,9067.07,47.63,521.31,2388.12,8.4449,395,38.74,23.2543 +100,141,-0.0002,-0.0002,642.86,1589.13,1415.16,21.61,553.79,2388.04,9063.08,47.54,521.42,2388.13,8.4557,393,38.75,23.2786 +100,142,-0.0009,-0.0003,642.81,1590.02,1410.49,21.61,552.93,2388.14,9069.61,47.68,520.76,2388.08,8.4382,395,38.58,23.3425 +100,143,-0.0031,-0.0003,642.83,1588.03,1413.06,21.61,553.04,2388.11,9059.99,47.77,520.98,2388.13,8.4352,394,38.52,23.1846 +100,144,-0.0033,-0.0002,642.8,1598.73,1409.35,21.61,552.95,2388.07,9065.98,47.71,521.25,2388.11,8.4737,394,38.72,23.2196 +100,145,0.0036,0.0004,643.41,1593.38,1408.33,21.61,552.45,2388.11,9066.79,47.71,521.28,2388.16,8.4459,395,38.66,23.2525 +100,146,0.0017,-0.0003,642.77,1597.53,1412.87,21.61,552.33,2388.15,9075.81,47.53,521.49,2388.16,8.4497,394,38.91,23.153 +100,147,-0.0019,0.0003,643.19,1598.86,1419.67,21.61,553.15,2388.14,9057.93,47.71,521.16,2388.12,8.4466,393,38.75,23.153 +100,148,0.0017,0.0003,642.73,1589.99,1413.27,21.61,553.04,2388.12,9063.57,47.65,521.17,2388.13,8.4855,394,38.84,23.3424 +100,149,0.0028,-0.0001,643.01,1596.05,1426.01,21.61,552.96,2388.19,9070.91,47.83,521.14,2388.13,8.4962,394,38.51,23.2242 +100,150,-0.0001,-0.0003,642.43,1601.62,1411.04,21.61,552.98,2388.09,9066.81,47.76,521.05,2388.13,8.4376,395,38.62,23.2022 +100,151,0.0045,0.0003,642.67,1586.29,1418.1,21.61,552.88,2388.17,9066.86,47.75,521.6,2388.13,8.4643,394,38.75,23.2139 +100,152,-0.001,-0.0002,643.14,1598.52,1410.88,21.61,552.67,2388.12,9074.93,47.79,521.01,2388.1,8.4919,394,38.82,23.2959 +100,153,-0.001,-0.0003,642.87,1594.54,1411.08,21.61,552.67,2388.15,9062.27,47.65,521.16,2388.14,8.4594,394,38.77,23.1241 +100,154,0.0003,0.0003,642.99,1597.59,1412.94,21.61,552.55,2388.14,9062.72,47.76,520.76,2388.16,8.475,394,38.73,23.1611 +100,155,0.0019,0.0001,642.81,1593.42,1420.62,21.61,552.37,2388.16,9063.61,47.88,520.59,2388.18,8.4722,396,38.83,23.2825 +100,156,0.0018,-0.0004,643.04,1592.9,1413.23,21.61,552.58,2388.12,9062.58,47.8,520.44,2388.14,8.4768,392,38.55,23.2019 +100,157,0.002,-0.0002,643.17,1595.25,1417.47,21.61,552.59,2388.09,9069.23,47.82,521.34,2388.14,8.4383,394,38.65,23.2264 +100,158,0.0014,-0.0002,643.47,1595.56,1408.43,21.61,552.78,2388.09,9068.32,47.98,520.67,2388.15,8.4588,395,38.81,23.1768 +100,159,-0.0011,0.0002,643.33,1594.51,1424.49,21.61,553.07,2388.14,9067.19,47.73,520.63,2388.19,8.4446,393,38.59,23.3186 +100,160,0.001,0.0001,643.15,1597.87,1416.23,21.61,553.32,2388.17,9070.9,47.97,520.87,2388.12,8.4628,395,38.62,23.1095 +100,161,-0.0052,-0.0002,642.92,1594.62,1414.97,21.61,552.62,2388.18,9063.21,47.9,520.88,2388.11,8.4391,393,38.55,23.1508 +100,162,0.0014,-0.0,642.97,1594.75,1410.76,21.61,553.33,2388.16,9063.32,47.79,520.25,2388.16,8.4718,394,38.83,23.2636 +100,163,0.0009,0.0003,643.34,1593.58,1412.89,21.61,552.34,2388.12,9072.13,48.01,521.09,2388.15,8.4537,396,38.44,23.1556 +100,164,-0.0047,-0.0004,642.9,1593.06,1425.39,21.61,552.14,2388.15,9067.03,47.86,521.08,2388.14,8.4723,395,38.74,23.0972 +100,165,0.001,0.0004,643.23,1599.78,1417.44,21.61,552.29,2388.17,9057.78,47.82,520.31,2388.19,8.4663,395,38.41,23.0551 +100,166,0.0008,-0.0002,643.2,1597.24,1419.21,21.61,551.67,2388.15,9068.65,47.64,520.35,2388.13,8.4679,395,38.71,23.0986 +100,167,0.0018,-0.0004,643.57,1596.86,1416.92,21.61,552.52,2388.14,9076.28,47.76,520.89,2388.17,8.4668,396,38.61,23.2275 +100,168,-0.0027,-0.0002,642.97,1593.42,1423.07,21.61,552.17,2388.22,9062.91,47.81,520.01,2388.2,8.4975,395,38.61,23.2625 +100,169,-0.0019,-0.0003,642.85,1593.42,1425.93,21.61,552.57,2388.13,9072.65,47.96,520.42,2388.14,8.4933,395,38.71,23.2161 +100,170,-0.0034,0.0003,642.71,1593.42,1427.68,21.61,552.22,2388.15,9071.43,48.01,520.06,2388.19,8.5044,394,38.63,23.1563 +100,171,-0.0005,-0.0004,643.05,1593.56,1420.48,21.61,551.8,2388.19,9059.15,47.9,520.5,2388.18,8.5085,396,38.81,23.1513 +100,172,-0.0037,0.0001,642.97,1602.35,1424.93,21.61,552.26,2388.18,9068.14,48.05,521.04,2388.19,8.497,394,38.49,23.1922 +100,173,0.0006,0.0004,643.4,1595.53,1418.63,21.61,552.3,2388.22,9065.81,47.95,520.22,2388.17,8.4856,393,38.42,23.1793 +100,174,0.0011,0.0002,642.91,1602.24,1425.52,21.61,552.22,2388.16,9061.27,48.02,520.44,2388.15,8.499,395,38.8,23.1784 +100,175,-0.0013,-0.0005,642.85,1602.03,1416.24,21.61,551.81,2388.23,9071.42,47.69,521.17,2388.17,8.4851,394,38.54,23.0713 +100,176,-0.0017,-0.0003,643.33,1601.44,1421.4,21.61,552.69,2388.18,9064.75,47.88,520.76,2388.19,8.4405,396,38.46,23.102 +100,177,-0.0011,-0.0005,643.34,1593.22,1418.91,21.61,552.7,2388.15,9075.12,48.09,520.28,2388.18,8.5133,395,38.6,23.0352 +100,178,0.0005,-0.0003,642.98,1594.8,1422.69,21.61,551.86,2388.18,9064.38,47.92,519.81,2388.16,8.4876,395,38.55,23.2252 +100,179,0.002,0.0004,643.22,1599.36,1423.94,21.61,551.83,2388.23,9069.16,47.94,520.36,2388.19,8.5218,396,38.62,23.1685 +100,180,-0.001,0.0001,643.64,1595.98,1416.45,21.61,552.05,2388.24,9062.98,47.77,520.8,2388.22,8.515,395,38.54,23.2345 +100,181,0.0024,-0.0005,643.25,1597.83,1414.63,21.61,552.24,2388.18,9065.34,47.99,520.42,2388.22,8.5518,396,38.52,23.1774 +100,182,0.0007,-0.0001,643.52,1604.31,1417.73,21.61,551.47,2388.19,9063.62,47.75,520.05,2388.22,8.4855,396,38.41,23.1289 +100,183,-0.0011,-0.0002,643.34,1594.6,1427.27,21.61,551.83,2388.2,9066.08,48.0,520.64,2388.23,8.5006,395,38.49,23.0709 +100,184,0.0027,-0.0004,642.91,1598.88,1420.89,21.61,551.72,2388.25,9064.14,47.98,520.05,2388.2,8.4989,396,38.44,23.1229 +100,185,-0.0014,0.0004,643.95,1600.81,1420.34,21.61,551.92,2388.19,9069.95,47.75,520.71,2388.2,8.4804,395,38.6,23.2127 +100,186,0.0026,0.0004,643.61,1593.55,1425.32,21.61,552.28,2388.2,9066.46,48.06,520.66,2388.27,8.4735,394,38.51,23.1173 +100,187,0.0015,0.0002,643.63,1596.96,1421.49,21.61,551.53,2388.22,9065.94,48.04,520.15,2388.22,8.5087,396,38.67,23.2308 +100,188,-0.0008,-0.0002,643.19,1597.77,1426.57,21.61,550.77,2388.26,9067.68,48.29,519.98,2388.21,8.4814,395,38.36,23.0552 +100,189,0.0015,0.0001,643.69,1599.85,1423.15,21.61,551.61,2388.18,9069.69,47.99,519.5,2388.24,8.487,397,38.65,23.0591 +100,190,-0.0001,0.0002,643.12,1594.45,1426.04,21.61,551.06,2388.21,9064.74,47.99,519.52,2388.26,8.5162,395,38.42,23.0603 +100,191,-0.0005,-0.0,643.69,1610.87,1427.19,21.61,551.78,2388.26,9068.9,48.07,519.8,2388.28,8.5092,398,38.39,23.1218 +100,192,-0.0009,0.0001,643.53,1601.23,1419.48,21.61,551.14,2388.17,9060.45,48.18,520.59,2388.21,8.4892,397,38.56,23.077 +100,193,-0.0001,0.0002,643.09,1599.81,1428.93,21.61,552.04,2388.29,9067.57,48.19,520.11,2388.19,8.5424,397,38.47,23.023 +100,194,-0.0011,0.0003,643.72,1597.29,1427.41,21.61,551.99,2388.23,9068.85,48.12,519.55,2388.22,8.5215,394,38.38,23.1324 +100,195,-0.0002,-0.0001,643.41,1600.04,1431.9,21.61,551.42,2388.23,9069.69,48.22,519.71,2388.28,8.5519,394,38.14,23.1923 +100,196,-0.0004,-0.0003,643.49,1597.98,1428.63,21.61,551.43,2388.19,9065.52,48.07,519.49,2388.26,8.4956,397,38.49,22.9735 +100,197,-0.0016,-0.0005,643.54,1604.5,1433.58,21.61,550.86,2388.23,9065.11,48.04,519.68,2388.22,8.5139,395,38.3,23.1594 +100,198,0.0004,0.0,643.42,1602.46,1428.18,21.61,550.94,2388.24,9065.9,48.09,520.01,2388.24,8.5646,398,38.44,22.9333 +100,199,-0.0011,0.0003,643.23,1605.26,1426.53,21.61,550.68,2388.25,9073.72,48.39,519.67,2388.23,8.5389,395,38.29,23.064 +100,200,-0.0032,-0.0005,643.85,1600.38,1432.14,21.61,550.79,2388.26,9061.48,48.2,519.3,2388.26,8.5036,396,38.37,23.0522 diff --git a/containers/predictive_maintenance/remaining_records_test_filtered.csv b/containers/predictive_maintenance/remaining_records_test_filtered.csv new file mode 100644 index 0000000..31eec5f --- /dev/null +++ b/containers/predictive_maintenance/remaining_records_test_filtered.csv @@ -0,0 +1,1455 @@ +engine_no,time_in_cycles,op_setting_1,op_setting_2,sensor_2,sensor_3,sensor_4,sensor_6,sensor_7,sensor_8,sensor_9,sensor_11,sensor_12,sensor_13,sensor_15,sensor_17,sensor_20,sensor_21 +1,10,-0.0007,-0.0003,642.37,1592.2,1402.29,21.61,553.36,2388.12,9048.97,47.6,521.14,2388.07,8.4531,392,38.8,23.2907 +1,11,-0.001,0.0003,642.47,1592.71,1412.44,21.61,554.14,2388.16,9051.27,47.69,520.8,2388.07,8.4125,394,38.82,23.4365 +1,12,-0.0026,-0.0001,643.0,1581.29,1407.38,21.61,553.55,2388.18,9045.24,47.57,521.06,2388.15,8.4162,394,38.87,23.3298 +1,13,-0.0018,0.0003,643.31,1592.33,1405.14,21.61,553.8,2388.12,9046.7,47.49,521.54,2388.12,8.4265,393,38.86,23.2345 +1,14,-0.0014,-0.0004,642.94,1589.91,1408.12,21.61,553.06,2388.09,9048.72,47.35,521.11,2388.11,8.4531,393,38.82,23.3559 +1,15,0.0013,-0.0001,642.22,1592.95,1404.86,21.61,554.61,2388.18,9050.76,47.59,521.63,2388.1,8.4178,393,38.99,23.1797 +1,16,-0.0021,0.0002,642.41,1585.13,1403.71,21.61,553.97,2388.07,9046.65,47.58,521.41,2388.15,8.4331,394,38.67,23.3922 +1,17,-0.0008,-0.0004,642.62,1590.64,1409.69,21.61,553.95,2388.11,9045.23,47.49,521.49,2388.13,8.4058,393,38.94,23.3341 +1,18,-0.0049,-0.0002,642.27,1588.16,1412.6,21.61,553.81,2388.13,9044.59,47.52,521.2,2388.13,8.4239,391,38.78,23.327 +1,19,0.0007,0.0005,642.68,1596.79,1408.97,21.61,553.24,2388.1,9046.96,47.55,521.24,2388.14,8.4224,393,38.9,23.2769 +1,20,0.0002,-0.0001,642.89,1586.86,1407.65,21.61,553.67,2388.13,9046.24,47.43,521.67,2388.08,8.4372,394,39.04,23.2657 +1,21,0.0016,-0.0004,642.86,1594.72,1404.49,21.61,553.76,2388.13,9049.54,47.55,521.72,2388.07,8.4298,392,38.96,23.3372 +1,22,0.0006,-0.0003,642.81,1588.36,1409.01,21.61,554.01,2388.17,9038.25,47.54,521.84,2388.09,8.4275,391,38.87,23.253 +1,23,0.0012,-0.0003,642.64,1593.21,1403.92,21.61,553.35,2388.08,9045.89,47.17,521.56,2388.05,8.4223,392,39.04,23.2086 +1,24,0.0016,0.0003,642.74,1588.51,1407.22,21.61,553.65,2388.09,9054.16,47.48,521.38,2388.1,8.4551,391,38.84,23.3228 +1,25,-0.0017,0.0005,642.37,1589.24,1409.74,21.61,553.19,2388.14,9047.34,47.31,521.55,2388.12,8.4276,392,38.74,23.2553 +1,26,0.0001,0.0002,642.76,1581.49,1410.57,21.61,553.19,2388.13,9051.64,47.59,521.54,2388.13,8.4273,394,38.84,23.3767 +1,27,0.0004,0.0005,642.41,1582.28,1410.61,21.61,553.87,2388.12,9047.26,47.51,521.32,2388.1,8.449,393,39.02,23.3578 +1,28,-0.0007,0.0005,642.12,1590.92,1409.23,21.61,554.27,2388.1,9056.44,47.58,521.61,2388.1,8.4467,393,38.96,23.283 +1,29,0.0034,-0.0,642.79,1583.54,1409.43,21.61,553.21,2388.11,9047.45,47.6,521.29,2388.13,8.4204,393,38.63,23.2957 +1,30,-0.0016,-0.0003,642.86,1594.49,1400.58,21.61,553.52,2388.15,9048.31,47.4,521.62,2388.12,8.4577,393,38.9,23.2759 +1,31,-0.0004,-0.0001,642.62,1585.54,1404.71,21.61,553.64,2388.09,9043.46,47.59,521.44,2388.14,8.4193,392,38.72,23.2314 +1,32,0.0015,-0.0001,642.79,1596.75,1408.2,21.61,552.8,2388.06,9048.38,47.52,521.3,2388.1,8.4478,393,38.7,23.1458 +1,33,-0.0009,-0.0,642.41,1589.35,1406.3,21.61,553.1,2388.06,9044.7,47.51,521.33,2388.08,8.4577,393,38.94,23.3029 +1,34,0.0015,-0.0004,642.57,1591.88,1409.24,21.61,553.1,2388.1,9036.32,47.64,521.64,2388.14,8.4652,394,38.6,23.3334 +1,35,0.0021,0.0,642.79,1588.11,1407.2,21.61,553.78,2388.14,9048.56,47.46,521.68,2388.17,8.4219,392,38.79,23.2092 +1,36,0.003,-0.0004,642.91,1592.47,1400.78,21.61,553.33,2388.15,9045.66,47.49,521.59,2388.16,8.4437,392,38.8,23.1813 +1,37,0.0013,0.0003,642.41,1592.1,1410.24,21.61,553.22,2388.09,9042.92,47.62,521.66,2388.11,8.461,393,38.78,23.2468 +1,38,-0.0001,0.0005,642.73,1595.43,1405.1,21.61,553.41,2388.09,9048.6,47.45,521.18,2388.06,8.4427,394,38.91,23.3641 +1,39,-0.0002,0.0001,642.3,1590.38,1412.85,21.61,552.59,2388.1,9044.67,47.39,521.82,2388.13,8.4596,393,38.8,23.3236 +1,40,-0.0014,-0.0001,642.16,1587.52,1411.14,21.61,553.14,2388.15,9043.68,47.63,521.37,2388.18,8.4713,394,38.89,23.3179 +1,41,-0.0016,0.0004,642.17,1588.32,1412.07,21.61,553.12,2388.09,9044.54,47.52,521.75,2388.14,8.4289,393,38.82,23.2325 +1,42,-0.0042,0.0005,642.97,1594.0,1407.56,21.61,553.09,2388.09,9044.59,47.33,521.09,2388.1,8.4573,394,38.92,23.2672 +1,43,-0.0009,-0.0001,642.35,1590.12,1412.04,21.61,553.17,2388.12,9042.53,47.5,521.67,2388.16,8.4322,393,38.81,23.2876 +1,44,-0.0031,-0.0,642.5,1591.36,1405.39,21.61,552.98,2388.09,9042.02,47.36,521.47,2388.08,8.4792,392,38.98,23.2084 +1,45,-0.0018,0.0001,642.76,1598.73,1409.85,21.61,553.38,2388.13,9052.92,47.64,521.07,2388.13,8.4452,395,38.84,23.2244 +1,46,-0.0003,-0.0003,642.39,1595.76,1407.58,21.61,553.34,2388.14,9047.42,47.52,521.51,2388.14,8.4562,392,38.96,23.2746 +1,47,0.001,-0.0004,642.27,1588.92,1406.25,21.61,553.29,2388.12,9046.58,47.4,521.62,2388.11,8.4674,392,38.7,23.2926 +1,48,0.0001,-0.0,642.47,1588.91,1412.42,21.61,553.53,2388.13,9041.32,47.59,522.13,2388.13,8.4539,393,38.79,23.3173 +1,49,0.0013,0.0003,642.84,1587.07,1400.39,21.61,553.4,2388.14,9044.57,47.51,521.8,2388.16,8.453,394,38.78,23.3632 +1,50,0.0009,0.0004,642.19,1591.98,1409.02,21.61,554.09,2388.15,9045.83,47.45,521.52,2388.14,8.4323,391,39.0,23.3382 +1,51,-0.0025,0.0004,643.1,1587.83,1413.22,21.61,553.77,2388.14,9046.08,47.49,521.4,2388.13,8.4547,392,38.83,23.3548 +1,52,0.0014,-0.0,642.6,1583.57,1408.59,21.61,553.85,2388.12,9045.76,47.36,521.26,2388.1,8.4275,394,38.96,23.3101 +1,53,0.0019,-0.0004,642.66,1592.1,1404.21,21.61,552.16,2388.16,9044.63,47.55,521.59,2388.18,8.4391,393,38.62,23.2922 +1,54,0.0063,-0.0,642.59,1588.31,1411.94,21.61,554.08,2388.13,9059.27,47.49,521.4,2388.15,8.446,394,38.88,23.4037 +1,55,-0.0005,0.0002,642.8,1594.84,1414.35,21.61,553.39,2388.15,9045.65,47.8,521.48,2388.11,8.4466,392,38.72,23.3149 +1,56,-0.0001,0.0004,642.47,1588.91,1408.46,21.61,552.87,2388.12,9047.98,47.55,521.49,2388.15,8.4174,394,38.86,23.3335 +1,57,0.0027,0.0001,643.42,1596.13,1407.61,21.61,553.22,2388.12,9045.76,47.59,520.99,2388.12,8.4594,394,38.91,23.2622 +1,58,0.0011,0.0005,642.18,1592.85,1406.46,21.61,553.62,2388.07,9046.5,47.6,521.79,2388.13,8.4689,393,38.8,23.2417 +1,59,-0.0032,0.0003,643.05,1595.21,1402.56,21.61,552.63,2388.16,9049.77,47.45,521.31,2388.11,8.4334,393,38.82,23.3714 +1,60,-0.0017,-0.0004,642.25,1596.61,1413.02,21.61,553.21,2388.14,9052.12,47.72,521.49,2388.12,8.4115,394,38.75,23.3122 +1,61,-0.0017,-0.0004,642.85,1589.81,1406.41,21.61,552.96,2388.11,9039.47,47.65,520.76,2388.15,8.4192,394,38.69,23.3281 +1,62,-0.004,-0.0003,642.21,1590.03,1409.63,21.61,552.86,2388.16,9048.09,47.57,521.38,2388.14,8.4393,392,38.68,23.3127 +1,63,-0.001,0.0001,642.57,1592.3,1409.09,21.61,553.21,2388.17,9044.16,47.54,521.54,2388.16,8.4358,392,38.83,23.312 +1,64,0.0025,-0.0001,642.72,1592.81,1411.9,21.61,553.6,2388.17,9053.41,47.42,521.79,2388.16,8.4087,393,38.79,23.3106 +1,65,0.0023,-0.0002,642.97,1596.75,1414.56,21.61,553.78,2388.12,9046.88,47.59,521.9,2388.09,8.4337,392,38.83,23.2463 +1,66,-0.0021,-0.0,642.61,1589.21,1406.22,21.61,553.39,2388.16,9045.86,47.64,521.41,2388.07,8.4691,394,38.8,23.222 +1,67,0.0027,-0.0001,642.81,1586.58,1406.37,21.61,553.17,2388.14,9049.52,47.58,521.19,2388.14,8.4348,392,38.63,23.2567 +1,68,0.002,-0.0004,642.62,1590.13,1411.87,21.61,552.82,2388.21,9047.7,47.52,521.51,2388.12,8.4531,392,38.9,23.2913 +1,69,-0.0002,0.0002,642.78,1588.31,1420.36,21.61,553.19,2388.12,9043.71,47.52,520.98,2388.11,8.4554,394,38.88,23.2297 +1,70,0.0034,0.0001,642.93,1588.41,1406.66,21.61,553.53,2388.14,9046.07,47.58,521.52,2388.16,8.4116,392,38.82,23.3584 +1,71,0.002,0.0001,642.3,1587.35,1405.68,21.61,553.75,2388.08,9051.01,47.53,521.34,2388.15,8.4173,394,38.75,23.4068 +1,72,0.0024,-0.0002,642.41,1590.65,1414.47,21.61,553.17,2388.12,9056.26,47.52,520.84,2388.17,8.4585,394,38.72,23.2232 +1,73,0.0027,-0.0002,642.62,1591.9,1405.42,21.61,553.24,2388.13,9051.4,47.66,522.18,2388.15,8.4597,395,38.78,23.328 +1,74,-0.0021,0.0,642.62,1584.62,1406.39,21.61,553.31,2388.15,9047.56,47.79,521.47,2388.14,8.4208,393,38.84,23.3163 +1,75,-0.0005,-0.0002,642.64,1588.03,1406.82,21.61,553.07,2388.14,9043.55,47.66,520.75,2388.07,8.4235,394,38.72,23.2164 +1,76,0.0024,0.0002,642.56,1588.67,1405.95,21.61,553.32,2388.15,9051.14,47.69,521.27,2388.11,8.4552,395,38.75,23.2364 +1,77,0.0007,-0.0003,643.27,1591.27,1406.28,21.61,554.03,2388.11,9045.54,47.41,521.33,2388.08,8.4669,391,38.81,23.2573 +1,78,-0.0005,0.0001,643.25,1591.94,1413.68,21.61,553.33,2388.1,9044.5,47.65,521.46,2388.15,8.4515,392,38.86,23.3066 +1,79,0.0012,-0.0002,642.64,1590.61,1408.29,21.61,552.69,2388.16,9046.43,47.47,520.79,2388.13,8.4181,393,38.87,23.2958 +1,80,0.0012,0.0004,643.14,1586.51,1415.59,21.61,553.56,2388.16,9040.82,47.39,521.12,2388.13,8.4599,392,38.73,23.3178 +1,81,-0.002,0.0003,643.02,1584.68,1412.22,21.61,553.27,2388.13,9054.63,47.66,521.53,2388.15,8.4732,393,38.74,23.284 +1,82,0.0053,0.0005,643.25,1589.34,1404.4,21.61,553.66,2388.14,9049.13,47.47,520.85,2388.2,8.449,392,38.81,23.3187 +1,83,-0.0018,0.0001,642.02,1594.89,1408.9,21.61,552.5,2388.19,9035.95,47.69,520.65,2388.11,8.4449,392,38.98,23.2296 +1,84,0.0016,0.0004,642.47,1594.14,1407.82,21.61,552.3,2388.09,9051.21,47.58,521.19,2388.13,8.4478,394,38.73,23.1737 +1,85,-0.0009,-0.0002,642.6,1585.73,1413.71,21.61,553.42,2388.13,9045.67,47.81,521.4,2388.12,8.4884,393,38.8,23.3388 +1,86,0.0072,0.0002,642.37,1591.1,1415.28,21.61,552.38,2388.12,9046.37,47.55,520.79,2388.18,8.455,393,38.88,23.2544 +1,87,0.0011,-0.0001,642.98,1586.54,1403.94,21.61,552.21,2388.09,9046.31,47.43,521.32,2388.15,8.4327,394,38.84,23.301 +1,88,0.0017,-0.0004,642.96,1592.5,1407.16,21.61,553.42,2388.18,9043.53,47.67,521.34,2388.17,8.4723,392,38.69,23.2846 +1,89,-0.0039,0.0005,642.46,1590.54,1414.97,21.61,552.86,2388.12,9045.73,47.48,520.65,2388.12,8.4149,391,38.9,23.292 +1,90,0.0004,0.0005,642.65,1591.09,1410.93,21.61,553.61,2388.16,9047.9,47.75,521.46,2388.15,8.4813,394,38.81,23.2101 +1,91,0.0005,-0.0002,643.09,1591.52,1412.95,21.61,553.74,2388.11,9045.83,47.5,521.12,2388.15,8.4604,393,38.6,23.1479 +1,92,0.0021,0.0001,643.14,1593.57,1405.97,21.61,552.31,2388.17,9045.81,47.87,520.6,2388.12,8.4352,393,38.6,23.2152 +1,93,0.0009,-0.0003,643.15,1587.64,1414.14,21.61,553.53,2388.16,9050.01,47.83,521.57,2388.13,8.4402,393,38.76,23.2344 +1,94,-0.0041,0.0,642.48,1596.66,1409.75,21.61,552.98,2388.16,9039.46,47.65,521.53,2388.18,8.4628,394,38.85,23.2269 +1,95,0.0006,0.0003,642.9,1590.23,1408.66,21.61,552.31,2388.11,9042.87,47.73,521.45,2388.16,8.4852,394,38.83,23.2761 +1,96,-0.0021,-0.0004,642.54,1584.94,1412.03,21.61,552.85,2388.14,9050.54,47.7,521.06,2388.18,8.4466,392,38.82,23.1321 +1,97,0.0017,0.0004,643.01,1592.11,1409.96,21.61,552.77,2388.18,9046.68,47.59,521.21,2388.16,8.4595,394,38.72,23.3156 +1,98,-0.0007,0.0,642.89,1590.63,1407.46,21.61,553.0,2388.15,9038.1,47.49,521.48,2388.09,8.4301,395,38.92,23.239 +1,99,0.0027,-0.0001,642.65,1592.47,1414.0,21.61,552.84,2388.12,9046.59,47.67,521.24,2388.14,8.4132,393,38.64,23.2527 +1,100,-0.0032,0.0005,642.93,1592.94,1409.98,21.61,553.38,2388.14,9050.24,47.65,521.07,2388.13,8.448,392,38.76,23.3091 +1,101,0.0014,0.0002,641.86,1592.94,1405.95,21.61,552.88,2388.15,9047.32,47.66,521.56,2388.09,8.4421,393,38.91,23.2826 +1,102,0.0016,-0.0003,643.08,1596.33,1416.0,21.61,553.38,2388.11,9046.83,47.69,520.93,2388.13,8.4379,393,38.88,23.2423 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102 +2,10,-0.0027,-0.0004,642.31,1594.02,1410.1,21.61,552.65,2388.08,9055.86,47.45,521.86,2388.14,8.4321,391,38.75,23.272 +2,11,-0.0014,0.0003,642.81,1590.74,1403.72,21.61,553.43,2388.08,9057.06,47.57,522.2,2388.1,8.4001,394,38.86,23.3338 +2,12,-0.0027,-0.0001,641.91,1585.92,1407.15,21.61,553.28,2388.07,9057.66,47.55,521.58,2388.09,8.4438,394,38.77,23.3329 +2,13,-0.001,-0.0,643.25,1599.99,1409.62,21.61,553.27,2388.13,9055.24,47.43,521.66,2388.1,8.4336,394,38.83,23.2979 +2,14,-0.0002,0.0004,642.22,1591.18,1409.34,21.61,553.57,2388.08,9059.89,47.5,520.85,2388.07,8.4295,392,38.9,23.2906 +2,15,0.0004,-0.0003,642.79,1594.09,1406.2,21.61,552.9,2388.12,9055.37,47.68,522.15,2388.06,8.3932,391,38.91,23.3631 +2,16,0.0028,-0.0004,642.59,1595.91,1409.0,21.61,553.08,2388.07,9052.1,47.42,521.74,2388.05,8.4156,394,38.97,23.3014 +2,17,0.0029,-0.0001,643.01,1593.27,1404.03,21.61,553.22,2388.09,9050.42,47.37,521.73,2388.1,8.4232,393,38.86,23.3667 +2,18,-0.0016,0.0005,642.08,1589.14,1405.87,21.61,553.54,2388.1,9054.2,47.4,521.54,2388.14,8.4075,392,38.77,23.3347 +2,19,-0.0024,-0.0002,642.47,1584.56,1408.11,21.61,553.13,2388.09,9061.64,47.48,521.39,2388.06,8.4485,394,38.82,23.3526 +2,20,-0.0007,0.0001,642.77,1595.46,1407.4,21.61,553.28,2388.06,9054.38,47.51,522.05,2388.11,8.4264,392,38.57,23.2427 +2,21,0.0007,0.0003,642.25,1581.62,1407.08,21.61,553.16,2388.06,9054.83,47.62,521.26,2388.08,8.4389,393,38.83,23.4299 +2,22,-0.0015,0.0001,643.02,1586.2,1407.41,21.61,553.48,2388.1,9056.62,47.46,521.56,2388.08,8.428,392,38.84,23.2634 +2,23,-0.0014,-0.0004,642.6,1586.29,1405.63,21.61,553.12,2388.12,9056.01,47.57,522.07,2388.14,8.4311,392,38.98,23.3116 +2,24,-0.0002,0.0005,642.95,1587.31,1406.29,21.61,553.75,2388.14,9051.44,47.64,521.89,2388.05,8.4215,393,38.85,23.2426 +2,25,0.0025,0.0003,642.1,1594.3,1407.62,21.61,553.55,2388.1,9062.26,47.51,522.5,2388.14,8.4366,393,38.86,23.3473 +2,26,-0.001,0.0003,642.19,1586.42,1402.94,21.61,553.7,2388.1,9063.15,47.58,521.49,2388.11,8.4346,391,38.83,23.3003 +2,27,0.0006,-0.0001,643.01,1590.15,1407.03,21.61,553.15,2388.07,9056.15,47.47,521.32,2388.08,8.4475,393,38.71,23.4061 +2,28,0.0012,-0.0003,642.56,1590.55,1406.48,21.61,553.34,2388.07,9059.63,47.6,521.73,2388.07,8.4191,393,38.84,23.2284 +2,29,-0.0003,0.0002,642.89,1588.97,1408.82,21.61,553.25,2388.09,9047.99,47.48,521.67,2388.08,8.4534,394,38.85,23.2946 +2,30,-0.0032,0.0001,642.7,1588.36,1409.6,21.61,554.31,2388.16,9057.73,47.36,521.31,2388.11,8.4743,393,38.87,23.3169 +2,31,-0.0015,0.0002,642.3,1590.98,1404.89,21.61,553.89,2388.05,9058.44,47.44,521.85,2388.11,8.4644,393,38.82,23.2797 +2,32,-0.001,0.0002,642.75,1589.12,1405.37,21.61,553.72,2388.09,9053.01,47.44,521.54,2388.08,8.4316,393,38.93,23.2791 +2,33,-0.0,0.0002,642.48,1588.69,1406.37,21.61,552.64,2388.1,9057.65,47.49,521.57,2388.11,8.4294,394,38.82,23.349 +2,34,-0.0007,0.0003,642.35,1590.06,1409.85,21.61,553.9,2388.09,9061.24,47.5,521.78,2388.1,8.4597,393,38.92,23.3717 +2,35,-0.0013,-0.0004,642.61,1589.91,1401.64,21.61,553.08,2388.09,9051.13,47.38,521.19,2388.08,8.4422,393,38.84,23.3348 +2,36,-0.0034,-0.0,642.58,1586.23,1403.92,21.61,553.5,2388.1,9047.89,47.58,521.44,2388.15,8.4509,393,38.92,23.383 +2,37,-0.0041,0.0002,642.68,1582.58,1412.44,21.61,553.58,2388.06,9050.5,47.48,521.86,2388.07,8.4326,392,38.74,23.1862 +2,38,0.0001,0.0004,642.69,1593.33,1406.92,21.61,553.62,2388.13,9049.92,47.7,521.55,2388.09,8.4576,393,39.07,23.2141 +2,39,-0.0005,-0.0003,642.63,1581.24,1403.8,21.61,553.23,2388.03,9053.6,47.5,521.63,2388.05,8.4236,392,38.94,23.343 +2,40,0.0013,0.0004,641.99,1585.55,1411.86,21.61,553.69,2388.13,9062.62,47.41,521.68,2388.12,8.4448,393,38.55,23.3491 +2,41,-0.0007,0.0002,642.23,1588.43,1403.07,21.61,553.26,2388.1,9057.22,47.58,521.82,2388.1,8.4804,393,38.92,23.3163 +2,42,0.0023,-0.0004,642.86,1588.03,1407.81,21.61,553.52,2388.11,9061.57,47.52,521.91,2388.09,8.4216,393,38.8,23.2903 +2,43,-0.0017,-0.0,642.66,1590.78,1407.9,21.61,553.64,2388.1,9056.2,47.39,521.26,2388.1,8.4378,394,38.81,23.3655 +2,44,0.0024,0.0001,642.45,1590.56,1412.61,21.61,553.88,2388.07,9055.21,47.59,521.3,2388.04,8.4059,394,38.94,23.3218 +2,45,0.0016,0.0001,642.77,1588.23,1410.44,21.61,553.99,2388.1,9057.0,47.51,521.42,2388.12,8.4185,391,38.7,23.3342 +2,46,0.0041,-0.0004,642.86,1584.07,1409.85,21.61,553.12,2388.09,9045.6,47.58,521.3,2388.07,8.418,393,38.9,23.305 +2,47,-0.0019,0.0004,642.14,1594.3,1402.37,21.61,553.34,2388.07,9057.28,47.35,521.81,2388.11,8.4108,394,38.74,23.3972 +2,48,-0.0026,-0.0,642.85,1594.55,1406.57,21.61,553.8,2388.09,9063.15,47.57,521.28,2388.13,8.4592,393,38.96,23.3012 +2,49,-0.0027,-0.0004,642.91,1584.16,1409.84,21.61,553.06,2388.1,9062.76,47.65,521.3,2388.14,8.4155,395,38.65,23.2812 +2,50,-0.0013,0.0,642.89,1592.76,1409.34,21.61,553.74,2388.11,9053.83,47.61,521.04,2388.09,8.436,394,38.67,23.2642 +2,51,0.0011,-0.0003,641.96,1590.8,1405.96,21.61,553.51,2388.09,9052.06,47.6,521.78,2388.11,8.413,393,38.95,23.2755 +2,52,0.0064,-0.0004,642.56,1594.44,1411.13,21.61,553.26,2388.1,9055.29,47.52,521.75,2388.12,8.4222,393,38.86,23.267 +2,53,-0.0011,0.0004,642.62,1587.86,1405.82,21.61,553.02,2388.09,9059.33,47.4,522.18,2388.08,8.4513,392,39.02,23.3445 +2,54,0.0023,-0.0001,642.37,1590.53,1410.93,21.61,553.4,2388.1,9060.14,47.45,520.99,2388.08,8.404,392,39.04,23.226 +2,55,-0.0031,-0.0002,642.92,1594.46,1406.72,21.61,553.33,2388.05,9058.09,47.37,521.62,2388.08,8.4436,392,38.67,23.3543 +2,56,0.0002,0.0005,642.21,1592.74,1404.01,21.61,553.15,2388.11,9062.98,47.5,521.87,2388.06,8.4322,393,38.94,23.3912 +2,57,0.0008,0.0004,642.78,1594.82,1403.8,21.61,554.07,2388.04,9061.05,47.45,521.46,2388.12,8.4077,394,38.82,23.2318 +2,58,0.0023,0.0004,642.37,1594.12,1413.32,21.61,553.05,2388.14,9049.98,47.45,521.47,2388.11,8.4612,394,38.87,23.3108 +2,59,-0.0021,-0.0001,642.61,1584.02,1413.87,21.61,552.84,2388.1,9058.18,47.56,521.97,2388.14,8.4369,394,38.8,23.3658 +2,60,0.0033,0.0004,642.51,1589.07,1404.27,21.61,553.74,2388.08,9063.64,47.42,521.64,2388.1,8.4227,394,38.69,23.3591 +2,61,-0.0015,-0.0005,642.63,1585.86,1411.08,21.61,553.26,2388.12,9061.46,47.54,521.36,2388.14,8.4149,393,39.0,23.293 +2,62,0.0034,-0.0003,642.23,1596.03,1406.18,21.61,553.4,2388.11,9057.73,47.61,521.47,2388.08,8.4358,394,38.9,23.2968 +2,63,0.001,-0.0003,642.61,1582.69,1399.34,21.61,553.22,2388.09,9060.4,47.48,522.14,2388.06,8.4244,392,38.91,23.2965 +2,64,0.0022,0.0002,642.8,1592.07,1402.07,21.61,553.46,2388.08,9053.94,47.53,521.86,2388.1,8.4536,394,38.78,23.2062 +2,65,0.0019,0.0005,642.6,1594.17,1410.38,21.61,553.04,2388.12,9062.3,47.59,521.59,2388.12,8.439,393,38.99,23.1712 +2,66,0.0034,-0.0002,642.68,1586.39,1403.29,21.61,553.59,2388.13,9057.5,47.58,521.86,2388.07,8.4566,395,38.83,23.2897 +2,67,0.0008,-0.0004,642.85,1587.87,1411.71,21.61,553.67,2388.1,9052.26,47.62,521.59,2388.07,8.477,390,38.62,23.3134 +2,68,0.0002,-0.0002,643.05,1593.84,1410.46,21.61,554.39,2388.1,9056.67,47.46,521.06,2388.09,8.4091,393,38.94,23.2666 +2,69,0.0012,-0.0003,642.94,1590.66,1408.67,21.61,553.61,2388.09,9058.86,47.62,521.68,2388.09,8.4165,393,38.73,23.229 +2,70,-0.0005,0.0002,642.22,1591.39,1406.78,21.61,553.3,2388.09,9056.85,47.62,521.14,2388.06,8.4562,390,38.78,23.2932 +2,71,-0.0033,0.0002,642.73,1591.12,1414.31,21.61,554.25,2388.13,9062.22,47.51,521.21,2388.08,8.4381,392,38.76,23.2452 +2,72,0.0041,-0.0004,642.54,1591.82,1409.41,21.61,553.82,2388.11,9060.47,47.61,521.39,2388.17,8.4537,394,38.93,23.3227 +2,73,0.0002,0.0004,642.93,1589.96,1411.79,21.61,553.77,2388.09,9058.23,47.49,521.38,2388.05,8.4445,395,38.72,23.2954 +2,74,-0.0,-0.0002,642.87,1586.46,1415.71,21.61,553.38,2388.06,9056.09,47.37,521.54,2388.12,8.4046,392,38.89,23.2266 +2,75,0.0012,0.0002,642.72,1584.67,1410.41,21.61,553.18,2388.14,9064.07,47.58,521.23,2388.1,8.4548,393,38.82,23.2683 +2,76,0.0013,-0.0003,642.76,1588.78,1409.33,21.61,553.19,2388.12,9057.88,47.65,521.72,2388.11,8.477,394,38.76,23.3218 +2,77,0.0022,-0.0005,642.98,1592.44,1407.09,21.61,553.44,2388.12,9059.92,47.44,520.77,2388.03,8.4119,394,39.0,23.2637 +2,78,0.0007,-0.0003,643.34,1588.31,1407.96,21.61,553.59,2388.1,9056.17,47.49,520.7,2388.08,8.4692,393,38.87,23.2975 +2,79,-0.0002,-0.0004,642.88,1589.69,1406.53,21.61,553.71,2388.14,9067.65,47.56,521.63,2388.09,8.4337,392,38.96,23.2119 +2,80,-0.0012,-0.0002,642.75,1590.85,1412.63,21.61,553.27,2388.05,9066.09,47.59,521.37,2388.13,8.4287,394,38.98,23.299 +2,81,-0.0033,-0.0002,642.13,1588.28,1412.8,21.61,553.35,2388.11,9055.69,47.79,521.23,2388.11,8.4056,393,38.82,23.2447 +2,82,-0.0022,-0.0003,642.9,1593.79,1402.78,21.61,553.04,2388.09,9060.44,47.52,521.21,2388.05,8.4112,392,38.76,23.175 +2,83,0.0009,0.0002,642.47,1587.71,1406.15,21.61,553.21,2388.1,9062.17,47.66,521.02,2388.09,8.4517,392,38.77,23.3331 +2,84,0.0013,-0.0001,642.74,1586.75,1407.51,21.61,553.4,2388.07,9062.51,47.37,521.42,2388.07,8.4447,393,38.61,23.2227 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291 +3,10,-0.0006,-0.0003,642.7,1583.95,1402.36,21.61,554.38,2388.08,9056.1,47.39,522.26,2388.06,8.4475,392,38.91,23.4265 +3,11,0.0026,0.0001,642.46,1584.69,1402.15,21.61,554.0,2388.07,9047.78,47.34,522.33,2388.06,8.4025,393,38.99,23.3497 +3,12,-0.0003,-0.0002,642.66,1585.84,1405.32,21.61,553.98,2388.03,9052.31,47.41,521.82,2388.05,8.4294,393,38.98,23.4722 +3,13,0.0014,-0.0001,642.02,1584.93,1401.05,21.61,554.23,2388.08,9051.1,47.44,521.85,2388.12,8.4206,391,39.09,23.3077 +3,14,0.0014,-0.0001,642.74,1585.87,1400.77,21.61,553.89,2388.12,9056.15,47.13,521.85,2388.11,8.4345,393,39.04,23.3957 +3,15,-0.0006,0.0004,641.95,1590.39,1403.26,21.61,553.44,2388.14,9053.76,47.36,521.43,2388.06,8.4061,392,39.03,23.3704 +3,16,-0.0003,-0.0002,642.25,1583.06,1394.64,21.61,553.98,2388.08,9043.8,47.13,522.47,2388.08,8.3969,394,38.94,23.382 +3,17,0.001,-0.0005,642.35,1585.93,1404.35,21.61,553.63,2388.04,9052.89,47.31,521.76,2388.14,8.3926,391,39.02,23.4033 +3,18,-0.0004,-0.0005,642.01,1587.74,1405.64,21.61,553.51,2388.04,9047.0,47.3,522.18,2388.09,8.4117,393,38.82,23.3115 +3,19,-0.0011,0.0002,642.16,1587.96,1403.47,21.61,553.49,2388.11,9052.3,47.59,521.63,2388.07,8.3961,392,38.88,23.3028 +3,20,0.0026,-0.0005,642.74,1587.18,1406.77,21.61,554.12,2388.03,9043.82,47.3,522.28,2388.06,8.403,392,38.92,23.4218 +3,21,0.0004,0.0001,642.3,1586.16,1403.1,21.61,553.98,2388.05,9046.63,47.21,521.83,2388.06,8.4349,392,38.91,23.355 +3,22,-0.0032,0.0002,642.33,1579.32,1397.23,21.61,554.28,2388.09,9052.72,47.35,521.55,2388.11,8.4293,391,39.03,23.3531 +3,23,0.0003,0.0003,642.77,1588.33,1399.28,21.61,554.12,2388.05,9050.2,47.29,521.87,2388.0,8.4297,392,38.88,23.2694 +3,24,0.0033,-0.0,642.65,1586.97,1405.22,21.61,553.79,2388.01,9046.42,47.32,521.99,2388.05,8.4177,392,39.0,23.3688 +3,25,0.0017,0.0001,642.65,1584.95,1404.09,21.61,554.45,2388.09,9061.65,47.63,521.68,2388.1,8.4187,392,39.08,23.3005 +3,26,0.0028,0.0004,642.01,1584.39,1409.99,21.6,554.35,2388.01,9045.58,47.3,522.07,2388.05,8.3846,393,38.97,23.4061 +3,27,-0.0003,0.0002,642.24,1586.8,1396.78,21.61,554.28,2388.08,9047.77,47.33,522.28,2388.07,8.3978,393,38.82,23.406 +3,28,0.0038,-0.0005,642.43,1585.55,1401.98,21.61,553.22,2388.16,9047.27,47.23,521.8,2388.03,8.456,393,38.9,23.4147 +3,29,-0.0039,0.0004,642.47,1584.86,1404.57,21.61,553.76,2388.03,9044.86,47.23,521.88,2388.05,8.3828,392,38.88,23.4126 +3,30,-0.0051,0.0001,642.19,1592.99,1390.35,21.61,553.93,2388.06,9039.8,47.28,521.74,2388.07,8.434,393,38.95,23.2258 +3,31,-0.0011,0.0001,642.37,1581.17,1405.48,21.61,554.31,2388.08,9049.6,47.57,521.38,2388.08,8.3972,391,38.91,23.2808 +3,32,-0.0039,-0.0004,642.7,1589.06,1410.09,21.61,554.31,2388.08,9053.0,47.37,521.77,2388.02,8.4152,393,39.03,23.454 +3,33,0.002,-0.0002,642.59,1580.61,1393.08,21.61,553.5,2388.08,9051.66,47.28,522.28,2388.06,8.4128,391,39.02,23.3196 +3,34,-0.0018,-0.0001,641.84,1590.6,1403.72,21.61,553.83,2388.06,9058.15,47.53,521.6,2388.12,8.4007,392,38.92,23.3577 +3,35,-0.0003,-0.0,642.13,1588.52,1407.28,21.61,554.24,2388.06,9043.47,47.48,522.32,2388.07,8.3933,393,38.85,23.4341 +3,36,0.0023,0.0,642.32,1585.56,1401.31,21.61,553.46,2388.07,9053.06,47.52,521.24,2388.1,8.452,391,38.98,23.3515 +3,37,-0.0012,-0.0002,641.97,1588.01,1406.09,21.61,553.43,2388.06,9044.76,47.21,522.15,2388.1,8.4486,393,38.75,23.4992 +3,38,0.0019,-0.0004,642.62,1585.32,1399.73,21.61,553.94,2388.08,9048.47,47.37,522.37,2388.08,8.4218,392,39.23,23.3812 +3,39,-0.0009,0.0001,642.37,1591.21,1403.75,21.61,553.6,2388.01,9054.2,47.28,522.21,2388.08,8.4272,392,38.86,23.3355 +3,40,0.001,-0.0002,641.68,1579.67,1405.19,21.61,553.48,2388.08,9047.11,47.43,521.81,2388.07,8.4074,393,38.9,23.4048 +3,41,0.0021,0.0004,642.1,1593.06,1402.96,21.61,553.63,2388.1,9048.5,47.21,521.7,2388.11,8.4208,393,38.9,23.3181 +3,42,-0.0002,0.0002,642.54,1584.14,1397.7,21.61,554.37,2388.08,9043.62,47.18,521.99,2388.08,8.4267,392,38.82,23.3376 +3,43,-0.0044,-0.0004,641.59,1586.15,1406.06,21.61,553.52,2388.12,9049.8,47.34,521.5,2388.06,8.3896,394,38.79,23.2991 +3,44,-0.0008,-0.0004,642.48,1585.91,1401.68,21.61,553.57,2388.08,9038.72,47.18,522.06,2388.07,8.3731,393,39.07,23.3478 +3,45,0.0035,-0.0,642.76,1584.91,1410.21,21.61,554.17,2388.07,9052.16,47.49,522.23,2388.07,8.4499,392,38.71,23.444 +3,46,0.002,0.0,642.74,1582.19,1397.98,21.61,554.34,2388.08,9054.63,47.31,521.61,2388.11,8.4277,392,39.04,23.3469 +3,47,-0.0003,-0.0002,642.39,1584.87,1400.91,21.61,553.26,2388.15,9050.06,47.28,521.65,2388.09,8.4619,392,38.91,23.3216 +3,48,-0.0031,-0.0005,642.17,1585.84,1402.14,21.61,554.01,2388.07,9047.5,47.5,521.73,2388.09,8.414,394,38.78,23.3214 +3,49,-0.0019,0.0002,642.56,1585.47,1401.05,21.61,553.98,2388.07,9046.34,47.49,521.89,2388.08,8.4004,392,38.86,23.3607 +3,50,0.0047,-0.0005,642.89,1590.75,1397.95,21.61,554.36,2388.1,9053.31,47.39,521.79,2388.03,8.4036,392,38.79,23.3338 +3,51,0.0004,0.0002,642.9,1584.9,1403.85,21.61,553.62,2388.02,9041.5,47.26,522.2,2388.06,8.4287,392,38.87,23.4168 +3,52,-0.0017,0.0003,642.56,1589.78,1399.83,21.61,554.32,2388.12,9044.18,47.33,522.17,2388.04,8.3995,393,38.87,23.2895 +3,53,-0.0007,0.0004,642.84,1596.23,1399.12,21.61,553.21,2388.11,9044.98,47.39,521.71,2388.08,8.4385,393,39.09,23.3639 +3,54,-0.0004,-0.0002,642.47,1589.25,1398.54,21.61,553.76,2388.09,9043.06,47.43,521.8,2388.12,8.4309,394,39.03,23.3659 +3,55,-0.0011,0.0003,642.23,1583.01,1395.66,21.61,553.71,2388.04,9055.25,47.5,522.35,2388.0,8.4146,391,38.86,23.3669 +3,56,-0.004,-0.0003,642.5,1593.52,1402.15,21.61,553.03,2388.03,9053.58,47.41,522.37,2388.1,8.3997,392,38.77,23.3993 +3,57,-0.0016,-0.0001,642.42,1590.41,1403.39,21.61,554.27,2388.11,9048.37,47.46,521.97,2388.09,8.4397,393,38.93,23.2477 +3,58,0.0027,0.0004,643.22,1589.56,1397.41,21.61,553.55,2388.14,9053.13,47.37,521.8,2388.11,8.4278,393,38.83,23.3732 +3,59,0.0005,0.0001,642.67,1583.4,1410.26,21.61,553.12,2388.03,9047.23,47.49,521.43,2388.1,8.44,392,38.81,23.3404 +3,60,0.0067,-0.0002,642.94,1588.28,1403.23,21.61,553.15,2388.09,9041.66,47.36,521.83,2388.1,8.4618,393,38.92,23.4183 +3,61,-0.0011,-0.0004,642.25,1590.3,1400.96,21.6,553.29,2388.11,9050.49,47.53,521.4,2388.14,8.4407,392,38.9,23.234 +3,62,0.0016,0.0003,642.4,1594.44,1404.98,21.61,553.22,2388.06,9044.93,47.5,521.56,2388.09,8.4625,394,38.97,23.3897 +3,63,-0.0005,-0.0002,642.38,1587.46,1413.64,21.61,553.97,2388.06,9048.51,47.42,521.33,2388.09,8.4324,392,38.87,23.4107 +3,64,-0.0032,-0.0001,642.5,1582.95,1405.42,21.61,553.75,2388.12,9044.63,47.51,521.62,2388.04,8.4606,394,38.93,23.3744 +3,65,0.0023,0.0001,643.1,1591.13,1408.48,21.61,553.34,2388.06,9050.49,47.59,522.25,2388.12,8.4163,392,39.0,23.2173 +3,66,-0.0013,0.0002,642.07,1590.99,1409.49,21.61,553.73,2388.11,9049.42,47.31,521.77,2388.09,8.4225,391,38.8,23.2473 +3,67,-0.0002,-0.0004,642.66,1588.57,1397.84,21.61,553.35,2388.16,9054.67,47.61,521.63,2388.09,8.4603,392,38.89,23.4041 +3,68,0.0011,-0.0005,641.96,1588.22,1401.69,21.61,553.38,2388.14,9049.76,47.46,521.04,2388.09,8.45,393,39.09,23.2718 +3,69,0.0025,0.0002,642.53,1594.01,1408.35,21.61,553.72,2388.08,9047.57,47.34,522.23,2388.13,8.4154,394,38.82,23.3204 +3,70,-0.0007,0.0001,642.53,1593.73,1402.87,21.61,553.62,2388.08,9039.63,47.4,521.76,2388.08,8.4098,391,38.99,23.1992 +3,71,-0.0038,0.0001,641.88,1589.41,1408.89,21.61,554.0,2388.09,9052.57,47.36,521.35,2388.11,8.4045,393,39.0,23.2634 +3,72,0.0028,0.0004,642.13,1589.23,1403.38,21.61,553.67,2388.04,9047.88,47.45,522.01,2388.11,8.4149,394,38.88,23.352 +3,73,-0.001,0.0004,642.78,1584.77,1410.85,21.61,554.22,2388.13,9044.28,47.57,520.94,2388.13,8.426,395,38.77,23.2394 +3,74,-0.0041,0.0001,642.75,1587.18,1403.99,21.61,553.8,2388.12,9048.42,47.51,521.58,2388.15,8.4271,393,38.76,23.3394 +3,75,0.0066,0.0005,642.48,1591.09,1403.25,21.61,553.65,2388.12,9047.74,47.41,521.31,2388.08,8.4321,393,38.86,23.2441 +3,76,0.0009,0.0,642.92,1601.85,1409.0,21.61,553.93,2388.11,9045.3,47.56,521.33,2388.13,8.4467,394,38.75,23.2092 +3,77,-0.0022,-0.0,642.5,1580.1,1403.4,21.61,553.43,2388.05,9053.47,47.66,522.06,2388.16,8.4066,392,38.94,23.2951 +3,78,0.0008,0.0001,642.58,1587.8,1406.62,21.61,553.7,2388.09,9048.9,47.47,521.27,2388.1,8.4598,394,38.84,23.259 +3,79,-0.0017,0.0001,642.5,1584.98,1405.57,21.61,553.57,2388.12,9048.12,47.56,521.2,2388.12,8.4236,394,38.89,23.2973 +3,80,0.0018,-0.0002,642.75,1592.43,1402.17,21.61,553.97,2388.13,9047.35,47.36,521.53,2388.14,8.4222,394,38.88,23.1531 +3,81,0.0015,0.0,643.23,1588.45,1407.0,21.61,553.68,2388.13,9043.75,47.6,521.51,2388.1,8.4404,393,38.89,23.1935 +3,82,0.0037,0.0004,643.1,1586.93,1407.37,21.61,553.59,2388.06,9048.08,47.57,521.3,2388.13,8.4398,393,38.97,23.3651 +3,83,0.0056,-0.0002,642.56,1586.05,1405.66,21.61,553.23,2388.1,9051.55,47.46,521.85,2388.04,8.4136,393,39.1,23.2385 +3,84,0.0029,-0.0004,642.32,1587.27,1406.76,21.61,553.56,2388.15,9047.42,47.72,521.96,2388.04,8.4423,391,38.85,23.3075 +3,85,0.0006,-0.0005,643.23,1591.86,1410.13,21.61,553.58,2388.13,9038.29,47.5,521.48,2388.13,8.4204,392,38.74,23.2924 +3,86,-0.003,-0.0001,642.47,1592.56,1399.88,21.61,553.6,2388.12,9038.8,47.31,521.24,2388.15,8.462,392,38.69,23.2527 +3,87,-0.0005,0.0004,642.8,1588.81,1402.26,21.61,553.61,2388.06,9038.87,47.58,521.55,2388.1,8.4544,393,38.8,23.3064 +3,88,-0.0028,-0.0003,642.75,1599.27,1408.98,21.61,553.58,2388.14,9045.86,47.64,521.61,2388.12,8.4413,393,38.91,23.2624 +3,89,0.0042,-0.0004,642.46,1592.36,1404.99,21.61,552.99,2388.1,9046.01,47.59,521.63,2388.13,8.4667,395,38.75,23.3636 +3,90,0.0048,0.0001,642.65,1597.61,1411.84,21.61,553.84,2388.13,9045.14,47.39,521.36,2388.13,8.4446,394,38.85,23.3086 +3,91,0.0009,-0.0005,642.35,1589.37,1406.06,21.61,552.97,2388.16,9052.0,47.39,520.76,2388.16,8.4437,394,38.8,23.2717 +3,92,-0.0033,0.0,643.01,1593.74,1407.3,21.61,552.93,2388.14,9049.45,47.52,521.02,2388.1,8.4573,392,38.78,23.2635 +3,93,-0.0009,0.0004,642.98,1588.27,1418.15,21.61,552.56,2388.09,9047.78,47.7,521.35,2388.1,8.4601,392,38.88,23.368 +3,94,-0.0003,-0.0002,642.91,1590.64,1409.46,21.61,553.26,2388.16,9045.39,47.66,521.16,2388.14,8.4087,394,38.89,23.3145 +3,95,-0.001,-0.0003,642.41,1587.08,1405.52,21.61,554.0,2388.04,9043.3,47.58,521.27,2388.08,8.4611,393,38.9,23.3544 +3,96,0.0055,0.0002,642.76,1594.76,1408.29,21.61,553.26,2388.12,9044.48,47.62,521.37,2388.14,8.4391,396,38.8,23.2794 +3,97,-0.0027,-0.0005,643.38,1591.7,1411.89,21.61,552.69,2388.17,9043.14,47.55,520.98,2388.13,8.4607,393,38.57,23.2508 +3,98,0.0018,-0.0004,642.63,1590.07,1411.66,21.61,552.9,2388.15,9041.05,47.65,521.48,2388.14,8.4761,394,38.85,23.303 +3,99,-0.0039,-0.0001,642.75,1590.26,1405.13,21.61,553.15,2388.17,9047.66,47.56,521.7,2388.15,8.4651,392,39.0,23.2346 +3,100,-0.0026,-0.0004,642.75,1592.96,1412.69,21.61,553.95,2388.12,9043.93,47.62,520.76,2388.18,8.468,394,38.8,23.1595 +3,101,-0.0015,0.0001,643.06,1592.18,1409.28,21.61,553.4,2388.18,9047.85,47.77,520.58,2388.17,8.441,393,38.91,23.3392 +3,102,0.0006,0.0002,642.63,1594.27,1415.28,21.61,552.49,2388.18,9048.84,47.61,521.02,2388.17,8.4499,396,38.75,23.1909 +3,103,0.0013,0.0,642.6,1595.82,1411.74,21.61,553.19,2388.13,9040.78,47.63,521.04,2388.17,8.4515,394,38.65,23.1925 +3,104,0.001,-0.0002,642.76,1594.99,1416.7,21.61,553.03,2388.13,9046.2,47.66,521.16,2388.22,8.4696,395,38.69,23.3088 +3,105,-0.0015,-0.0003,643.19,1585.36,1415.03,21.61,553.61,2388.17,9049.94,47.78,520.96,2388.19,8.4737,392,38.73,23.2044 +3,106,-0.0017,0.0003,642.78,1592.44,1417.99,21.61,553.42,2388.19,9042.35,47.68,521.23,2388.14,8.4841,394,38.44,23.2652 +3,107,0.0023,0.0003,643.24,1592.31,1413.01,21.61,552.5,2388.15,9048.24,47.73,520.54,2388.17,8.459,394,38.74,23.2979 +3,108,-0.0018,-0.0001,642.42,1593.71,1413.3,21.61,553.11,2388.18,9044.3,47.78,520.76,2388.21,8.4752,394,38.75,23.1364 +3,109,-0.0036,-0.0,643.55,1592.04,1413.98,21.61,552.12,2388.18,9052.47,47.7,520.94,2388.17,8.4891,395,38.56,23.2547 +3,110,-0.0012,-0.0004,643.03,1601.55,1413.33,21.61,552.6,2388.19,9038.25,47.64,520.52,2388.16,8.4334,394,38.61,23.3253 +3,111,-0.0005,0.0001,642.52,1587.57,1414.44,21.61,552.73,2388.14,9035.52,47.65,520.69,2388.14,8.4909,396,38.75,23.1645 +3,112,-0.0036,-0.0005,642.84,1590.21,1416.74,21.61,552.74,2388.18,9045.59,47.61,520.44,2388.14,8.4924,394,38.72,23.1206 +3,113,-0.0018,0.0001,642.84,1593.2,1420.49,21.61,552.74,2388.2,9039.73,47.88,520.46,2388.21,8.4457,395,38.6,23.2425 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412 +4,10,-0.002,-0.0005,641.86,1580.31,1405.86,21.61,553.11,2388.06,9062.61,47.41,522.12,2388.06,8.3926,391,39.04,23.5128 +4,11,-0.0003,-0.0005,642.02,1587.24,1396.24,21.61,554.03,2388.08,9061.95,47.36,521.82,2388.08,8.4095,394,38.84,23.311 +4,12,0.0039,0.0002,642.07,1591.21,1402.25,21.61,553.95,2388.03,9070.55,47.38,521.93,2388.08,8.4077,393,39.1,23.2931 +4,13,-0.0012,-0.0005,643.05,1588.88,1404.52,21.61,554.0,2388.01,9063.62,47.47,522.33,2388.04,8.4022,391,39.01,23.2346 +4,14,-0.0002,0.0002,643.05,1582.9,1394.69,21.61,554.17,2388.03,9066.98,47.45,522.1,2388.03,8.4014,390,38.88,23.3799 +4,15,-0.0024,-0.0003,642.27,1583.34,1405.36,21.61,554.08,2388.03,9063.22,47.4,521.65,2388.02,8.4141,392,38.91,23.364 +4,16,0.0017,-0.0001,642.33,1591.22,1400.87,21.61,553.7,2388.01,9064.49,47.34,521.77,2388.06,8.4039,392,39.06,23.2707 +4,17,-0.0,-0.0003,642.59,1582.01,1401.08,21.61,553.73,2388.08,9069.3,47.3,522.16,2388.06,8.4518,393,38.93,23.3628 +4,18,-0.0017,-0.0002,642.49,1589.98,1401.49,21.61,553.9,2387.98,9058.1,47.31,521.62,2388.04,8.4498,391,38.98,23.4576 +4,19,0.0009,-0.0005,641.58,1598.84,1401.43,21.61,554.24,2388.08,9065.52,47.26,521.7,2388.04,8.436,391,39.06,23.406 +4,20,-0.0003,0.0003,642.16,1588.21,1398.46,21.61,553.99,2388.02,9064.44,47.26,521.84,2388.01,8.4245,392,38.87,23.4072 +4,21,-0.0013,0.0001,642.54,1592.01,1401.75,21.61,554.32,2388.04,9067.65,47.38,522.09,2388.01,8.4377,392,39.05,23.4713 +4,22,-0.0034,0.0,642.86,1588.05,1407.54,21.61,553.01,2388.11,9061.87,47.35,521.81,2388.08,8.442,392,38.95,23.3168 +4,23,-0.0016,0.0004,642.73,1588.91,1399.14,21.61,553.42,2388.03,9064.61,47.21,522.35,2388.03,8.4065,392,39.0,23.3572 +4,24,0.0001,0.0002,642.67,1592.14,1407.04,21.61,553.24,2388.05,9066.2,47.44,522.04,2388.04,8.4067,391,38.93,23.3207 +4,25,-0.0027,0.0001,642.5,1590.75,1403.68,21.61,553.81,2388.04,9069.54,47.48,522.45,2388.06,8.4276,392,38.93,23.3306 +4,26,-0.004,0.0001,642.37,1598.31,1402.54,21.61,553.8,2388.01,9065.84,47.57,521.96,2388.06,8.4114,392,39.08,23.3497 +4,27,0.0004,-0.0,642.66,1587.88,1396.46,21.61,553.84,2388.07,9061.12,47.18,521.69,2388.07,8.3984,392,38.84,23.3886 +4,28,-0.0017,0.0001,642.0,1590.0,1409.81,21.61,553.76,2387.99,9066.79,47.31,522.51,2388.05,8.4077,392,39.13,23.4317 +4,29,0.0015,0.0,642.42,1590.61,1403.78,21.61,553.45,2388.07,9065.36,47.34,521.46,2388.07,8.4324,392,38.88,23.2306 +4,30,-0.0029,-0.0004,642.86,1588.46,1403.65,21.61,554.38,2388.07,9069.03,47.33,521.96,2388.04,8.4084,391,39.06,23.3015 +4,31,0.0003,-0.0,642.5,1591.23,1405.79,21.61,554.24,2388.09,9056.0,47.22,521.98,2388.08,8.4182,393,38.87,23.2809 +4,32,0.0021,-0.0005,642.3,1582.64,1400.88,21.61,553.9,2388.05,9061.94,47.34,521.94,2388.06,8.4299,391,39.14,23.433 +4,33,-0.0022,0.0002,641.82,1585.41,1401.47,21.61,553.85,2388.01,9072.37,47.3,522.07,2388.02,8.435,392,38.89,23.4138 +4,34,-0.0041,-0.0005,642.38,1583.1,1395.59,21.61,554.01,2388.02,9071.37,47.36,522.14,2388.03,8.4584,393,38.99,23.4256 +4,35,0.0013,-0.0001,642.82,1590.34,1403.64,21.61,554.2,2388.04,9062.28,47.34,522.26,2388.09,8.4218,394,39.02,23.4101 +4,36,-0.0055,0.0004,642.8,1589.18,1402.1,21.61,553.84,2388.14,9060.63,47.38,521.76,2388.04,8.409,393,39.0,23.4206 +4,37,0.0028,-0.0001,641.9,1588.94,1403.49,21.61,553.1,2388.03,9068.16,47.2,522.24,2388.09,8.4216,392,38.72,23.4423 +4,38,0.0016,0.0002,642.59,1586.97,1404.17,21.61,554.53,2388.0,9066.04,47.52,521.89,2387.99,8.4355,392,38.74,23.376 +4,39,0.005,-0.0,641.68,1588.58,1411.78,21.61,554.61,2388.05,9057.63,47.43,521.78,2388.06,8.4908,391,38.84,23.4197 +4,40,-0.0025,-0.0002,642.26,1589.31,1411.44,21.61,553.52,2388.09,9059.81,47.4,521.56,2388.01,8.4183,393,38.81,23.4656 +4,41,-0.0049,0.0004,642.49,1591.7,1403.21,21.61,554.15,2388.09,9058.87,47.34,521.26,2388.02,8.4173,392,38.87,23.3199 +4,42,-0.0033,-0.0005,641.95,1587.77,1408.32,21.61,554.15,2388.06,9062.85,47.21,521.48,2388.1,8.3991,393,38.65,23.4807 +4,43,0.0015,-0.0003,643.14,1588.53,1407.16,21.61,553.59,2388.05,9062.75,47.32,522.02,2388.1,8.4206,391,38.87,23.3472 +4,44,0.0025,0.0004,642.88,1592.66,1395.1,21.61,554.31,2388.09,9061.41,47.43,521.73,2388.04,8.433,394,38.93,23.3056 +4,45,-0.0002,0.0001,642.8,1577.14,1399.9,21.61,554.07,2388.02,9061.62,47.29,521.73,2388.07,8.391,392,38.93,23.2825 +4,46,0.0012,-0.0005,642.51,1588.35,1406.91,21.61,552.84,2388.08,9065.81,47.37,522.1,2388.09,8.4128,393,39.02,23.2679 +4,47,0.0021,-0.0005,642.7,1591.51,1404.46,21.61,553.82,2388.01,9062.6,47.24,522.26,2388.02,8.4183,391,38.93,23.3569 +4,48,0.0003,-0.0004,642.85,1590.34,1404.82,21.61,554.31,2388.04,9068.24,47.39,522.23,2388.07,8.419,393,38.86,23.4273 +4,49,-0.0017,0.0,642.36,1585.2,1397.92,21.61,554.07,2388.02,9064.86,47.53,521.36,2388.14,8.4683,392,39.09,23.4328 +4,50,-0.0002,0.0002,642.45,1585.79,1404.24,21.61,554.03,2388.06,9064.16,47.51,521.89,2388.06,8.3835,391,38.91,23.2407 +4,51,0.0015,-0.0,642.46,1585.51,1403.97,21.61,553.5,2388.03,9061.72,47.26,521.98,2388.02,8.4146,392,39.06,23.3559 +4,52,0.0016,-0.0,642.59,1581.31,1401.15,21.61,553.61,2388.07,9065.41,47.34,522.24,2388.07,8.435,392,38.93,23.3741 +4,53,-0.0008,-0.0001,642.32,1590.99,1409.69,21.61,553.98,2388.07,9069.89,47.36,522.31,2388.07,8.4061,394,38.91,23.354 +4,54,-0.0003,0.0004,642.19,1584.19,1402.12,21.61,553.58,2388.04,9062.08,47.44,521.96,2388.07,8.45,391,38.98,23.3205 +4,55,0.0025,0.0001,642.08,1591.35,1402.98,21.61,554.8,2388.05,9064.45,47.52,521.85,2388.01,8.4531,392,38.8,23.4486 +4,56,-0.0007,-0.0005,642.23,1590.48,1405.53,21.61,553.75,2388.04,9060.95,47.29,521.35,2388.05,8.4033,393,38.75,23.3247 +4,57,0.0029,-0.0001,642.25,1580.03,1408.31,21.61,553.57,2388.06,9054.65,47.3,522.39,2388.09,8.4277,392,38.67,23.4323 +4,58,0.0006,0.0001,642.66,1584.18,1405.63,21.61,553.04,2388.06,9060.82,47.5,522.23,2388.08,8.4517,393,38.86,23.3487 +4,59,0.0023,-0.0001,642.18,1592.14,1406.82,21.61,553.53,2388.11,9065.66,47.45,522.36,2388.05,8.4747,393,38.92,23.367 +4,60,0.0016,-0.0002,642.99,1585.27,1412.64,21.61,553.77,2388.06,9065.29,47.4,521.94,2388.05,8.4209,392,39.04,23.3723 +4,61,-0.0015,-0.0004,641.88,1589.62,1396.84,21.61,553.73,2388.08,9063.24,47.33,521.72,2388.1,8.4373,395,38.94,23.3591 +4,62,0.0022,-0.0,642.58,1583.31,1409.23,21.61,553.89,2388.06,9063.08,47.39,522.61,2388.07,8.4152,393,38.86,23.3407 +4,63,0.0011,-0.0004,642.68,1592.5,1406.59,21.61,553.21,2388.12,9068.94,47.48,521.52,2388.08,8.4382,393,39.1,23.3847 +4,64,-0.0004,-0.0005,642.49,1585.67,1404.76,21.61,553.62,2388.11,9054.04,47.34,522.25,2388.03,8.4378,393,38.99,23.3758 +4,65,0.0013,0.0001,642.85,1585.97,1405.22,21.61,554.39,2388.06,9062.04,47.32,521.31,2388.04,8.4059,392,39.06,23.2332 +4,66,0.0021,-0.0001,642.41,1589.48,1397.56,21.61,553.22,2388.1,9065.71,47.21,521.9,2388.1,8.4488,393,38.93,23.4014 +4,67,0.0013,-0.0002,642.43,1588.68,1410.72,21.61,553.62,2388.08,9060.72,47.28,521.41,2388.05,8.4305,393,38.91,23.3711 +4,68,0.0013,-0.0001,642.76,1590.98,1410.74,21.61,554.19,2388.06,9061.66,47.61,521.74,2388.06,8.4171,394,38.89,23.3808 +4,69,-0.0038,-0.0003,642.18,1588.84,1401.97,21.61,553.14,2388.1,9058.63,47.24,521.95,2388.08,8.413,393,38.85,23.3779 +4,70,-0.004,-0.0003,642.62,1589.57,1399.27,21.61,553.32,2388.01,9062.69,47.43,521.61,2388.06,8.3892,394,38.91,23.2446 +4,71,-0.0009,-0.0002,642.1,1584.99,1406.44,21.61,553.42,2388.09,9054.48,47.6,521.82,2388.08,8.4144,391,38.9,23.2534 +4,72,-0.0007,0.0004,642.56,1587.27,1409.68,21.61,553.23,2388.11,9064.08,47.47,521.8,2388.08,8.4064,394,38.86,23.3192 +4,73,0.0034,-0.0005,642.03,1584.02,1399.46,21.61,553.54,2388.1,9053.37,47.42,521.25,2388.03,8.4042,392,38.98,23.2953 +4,74,0.0015,-0.0005,642.52,1586.97,1405.85,21.61,553.93,2388.03,9062.75,47.59,521.14,2388.04,8.435,392,38.82,23.3757 +4,75,0.0034,0.0003,642.34,1590.13,1404.16,21.61,553.41,2388.07,9064.96,47.34,521.38,2388.09,8.3889,392,38.71,23.3704 +4,76,0.0013,0.0,642.77,1592.82,1407.45,21.61,553.36,2388.09,9059.68,47.42,521.62,2388.08,8.4156,392,38.88,23.329 +4,77,-0.0029,0.0003,642.39,1584.46,1408.96,21.61,553.29,2388.11,9059.94,47.38,521.76,2388.0,8.4062,393,38.72,23.3334 +4,78,0.0023,-0.0005,642.59,1586.26,1411.34,21.61,553.31,2388.08,9054.34,47.48,521.86,2388.07,8.4563,394,38.79,23.314 +4,79,-0.0001,0.0004,642.36,1585.16,1409.04,21.61,553.55,2388.04,9063.13,47.51,521.75,2388.03,8.4138,392,38.87,23.293 +4,80,0.0032,-0.0002,642.89,1588.88,1407.68,21.61,553.24,2388.04,9067.74,47.65,521.38,2388.09,8.4299,393,38.78,23.2322 +4,81,0.0009,-0.0003,642.45,1588.46,1404.52,21.61,553.84,2388.07,9058.7,47.61,521.55,2388.09,8.4283,394,38.97,23.3264 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185 +5,10,0.0028,-0.0002,642.46,1591.97,1411.79,21.61,553.24,2388.03,9054.97,47.49,521.58,2388.08,8.3946,393,38.88,23.429 +5,11,-0.0006,-0.0002,642.49,1585.55,1403.58,21.61,554.03,2388.1,9050.53,47.59,521.96,2388.06,8.4247,393,38.91,23.3262 +5,12,0.0026,-0.0003,643.33,1588.89,1407.71,21.61,553.15,2388.08,9054.65,47.52,521.59,2388.1,8.4066,394,38.75,23.3193 +5,13,0.0005,0.0003,642.96,1588.41,1401.59,21.61,554.25,2388.08,9058.96,47.27,521.47,2388.04,8.4144,394,38.95,23.2478 +5,14,0.0022,0.0001,643.09,1584.49,1400.98,21.61,554.27,2388.04,9050.07,47.51,521.58,2388.09,8.4358,394,39.02,23.2697 +5,15,0.0001,0.0003,642.4,1580.48,1406.37,21.61,554.39,2388.14,9056.42,47.5,521.72,2387.98,8.4241,392,38.96,23.3323 +5,16,0.0014,-0.0004,643.08,1594.84,1405.9,21.61,554.13,2388.09,9061.88,47.32,521.63,2388.08,8.4041,393,38.97,23.2768 +5,17,-0.001,-0.0003,642.63,1581.38,1402.37,21.61,553.87,2388.04,9057.68,47.49,521.85,2388.05,8.3793,393,39.03,23.2617 +5,18,0.0013,-0.0005,642.55,1584.62,1401.8,21.61,553.85,2388.11,9056.39,47.34,521.99,2388.09,8.4304,394,39.0,23.3598 +5,19,0.0022,0.0003,642.65,1585.16,1401.74,21.61,553.72,2388.1,9049.18,47.18,521.58,2388.1,8.4135,392,38.8,23.471 +5,20,0.001,0.0004,642.62,1589.33,1410.94,21.61,553.84,2388.04,9054.02,47.42,521.46,2388.09,8.4509,393,38.79,23.256 +5,21,0.0026,-0.0004,642.68,1591.44,1407.02,21.61,553.36,2388.09,9051.5,47.53,521.46,2388.08,8.4351,392,38.96,23.2967 +5,22,0.0026,-0.0003,642.69,1590.2,1402.06,21.61,553.93,2388.09,9062.25,47.55,521.54,2388.08,8.4588,391,38.86,23.2582 +5,23,0.0027,0.0002,642.64,1586.31,1403.05,21.61,553.89,2388.04,9050.75,47.4,521.82,2388.08,8.4232,393,38.92,23.4326 +5,24,0.0002,-0.0002,643.12,1585.76,1399.39,21.61,553.18,2388.13,9046.47,47.45,521.42,2388.09,8.4293,393,38.99,23.3995 +5,25,-0.0004,0.0004,642.88,1591.03,1396.96,21.61,552.73,2388.09,9058.47,47.44,521.41,2388.07,8.4058,393,38.87,23.3572 +5,26,-0.0005,-0.0,642.9,1586.17,1405.04,21.61,553.55,2388.11,9047.03,47.53,521.37,2388.09,8.4342,392,39.02,23.4094 +5,27,0.0022,-0.0001,642.57,1582.8,1408.74,21.61,553.95,2388.15,9056.78,47.53,521.45,2388.11,8.4271,393,38.88,23.3326 +5,28,-0.001,0.0002,642.53,1584.89,1407.07,21.61,553.47,2387.98,9048.83,47.39,521.76,2388.09,8.4429,394,38.72,23.2892 +5,29,0.0006,-0.0002,642.69,1588.32,1405.24,21.61,553.56,2388.1,9059.57,47.4,521.68,2388.13,8.42,393,38.72,23.3482 +5,30,-0.0005,-0.0005,642.61,1589.44,1405.61,21.61,553.9,2387.99,9056.83,47.65,521.13,2388.06,8.4442,392,38.84,23.2398 +5,31,0.0034,-0.0001,642.42,1583.82,1405.05,21.61,553.72,2388.06,9049.8,47.35,521.82,2388.13,8.4217,393,38.95,23.3924 +5,32,-0.004,0.0,642.29,1587.91,1408.66,21.61,553.0,2388.09,9058.73,47.49,521.92,2388.07,8.4101,392,39.01,23.3438 +5,33,-0.0009,0.0003,642.19,1586.51,1401.11,21.61,554.04,2388.06,9056.19,47.31,521.47,2388.04,8.4186,392,39.12,23.4086 +5,34,-0.0037,-0.0001,642.55,1586.15,1408.11,21.61,553.31,2388.07,9053.71,47.36,521.63,2388.15,8.4326,393,38.92,23.3377 +5,35,-0.0034,-0.0003,642.5,1585.77,1404.51,21.61,553.89,2388.05,9050.01,47.37,521.84,2388.03,8.4279,392,38.91,23.3598 +5,36,-0.001,-0.0,642.22,1592.15,1411.93,21.61,553.42,2388.0,9044.31,47.46,521.25,2388.15,8.4441,392,38.91,23.356 +5,37,0.0038,0.0002,642.79,1585.3,1406.96,21.61,553.38,2388.13,9053.42,47.35,522.25,2388.1,8.4495,393,38.92,23.2589 +5,38,0.0027,-0.0004,642.54,1583.17,1405.01,21.61,553.36,2388.11,9048.53,47.51,522.39,2388.09,8.4264,394,39.0,23.1759 +5,39,0.001,-0.0004,642.87,1589.74,1402.28,21.61,553.81,2388.14,9051.08,47.48,521.79,2388.04,8.4485,392,38.67,23.3824 +5,40,-0.0017,-0.0,642.43,1591.92,1409.06,21.61,554.14,2388.07,9050.64,47.49,521.36,2388.14,8.4151,393,38.99,23.3045 +5,41,0.0005,0.0002,642.5,1590.12,1404.31,21.61,554.33,2388.08,9050.83,47.3,521.46,2388.12,8.4204,394,38.9,23.322 +5,42,-0.0038,-0.0004,642.3,1591.12,1406.26,21.61,553.95,2388.06,9056.48,47.49,521.33,2388.07,8.4492,392,38.9,23.299 +5,43,-0.0003,-0.0003,642.08,1595.6,1396.66,21.61,553.92,2388.09,9052.01,47.43,521.86,2388.12,8.4607,394,38.96,23.4068 +5,44,-0.0011,-0.0004,642.35,1590.0,1405.38,21.61,552.95,2388.09,9047.74,47.64,521.51,2388.09,8.4333,393,38.87,23.3188 +5,45,-0.0023,-0.0,642.26,1584.41,1405.56,21.61,554.66,2388.08,9057.41,47.48,521.71,2388.04,8.4623,394,38.82,23.3781 +5,46,-0.0027,0.0001,642.72,1583.27,1404.31,21.61,553.78,2388.09,9049.58,47.71,521.67,2388.14,8.4426,392,39.13,23.3543 +5,47,-0.0024,-0.0003,642.47,1592.7,1407.69,21.61,553.22,2388.09,9055.9,47.39,521.5,2388.1,8.4185,393,38.94,23.2281 +5,48,-0.0001,-0.0001,642.29,1582.93,1404.54,21.61,552.99,2388.09,9061.48,47.6,521.62,2388.09,8.4264,394,38.83,23.1595 +5,49,0.0021,0.0001,642.19,1598.5,1401.84,21.61,553.57,2388.08,9057.73,47.45,521.64,2388.04,8.4628,393,38.86,23.3232 +5,50,0.0016,-0.0,642.71,1577.76,1405.06,21.61,553.2,2388.12,9059.47,47.58,521.52,2388.08,8.4519,392,38.88,23.2795 +5,51,0.0039,0.0003,642.64,1584.72,1415.17,21.61,553.91,2388.07,9048.45,47.58,521.88,2388.04,8.4269,392,38.88,23.2593 +5,52,0.002,0.0001,642.38,1585.92,1412.02,21.61,553.52,2388.1,9056.13,47.46,521.06,2388.05,8.4747,392,38.78,23.2637 +5,53,-0.0036,-0.0005,642.64,1585.77,1403.92,21.61,553.1,2388.08,9048.18,47.45,521.48,2388.13,8.4371,393,38.78,23.3264 +5,54,-0.0026,-0.0003,642.25,1588.5,1404.14,21.61,554.72,2388.09,9053.83,47.37,521.75,2388.1,8.4047,394,38.74,23.4052 +5,55,0.0052,0.0001,642.59,1589.74,1403.18,21.61,554.11,2388.08,9047.67,47.48,521.74,2388.05,8.4028,392,38.8,23.3363 +5,56,-0.0015,-0.0001,642.57,1589.2,1398.14,21.61,553.27,2388.09,9057.11,47.68,521.78,2388.1,8.3963,393,39.07,23.4159 +5,57,-0.0016,-0.0004,642.39,1589.9,1399.21,21.61,553.27,2388.1,9054.27,47.39,521.89,2388.1,8.4713,392,38.82,23.3174 +5,58,-0.0011,-0.0001,642.74,1588.23,1411.0,21.61,554.02,2388.05,9061.51,47.57,521.25,2388.14,8.4305,393,38.91,23.3908 +5,59,0.0,0.0002,642.48,1587.68,1406.69,21.61,553.21,2388.08,9054.89,47.43,521.47,2388.08,8.4778,392,39.03,23.3373 +5,60,0.0033,0.0,642.3,1587.31,1404.39,21.61,552.82,2388.08,9054.11,47.56,521.68,2388.05,8.4377,392,38.83,23.2594 +5,61,-0.0003,-0.0005,642.88,1590.93,1402.93,21.61,553.55,2388.11,9054.35,47.4,521.93,2388.09,8.4296,392,38.8,23.3212 +5,62,-0.0004,-0.0005,642.91,1584.11,1411.56,21.61,553.58,2388.03,9061.07,47.43,521.56,2388.11,8.4387,393,38.67,23.3777 +5,63,-0.0023,-0.0005,642.53,1585.47,1408.66,21.61,553.38,2388.07,9050.62,47.29,521.21,2388.11,8.446,392,38.83,23.3433 +5,64,-0.0004,0.0004,642.62,1587.04,1403.72,21.61,553.13,2388.09,9048.27,47.56,521.15,2388.11,8.4224,392,38.76,23.2791 +5,65,-0.0026,0.0004,643.1,1590.29,1419.87,21.61,553.02,2388.08,9055.96,47.43,521.44,2388.05,8.4251,393,38.78,23.2634 +5,66,-0.0015,-0.0002,642.45,1589.17,1404.86,21.61,554.4,2388.12,9051.54,47.55,520.96,2388.13,8.4743,394,38.75,23.3067 +5,67,0.0039,0.0003,642.17,1587.3,1402.94,21.61,552.76,2388.06,9058.4,47.63,521.53,2388.09,8.4374,396,38.89,23.1706 +5,68,0.0001,-0.0004,642.47,1584.26,1408.68,21.61,553.11,2388.12,9057.75,47.6,521.52,2388.07,8.4326,393,38.84,23.3267 +5,69,-0.001,-0.0,642.81,1587.11,1409.76,21.61,553.94,2388.11,9053.12,47.53,521.7,2388.06,8.4451,392,38.85,23.2355 +5,70,-0.003,-0.0001,642.59,1594.65,1409.92,21.61,553.84,2388.09,9058.81,47.5,521.34,2388.07,8.4375,394,38.99,23.3392 +5,71,-0.0018,-0.0004,642.48,1590.17,1403.92,21.61,554.27,2388.11,9053.08,47.55,521.26,2388.09,8.4199,392,38.75,23.3169 +5,72,-0.0039,-0.0003,642.58,1590.69,1403.56,21.61,553.17,2388.12,9054.62,47.45,521.15,2388.15,8.4293,395,38.93,23.22 +5,73,-0.0025,0.0,642.89,1591.5,1409.54,21.61,553.63,2388.09,9045.88,47.28,521.32,2388.01,8.4345,392,38.74,23.1732 +5,74,0.0021,-0.0003,642.57,1584.33,1406.79,21.61,553.84,2388.08,9060.88,47.46,521.69,2388.13,8.4231,393,38.99,23.2808 +5,75,0.0023,-0.0,642.71,1590.34,1402.72,21.61,553.23,2388.07,9054.75,47.65,521.33,2388.08,8.3943,393,39.01,23.2827 +5,76,-0.002,-0.0003,642.1,1588.98,1405.72,21.61,553.95,2388.03,9063.7,47.36,521.43,2388.12,8.4303,392,38.97,23.3629 +5,77,-0.0017,-0.0005,643.31,1590.56,1408.98,21.61,553.24,2388.13,9061.59,47.7,521.47,2388.08,8.4462,392,38.73,23.3321 +5,78,-0.0004,-0.0002,643.26,1584.5,1399.87,21.61,553.54,2388.12,9057.8,47.49,521.26,2388.11,8.4375,391,38.95,23.2266 +5,79,0.0001,-0.0003,642.56,1589.95,1411.1,21.61,553.86,2388.08,9057.23,47.44,521.75,2388.09,8.4239,394,38.84,23.2801 +5,80,0.0025,-0.0004,642.84,1595.45,1406.51,21.61,553.02,2388.16,9052.21,47.47,521.73,2388.09,8.483,392,38.7,23.4935 +5,81,0.0014,0.0001,642.71,1590.54,1406.2,21.61,552.75,2388.1,9057.67,47.61,521.19,2388.16,8.4545,393,38.72,23.3879 +5,82,0.0031,0.0002,642.79,1585.05,1408.53,21.61,552.76,2388.07,9067.67,47.52,521.94,2388.1,8.4244,394,38.81,23.3402 +5,83,0.0033,-0.0001,642.24,1589.99,1404.68,21.61,552.72,2388.1,9061.55,47.45,521.71,2388.13,8.4413,394,38.81,23.2702 +5,84,0.0,0.0003,642.03,1589.82,1410.36,21.61,553.54,2388.01,9059.28,47.43,521.5,2388.05,8.4371,394,38.81,23.3668 +5,85,0.0001,-0.0003,642.49,1587.62,1407.37,21.61,553.13,2388.11,9058.96,47.44,521.88,2388.08,8.4021,394,38.8,23.2185 +5,86,0.0011,-0.0004,642.59,1589.61,1400.67,21.61,553.63,2388.09,9063.15,47.43,522.08,2388.1,8.4452,393,38.74,23.3103 +5,87,-0.0018,-0.0002,643.16,1589.59,1410.81,21.61,553.66,2388.05,9056.42,47.48,521.13,2388.09,8.4121,393,38.83,23.3153 +5,88,0.0013,0.0003,642.81,1589.63,1407.24,21.61,553.92,2388.09,9065.87,47.38,521.59,2388.1,8.4232,393,38.73,23.3286 +5,89,-0.0,-0.0002,642.3,1603.74,1410.34,21.61,553.11,2388.1,9057.85,47.7,521.02,2388.04,8.3921,393,38.74,23.2692 +5,90,-0.0011,-0.0004,642.69,1590.54,1404.47,21.61,554.29,2388.09,9064.83,47.36,521.1,2388.06,8.4537,393,38.8,23.2696 +5,91,-0.0041,-0.0001,642.86,1588.89,1403.53,21.61,553.11,2388.08,9058.69,47.51,522.05,2388.1,8.4689,392,38.68,23.2542 +5,92,0.0003,-0.0002,643.35,1592.58,1405.79,21.61,553.76,2388.09,9061.21,47.67,521.44,2388.08,8.4545,394,38.71,23.3524 +5,93,-0.001,0.0001,642.54,1582.42,1406.59,21.61,553.78,2388.08,9060.35,47.43,521.13,2388.06,8.4475,393,38.85,23.3505 +5,94,0.0021,-0.0,642.5,1587.1,1412.45,21.61,553.5,2388.06,9065.0,47.44,521.75,2388.12,8.469,393,38.87,23.102 +5,95,-0.0006,0.0001,642.51,1591.07,1407.51,21.61,554.12,2388.14,9059.89,47.6,521.27,2388.11,8.4657,393,38.81,23.3185 +5,96,0.0009,-0.0004,642.72,1589.67,1415.13,21.61,553.77,2388.11,9059.38,47.31,521.71,2388.07,8.462,393,38.77,23.2764 +5,97,-0.0004,0.0,642.36,1589.06,1412.54,21.61,553.23,2388.1,9062.67,47.57,521.33,2388.08,8.4645,394,38.7,23.2482 +5,98,0.0017,-0.0002,642.68,1586.01,1416.64,21.61,553.34,2388.1,9064.94,47.54,521.31,2388.06,8.4774,394,38.67,23.2896 +5,99,0.0029,-0.0004,642.71,1589.22,1412.3,21.61,553.2,2388.12,9066.58,47.56,521.51,2388.14,8.4628,394,38.84,23.3365 +5,100,-0.0001,-0.0003,642.47,1587.22,1407.08,21.61,553.25,2388.1,9067.84,47.59,521.37,2388.07,8.4418,393,38.67,23.2864 +5,101,0.0035,-0.0004,643.24,1590.59,1409.48,21.61,552.7,2388.03,9065.84,47.36,521.43,2388.1,8.4569,394,38.87,23.2161 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954 +6,10,0.0003,-0.0001,642.44,1583.31,1402.04,21.61,554.63,2388.02,9066.58,47.29,522.41,2388.09,8.3829,391,38.79,23.2399 +6,11,0.0041,0.0004,642.23,1578.93,1398.67,21.61,554.36,2388.01,9065.7,47.26,522.55,2388.0,8.3986,393,39.06,23.3523 +6,12,-0.0012,0.0005,642.57,1582.23,1396.26,21.61,554.54,2387.99,9057.29,47.24,522.21,2387.97,8.4099,392,39.23,23.3973 +6,13,0.0006,-0.0004,642.06,1584.35,1394.71,21.61,554.05,2388.02,9065.57,47.11,522.53,2388.02,8.3987,390,39.02,23.445 +6,14,0.0008,-0.0004,641.82,1588.73,1397.98,21.61,554.17,2388.03,9057.84,47.35,522.14,2388.0,8.4239,394,38.96,23.3263 +6,15,-0.0022,0.0003,642.19,1576.99,1395.51,21.6,554.24,2387.99,9061.17,47.31,522.21,2388.06,8.4099,391,39.06,23.2863 +6,16,-0.0003,-0.0003,642.52,1583.81,1398.96,21.61,554.75,2388.01,9061.2,47.34,522.43,2388.02,8.3675,392,38.86,23.4538 +6,17,0.0021,-0.0001,642.09,1584.47,1408.99,21.61,554.53,2387.99,9067.34,47.1,522.56,2388.05,8.3942,391,39.17,23.347 +6,18,-0.0005,0.0004,642.66,1586.93,1398.41,21.61,555.07,2387.99,9064.99,47.02,522.03,2387.98,8.4166,391,39.1,23.4334 +6,19,0.0011,-0.0001,641.91,1583.52,1393.44,21.61,554.62,2387.96,9066.07,47.22,522.39,2388.0,8.3833,391,39.1,23.3751 +6,20,-0.0032,0.0001,641.64,1578.53,1398.74,21.61,553.95,2388.04,9053.44,47.09,522.68,2387.99,8.4251,391,38.93,23.353 +6,21,-0.0011,0.0002,642.06,1581.99,1395.18,21.61,554.67,2388.07,9062.63,47.32,521.96,2388.03,8.4245,393,39.0,23.5519 +6,22,-0.0004,-0.0001,642.06,1584.11,1398.84,21.61,554.59,2388.04,9060.91,47.3,521.92,2388.04,8.3996,392,39.06,23.3882 +6,23,0.0014,-0.0002,642.17,1587.24,1400.08,21.61,553.67,2388.05,9057.61,47.35,522.4,2388.0,8.4208,394,39.02,23.4076 +6,24,-0.0002,-0.0001,642.51,1584.95,1402.97,21.61,554.25,2388.01,9051.01,47.28,522.32,2388.04,8.4064,391,39.01,23.4342 +6,25,0.0026,-0.0001,642.14,1581.47,1396.7,21.61,554.4,2388.01,9061.24,47.15,522.13,2388.02,8.3992,391,39.0,23.4705 +6,26,-0.0043,-0.0003,641.76,1580.05,1396.15,21.6,553.84,2387.98,9064.38,47.25,522.29,2388.01,8.3656,391,39.0,23.4348 +6,27,-0.0008,0.0,642.32,1582.39,1399.68,21.61,554.52,2388.05,9063.78,47.21,521.72,2388.06,8.3758,391,39.06,23.4295 +6,28,-0.0023,0.0003,642.37,1586.12,1397.24,21.61,554.55,2388.03,9060.8,47.16,522.37,2388.01,8.3945,392,38.83,23.4577 +6,29,-0.0009,0.0002,642.21,1589.3,1393.27,21.61,554.93,2387.99,9065.19,47.35,522.18,2387.97,8.4261,391,39.12,23.4114 +6,30,-0.004,-0.0002,641.98,1587.54,1404.47,21.61,553.92,2388.02,9061.88,47.28,522.04,2388.06,8.3866,391,39.14,23.4249 +6,31,-0.0007,-0.0002,642.48,1589.18,1398.78,21.6,554.5,2388.01,9058.69,47.3,522.34,2388.04,8.3961,391,38.94,23.4398 +6,32,0.0025,0.0002,641.98,1584.62,1398.58,21.61,553.64,2388.0,9061.0,47.19,521.96,2388.02,8.3691,394,38.93,23.354 +6,33,0.0007,0.0004,641.96,1584.08,1402.64,21.61,554.12,2388.01,9058.33,47.3,522.25,2387.98,8.4019,390,38.84,23.5443 +6,34,0.004,-0.0003,642.42,1582.25,1396.8,21.61,554.6,2388.03,9062.7,47.38,521.99,2388.05,8.3771,391,38.87,23.3753 +6,35,-0.002,0.0002,642.1,1586.79,1396.63,21.61,555.25,2388.03,9066.18,47.4,522.29,2388.0,8.3797,392,39.09,23.3618 +6,36,0.0005,-0.0004,642.36,1586.9,1393.82,21.61,553.46,2388.01,9063.84,47.41,521.89,2388.03,8.3766,392,38.99,23.442 +6,37,0.0017,-0.0001,641.99,1581.52,1392.3,21.61,554.22,2388.01,9061.59,47.26,522.38,2387.99,8.3932,391,39.04,23.3466 +6,38,0.0012,-0.0003,642.21,1584.63,1395.58,21.61,553.09,2388.01,9056.31,47.28,521.47,2387.98,8.4335,392,38.85,23.3588 +6,39,-0.0011,0.0002,642.16,1590.79,1392.99,21.61,554.66,2387.96,9056.12,47.23,522.33,2388.01,8.4302,393,39.12,23.4243 +6,40,-0.0011,0.0002,642.18,1581.15,1396.98,21.61,553.77,2388.0,9060.92,47.2,522.74,2388.02,8.4123,390,38.96,23.4495 +6,41,-0.0032,-0.0003,642.26,1586.91,1403.3,21.61,554.31,2388.03,9053.06,47.18,522.48,2388.02,8.4239,392,39.21,23.3799 +6,42,0.0048,0.0005,642.44,1581.24,1396.97,21.61,553.29,2388.08,9058.92,47.39,521.65,2388.04,8.3664,392,39.06,23.4386 +6,43,0.001,-0.0004,642.13,1585.74,1405.19,21.61,554.16,2388.03,9061.17,47.29,522.27,2388.04,8.4361,394,39.05,23.2935 +6,44,0.0011,-0.0001,642.0,1581.89,1396.59,21.61,554.77,2387.95,9063.68,47.19,522.03,2387.98,8.4057,391,38.88,23.4112 +6,45,0.0023,0.0006,642.23,1587.12,1405.46,21.61,554.72,2388.01,9060.87,46.99,522.75,2388.05,8.3891,391,39.04,23.3672 +6,46,0.0009,-0.0004,642.44,1589.28,1400.44,21.61,554.17,2388.03,9055.66,47.28,522.15,2388.03,8.4115,392,38.97,23.3909 +6,47,-0.0005,0.0003,641.82,1578.14,1396.33,21.61,555.05,2387.97,9054.61,47.25,521.84,2388.02,8.4105,391,38.91,23.4262 +6,48,-0.0018,0.0002,642.82,1582.29,1405.74,21.61,554.38,2388.04,9060.4,47.33,522.08,2388.0,8.4054,392,39.0,23.4352 +6,49,0.004,0.0004,642.38,1591.73,1399.78,21.6,554.38,2388.06,9064.52,47.02,522.62,2388.01,8.412,392,39.1,23.3363 +6,50,0.0009,-0.0003,642.15,1589.11,1396.8,21.61,554.55,2387.97,9057.39,47.21,521.93,2388.03,8.3836,391,39.02,23.3261 +6,51,-0.001,-0.0004,641.99,1580.77,1400.53,21.61,554.59,2388.01,9060.49,47.26,521.93,2388.02,8.4127,392,39.03,23.3782 +6,52,-0.0014,-0.0,641.9,1594.56,1394.55,21.61,553.93,2388.02,9055.96,47.43,522.12,2387.98,8.42,390,39.16,23.4334 +6,53,0.0028,-0.0001,642.13,1584.76,1401.47,21.61,554.4,2388.01,9050.96,47.36,522.47,2388.06,8.3981,391,38.86,23.3472 +6,54,-0.0034,-0.0002,642.37,1580.8,1398.72,21.61,553.44,2388.04,9063.22,47.26,522.34,2388.0,8.4115,391,38.84,23.3688 +6,55,0.0022,-0.0001,642.29,1585.11,1406.56,21.61,554.56,2388.03,9071.85,47.2,522.38,2388.05,8.4392,392,38.97,23.4107 +6,56,0.0025,0.0005,642.57,1585.0,1390.97,21.61,554.3,2387.99,9061.82,47.17,522.73,2388.0,8.4131,393,38.97,23.3405 +6,57,-0.0052,0.0001,642.76,1589.34,1402.4,21.61,555.14,2388.06,9050.6,47.25,521.95,2388.02,8.4261,393,39.01,23.2655 +6,58,0.0011,0.0002,642.21,1588.17,1402.59,21.61,554.66,2388.06,9062.24,47.33,521.97,2388.0,8.3812,391,39.03,23.4303 +6,59,0.0007,-0.0003,642.49,1588.86,1395.47,21.61,554.43,2388.03,9053.21,47.3,521.76,2388.01,8.4378,391,39.17,23.3957 +6,60,0.0012,0.0005,642.55,1584.18,1404.94,21.61,554.08,2387.99,9056.11,47.26,521.84,2388.03,8.4193,392,38.99,23.395 +6,61,0.0002,-0.0004,641.86,1578.79,1398.5,21.61,554.27,2388.05,9054.65,47.18,522.13,2388.06,8.396,394,39.05,23.4124 +6,62,-0.0013,-0.0002,641.97,1589.86,1407.54,21.61,554.28,2388.04,9061.93,47.23,522.1,2388.03,8.3851,392,38.82,23.456 +6,63,-0.0009,-0.0003,642.15,1580.75,1397.82,21.61,554.03,2388.04,9059.94,47.33,522.37,2388.04,8.4073,392,39.17,23.3757 +6,64,-0.0008,-0.0001,642.49,1583.8,1402.8,21.61,554.19,2388.0,9064.65,47.22,522.1,2388.03,8.361,393,39.1,23.3382 +6,65,-0.0015,0.0005,642.31,1582.02,1395.27,21.61,554.22,2388.06,9058.85,47.06,521.89,2388.04,8.403,393,38.82,23.379 +6,66,-0.0044,0.0003,642.39,1589.33,1403.99,21.61,554.03,2388.06,9057.85,47.24,522.17,2388.01,8.4189,393,38.78,23.346 +6,67,0.0005,0.0003,641.99,1593.34,1402.49,21.61,554.14,2388.0,9057.16,47.29,522.27,2388.01,8.3953,394,38.89,23.4619 +6,68,0.0009,0.0001,642.02,1593.28,1402.49,21.61,554.84,2388.05,9052.42,47.31,522.28,2387.97,8.3889,392,38.95,23.3527 +6,69,0.0034,0.0001,641.84,1582.1,1394.79,21.61,553.51,2388.08,9061.25,47.13,522.73,2388.07,8.4324,392,39.03,23.3273 +6,70,-0.0013,0.0003,642.1,1587.58,1403.36,21.61,554.38,2388.03,9062.18,47.27,522.06,2388.03,8.4001,392,38.94,23.3296 +6,71,0.0026,0.0001,642.02,1588.7,1407.64,21.61,553.5,2388.03,9061.9,47.37,522.29,2388.1,8.436,392,38.85,23.2803 +6,72,0.0033,0.0005,642.0,1583.69,1402.21,21.6,553.51,2388.07,9058.55,47.19,521.84,2388.1,8.4007,391,38.96,23.2972 +6,73,0.0009,-0.0002,641.9,1587.48,1401.78,21.61,554.3,2388.07,9062.24,47.38,522.22,2388.01,8.3809,391,39.09,23.4261 +6,74,-0.0034,0.0004,642.33,1587.39,1395.4,21.61,554.25,2388.07,9062.29,47.32,521.94,2388.07,8.417,391,38.89,23.3053 +6,75,0.0004,-0.0001,642.38,1579.38,1399.53,21.61,553.87,2388.04,9062.25,47.36,521.73,2388.0,8.4402,393,39.07,23.3104 +6,76,-0.0001,-0.0001,642.52,1583.39,1404.66,21.61,554.51,2388.01,9053.72,47.23,522.29,2388.02,8.3976,393,39.03,23.2327 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362 +7,10,0.0005,-0.0001,642.14,1587.3,1402.78,21.61,553.16,2388.02,9049.3,47.24,521.34,2388.04,8.3876,392,39.0,23.3742 +7,11,-0.0058,-0.0004,642.39,1590.12,1403.65,21.61,554.57,2388.1,9060.6,47.59,521.6,2388.03,8.4491,391,38.72,23.3579 +7,12,0.0022,-0.0005,642.6,1591.68,1406.19,21.61,553.79,2388.12,9056.45,47.44,521.62,2388.06,8.3978,392,39.08,23.2246 +7,13,-0.0014,0.0004,642.49,1584.61,1398.07,21.61,553.15,2388.09,9059.63,47.32,521.55,2388.09,8.4428,394,38.76,23.2856 +7,14,-0.0018,0.0004,642.68,1577.93,1406.18,21.61,553.6,2388.11,9057.35,47.25,521.89,2388.05,8.4416,392,38.83,23.3618 +7,15,0.003,-0.0004,642.01,1593.14,1409.02,21.61,553.97,2388.05,9060.71,47.54,521.43,2388.04,8.4113,393,38.73,23.3824 +7,16,-0.0012,0.0004,642.04,1585.98,1410.03,21.61,553.85,2388.06,9055.5,47.52,521.55,2388.11,8.4516,393,38.95,23.4899 +7,17,-0.0001,0.0002,642.74,1593.04,1397.88,21.61,553.39,2388.1,9062.04,47.6,521.57,2388.06,8.4469,394,38.88,23.3134 +7,18,-0.0002,0.0002,642.34,1597.82,1402.1,21.61,554.66,2388.04,9054.36,47.41,521.42,2388.07,8.4281,392,38.73,23.2929 +7,19,0.0038,0.0001,642.44,1588.83,1405.77,21.61,553.86,2388.1,9061.15,47.49,521.83,2388.04,8.4449,393,38.81,23.415 +7,20,-0.0024,-0.0004,642.2,1588.67,1399.98,21.61,554.39,2388.05,9052.92,47.31,522.18,2388.07,8.4112,393,38.87,23.387 +7,21,-0.0019,-0.0002,642.45,1585.11,1399.8,21.61,553.99,2388.05,9063.67,47.29,521.93,2388.06,8.4413,392,38.88,23.3168 +7,22,0.0033,-0.0002,642.95,1591.54,1401.68,21.61,553.6,2388.08,9058.57,47.42,522.36,2388.12,8.4137,393,38.93,23.3991 +7,23,0.0011,-0.0,642.27,1583.38,1402.88,21.61,552.58,2388.07,9053.73,47.45,521.88,2388.06,8.4397,396,38.87,23.3694 +7,24,-0.001,0.0003,642.6,1590.89,1403.75,21.61,553.74,2388.04,9063.33,47.34,521.12,2388.02,8.4395,392,38.99,23.3001 +7,25,0.0,-0.0001,642.88,1585.1,1406.1,21.61,554.08,2388.05,9065.93,47.34,521.45,2388.1,8.4418,394,38.96,23.3368 +7,26,-0.0034,-0.0005,642.01,1584.22,1400.67,21.61,553.48,2388.06,9057.13,47.54,522.15,2388.09,8.4692,393,38.99,23.2544 +7,27,-0.002,-0.0001,642.6,1585.96,1402.31,21.61,553.96,2388.06,9058.97,47.39,521.72,2388.04,8.4261,394,38.88,23.318 +7,28,-0.0015,-0.0003,642.63,1595.78,1414.5,21.61,554.0,2388.08,9064.32,47.69,521.57,2388.04,8.4058,393,38.84,23.233 +7,29,-0.0002,0.0003,642.3,1585.03,1398.05,21.61,553.75,2388.07,9055.3,47.31,521.96,2388.08,8.426,393,38.86,23.2497 +7,30,0.0035,-0.0005,642.24,1587.35,1404.65,21.61,554.51,2388.06,9055.94,47.66,521.41,2388.05,8.4254,393,38.85,23.3391 +7,31,-0.0013,-0.0001,642.09,1588.25,1402.64,21.61,553.55,2388.09,9058.46,47.13,521.67,2388.02,8.4026,394,38.87,23.3706 +7,32,0.0019,0.0001,642.08,1593.15,1407.46,21.61,554.07,2388.08,9066.8,47.38,521.97,2388.04,8.4255,393,38.88,23.2503 +7,33,0.0038,-0.0004,642.72,1593.15,1403.41,21.61,553.71,2388.02,9060.73,47.44,520.97,2388.05,8.3948,395,38.79,23.2978 +7,34,-0.0013,-0.0005,642.33,1588.77,1405.29,21.61,553.91,2388.09,9055.98,47.44,521.32,2388.12,8.3882,393,38.89,23.3954 +7,35,-0.0056,-0.0003,642.18,1593.21,1406.66,21.61,553.53,2388.06,9068.78,47.48,521.59,2388.09,8.4356,392,38.83,23.3955 +7,36,0.0025,0.0001,642.7,1586.56,1401.61,21.61,554.39,2388.1,9064.54,47.51,521.5,2388.06,8.399,391,38.92,23.3391 +7,37,0.0009,0.0002,642.16,1585.26,1402.85,21.61,552.96,2388.09,9062.16,47.4,521.25,2388.03,8.4246,392,38.8,23.328 +7,38,0.0011,-0.0005,643.02,1582.33,1406.5,21.61,553.49,2388.14,9067.93,47.48,522.16,2388.06,8.419,393,38.79,23.3434 +7,39,-0.0041,0.0003,642.17,1592.36,1411.81,21.61,553.81,2388.06,9070.76,47.34,521.46,2388.08,8.4603,394,38.9,23.3002 +7,40,-0.0019,-0.0002,642.44,1585.76,1403.26,21.61,554.14,2388.11,9054.79,47.47,521.72,2388.12,8.4497,392,38.81,23.401 +7,41,-0.0003,0.0004,642.72,1592.16,1403.48,21.61,553.64,2388.1,9061.48,47.41,522.39,2388.05,8.4312,393,38.86,23.2675 +7,42,0.0016,0.0002,642.12,1581.07,1404.24,21.61,553.64,2388.08,9062.71,47.37,521.8,2388.08,8.4318,394,39.04,23.3231 +7,43,0.0048,-0.0004,642.88,1583.12,1400.31,21.61,553.37,2388.08,9053.02,47.36,521.47,2388.09,8.4191,393,39.1,23.3145 +7,44,-0.0004,0.0004,642.49,1587.92,1406.33,21.61,553.65,2388.07,9060.44,47.4,521.93,2388.07,8.4028,392,38.89,23.3264 +7,45,0.0003,-0.0003,642.38,1595.01,1411.33,21.61,553.26,2388.04,9064.89,47.44,521.66,2388.04,8.4106,394,38.81,23.3484 +7,46,0.0038,-0.0003,642.89,1581.0,1399.87,21.61,553.56,2388.07,9056.85,47.36,521.54,2388.06,8.4595,393,38.89,23.3055 +7,47,-0.0008,-0.0005,642.38,1587.43,1409.08,21.61,553.47,2388.08,9061.73,47.69,520.95,2388.11,8.4365,393,38.95,23.2599 +7,48,-0.0009,-0.0002,642.89,1589.04,1405.39,21.61,553.83,2388.07,9059.79,47.5,521.42,2388.06,8.4039,393,38.84,23.3366 +7,49,-0.0008,0.0,642.68,1581.38,1400.93,21.61,553.51,2388.07,9060.26,47.43,521.35,2388.09,8.4548,392,38.84,23.2824 +7,50,-0.0007,0.0001,642.66,1591.05,1399.28,21.61,553.91,2388.1,9063.27,47.32,521.97,2388.12,8.4348,393,38.84,23.2789 +7,51,0.0014,-0.0003,642.95,1593.28,1412.5,21.61,553.96,2388.09,9055.95,47.47,521.73,2388.04,8.4163,393,38.76,23.3515 +7,52,-0.0021,-0.0005,642.73,1588.49,1403.69,21.61,553.66,2388.14,9063.0,47.51,521.97,2388.1,8.4631,392,38.78,23.3635 +7,53,0.0041,0.0001,642.18,1593.61,1399.19,21.61,554.21,2388.1,9067.26,47.41,521.19,2388.06,8.4103,391,38.9,23.2632 +7,54,0.0008,0.0001,642.45,1592.93,1414.05,21.61,553.45,2388.04,9061.11,47.45,521.95,2388.08,8.4213,393,38.82,23.2546 +7,55,-0.0037,-0.0001,642.71,1593.25,1399.43,21.61,554.61,2388.09,9057.79,47.57,522.08,2388.11,8.4232,392,38.87,23.3397 +7,56,0.0048,-0.0004,642.76,1591.8,1404.89,21.61,552.86,2388.07,9060.01,47.48,521.56,2388.11,8.4333,393,38.83,23.305 +7,57,-0.0003,-0.0004,642.66,1593.98,1402.92,21.61,553.18,2388.12,9062.01,47.44,521.97,2388.1,8.435,393,38.89,23.3077 +7,58,-0.0002,-0.0001,642.93,1588.08,1404.67,21.61,552.83,2388.1,9060.85,47.67,521.55,2388.15,8.4591,393,38.81,23.273 +7,59,0.0005,0.0,642.79,1587.81,1402.69,21.61,553.62,2388.07,9056.6,47.37,521.54,2388.07,8.4316,392,39.0,23.3018 +7,60,0.0038,-0.0003,641.99,1588.09,1413.36,21.61,553.52,2388.06,9061.99,47.47,520.89,2388.04,8.4346,394,38.88,23.3497 +7,61,0.0009,0.0,642.67,1591.12,1405.99,21.61,553.28,2388.05,9064.82,47.33,521.53,2388.11,8.4537,391,38.96,23.4643 +7,62,0.0014,-0.0004,642.52,1592.28,1415.45,21.61,553.4,2388.1,9060.35,47.47,521.58,2388.08,8.4116,394,38.94,23.3304 +7,63,0.0022,0.0,642.07,1596.38,1404.79,21.61,553.54,2388.08,9061.58,47.64,521.62,2388.08,8.4399,393,39.12,23.3178 +7,64,0.0043,-0.0004,642.35,1588.1,1414.66,21.61,552.71,2388.08,9062.98,47.62,521.29,2388.13,8.4412,393,38.88,23.3668 +7,65,0.0043,-0.0004,642.31,1581.73,1404.08,21.61,553.61,2388.06,9062.05,47.46,521.63,2388.07,8.4314,394,38.9,23.3583 +7,66,-0.0013,0.0003,642.45,1590.07,1418.84,21.61,553.44,2388.06,9058.13,47.58,521.81,2388.1,8.4242,393,38.87,23.3148 +7,67,0.0008,0.0001,643.05,1589.46,1407.97,21.61,553.48,2388.06,9065.02,47.39,521.46,2388.05,8.4314,393,38.77,23.3704 +7,68,-0.0011,-0.0005,642.51,1589.06,1409.91,21.61,553.04,2388.07,9064.65,47.47,521.1,2388.08,8.4409,393,38.8,23.2743 +7,69,0.0032,-0.0001,642.64,1593.68,1408.24,21.61,553.55,2388.11,9067.75,47.27,521.69,2388.06,8.417,394,38.77,23.3108 +7,70,0.0014,-0.0,642.35,1588.16,1411.22,21.61,553.15,2388.13,9065.34,47.58,521.27,2388.09,8.4603,393,38.82,23.2694 +7,71,0.0055,0.0001,642.4,1586.97,1407.59,21.61,553.5,2388.07,9060.85,47.64,521.32,2388.07,8.4413,394,38.75,23.3585 +7,72,-0.0023,0.0003,642.58,1590.18,1416.18,21.61,553.04,2388.1,9057.35,47.65,521.35,2388.07,8.4455,393,38.87,23.2587 +7,73,0.0013,-0.0003,642.95,1590.0,1406.83,21.61,553.96,2388.1,9064.18,47.36,521.05,2388.06,8.4773,394,38.73,23.2027 +7,74,0.0004,0.0002,642.73,1587.9,1415.3,21.61,552.76,2388.07,9063.95,47.53,522.26,2388.12,8.4129,393,38.73,23.3053 +7,75,-0.0019,-0.0001,642.4,1587.1,1411.15,21.61,554.14,2388.11,9070.38,47.5,521.31,2388.12,8.4514,393,38.87,23.2519 +7,76,0.0033,0.0002,642.72,1588.83,1405.55,21.61,553.03,2388.05,9064.91,47.62,521.93,2388.09,8.4114,394,38.79,23.2899 +7,77,-0.0017,0.0004,642.6,1595.6,1411.58,21.61,553.56,2388.08,9059.58,47.5,521.51,2388.07,8.4291,394,38.73,23.3028 +7,78,-0.0037,-0.0,642.52,1592.75,1411.55,21.61,553.2,2388.07,9071.16,47.37,521.86,2388.05,8.4225,394,38.75,23.246 +7,79,-0.0007,-0.0004,642.64,1592.64,1402.89,21.61,553.41,2388.06,9071.46,47.47,521.52,2388.14,8.4397,392,38.91,23.4019 +7,80,0.0017,0.0002,642.16,1581.81,1407.59,21.61,553.65,2388.1,9069.13,47.62,521.08,2388.11,8.419,392,38.83,23.3113 +7,81,-0.0011,0.0001,642.96,1591.52,1408.4,21.61,553.22,2388.07,9065.33,47.52,521.62,2388.15,8.4468,393,38.87,23.2215 +7,82,0.0026,-0.0,642.62,1593.59,1409.09,21.61,553.73,2388.08,9068.99,47.59,521.76,2388.15,8.4525,395,38.86,23.2195 +7,83,0.0018,0.0002,642.47,1591.42,1404.39,21.61,553.75,2388.12,9066.64,47.49,520.93,2388.09,8.4526,392,38.75,23.3757 +7,84,0.0019,0.0003,642.34,1591.66,1418.72,21.61,553.73,2388.13,9065.54,47.58,521.27,2388.09,8.447,394,38.9,23.2996 +7,85,-0.0019,-0.0004,642.58,1596.02,1409.61,21.61,553.75,2388.09,9065.44,47.4,521.36,2388.1,8.4337,393,38.83,23.1555 +7,86,0.0036,-0.0005,642.9,1591.51,1406.46,21.61,554.17,2388.1,9067.45,47.55,522.03,2388.06,8.4317,393,38.79,23.2292 +7,87,0.0005,-0.0004,643.03,1583.76,1408.78,21.61,553.51,2388.11,9066.74,47.72,520.96,2388.09,8.4573,392,38.81,23.3173 +7,88,0.0052,-0.0003,642.99,1585.57,1408.28,21.61,552.75,2388.12,9066.85,47.69,521.45,2388.05,8.4267,394,38.72,23.2413 +7,89,0.0008,0.0003,643.08,1589.03,1412.42,21.61,553.55,2388.08,9065.28,47.59,521.22,2388.08,8.422,393,38.68,23.385 +7,90,0.0002,-0.0003,643.03,1589.87,1409.68,21.61,552.39,2388.1,9065.98,47.5,520.87,2388.12,8.4814,393,38.75,23.3049 +7,91,0.0006,0.0002,642.69,1594.61,1411.31,21.61,554.08,2388.09,9062.89,47.9,521.03,2388.1,8.4241,394,38.75,23.3338 +7,92,-0.001,-0.0004,643.32,1600.55,1409.96,21.61,553.36,2388.12,9075.13,47.57,521.09,2388.14,8.4618,394,38.91,23.2552 +7,93,-0.0005,0.0002,642.53,1585.37,1410.92,21.61,552.78,2388.18,9062.99,47.83,521.48,2388.11,8.4651,395,38.7,23.2681 +7,94,-0.0048,-0.0004,643.27,1588.34,1419.28,21.61,552.53,2388.16,9062.17,47.67,521.38,2388.09,8.43,392,38.76,23.3231 +7,95,-0.0005,-0.0003,642.81,1598.27,1412.93,21.61,553.41,2388.08,9070.64,47.53,521.02,2388.07,8.4413,394,38.7,23.2145 +7,96,-0.0044,0.0,643.29,1590.12,1409.99,21.61,552.44,2388.15,9077.15,47.57,521.21,2388.12,8.4523,394,38.67,23.2446 +7,97,0.0011,-0.0003,642.77,1594.01,1409.39,21.61,552.09,2388.1,9068.4,47.73,520.76,2388.12,8.4406,393,38.72,23.2769 +7,98,0.0032,-0.0001,643.1,1595.38,1412.86,21.61,553.36,2388.11,9076.74,47.84,521.05,2388.11,8.4688,395,38.82,23.0983 +7,99,-0.0026,-0.0002,643.22,1594.31,1415.98,21.61,552.77,2388.14,9073.05,47.64,521.0,2388.12,8.4131,393,38.69,23.2598 +7,100,0.0018,-0.0003,642.73,1591.19,1412.82,21.61,552.47,2388.12,9070.9,47.79,520.16,2388.09,8.421,395,38.79,23.2617 +7,101,-0.0013,-0.0004,642.8,1592.44,1409.32,21.61,552.82,2388.13,9072.1,47.65,520.58,2388.15,8.4677,393,38.66,23.2031 +7,102,-0.0009,0.0004,642.75,1591.72,1415.13,21.61,552.82,2388.05,9069.33,47.67,520.44,2388.11,8.436,395,38.76,23.1689 +7,103,0.0042,-0.0001,642.99,1593.06,1416.34,21.61,552.47,2388.16,9068.63,47.74,520.28,2388.14,8.4328,393,38.68,23.1815 +7,104,0.0001,-0.0002,643.54,1595.08,1410.32,21.61,552.69,2388.15,9083.24,47.52,520.97,2388.11,8.5028,392,38.66,23.2055 +7,105,-0.0038,-0.0005,643.0,1594.12,1421.66,21.61,552.13,2388.1,9063.69,47.75,521.24,2388.06,8.4585,393,38.82,23.2273 +7,106,-0.002,0.0003,643.26,1597.27,1409.21,21.61,553.05,2388.14,9067.86,47.7,520.82,2388.1,8.442,392,38.63,23.3283 +7,107,0.0012,-0.0,643.36,1593.28,1411.13,21.61,553.11,2388.1,9067.8,47.76,520.04,2388.14,8.4635,394,38.68,23.1798 +7,108,0.0004,0.0004,642.96,1592.76,1407.9,21.61,552.83,2388.08,9080.68,47.97,520.66,2388.1,8.4696,394,38.54,23.13 +7,109,-0.0007,0.0003,642.6,1591.01,1417.75,21.61,553.24,2388.1,9078.0,47.92,520.52,2388.15,8.4672,395,38.66,23.1991 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398 +8,10,0.002,-0.0004,642.83,1584.97,1407.97,21.61,553.87,2388.06,9044.83,47.32,520.77,2388.1,8.4271,392,38.77,23.355 +8,11,0.0017,0.0004,643.13,1582.29,1407.13,21.61,553.11,2388.07,9040.34,47.36,521.24,2388.05,8.4378,392,38.77,23.2824 +8,12,0.0027,0.0,642.3,1591.82,1406.0,21.61,553.9,2388.09,9049.8,47.34,522.05,2388.09,8.429,391,38.89,23.1751 +8,13,0.0002,0.0004,642.12,1588.45,1402.71,21.61,554.04,2388.13,9044.83,47.48,521.35,2388.12,8.4269,393,38.93,23.1822 +8,14,-0.0027,-0.0003,642.69,1590.52,1406.71,21.61,553.95,2388.17,9047.87,47.58,521.86,2388.1,8.4128,391,38.96,23.3022 +8,15,-0.002,-0.0001,642.65,1587.02,1404.48,21.61,553.34,2388.09,9048.41,47.54,521.54,2388.1,8.4149,392,38.66,23.4028 +8,16,0.0039,-0.0002,642.6,1583.71,1400.29,21.61,553.12,2388.14,9042.89,47.5,522.24,2388.07,8.413,394,38.98,23.4181 +8,17,-0.0028,0.0003,642.83,1586.01,1406.36,21.61,553.7,2388.1,9049.88,47.46,521.05,2388.11,8.4723,391,38.78,23.3913 +8,18,0.0027,-0.0003,642.29,1585.14,1402.4,21.61,553.36,2388.13,9055.48,47.65,521.34,2388.13,8.4454,392,39.08,23.3572 +8,19,0.0021,-0.0,642.3,1583.71,1404.29,21.61,553.73,2388.05,9049.56,47.6,522.04,2388.08,8.4475,392,38.75,23.2646 +8,20,0.0018,-0.0003,642.78,1586.51,1406.3,21.61,553.37,2388.15,9038.78,47.48,521.77,2388.09,8.4324,393,38.81,23.3789 +8,21,-0.0016,0.0004,642.48,1586.09,1409.51,21.61,553.29,2388.07,9038.91,47.44,522.01,2388.07,8.441,392,38.88,23.3958 +8,22,0.0004,0.0004,642.65,1589.23,1401.52,21.61,553.65,2388.07,9053.88,47.53,521.79,2388.05,8.4108,393,38.74,23.2414 +8,23,-0.0003,0.0003,642.91,1594.68,1405.51,21.6,553.13,2388.11,9046.99,47.66,521.29,2388.1,8.4833,394,38.73,23.3472 +8,24,-0.0002,0.0001,642.78,1589.04,1401.67,21.61,553.64,2388.14,9043.07,47.48,521.92,2388.13,8.423,394,38.89,23.2798 +8,25,-0.0036,0.0001,642.53,1588.28,1409.97,21.61,553.94,2388.1,9046.35,47.46,521.83,2388.16,8.4108,393,38.81,23.309 +8,26,-0.0041,0.0002,642.75,1590.76,1408.38,21.61,553.24,2388.09,9045.25,47.25,521.39,2388.13,8.4172,392,38.62,23.2673 +8,27,0.0024,0.0001,642.43,1581.6,1403.69,21.61,553.03,2388.09,9051.98,47.58,521.32,2388.11,8.4347,393,38.93,23.3573 +8,28,-0.0002,-0.0002,642.81,1591.61,1411.83,21.61,553.3,2388.08,9048.07,47.58,521.14,2388.12,8.4303,393,38.73,23.3459 +8,29,-0.0031,0.0003,642.53,1591.34,1406.42,21.61,553.21,2388.13,9046.96,47.84,521.6,2388.11,8.4392,393,38.84,23.3505 +8,30,0.0045,0.0003,642.64,1590.8,1408.42,21.61,553.13,2388.11,9041.08,47.47,521.88,2388.14,8.4126,393,38.83,23.329 +8,31,0.0022,-0.0,642.86,1584.4,1410.95,21.61,554.48,2388.13,9048.44,47.48,521.42,2388.12,8.4283,392,38.8,23.3948 +8,32,0.0002,-0.0004,642.58,1590.54,1409.97,21.61,553.79,2388.12,9047.25,47.47,521.48,2388.07,8.4217,393,38.82,23.3847 +8,33,-0.0035,-0.0001,643.09,1592.54,1413.26,21.61,553.28,2388.1,9053.43,47.48,521.15,2388.15,8.441,393,38.51,23.2458 +8,34,0.0011,0.0002,642.57,1586.78,1412.17,21.61,553.07,2388.11,9049.14,47.57,522.17,2388.11,8.4323,393,38.62,23.2752 +8,35,0.0002,-0.0002,643.15,1583.88,1411.6,21.61,553.37,2388.1,9045.88,47.45,521.05,2388.16,8.3685,395,39.04,23.1706 +8,36,-0.0035,-0.0001,642.86,1594.03,1407.96,21.61,553.37,2388.11,9053.23,47.52,521.73,2388.16,8.4388,393,38.79,23.3143 +8,37,0.0008,-0.0004,642.86,1587.77,1407.27,21.61,553.79,2388.1,9051.84,47.39,521.22,2388.09,8.4148,393,38.83,23.3281 +8,38,0.0008,0.0003,642.72,1597.55,1405.38,21.61,553.7,2388.17,9048.64,47.51,521.46,2388.08,8.4451,394,38.79,23.295 +8,39,-0.0007,0.0004,642.61,1593.84,1404.44,21.61,553.46,2388.16,9043.12,47.61,520.93,2388.14,8.435,392,38.96,23.3754 +8,40,-0.0027,-0.0001,642.44,1591.76,1414.29,21.61,554.06,2388.13,9048.97,47.3,521.17,2388.11,8.4554,393,38.79,23.3284 +8,41,-0.0018,0.0003,642.88,1587.79,1411.2,21.61,553.64,2388.12,9042.76,47.61,521.45,2388.12,8.4518,392,38.79,23.2787 +8,42,0.002,0.0002,642.37,1591.22,1413.4,21.61,553.38,2388.1,9046.55,47.3,521.49,2388.09,8.4026,393,38.85,23.3589 +8,43,-0.0019,-0.0002,642.08,1589.69,1407.35,21.61,553.46,2388.1,9051.92,47.4,521.4,2388.09,8.424,393,38.95,23.2972 +8,44,-0.0031,-0.0003,642.44,1587.27,1410.17,21.61,553.34,2388.1,9047.4,47.49,521.79,2388.13,8.4046,393,38.91,23.2408 +8,45,-0.0033,0.0004,642.74,1587.64,1402.95,21.61,553.49,2388.11,9044.43,47.66,521.0,2388.1,8.4377,393,38.84,23.261 +8,46,-0.0012,-0.0005,642.68,1582.92,1409.79,21.61,553.86,2388.12,9052.99,47.49,521.38,2388.1,8.4281,392,38.7,23.3302 +8,47,-0.0024,0.0003,642.47,1583.7,1409.03,21.61,553.14,2388.12,9038.29,47.47,521.17,2388.13,8.4475,392,38.86,23.3859 +8,48,0.0022,-0.0005,642.42,1597.41,1410.16,21.61,553.18,2388.06,9054.29,47.57,521.4,2388.1,8.43,394,38.84,23.1625 +8,49,-0.0036,-0.0002,642.48,1580.52,1403.2,21.61,553.46,2388.1,9056.41,47.49,521.0,2388.06,8.4468,393,38.76,23.2819 +8,50,0.0027,-0.0001,642.82,1589.72,1409.9,21.61,553.86,2388.13,9045.49,47.47,521.17,2388.1,8.471,391,39.05,23.4174 +8,51,-0.0018,-0.0003,642.27,1588.62,1409.17,21.61,553.42,2388.16,9046.56,47.67,521.7,2388.08,8.4048,391,38.87,23.3369 +8,52,-0.0007,0.0,642.49,1582.17,1408.6,21.61,552.97,2388.16,9048.86,47.46,521.63,2388.15,8.4623,394,38.81,23.3384 +8,53,0.0026,0.0003,642.44,1596.23,1400.69,21.61,553.8,2388.15,9052.42,47.61,521.75,2388.15,8.4371,394,38.93,23.2566 +8,54,-0.0024,-0.0005,642.93,1591.77,1415.77,21.61,552.87,2388.1,9047.56,47.29,521.22,2388.11,8.4356,392,39.0,23.3543 +8,55,0.0015,0.0003,642.2,1594.71,1405.16,21.61,553.43,2388.11,9043.52,47.68,521.55,2388.14,8.475,392,38.92,23.2863 +8,56,-0.0009,0.0001,642.37,1588.1,1405.53,21.61,553.31,2388.09,9038.23,47.47,521.71,2388.11,8.4175,393,38.94,23.2648 +8,57,-0.0013,-0.0001,642.13,1583.93,1408.03,21.61,553.4,2388.1,9053.14,47.5,521.83,2388.11,8.4475,392,38.95,23.3684 +8,58,-0.0003,0.0002,642.84,1598.44,1410.33,21.61,553.64,2388.13,9043.84,47.53,521.34,2388.15,8.3891,394,38.9,23.2831 +8,59,0.0,0.0001,642.95,1590.79,1414.84,21.61,553.34,2388.11,9048.92,47.55,521.14,2388.11,8.4291,392,38.83,23.4754 +8,60,-0.0012,0.0003,642.97,1589.3,1411.12,21.61,553.26,2388.12,9051.33,47.57,522.08,2388.11,8.4331,395,38.8,23.1977 +8,61,-0.002,0.0,642.75,1585.58,1407.62,21.61,554.26,2388.15,9059.93,47.58,521.56,2388.11,8.4144,394,38.61,23.0833 +8,62,-0.0027,-0.0004,642.47,1588.19,1404.54,21.61,553.36,2388.05,9046.8,47.41,521.53,2388.08,8.4303,394,38.71,23.2392 +8,63,-0.005,-0.0005,642.97,1585.94,1411.6,21.61,552.87,2388.09,9047.21,47.45,521.11,2388.1,8.4202,393,38.98,23.268 +8,64,0.0005,-0.0005,642.98,1586.2,1408.5,21.61,553.36,2388.13,9048.87,47.59,521.48,2388.14,8.4573,392,38.62,23.2905 +8,65,0.0015,0.0005,642.57,1588.21,1407.15,21.61,553.51,2388.08,9050.16,47.42,521.53,2388.18,8.4491,393,38.94,23.3022 +8,66,-0.0019,-0.0003,642.62,1587.43,1403.97,21.61,552.97,2388.14,9047.37,47.4,521.79,2388.14,8.4276,393,38.74,23.2277 +8,67,0.0004,0.0001,642.73,1583.73,1400.57,21.61,552.59,2388.13,9048.95,47.48,521.25,2388.14,8.4337,394,38.71,23.2643 +8,68,-0.0049,0.0002,643.13,1592.02,1409.43,21.61,553.16,2388.12,9049.47,47.54,520.89,2388.18,8.4225,394,38.86,23.3131 +8,69,-0.0017,-0.0005,642.85,1592.74,1415.08,21.61,553.67,2388.12,9059.37,47.66,520.94,2388.15,8.4488,393,38.71,23.3626 +8,70,-0.0001,0.0001,642.72,1589.98,1404.1,21.61,552.87,2388.13,9043.37,47.51,520.97,2388.09,8.4139,393,38.61,23.3068 +8,71,-0.0021,-0.0005,642.39,1587.44,1410.37,21.61,553.86,2388.13,9037.91,47.47,521.82,2388.1,8.4402,394,38.88,23.3426 +8,72,0.001,0.0004,642.67,1593.31,1407.45,21.61,553.73,2388.13,9057.47,47.51,520.63,2388.14,8.4475,395,38.85,23.1779 +8,73,-0.0019,0.0001,642.68,1591.07,1406.97,21.61,553.35,2388.07,9050.25,47.39,522.19,2388.11,8.4263,393,38.59,23.2978 +8,74,0.0023,-0.0005,642.39,1588.72,1406.81,21.61,552.85,2388.15,9047.66,47.56,521.19,2388.11,8.4572,391,38.66,23.3184 +8,75,0.0026,-0.0005,642.6,1585.52,1408.78,21.61,552.81,2388.16,9049.9,47.66,521.09,2388.12,8.4308,394,38.88,23.2415 +8,76,-0.0009,-0.0003,642.63,1590.84,1408.48,21.61,553.0,2388.12,9043.37,47.56,521.92,2388.12,8.4614,394,38.64,23.2522 +8,77,-0.0018,0.0003,642.29,1595.03,1410.47,21.61,553.14,2388.14,9054.59,47.5,521.4,2388.14,8.4462,394,39.01,23.2614 +8,78,0.0008,0.0003,643.19,1597.73,1410.18,21.61,553.35,2388.1,9051.39,47.62,521.33,2388.12,8.4136,395,38.82,23.2295 +8,79,0.0061,0.0002,642.43,1594.06,1413.98,21.61,553.05,2388.15,9050.49,47.57,521.16,2388.15,8.4623,394,38.8,23.33 +8,80,-0.0003,0.0003,643.81,1583.38,1408.73,21.61,552.61,2388.14,9048.86,47.66,521.35,2388.17,8.4462,392,38.91,23.1968 +8,81,0.0015,-0.0004,642.81,1585.68,1410.62,21.61,553.67,2388.08,9052.18,47.6,521.36,2388.18,8.4422,392,38.91,23.2506 +8,82,0.0001,0.0,642.3,1590.81,1408.56,21.61,552.84,2388.15,9047.23,47.55,521.53,2388.14,8.4049,392,38.72,23.2538 +8,83,-0.0013,-0.0003,643.13,1577.92,1413.41,21.61,553.68,2388.14,9046.2,47.55,521.64,2388.14,8.451,393,38.92,23.2085 +8,84,-0.0035,0.0003,642.88,1589.73,1411.57,21.61,552.82,2388.17,9049.31,47.42,521.48,2388.11,8.4467,393,38.71,23.2559 +8,85,-0.0003,0.0004,642.85,1582.0,1414.03,21.61,552.85,2388.13,9052.55,47.48,521.3,2388.09,8.434,393,38.83,23.3199 +8,86,-0.0026,0.0002,643.33,1592.79,1414.83,21.61,552.99,2388.15,9048.4,47.26,521.28,2388.16,8.4295,394,38.89,23.2344 +8,87,-0.0039,-0.0005,642.52,1591.29,1410.93,21.61,553.65,2388.16,9050.5,47.49,521.34,2388.13,8.4526,395,38.82,23.2805 +8,88,0.0019,-0.0004,643.05,1586.76,1411.6,21.61,552.88,2388.14,9044.05,47.56,521.89,2388.15,8.455,393,38.87,23.1114 +8,89,-0.0054,0.0003,642.23,1595.81,1416.13,21.61,553.01,2388.17,9050.62,47.55,521.37,2388.11,8.4701,395,38.72,23.2725 +8,90,0.0023,0.0001,642.68,1596.51,1411.4,21.61,553.13,2388.11,9058.56,47.52,521.87,2388.06,8.4489,393,38.85,23.2674 +8,91,-0.0037,-0.0001,642.79,1591.8,1410.94,21.61,552.69,2388.19,9059.03,47.43,521.39,2388.19,8.4421,393,38.69,23.2535 +8,92,0.0022,0.0004,642.93,1590.2,1410.71,21.61,553.31,2388.15,9046.56,47.59,521.24,2388.17,8.4194,392,38.78,23.3732 +8,93,0.0014,0.0003,642.94,1591.57,1416.97,21.61,552.65,2388.13,9052.23,47.66,521.84,2388.11,8.4608,394,38.64,23.2091 +8,94,0.0021,-0.0001,642.91,1596.19,1412.86,21.61,553.63,2388.16,9052.06,47.7,520.57,2388.15,8.466,395,38.87,23.2291 +8,95,-0.0023,0.0001,643.66,1596.08,1413.47,21.61,553.26,2388.1,9061.09,47.76,520.88,2388.17,8.4564,394,38.63,23.2428 +8,96,0.0011,0.0001,642.85,1588.31,1410.49,21.61,553.14,2388.14,9054.12,47.64,521.43,2388.13,8.4781,395,38.46,23.3453 +8,97,0.0015,-0.0004,643.2,1591.43,1415.41,21.61,553.11,2388.16,9055.91,47.65,520.78,2388.12,8.4438,393,38.86,23.3717 +8,98,-0.0005,0.0,643.21,1591.89,1410.02,21.61,552.55,2388.12,9054.4,47.86,520.78,2388.13,8.4574,394,38.74,23.3392 +8,99,-0.0037,-0.0003,642.69,1593.86,1419.78,21.61,552.27,2388.1,9049.52,47.92,521.42,2388.16,8.4468,392,38.75,23.1453 +8,100,-0.0028,0.0001,642.58,1591.63,1408.58,21.61,553.27,2388.15,9059.1,48.0,521.16,2388.15,8.4518,392,38.59,23.2791 +8,101,-0.0003,0.0,643.13,1588.67,1418.41,21.61,553.54,2388.14,9051.04,47.55,520.99,2388.13,8.4546,394,38.67,23.1787 +8,102,-0.0002,0.0,642.87,1589.1,1407.1,21.61,552.9,2388.13,9058.88,47.56,520.89,2388.12,8.4667,394,38.81,23.3418 +8,103,-0.0,-0.0003,642.8,1593.24,1418.63,21.61,552.53,2388.16,9058.55,47.63,521.58,2388.13,8.4544,393,38.75,23.3725 +8,104,-0.0018,-0.0003,642.61,1593.13,1412.38,21.61,553.06,2388.18,9060.97,47.43,521.38,2388.12,8.4264,392,38.59,23.2386 +8,105,-0.0012,0.0003,642.89,1598.96,1410.11,21.61,552.9,2388.15,9062.35,47.57,520.79,2388.15,8.4865,394,38.48,23.2111 +8,106,0.0009,-0.0004,642.87,1594.48,1413.62,21.61,552.58,2388.16,9054.53,47.52,520.94,2388.14,8.4716,393,38.67,23.3073 +8,107,0.0043,0.0002,642.78,1596.86,1416.49,21.61,552.73,2388.13,9051.31,47.65,521.74,2388.14,8.4984,395,38.69,23.2329 +8,108,0.0021,0.0001,642.97,1584.63,1413.1,21.61,553.14,2388.15,9051.31,47.72,521.09,2388.1,8.4792,392,38.78,23.2998 +8,109,0.0016,0.0002,642.78,1590.58,1414.81,21.61,551.93,2388.21,9054.3,47.68,521.34,2388.14,8.4544,394,38.61,23.1994 +8,110,0.0034,-0.0004,643.02,1592.21,1410.16,21.61,552.59,2388.16,9053.16,47.58,520.94,2388.08,8.4558,394,38.76,23.2266 +8,111,0.002,-0.0001,642.9,1598.66,1413.97,21.61,552.21,2388.14,9057.46,47.63,520.96,2388.15,8.4689,395,38.72,23.2498 +8,112,-0.0025,0.0003,643.05,1592.8,1409.7,21.61,552.73,2388.18,9053.4,47.69,521.27,2388.1,8.4473,394,38.92,23.2031 +8,113,-0.0026,-0.0003,643.13,1595.98,1420.67,21.61,552.87,2388.24,9057.16,47.93,520.65,2388.19,8.4711,395,38.74,23.2162 +8,114,-0.0015,-0.0001,643.29,1587.44,1411.73,21.61,553.81,2388.15,9056.06,47.73,520.74,2388.13,8.4742,393,38.55,23.3422 +8,115,0.0059,0.0004,642.53,1593.62,1418.29,21.61,553.38,2388.12,9060.76,47.64,520.43,2388.14,8.4364,394,38.64,23.2204 +8,116,0.0022,-0.0002,642.97,1587.52,1411.88,21.61,552.13,2388.19,9060.42,47.67,521.05,2388.15,8.487,394,38.54,23.2477 +8,117,-0.0004,-0.0004,643.32,1590.98,1420.44,21.61,553.16,2388.18,9060.3,47.64,519.82,2388.17,8.4641,393,38.59,23.1911 +8,118,-0.0027,0.0004,643.37,1601.89,1410.66,21.61,552.01,2388.15,9059.95,47.88,520.94,2388.12,8.4651,395,38.82,23.1519 +8,119,0.0014,0.0003,643.05,1592.65,1420.46,21.61,553.13,2388.14,9061.23,47.71,521.21,2388.16,8.4747,394,38.81,23.2016 +8,120,0.0015,0.0004,643.01,1595.5,1409.15,21.61,552.21,2388.22,9052.98,47.75,521.34,2388.13,8.4541,394,38.66,23.1672 +8,121,0.0013,0.0002,643.01,1588.1,1419.72,21.61,552.49,2388.17,9057.49,47.93,520.6,2388.13,8.4468,393,38.73,23.1984 +8,122,-0.0038,-0.0003,642.9,1594.92,1412.66,21.61,552.75,2388.19,9062.93,47.67,520.28,2388.21,8.4789,393,38.7,23.172 +8,123,-0.0003,-0.0,643.04,1589.03,1416.1,21.61,553.6,2388.18,9063.49,47.74,520.75,2388.16,8.4533,393,38.56,23.2158 +8,124,0.0024,-0.0003,643.03,1590.52,1416.74,21.61,552.41,2388.19,9059.84,47.89,520.69,2388.19,8.4787,393,38.77,23.1952 +8,125,0.0008,0.0,643.06,1599.57,1418.51,21.61,552.11,2388.23,9061.21,47.81,520.37,2388.2,8.4794,393,38.54,23.2455 +8,126,-0.0021,-0.0003,642.93,1593.37,1417.47,21.61,552.5,2388.18,9059.33,47.87,520.86,2388.18,8.4454,394,38.8,23.166 +8,127,-0.0034,-0.0003,643.48,1592.36,1424.27,21.61,552.78,2388.18,9052.08,47.79,520.35,2388.22,8.4995,395,38.9,23.2057 +8,128,-0.0045,-0.0002,643.2,1599.17,1421.89,21.61,552.47,2388.14,9063.91,47.77,520.38,2388.19,8.4873,394,38.53,23.1953 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154 +9,10,-0.0018,0.0,642.0,1584.78,1398.88,21.61,554.22,2388.03,9063.0,47.34,522.41,2388.06,8.3859,392,38.92,23.3936 +9,11,0.0016,0.0003,642.13,1585.78,1397.07,21.61,554.43,2388.03,9063.65,47.32,521.9,2388.02,8.4371,391,38.97,23.2917 +9,12,0.0024,-0.0001,641.88,1591.53,1395.74,21.61,554.54,2388.02,9058.5,47.2,522.22,2387.99,8.4631,392,38.95,23.4204 +9,13,-0.0016,-0.0001,642.09,1587.5,1395.74,21.61,554.58,2387.98,9059.31,47.27,522.32,2388.02,8.3733,392,39.12,23.3624 +9,14,-0.0011,-0.0003,642.55,1578.26,1407.54,21.61,554.7,2387.98,9063.17,47.35,522.08,2388.03,8.4249,391,39.04,23.3249 +9,15,0.002,0.0004,641.74,1591.68,1397.78,21.61,554.8,2388.04,9057.33,47.2,522.13,2387.99,8.3771,390,39.03,23.3488 +9,16,0.0012,-0.0001,641.99,1583.33,1400.41,21.61,554.26,2388.07,9053.17,47.19,521.68,2388.04,8.418,392,38.95,23.3007 +9,17,-0.002,-0.0004,642.4,1583.88,1400.02,21.61,554.02,2388.01,9062.9,47.29,521.88,2388.05,8.4206,391,39.07,23.4115 +9,18,-0.0015,-0.0004,642.14,1575.08,1405.49,21.61,554.59,2388.0,9058.84,47.34,521.9,2388.04,8.4278,392,38.81,23.4692 +9,19,0.0003,-0.0004,642.19,1590.07,1397.8,21.61,553.86,2388.06,9059.77,47.16,522.44,2388.03,8.3891,392,39.03,23.2859 +9,20,-0.0029,-0.0002,642.04,1587.41,1400.46,21.61,554.37,2388.06,9062.78,47.32,522.25,2388.01,8.4121,392,38.88,23.3637 +9,21,0.0034,-0.0002,642.15,1585.73,1405.02,21.61,554.26,2388.04,9060.61,47.48,522.53,2388.02,8.4088,391,39.02,23.4172 +9,22,0.0001,-0.0002,641.97,1589.43,1398.5,21.61,554.37,2388.02,9063.9,47.26,521.82,2387.98,8.4277,392,38.95,23.2934 +9,23,0.0011,0.0002,642.46,1588.59,1403.26,21.6,553.99,2388.0,9063.86,47.33,522.57,2388.08,8.4197,391,39.05,23.3539 +9,24,-0.0005,0.0002,642.39,1578.51,1397.71,21.61,554.46,2388.04,9059.71,47.26,522.44,2388.03,8.4333,390,38.81,23.4792 +9,25,0.0,-0.0003,642.35,1580.64,1401.57,21.61,553.97,2388.03,9068.92,47.43,522.01,2388.06,8.4482,392,39.04,23.4259 +9,26,-0.0004,0.0005,642.06,1585.43,1397.36,21.61,554.77,2388.0,9049.76,47.08,522.6,2388.02,8.4149,391,38.97,23.2488 +9,27,-0.0004,0.0001,642.31,1588.46,1400.88,21.61,554.56,2387.99,9061.56,47.15,522.1,2388.0,8.4,392,38.96,23.3691 +9,28,0.0007,-0.0002,642.12,1587.13,1398.04,21.61,554.42,2388.04,9068.01,47.22,521.82,2388.01,8.432,391,38.95,23.3347 +9,29,-0.0004,0.0004,641.66,1580.35,1404.17,21.61,553.95,2388.03,9061.99,47.11,521.87,2388.13,8.3854,390,39.09,23.3577 +9,30,-0.0026,0.0005,642.63,1587.73,1401.9,21.61,554.28,2388.05,9061.31,47.27,521.94,2388.01,8.4132,392,39.0,23.3961 +9,31,-0.003,0.0003,642.45,1583.37,1404.61,21.61,554.0,2388.03,9059.16,47.07,522.24,2388.02,8.4343,392,39.08,23.526 +9,32,0.0023,-0.0002,642.21,1592.82,1405.31,21.61,554.2,2388.08,9064.25,47.15,522.56,2387.99,8.4177,391,39.1,23.3063 +9,33,0.001,-0.0002,642.05,1582.57,1395.11,21.61,554.16,2388.02,9063.94,47.07,522.43,2388.05,8.4023,391,38.99,23.3747 +9,34,0.0064,-0.0001,642.56,1589.82,1386.29,21.61,554.26,2388.03,9068.16,47.28,521.93,2388.06,8.4112,392,39.04,23.419 +9,35,-0.0054,-0.0001,642.0,1591.39,1395.39,21.61,553.64,2388.04,9060.18,47.38,522.27,2388.01,8.432,392,38.97,23.383 +9,36,0.0026,0.0003,642.15,1577.88,1395.64,21.61,554.0,2388.03,9057.78,47.07,521.16,2388.03,8.4367,393,38.95,23.3592 +9,37,0.0004,-0.0003,642.19,1586.89,1405.15,21.61,553.94,2388.01,9071.15,47.18,522.8,2388.0,8.3954,392,39.01,23.3922 +9,38,0.0014,-0.0001,642.45,1591.49,1400.04,21.61,553.71,2388.07,9063.87,47.37,522.11,2388.02,8.4347,393,39.0,23.3595 +9,39,-0.0033,0.0001,642.21,1587.41,1396.13,21.61,554.04,2388.02,9058.95,47.07,521.19,2388.01,8.4289,391,38.87,23.4622 +9,40,0.0012,0.0005,642.84,1583.49,1403.31,21.61,554.06,2388.07,9056.56,47.27,521.58,2388.03,8.4133,392,39.01,23.3409 +9,41,0.0011,0.0001,642.03,1585.82,1388.75,21.61,553.7,2388.03,9056.21,47.18,522.06,2388.02,8.398,391,38.95,23.4546 +9,42,-0.005,0.0,641.77,1581.84,1402.11,21.61,554.06,2388.0,9060.62,47.2,521.89,2388.06,8.3853,393,38.97,23.4096 +9,43,-0.0006,-0.0003,642.66,1590.02,1400.53,21.61,553.83,2388.05,9058.82,47.44,522.25,2388.03,8.3885,391,38.95,23.3824 +9,44,-0.0009,0.0005,642.26,1579.57,1403.01,21.61,553.39,2388.08,9059.16,47.19,522.28,2388.05,8.449,391,38.9,23.3625 +9,45,-0.0015,-0.0001,642.1,1580.86,1398.83,21.61,554.46,2388.05,9068.15,47.24,522.06,2388.02,8.3365,391,38.83,23.3948 +9,46,0.0006,0.0003,642.42,1587.65,1403.45,21.61,554.48,2388.03,9061.63,47.4,521.78,2388.07,8.42,391,38.93,23.3844 +9,47,-0.0005,0.0005,642.22,1581.14,1399.4,21.61,554.56,2388.0,9060.76,47.24,521.38,2388.04,8.4657,392,39.09,23.2828 +9,48,0.0027,-0.0,642.2,1581.03,1397.15,21.61,554.21,2388.01,9053.7,47.23,521.67,2388.06,8.4587,392,38.99,23.395 +9,49,0.0015,0.0004,642.67,1586.7,1399.43,21.61,554.38,2388.12,9051.11,47.2,522.3,2388.03,8.3865,391,38.81,23.4098 +9,50,-0.0029,0.0001,642.77,1591.11,1398.31,21.61,553.63,2387.99,9055.0,47.26,521.63,2387.98,8.3442,392,38.83,23.4036 +9,51,-0.0023,0.0002,642.24,1583.89,1400.62,21.61,554.21,2388.03,9070.23,47.25,521.82,2388.04,8.3968,392,38.92,23.3083 +9,52,0.0013,0.0003,642.11,1583.97,1403.76,21.61,554.1,2388.03,9059.69,47.41,521.89,2388.09,8.4019,392,39.04,23.4703 +9,53,-0.0007,0.0003,642.89,1576.32,1397.79,21.61,554.03,2387.99,9062.45,47.28,522.14,2388.06,8.3933,393,38.97,23.2884 +9,54,-0.0026,-0.0004,641.66,1584.01,1402.01,21.61,554.14,2387.96,9062.23,47.57,522.01,2388.03,8.4084,392,39.03,23.3563 +9,55,-0.0022,-0.0,641.95,1590.86,1397.56,21.6,554.15,2388.06,9058.54,47.48,521.62,2388.01,8.3655,391,38.98,23.427 +9,56,0.0021,-0.0001,641.72,1592.11,1403.0,21.61,554.77,2388.01,9059.37,47.2,522.37,2388.05,8.4458,392,39.12,23.2846 +9,57,0.0002,-0.0004,642.16,1588.7,1403.15,21.61,553.91,2388.02,9064.33,47.27,522.07,2388.02,8.4497,392,38.92,23.4204 +9,58,0.0007,0.0004,642.74,1586.71,1402.02,21.61,554.14,2388.01,9066.28,47.32,522.1,2388.01,8.4171,393,39.13,23.3799 +9,59,0.001,0.0002,642.16,1585.41,1403.26,21.61,554.0,2388.05,9058.6,47.27,522.06,2388.05,8.4343,392,38.93,23.3422 +9,60,-0.0016,0.0005,642.35,1583.99,1406.37,21.61,554.01,2388.06,9066.47,47.45,521.75,2388.04,8.3981,391,38.98,23.5351 +9,61,0.0007,0.0004,642.25,1585.11,1397.99,21.61,554.26,2388.01,9059.35,47.44,522.07,2388.04,8.3813,393,38.7,23.3242 +9,62,-0.0036,-0.0003,642.63,1582.12,1396.84,21.61,554.18,2388.03,9063.41,47.47,521.99,2388.02,8.4442,392,39.09,23.2784 +9,63,0.0025,0.0004,642.13,1587.61,1403.96,21.6,554.5,2388.06,9062.21,47.49,522.14,2388.05,8.4301,394,39.06,23.3871 +9,64,0.0023,0.0002,641.69,1587.33,1404.9,21.61,554.37,2388.06,9063.82,47.31,522.07,2388.07,8.3889,393,38.92,23.3226 +9,65,0.0016,-0.0004,641.82,1585.99,1402.55,21.61,554.15,2388.05,9054.08,47.4,522.25,2387.96,8.3916,393,39.09,23.4733 +9,66,-0.003,-0.0003,641.83,1592.16,1400.57,21.61,554.15,2388.01,9060.67,47.37,521.27,2388.06,8.4255,393,38.74,23.3521 +9,67,-0.0018,-0.0004,642.6,1584.13,1397.59,21.61,554.08,2388.02,9064.41,47.36,521.77,2388.07,8.382,394,38.97,23.2231 +9,68,-0.003,0.0002,642.39,1585.98,1404.64,21.61,554.17,2388.1,9066.44,47.34,522.51,2387.99,8.3909,393,38.93,23.3535 +9,69,-0.0021,-0.0001,642.33,1588.38,1392.02,21.61,553.92,2388.05,9057.19,47.49,521.97,2388.08,8.4009,391,38.95,23.3082 +9,70,-0.003,0.0001,642.76,1583.26,1401.75,21.61,553.67,2388.05,9063.12,47.47,521.44,2388.11,8.404,393,38.95,23.3257 +9,71,-0.0007,0.0002,642.45,1585.17,1407.3,21.61,553.67,2388.03,9063.3,47.39,522.45,2388.03,8.4027,392,38.96,23.2835 +9,72,0.0008,0.0003,642.53,1590.39,1403.15,21.61,554.19,2388.07,9058.83,47.37,522.07,2388.05,8.3885,393,38.94,23.3261 +9,73,-0.0052,-0.0004,642.34,1585.74,1405.91,21.61,553.94,2388.06,9059.73,47.36,521.53,2388.04,8.4234,393,39.12,23.2725 +9,74,0.0007,0.0003,642.45,1580.14,1402.48,21.61,553.43,2388.08,9064.92,47.43,522.07,2388.02,8.4324,391,38.83,23.4194 +9,75,0.0011,-0.0002,642.48,1583.4,1404.88,21.61,553.69,2388.08,9069.7,47.46,521.5,2388.01,8.4192,391,39.01,23.3159 +9,76,-0.0022,0.0004,641.99,1581.51,1399.16,21.61,553.82,2388.03,9070.46,47.42,522.24,2388.05,8.4494,392,38.94,23.3328 +9,77,0.0004,0.0005,642.73,1585.39,1409.38,21.61,553.61,2388.11,9064.31,47.36,521.96,2388.02,8.4487,392,38.75,23.4681 +9,78,-0.0016,0.0003,642.38,1581.38,1403.96,21.61,553.76,2388.07,9055.95,47.27,522.04,2388.01,8.423,392,38.91,23.3571 +9,79,-0.0009,0.0003,642.5,1582.64,1405.45,21.61,553.55,2388.05,9063.8,47.2,521.97,2388.09,8.3958,392,38.85,23.2773 +9,80,-0.0008,0.0005,641.87,1584.95,1406.25,21.61,553.93,2388.06,9057.95,47.37,521.26,2388.09,8.4193,395,38.96,23.4346 +9,81,0.0015,0.0004,642.51,1586.93,1404.91,21.61,554.66,2388.02,9057.79,47.41,521.7,2388.06,8.4265,391,38.75,23.34 +9,82,-0.0006,-0.0004,642.62,1587.91,1404.35,21.61,553.69,2388.05,9068.04,47.44,521.65,2388.06,8.4398,393,38.87,23.3893 +9,83,0.0004,0.0001,642.2,1589.82,1407.63,21.61,553.52,2388.09,9067.4,47.52,521.68,2388.05,8.437,393,38.9,23.3653 +9,84,0.0003,-0.0002,642.53,1590.72,1405.63,21.61,553.5,2388.03,9059.27,47.4,521.6,2388.1,8.4416,392,38.98,23.3274 +9,85,-0.0021,0.0,642.54,1584.24,1406.3,21.61,554.07,2388.03,9070.11,47.42,521.46,2388.07,8.4382,392,38.96,23.3757 +9,86,0.003,0.0004,641.95,1589.58,1408.57,21.61,553.66,2388.08,9064.9,47.54,521.44,2388.05,8.4622,393,38.98,23.3607 +9,87,0.0024,-0.0,642.64,1595.75,1409.26,21.61,553.03,2388.11,9064.26,47.64,521.8,2388.06,8.4241,391,38.83,23.3294 +9,88,-0.0028,-0.0004,642.77,1589.68,1405.07,21.61,553.34,2388.05,9069.06,47.37,521.74,2388.07,8.4179,393,38.89,23.351 +9,89,0.0007,-0.0001,642.46,1590.6,1408.35,21.61,554.44,2388.02,9058.17,47.47,522.15,2388.08,8.4206,392,38.96,23.2839 +9,90,-0.0002,0.0005,642.75,1585.44,1401.07,21.61,553.83,2388.09,9066.97,47.54,521.85,2388.07,8.3924,392,38.93,23.3511 +9,91,0.0009,-0.0003,642.07,1580.49,1408.78,21.61,553.74,2388.05,9065.54,47.48,521.7,2388.05,8.4429,392,39.03,23.3163 +9,92,0.005,0.0002,642.85,1588.85,1398.35,21.61,553.33,2388.05,9061.41,47.59,522.0,2388.09,8.4174,394,38.87,23.4654 +9,93,-0.0024,0.0002,642.83,1589.44,1409.78,21.61,553.17,2388.07,9062.6,47.38,521.57,2388.11,8.3855,393,38.79,23.3849 +9,94,-0.0006,0.0004,642.58,1589.08,1407.43,21.61,553.37,2388.08,9063.31,47.64,521.61,2388.05,8.4153,391,38.84,23.3869 +9,95,-0.0008,-0.0,642.86,1591.35,1408.12,21.61,554.09,2388.03,9066.51,47.45,521.59,2388.01,8.4516,394,39.06,23.3451 +9,96,0.0013,0.0005,642.72,1585.77,1397.82,21.61,553.95,2388.02,9065.32,47.61,521.71,2388.04,8.4359,393,38.85,23.3058 +9,97,-0.0038,0.0003,642.52,1586.19,1403.1,21.61,554.84,2388.04,9070.57,47.34,521.77,2388.07,8.4526,393,38.92,23.3804 +9,98,-0.0013,-0.0003,641.85,1588.24,1409.43,21.61,554.11,2388.12,9064.42,47.64,521.74,2388.06,8.4052,393,38.88,23.3068 +9,99,0.0006,0.0005,642.34,1591.79,1405.81,21.61,554.1,2388.1,9057.39,47.53,521.68,2388.07,8.4218,393,38.92,23.4398 +9,100,0.0017,0.0004,642.41,1585.46,1406.68,21.61,553.11,2388.08,9063.8,47.51,521.97,2388.11,8.4413,391,38.77,23.2732 +9,101,-0.0018,0.0005,642.78,1590.13,1408.17,21.61,553.87,2388.05,9064.79,47.65,521.67,2388.07,8.4469,393,38.82,23.3281 +9,102,-0.0016,0.0002,642.89,1591.14,1402.03,21.61,553.29,2388.08,9060.28,47.54,521.07,2388.11,8.4351,395,38.88,23.2447 +9,103,0.0027,-0.0002,642.44,1592.5,1411.61,21.61,553.87,2388.11,9057.54,47.48,521.01,2388.04,8.4389,394,38.9,23.2774 +9,104,-0.0031,0.0001,642.1,1591.78,1405.31,21.61,553.75,2388.11,9059.99,47.56,520.91,2388.09,8.4361,393,38.64,23.4862 +9,105,0.0015,0.0004,642.47,1591.03,1400.55,21.61,553.26,2388.12,9065.44,47.47,521.32,2388.07,8.4298,395,38.77,23.1773 +9,106,-0.0047,-0.0004,642.24,1585.26,1413.02,21.61,552.98,2388.06,9068.27,47.5,521.17,2388.11,8.4158,392,38.74,23.4261 +9,107,-0.0028,-0.0004,642.7,1590.69,1410.27,21.61,553.14,2388.1,9071.93,47.44,521.55,2388.1,8.4397,393,38.82,23.2549 +9,108,-0.0035,-0.0,642.35,1586.55,1409.36,21.61,553.28,2388.14,9066.28,47.43,521.24,2388.12,8.4353,393,38.81,23.2275 +9,109,-0.0006,0.0002,642.82,1592.48,1407.74,21.61,553.04,2388.14,9068.03,47.47,521.6,2388.15,8.4398,393,38.78,23.2493 +9,110,0.0023,0.0001,642.57,1589.87,1414.9,21.61,552.9,2388.11,9066.27,47.71,520.96,2388.07,8.4357,394,38.93,23.2599 +9,111,0.0013,0.0001,642.35,1579.17,1414.88,21.61,553.22,2388.11,9061.05,47.62,521.48,2388.13,8.4442,393,38.73,23.2775 +9,112,0.0002,-0.0001,642.75,1602.29,1407.51,21.61,553.76,2388.01,9064.94,47.42,520.64,2388.04,8.4054,393,38.75,23.2543 +9,113,0.0016,0.0005,642.2,1592.3,1411.81,21.61,553.19,2388.11,9066.19,47.48,521.54,2388.12,8.4576,395,38.86,23.2804 +9,114,-0.0047,-0.0001,642.78,1582.66,1418.45,21.61,552.85,2388.12,9065.67,47.49,520.75,2388.11,8.4631,393,38.69,23.2189 +9,115,-0.0021,-0.0,642.24,1589.85,1414.88,21.61,553.31,2388.15,9061.57,47.68,521.06,2388.13,8.4427,394,38.77,23.2818 +9,116,-0.0021,-0.0,642.75,1583.22,1412.31,21.61,553.5,2388.11,9058.81,47.59,521.29,2388.13,8.4901,392,38.74,23.3533 +9,117,-0.0027,0.0005,643.11,1593.53,1409.26,21.61,553.51,2388.07,9065.38,47.48,521.09,2388.08,8.4635,393,38.66,23.237 +9,118,0.0002,-0.0,643.01,1588.31,1415.0,21.61,552.8,2388.09,9060.44,47.76,521.03,2388.12,8.468,394,38.74,23.2127 +9,119,-0.0013,0.0002,642.94,1600.33,1417.43,21.61,552.52,2388.07,9055.98,47.6,521.45,2388.13,8.4529,393,38.83,23.1137 +9,120,-0.001,0.0001,642.44,1592.27,1412.49,21.61,553.29,2388.17,9066.94,47.63,521.49,2388.17,8.4894,394,38.86,23.268 +9,121,0.0025,0.0004,643.1,1590.6,1412.04,21.61,552.77,2388.1,9071.0,47.69,521.41,2388.11,8.4549,394,38.91,23.3353 +9,122,-0.0004,0.0003,642.81,1588.64,1409.63,21.61,552.94,2388.15,9065.08,47.67,520.68,2388.11,8.4514,396,38.8,23.3032 +9,123,0.001,0.0003,642.63,1590.75,1410.54,21.61,553.26,2388.16,9068.06,47.91,521.1,2388.08,8.4585,392,38.64,23.2347 +9,124,-0.0017,0.0003,643.09,1583.78,1413.49,21.61,553.64,2388.19,9060.97,47.62,521.32,2388.14,8.4398,394,38.67,23.1611 +9,125,0.0015,0.0003,642.82,1595.08,1422.75,21.61,553.06,2388.17,9071.07,47.66,520.54,2388.15,8.5068,393,38.59,23.1397 +9,126,-0.0023,0.0001,643.09,1586.82,1415.7,21.61,552.74,2388.16,9065.48,47.73,521.02,2388.15,8.4748,393,38.72,23.1972 +9,127,0.0019,0.0,642.25,1598.49,1415.58,21.61,552.88,2388.17,9076.08,47.59,520.8,2388.12,8.4614,394,38.79,23.3213 +9,128,-0.0024,0.0,643.02,1596.28,1421.63,21.61,552.58,2388.17,9060.0,47.67,520.51,2388.09,8.4669,395,38.75,23.3117 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179 +10,10,0.0024,-0.0004,642.07,1584.36,1396.5,21.61,552.81,2388.02,9075.91,47.24,522.49,2388.03,8.4025,392,38.99,23.5006 +10,11,0.0012,-0.0001,642.6,1583.96,1401.37,21.61,554.39,2388.0,9073.5,47.09,522.39,2387.95,8.4142,391,39.01,23.383 +10,12,-0.0031,-0.0005,641.87,1579.66,1397.29,21.61,554.43,2387.94,9069.02,47.28,522.59,2388.07,8.3912,392,38.94,23.3952 +10,13,-0.0012,-0.0003,641.86,1578.11,1396.26,21.61,554.91,2387.97,9066.55,47.46,522.65,2388.0,8.4239,391,39.02,23.4809 +10,14,0.0016,0.0001,642.74,1586.49,1393.15,21.61,554.62,2388.03,9071.68,47.36,521.81,2388.04,8.3817,392,39.0,23.5295 +10,15,-0.0002,-0.0003,642.17,1584.16,1399.3,21.61,554.09,2388.02,9064.26,47.15,522.51,2387.98,8.3773,393,38.9,23.4568 +10,16,0.0015,-0.0002,642.71,1584.08,1399.74,21.61,554.68,2388.01,9065.01,47.08,522.32,2387.97,8.451,392,39.3,23.4036 +10,17,-0.0009,-0.0003,642.31,1588.54,1396.08,21.61,554.07,2388.05,9065.0,47.14,521.95,2388.01,8.3717,392,38.98,23.4329 +10,18,-0.003,-0.0003,642.25,1588.99,1389.48,21.61,554.67,2388.03,9070.59,47.05,522.04,2388.01,8.4145,391,39.06,23.4741 +10,19,0.0008,0.0002,641.98,1581.82,1401.22,21.61,553.62,2387.98,9062.51,47.22,522.23,2388.0,8.4365,391,38.96,23.4827 +10,20,0.0004,-0.0,642.54,1592.0,1403.12,21.61,554.61,2387.99,9066.84,47.16,522.17,2387.99,8.4288,391,39.05,23.4116 +10,21,-0.0024,0.0001,642.04,1580.39,1391.4,21.61,554.69,2387.95,9061.52,47.04,522.32,2388.04,8.4007,391,39.04,23.4487 +10,22,0.0037,0.0001,641.79,1588.86,1404.83,21.61,554.52,2388.0,9058.49,47.3,522.35,2388.01,8.4028,392,38.99,23.3938 +10,23,-0.0032,-0.0004,642.18,1586.09,1392.01,21.61,553.9,2388.0,9073.55,47.25,522.5,2388.01,8.4143,394,38.89,23.3942 +10,24,-0.0026,0.0001,642.49,1587.08,1399.07,21.61,554.33,2388.04,9066.75,47.3,522.36,2388.04,8.3925,392,38.89,23.3854 +10,25,-0.0007,-0.0003,642.29,1587.33,1399.04,21.61,553.75,2388.04,9065.66,47.18,522.05,2388.06,8.4209,392,39.0,23.3737 +10,26,0.0013,0.0002,642.05,1582.42,1395.86,21.61,554.16,2388.02,9073.28,47.39,522.28,2388.02,8.3736,393,38.98,23.3906 +10,27,0.0004,0.0002,642.23,1587.5,1397.2,21.61,554.44,2388.01,9062.15,47.12,522.36,2388.0,8.3796,390,39.05,23.5187 +10,28,-0.0016,0.0,641.65,1579.76,1404.49,21.61,555.16,2387.98,9073.08,47.13,521.94,2387.98,8.3892,391,39.18,23.398 +10,29,-0.0027,0.0001,642.39,1589.91,1395.46,21.61,553.99,2387.99,9069.19,47.24,523.04,2388.0,8.3945,393,39.0,23.3431 +10,30,0.0024,-0.0001,641.85,1578.57,1403.12,21.61,554.13,2388.02,9073.59,47.14,522.55,2388.04,8.4169,391,38.84,23.3659 +10,31,0.0003,-0.0002,642.29,1590.14,1395.81,21.61,554.19,2388.0,9060.52,47.26,522.24,2387.97,8.4081,391,39.01,23.3748 +10,32,-0.0005,-0.0006,642.43,1577.66,1397.86,21.61,553.93,2388.03,9067.98,47.29,522.38,2388.01,8.3847,392,38.79,23.5033 +10,33,0.0005,-0.0002,642.54,1583.68,1395.59,21.61,554.26,2388.01,9064.47,47.2,522.57,2388.0,8.4139,391,39.02,23.4388 +10,34,-0.0023,-0.0,641.97,1576.7,1405.03,21.61,554.24,2388.0,9065.85,47.27,521.99,2387.96,8.3934,392,39.0,23.3007 +10,35,0.0001,0.0002,642.49,1584.26,1394.32,21.61,554.38,2387.94,9071.88,47.31,522.37,2387.98,8.3912,392,39.09,23.4646 +10,36,0.0029,0.0001,642.05,1585.2,1401.0,21.6,554.01,2388.04,9066.5,47.04,522.37,2388.04,8.3897,392,38.98,23.3563 +10,37,0.0013,0.0003,642.08,1584.48,1397.06,21.61,554.57,2388.02,9067.98,47.35,522.05,2388.04,8.3982,392,38.91,23.4044 +10,38,0.0003,-0.0001,642.19,1581.77,1403.97,21.61,553.92,2388.0,9069.11,46.93,521.63,2388.04,8.3911,393,39.16,23.4276 +10,39,-0.0008,-0.0002,642.22,1591.83,1395.37,21.61,555.23,2388.05,9061.38,47.22,521.89,2387.99,8.4405,392,39.18,23.3503 +10,40,0.0027,-0.0004,642.18,1586.95,1405.05,21.61,554.02,2388.06,9073.83,47.19,521.74,2388.03,8.3915,393,39.01,23.3683 +10,41,-0.0024,-0.0004,642.12,1583.57,1397.44,21.61,555.03,2387.99,9061.36,47.17,522.81,2388.03,8.4281,392,38.98,23.3513 +10,42,-0.0004,0.0004,642.49,1578.29,1399.01,21.61,553.78,2388.01,9073.44,47.15,521.97,2387.97,8.4199,392,38.99,23.4173 +10,43,-0.0013,-0.0001,642.11,1586.62,1401.16,21.61,554.18,2388.01,9064.02,47.54,522.58,2388.02,8.4134,392,38.85,23.3247 +10,44,0.0026,-0.0001,642.7,1588.84,1400.69,21.6,553.64,2387.95,9064.95,47.32,522.35,2388.02,8.4107,392,38.87,23.4442 +10,45,0.0025,0.0003,642.04,1583.26,1402.79,21.61,554.24,2387.97,9074.64,47.12,522.11,2388.04,8.4072,392,38.94,23.3934 +10,46,-0.0006,0.0001,642.26,1579.48,1409.27,21.61,554.25,2388.06,9068.63,47.34,522.25,2388.03,8.4034,392,38.91,23.3597 +10,47,-0.0043,0.0004,642.08,1593.46,1391.23,21.61,554.49,2388.03,9068.46,47.17,522.77,2388.07,8.432,391,38.9,23.3767 +10,48,-0.0033,-0.0004,642.02,1580.31,1403.28,21.61,553.65,2388.04,9062.33,47.28,522.31,2388.02,8.4227,391,38.97,23.3767 +10,49,0.0006,-0.0001,642.44,1584.88,1399.16,21.61,554.09,2387.96,9060.72,47.31,522.52,2388.03,8.4078,391,38.83,23.4616 +10,50,0.0008,-0.0002,642.61,1582.93,1390.36,21.61,554.9,2388.05,9063.93,47.38,522.45,2388.12,8.4068,391,38.9,23.3734 +10,51,0.0031,0.0002,642.37,1585.49,1397.87,21.61,553.86,2388.04,9063.93,47.37,522.18,2388.04,8.4103,393,39.06,23.2097 +10,52,-0.005,-0.0002,641.94,1586.48,1401.36,21.61,554.23,2388.05,9074.7,47.28,522.13,2387.99,8.3842,392,39.14,23.3048 +10,53,0.0003,0.0,642.13,1578.09,1406.78,21.61,553.9,2387.98,9071.23,47.43,522.07,2388.04,8.4258,391,38.91,23.4229 +10,54,0.0037,-0.0002,641.98,1582.21,1403.17,21.61,553.77,2388.03,9067.85,47.22,521.58,2388.01,8.418,392,38.83,23.3561 +10,55,-0.0017,-0.0,642.27,1586.97,1395.14,21.61,554.31,2388.02,9072.53,47.35,522.42,2388.03,8.4046,391,38.97,23.5461 +10,56,-0.0005,-0.0002,642.07,1583.54,1409.74,21.61,554.37,2388.07,9066.47,47.32,521.73,2388.04,8.4141,393,38.96,23.42 +10,57,0.0012,-0.0001,642.13,1586.22,1395.44,21.61,554.43,2388.04,9064.42,47.17,521.98,2387.97,8.4328,391,39.04,23.4336 +10,58,-0.0003,-0.0001,642.54,1582.9,1397.63,21.61,554.28,2387.98,9063.01,47.28,522.09,2388.03,8.3992,390,38.84,23.3763 +10,59,0.0027,0.0003,642.33,1584.25,1396.07,21.61,554.89,2388.0,9070.95,47.19,522.23,2388.04,8.4193,393,38.97,23.4885 +10,60,0.0013,0.0003,642.2,1590.1,1399.36,21.61,553.39,2388.01,9069.8,47.19,522.38,2388.02,8.3781,392,39.0,23.4278 +10,61,0.0005,0.0,642.32,1585.53,1404.77,21.61,553.82,2388.01,9066.49,47.29,521.96,2388.05,8.4321,394,39.11,23.4125 +10,62,-0.0007,0.0,642.11,1590.76,1403.54,21.61,554.22,2388.05,9074.3,47.2,521.99,2388.0,8.4251,392,38.84,23.2169 +10,63,0.0022,-0.0003,642.19,1594.98,1403.92,21.61,553.84,2388.04,9061.47,47.52,521.43,2388.04,8.4291,392,38.81,23.3579 +10,64,-0.0001,-0.0005,642.32,1591.68,1407.83,21.61,554.05,2388.03,9072.34,47.29,522.05,2388.04,8.4161,392,38.88,23.4101 +10,65,0.0008,-0.0003,642.6,1580.89,1401.02,21.61,554.45,2388.0,9068.84,47.31,522.25,2388.03,8.4361,392,38.84,23.3786 +10,66,0.0011,0.0003,642.65,1592.52,1402.74,21.61,554.0,2387.97,9056.28,47.13,521.4,2387.99,8.4204,392,39.08,23.4166 +10,67,0.0026,-0.0001,643.02,1590.13,1403.9,21.61,554.28,2388.01,9067.76,47.29,521.89,2388.02,8.4218,392,39.16,23.3795 +10,68,-0.0021,-0.0004,642.3,1584.1,1404.16,21.61,554.05,2388.0,9070.03,47.39,522.21,2388.01,8.4086,391,39.12,23.4344 +10,69,-0.0003,-0.0001,642.13,1592.26,1403.12,21.61,553.98,2388.01,9074.25,47.23,521.89,2388.06,8.3906,392,38.86,23.4807 +10,70,-0.0017,0.0002,642.64,1587.58,1396.18,21.61,553.9,2388.05,9071.74,47.34,521.93,2388.03,8.4357,394,38.98,23.449 +10,71,-0.0024,-0.0001,642.41,1584.12,1401.42,21.61,553.64,2388.05,9060.43,47.37,522.07,2388.02,8.3863,393,38.87,23.3731 +10,72,0.0036,0.0003,642.38,1591.36,1403.37,21.61,553.46,2387.99,9064.82,47.59,522.55,2388.03,8.4503,392,38.9,23.4023 +10,73,0.0,0.0003,642.94,1580.76,1402.19,21.61,554.45,2388.03,9078.04,47.28,521.74,2388.07,8.4335,392,39.02,23.3035 +10,74,0.0027,-0.0001,642.57,1579.97,1395.71,21.61,553.5,2388.02,9065.03,47.38,522.44,2388.04,8.4393,393,38.92,23.38 +10,75,0.0017,-0.0001,642.26,1587.36,1401.72,21.61,554.12,2388.04,9078.12,47.16,521.83,2388.02,8.4247,391,38.83,23.4185 +10,76,0.0025,-0.0004,642.16,1586.25,1401.99,21.6,554.88,2388.01,9059.23,47.3,522.5,2388.03,8.3935,393,38.98,23.3505 +10,77,-0.0014,0.0002,643.06,1588.13,1400.95,21.61,554.2,2388.04,9075.92,47.4,521.85,2388.05,8.4026,391,38.88,23.3291 +10,78,0.0006,0.0003,642.74,1590.08,1407.36,21.61,553.68,2388.02,9067.37,47.45,522.03,2388.06,8.4329,393,38.86,23.3604 +10,79,-0.0014,0.0003,642.35,1588.89,1401.75,21.61,554.17,2388.0,9069.95,47.48,521.51,2388.01,8.4095,392,38.66,23.1844 +10,80,0.0009,0.0001,642.18,1588.39,1399.37,21.61,554.46,2387.99,9069.46,47.38,522.24,2388.05,8.3976,392,38.86,23.3362 +10,81,0.0022,-0.0003,642.09,1594.45,1405.73,21.61,553.43,2387.98,9064.09,47.53,521.94,2388.09,8.4383,394,38.86,23.2744 +10,82,-0.0012,-0.0001,642.53,1586.69,1397.63,21.61,553.47,2388.02,9074.76,47.16,521.79,2388.04,8.4363,392,39.01,23.3698 +10,83,0.0022,-0.0003,642.26,1589.48,1408.3,21.61,553.93,2388.06,9067.82,47.34,521.98,2388.06,8.4027,391,38.82,23.3319 +10,84,0.001,-0.0006,642.24,1580.32,1394.62,21.61,554.11,2388.04,9074.75,47.3,522.08,2388.03,8.4341,392,38.87,23.4319 +10,85,0.0001,-0.0,642.3,1584.96,1399.72,21.61,554.08,2388.02,9065.43,47.56,522.16,2388.08,8.4069,392,38.71,23.2839 +10,86,-0.001,0.0001,642.95,1591.44,1403.02,21.61,553.15,2388.03,9069.38,47.4,522.01,2388.08,8.4127,393,38.9,23.2703 +10,87,0.0025,-0.0003,642.84,1584.84,1405.9,21.61,553.82,2388.1,9064.62,47.44,521.94,2388.06,8.4223,391,38.77,23.3793 +10,88,-0.0002,0.0001,642.92,1585.14,1398.43,21.61,553.82,2388.03,9067.5,47.39,522.19,2388.05,8.4494,393,38.81,23.2808 +10,89,0.0014,-0.0004,642.45,1588.13,1403.63,21.61,554.14,2388.03,9060.76,47.4,521.93,2388.06,8.4368,393,38.99,23.3648 +10,90,-0.0006,0.0,642.26,1583.76,1395.52,21.61,553.66,2388.08,9063.01,47.4,521.37,2388.06,8.4482,392,38.92,23.4034 +10,91,-0.0004,-0.0003,642.09,1591.18,1409.03,21.61,553.78,2388.03,9073.98,47.51,521.75,2388.05,8.4447,393,39.05,23.3836 +10,92,0.0022,-0.0005,642.84,1592.3,1408.8,21.61,554.61,2388.07,9073.14,47.42,521.05,2388.03,8.4334,393,38.78,23.3295 +10,93,-0.0006,0.0001,642.78,1592.95,1410.56,21.61,553.94,2388.01,9065.76,47.5,521.65,2388.06,8.4319,392,38.94,23.3429 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137 diff --git a/containers/predictive_maintenance/requirements.txt b/containers/predictive_maintenance/requirements.txt new file mode 100644 index 0000000..f0af822 --- /dev/null +++ b/containers/predictive_maintenance/requirements.txt @@ -0,0 +1,17 @@ +certifi==2023.5.7 +influxdb-client==1.36.1 +joblib==1.2.0 +lightgbm==3.3.5 +numpy==1.25.0 +paho-mqtt==1.6.1 +pandas==1.5.3 +python-dateutil==2.8.2 +pytz==2023.3 +reactivex==4.0.4 +scikit-learn==1.2.2 +scipy==1.11.0 +six==1.16.0 +threadpoolctl==3.1.0 +typing_extensions==4.6.3 +tzdata==2023.3 +urllib3==2.0.3 diff --git a/containers/predictive_maintenance/test_data_looped.csv b/containers/predictive_maintenance/test_data_looped.csv new file mode 100644 index 0000000..340be62 --- /dev/null +++ b/containers/predictive_maintenance/test_data_looped.csv @@ -0,0 +1,7815 @@ +engine_no,time_in_cycles,op_setting_1,op_setting_2,sensor_2,sensor_3,sensor_4,sensor_6,sensor_7,sensor_8,sensor_9,sensor_11,sensor_12,sensor_13,sensor_15,sensor_17,sensor_20,sensor_21,new_cycle +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,129 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,130 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,131 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,132 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,133 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,134 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,135 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,136 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,137 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,138 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,139 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,140 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,141 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,142 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,143 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,144 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,145 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,146 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,147 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,148 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,149 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,150 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,151 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,152 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,153 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,154 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,155 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,156 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,157 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,158 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,159 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,160 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,161 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,162 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,163 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,164 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,165 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,166 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,167 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,168 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,169 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,170 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,176 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,177 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,178 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,179 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,180 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,181 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,182 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,183 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,184 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,185 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,186 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,187 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,188 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,189 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,190 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,191 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,192 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,193 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,194 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,195 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,196 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,197 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,198 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,199 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,200 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,201 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,202 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,203 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,204 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,205 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,206 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,207 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,208 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,209 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,210 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,211 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,212 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,213 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,214 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,215 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,216 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,217 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,218 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,219 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,220 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,221 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,222 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,223 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,224 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,225 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,226 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,227 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,228 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,229 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,230 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,231 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,232 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,233 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,234 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,235 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,236 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,237 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,238 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,239 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,240 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,241 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,242 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,243 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,249 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,250 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,251 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,252 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,253 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,254 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,255 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,256 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,257 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,258 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,259 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,260 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,261 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,262 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,263 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,264 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,265 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,266 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,267 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,268 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,269 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,270 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,271 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,272 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,273 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,274 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,275 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,276 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,277 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,278 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,279 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,280 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,281 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,282 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,283 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,284 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,285 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,286 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,287 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,288 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,289 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,290 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,291 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,292 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,293 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,294 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,295 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,296 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,297 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,298 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,299 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,300 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,301 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,302 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,303 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,304 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,305 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,306 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,307 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,308 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,309 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,310 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,311 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,312 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,313 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,314 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,315 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,316 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,322 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,323 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,324 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,325 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,326 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,327 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,328 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,329 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,330 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,331 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,332 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,333 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,334 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,335 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,336 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,337 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,338 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,339 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,340 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,341 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,342 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,343 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,344 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,345 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,346 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,347 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,348 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,349 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,350 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,351 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,352 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,353 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,354 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,355 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,356 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,357 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,358 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,359 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,360 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,361 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,362 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,363 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,364 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,365 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,366 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,367 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,368 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,369 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,370 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,371 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,372 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,373 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,374 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,375 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,376 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,377 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,378 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,379 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,380 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,381 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,382 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,383 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,384 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,385 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,386 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,387 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,388 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,389 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,395 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,396 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,397 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,398 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,399 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,400 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,401 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,402 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,403 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,404 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,405 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,406 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,407 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,408 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,409 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,410 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,411 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,412 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,413 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,414 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,415 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,416 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,417 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,418 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,419 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,420 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,421 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,422 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,423 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,424 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,425 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,426 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,427 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,428 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,429 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,430 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,431 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,432 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,433 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,434 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,435 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,436 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,437 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,438 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,439 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,440 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,441 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,442 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,443 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,444 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,445 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,446 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,447 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,448 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,449 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,450 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,451 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,452 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,453 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,454 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,455 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,456 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,457 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,458 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,459 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,460 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,461 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,462 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,468 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,469 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,470 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,471 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,472 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,473 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,474 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,475 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,476 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,477 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,478 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,479 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,480 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,481 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,482 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,483 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,484 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,485 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,486 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,487 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,488 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,489 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,490 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,491 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,492 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,493 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,494 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,495 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,496 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,497 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,498 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,499 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,500 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,501 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,502 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,503 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,504 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,505 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,506 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,507 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,508 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,509 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,510 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,511 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,512 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,513 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,514 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,515 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,516 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,517 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,518 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,519 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,520 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,521 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,522 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,523 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,524 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,525 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,526 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,527 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,528 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,529 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,530 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,531 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,532 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,533 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,534 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,535 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,541 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,542 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,543 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,544 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,545 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,546 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,547 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,548 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,549 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,550 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,551 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,552 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,553 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,554 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,555 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,556 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,557 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,558 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,559 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,560 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,561 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,562 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,563 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,564 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,565 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,566 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,567 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,568 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,569 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,570 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,571 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,572 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,573 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,574 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,575 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,576 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,577 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,578 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,579 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,580 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,581 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,582 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,583 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,584 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,585 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,586 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,587 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,588 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,589 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,590 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,591 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,592 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,593 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,594 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,595 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,596 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,597 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,598 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,599 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,600 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,601 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,602 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,603 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,604 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,605 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,606 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,607 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,608 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,614 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,615 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,616 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,617 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,618 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,619 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,620 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,621 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,622 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,623 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,624 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,625 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,626 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,627 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,628 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,629 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,630 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,631 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,632 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,633 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,634 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,635 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,636 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,637 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,638 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,639 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,640 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,641 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,642 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,643 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,644 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,645 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,646 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,647 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,648 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,649 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,650 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,651 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,652 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,653 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,654 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,655 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,656 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,657 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,658 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,659 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,660 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,661 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,662 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,663 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,664 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,665 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,666 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,667 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,668 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,669 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,670 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,671 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,672 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,673 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,674 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,675 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,676 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,677 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,678 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,679 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,680 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,681 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,687 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,688 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,689 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,690 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,691 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,692 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,693 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,694 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,695 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,696 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,697 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,698 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,699 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,700 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,701 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,702 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,703 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,704 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,705 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,706 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,707 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,708 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,709 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,710 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,711 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,712 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,713 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,714 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,715 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,716 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,717 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,718 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,719 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,720 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,721 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,722 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,723 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,724 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,725 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,726 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,727 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,728 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,729 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,730 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,731 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,732 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,733 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,734 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,735 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,736 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,737 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,738 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,739 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,740 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,741 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,742 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,743 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,744 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,745 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,746 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,747 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,748 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,749 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,750 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,751 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,752 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,753 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,754 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,760 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,761 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,762 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,763 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,764 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,765 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,766 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,767 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,768 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,769 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,770 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,771 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,772 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,773 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,774 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,775 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,776 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,777 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,778 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,779 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,780 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,781 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,782 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,783 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,784 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,785 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,786 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,787 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,788 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,789 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,790 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,791 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,792 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,793 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,794 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,795 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,796 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,797 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,798 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,799 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,800 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,801 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,802 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,803 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,804 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,805 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,806 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,807 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,808 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,809 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,810 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,811 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,812 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,813 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,814 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,815 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,816 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,817 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,818 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,819 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,820 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,821 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,822 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,823 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,824 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,825 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,826 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,827 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,833 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,834 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,835 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,836 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,837 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,838 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,839 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,840 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,841 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,842 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,843 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,844 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,845 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,846 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,847 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,848 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,849 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,850 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,851 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,852 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,853 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,854 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,855 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,856 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,857 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,858 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,859 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,860 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,861 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,862 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,863 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,864 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,865 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,866 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,867 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,868 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,869 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,870 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,871 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,872 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,873 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,874 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,875 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,876 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,877 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,878 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,879 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,880 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,881 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,882 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,883 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,884 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,885 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,886 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,887 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,888 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,889 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,890 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,891 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,892 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,893 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,894 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,895 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,896 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,897 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,898 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,899 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,900 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,906 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,907 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,908 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,909 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,910 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,911 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,912 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,913 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,914 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,915 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,916 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,917 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,918 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,919 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,920 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,921 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,922 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,923 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,924 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,925 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,926 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,927 +1,125,0.0,0.0005,643.59,1606.24,1414.66,21.61,552.36,2388.25,9046.11,47.76,520.91,2388.17,8.4549,394,38.8,23.2558,928 +1,126,-0.0004,0.0005,642.94,1591.82,1418.62,21.61,552.88,2388.14,9050.58,47.87,520.93,2388.2,8.4351,394,38.8,23.2132,929 +1,127,-0.0035,-0.0,643.41,1598.83,1413.99,21.61,552.62,2388.17,9051.97,47.88,520.21,2388.19,8.4668,395,38.72,23.2237,930 +1,128,0.0002,0.0002,642.93,1592.17,1417.31,21.61,553.26,2388.13,9045.0,47.87,520.14,2388.22,8.4577,394,38.59,23.2346,931 +1,129,-0.0021,0.0,643.16,1587.1,1426.19,21.61,552.39,2388.2,9048.27,47.97,520.76,2388.23,8.4545,395,38.59,23.2877,932 +1,130,0.0001,0.0001,642.42,1590.42,1427.28,21.61,552.5,2388.15,9045.59,47.8,520.5,2388.17,8.4619,395,38.4,23.2302,933 +1,131,-0.0019,0.0005,643.21,1591.13,1428.96,21.61,552.26,2388.2,9051.53,47.89,520.66,2388.22,8.4761,395,38.68,23.2653,934 +1,132,0.0018,0.0004,643.34,1591.07,1418.45,21.61,553.0,2388.18,9049.74,47.86,520.9,2388.21,8.4995,396,38.64,23.1266,935 +1,133,0.001,-0.0001,642.99,1588.98,1414.33,21.61,552.04,2388.18,9048.98,47.77,520.91,2388.21,8.5056,394,38.83,23.2403,936 +1,134,0.0024,-0.0,642.76,1593.3,1419.05,21.61,552.76,2388.19,9047.52,47.78,520.65,2388.29,8.5003,394,38.67,23.283,937 +1,135,0.0012,-0.0002,643.15,1606.69,1421.42,21.61,552.75,2388.15,9051.89,47.75,520.34,2388.19,8.4456,395,38.76,23.1279,938 +1,136,0.0013,0.0005,643.09,1591.89,1413.03,21.61,553.06,2388.19,9049.13,47.91,520.71,2388.2,8.4638,394,38.52,23.1964,939 +1,137,-0.0036,0.0002,642.65,1589.72,1419.0,21.61,552.48,2388.18,9049.43,47.99,520.65,2388.2,8.4807,396,38.67,23.1929,940 +1,138,0.0032,0.0003,643.39,1604.19,1417.2,21.61,552.51,2388.18,9051.42,47.95,520.42,2388.15,8.4864,393,38.68,23.1407,941 +1,139,0.0006,0.0002,642.87,1597.67,1427.64,21.61,552.02,2388.23,9042.97,47.77,520.53,2388.26,8.4641,396,38.84,23.1714,942 +1,140,0.0009,0.0002,643.04,1589.71,1418.94,21.61,553.26,2388.27,9048.85,47.77,520.49,2388.22,8.4778,394,38.63,23.1876,943 +1,141,0.0026,-0.0001,643.39,1592.31,1425.51,21.61,551.84,2388.23,9049.89,48.05,520.33,2388.24,8.4676,396,38.62,23.3154,944 +1,142,-0.002,0.0001,643.6,1596.32,1422.42,21.61,552.64,2388.2,9042.52,47.85,520.25,2388.2,8.481,395,38.51,23.3021,945 +1,143,0.0039,0.0003,642.82,1600.64,1421.68,21.61,552.03,2388.18,9050.46,47.86,520.62,2388.18,8.4773,396,38.49,23.1289,946 +1,144,-0.0019,-0.0004,643.65,1590.16,1421.96,21.61,552.17,2388.21,9052.91,47.78,519.94,2388.19,8.4481,394,38.68,23.0626,947 +1,145,0.0001,0.0,642.82,1601.68,1416.98,21.61,551.1,2388.24,9045.06,47.86,520.66,2388.12,8.4908,392,38.55,23.0901,948 +1,146,0.0,0.0005,642.99,1591.97,1422.97,21.61,552.92,2388.2,9053.08,47.7,520.22,2388.22,8.4718,395,38.51,23.2257,949 +1,147,0.0019,0.0001,643.06,1596.79,1419.6,21.61,551.33,2388.23,9049.13,47.94,520.82,2388.22,8.5152,395,38.64,23.1366,950 +1,148,-0.0036,0.0003,643.13,1602.11,1422.2,21.61,551.84,2388.26,9046.34,47.68,520.33,2388.19,8.48,394,38.85,23.1506,951 +1,149,-0.0013,0.0001,643.54,1595.79,1419.79,21.61,551.84,2388.25,9046.63,48.1,520.36,2388.19,8.512,395,38.45,23.166,952 +1,150,-0.0003,0.0005,643.34,1597.62,1426.32,21.61,552.37,2388.2,9050.58,47.87,520.3,2388.28,8.516,395,38.57,23.1088,953 +1,151,-0.0002,0.0004,643.61,1594.38,1418.09,21.61,552.36,2388.21,9044.63,47.98,519.96,2388.26,8.5174,396,38.44,23.0561,954 +1,152,0.0017,0.0003,643.03,1600.52,1422.8,21.61,551.86,2388.2,9049.81,48.08,519.98,2388.22,8.5233,396,38.57,23.074,955 +1,153,-0.0007,-0.0004,643.06,1593.88,1425.5,21.61,551.2,2388.23,9051.41,47.93,520.25,2388.21,8.5024,396,38.55,23.2636,956 +1,154,-0.0014,-0.0,643.42,1594.76,1424.54,21.61,552.03,2388.26,9042.89,48.12,520.61,2388.27,8.4748,394,38.74,23.1146,957 +1,155,-0.0018,-0.0003,643.75,1598.19,1426.68,21.61,552.02,2388.21,9048.17,48.07,519.64,2388.27,8.4941,396,38.49,23.2194,958 +1,156,0.0022,0.0004,643.3,1596.61,1420.52,21.61,552.47,2388.24,9056.93,47.94,519.94,2388.25,8.4975,395,38.32,23.0739,959 +1,157,-0.0019,0.0001,642.86,1597.39,1428.13,21.61,551.91,2388.27,9052.49,48.01,520.03,2388.21,8.4718,394,38.37,23.203,960 +1,158,-0.0026,-0.0002,643.62,1607.1,1424.96,21.61,551.95,2388.25,9051.35,47.95,520.28,2388.25,8.4895,396,38.57,23.0512,961 +1,159,0.0031,0.0004,643.63,1598.16,1430.89,21.61,551.85,2388.28,9045.15,48.1,520.13,2388.27,8.4929,395,38.48,23.175,962 +1,160,-0.0012,-0.0002,643.64,1592.61,1429.75,21.61,551.28,2388.27,9054.75,48.28,520.05,2388.31,8.502,397,38.31,23.07,963 +1,161,0.0008,0.0002,643.1,1595.35,1428.39,21.61,552.11,2388.28,9045.91,48.17,519.72,2388.26,8.5164,396,38.46,23.1629,964 +1,162,0.0009,0.0003,643.45,1602.88,1414.13,21.61,551.33,2388.21,9050.03,48.15,519.36,2388.25,8.5142,396,38.36,23.0593,965 +1,163,0.0008,0.0003,643.59,1593.01,1434.05,21.61,551.09,2388.22,9054.26,48.08,519.25,2388.3,8.5654,397,38.57,23.1024,966 +1,164,0.0006,-0.0,642.95,1598.33,1419.55,21.61,551.55,2388.28,9058.39,48.08,519.61,2388.2,8.5203,397,38.35,23.0511,967 +1,165,0.0034,0.0001,643.76,1597.89,1425.13,21.61,552.4,2388.28,9051.42,48.21,520.11,2388.25,8.487,396,38.42,23.0516,968 +1,166,0.0021,0.0002,643.91,1604.39,1427.48,21.61,551.82,2388.29,9052.79,48.22,519.88,2388.25,8.511,396,38.43,23.1312,969 +1,167,-0.0009,0.0003,643.78,1600.52,1426.11,21.61,551.26,2388.28,9053.07,48.01,519.61,2388.27,8.5039,396,38.47,23.0371,970 +1,168,0.0007,0.0002,643.59,1596.25,1429.19,21.61,551.27,2388.29,9055.55,48.18,519.01,2388.27,8.5275,396,38.52,23.1209,971 +1,169,0.0027,0.0005,643.34,1597.46,1429.09,21.61,551.43,2388.25,9047.75,48.1,519.32,2388.33,8.5321,396,38.47,23.0444,972 +1,170,0.0002,-0.0001,643.31,1601.76,1434.94,21.61,551.1,2388.32,9050.4,48.08,519.55,2388.29,8.5213,395,38.64,23.0102,973 +1,103,0.0027,-0.0001,642.77,1597.71,1413.83,21.61,552.81,2388.12,9051.41,47.71,521.2,2388.14,8.4985,393,38.86,23.2156,979 +1,104,-0.002,-0.0003,642.7,1588.44,1411.71,21.61,553.52,2388.15,9042.83,47.73,521.05,2388.14,8.4867,393,38.76,23.177,980 +1,105,-0.0005,0.0003,642.89,1597.38,1412.6,21.61,553.2,2388.2,9041.94,47.68,520.6,2388.12,8.4639,394,38.79,23.1808,981 +1,106,0.0018,-0.0004,643.09,1597.25,1409.57,21.61,552.82,2388.15,9041.48,47.5,520.94,2388.17,8.4269,393,38.99,23.3442,982 +1,107,-0.0006,0.0001,642.94,1594.02,1417.46,21.61,553.32,2388.18,9051.61,47.59,520.62,2388.19,8.4534,394,38.79,23.2876,983 +1,108,0.0012,0.0001,642.91,1594.45,1408.39,21.61,552.79,2388.13,9046.87,47.74,521.2,2388.14,8.4474,395,38.7,23.1949,984 +1,109,-0.0015,0.0004,642.94,1595.94,1419.38,21.61,552.71,2388.19,9054.21,47.7,521.76,2388.11,8.4799,395,38.66,23.2645,985 +1,110,0.0013,-0.0002,642.84,1592.11,1412.7,21.61,553.39,2388.17,9051.24,47.7,521.69,2388.14,8.4621,392,38.59,23.1781,986 +1,111,-0.0018,-0.0003,643.07,1589.65,1411.45,21.61,553.44,2388.17,9060.73,47.59,520.45,2388.15,8.45,394,38.59,23.2852,987 +1,112,0.0004,0.0003,642.74,1595.7,1409.29,21.61,553.11,2388.17,9048.04,47.74,520.55,2388.17,8.4565,395,38.62,23.3082,988 +1,113,0.001,0.0005,642.79,1595.31,1409.84,21.61,553.07,2388.18,9055.17,47.69,521.06,2388.17,8.4496,394,38.74,23.2764,989 +1,114,-0.002,0.0005,642.86,1598.13,1419.34,21.61,552.76,2388.19,9045.08,47.5,520.59,2388.13,8.4382,392,38.79,23.1929,990 +1,115,-0.0007,-0.0001,642.75,1588.68,1416.2,21.61,553.31,2388.17,9046.25,47.73,520.83,2388.15,8.4409,394,38.67,23.19,991 +1,116,-0.0026,-0.0004,643.05,1594.69,1417.6,21.61,553.33,2388.19,9047.89,47.66,521.05,2388.2,8.4426,393,38.62,23.242,992 +1,117,-0.0002,0.0001,643.16,1592.66,1413.56,21.61,552.82,2388.18,9046.91,47.75,520.63,2388.14,8.481,392,38.64,23.1807,993 +1,118,0.0011,-0.0003,643.7,1585.24,1415.05,21.61,552.76,2388.18,9050.59,47.78,521.02,2388.19,8.4605,395,38.91,23.2145,994 +1,119,0.0025,-0.0001,643.28,1594.82,1410.41,21.61,552.8,2388.23,9050.16,47.81,521.3,2388.19,8.4725,394,38.71,23.239,995 +1,120,-0.002,0.0001,643.18,1587.28,1412.59,21.61,551.93,2388.17,9045.56,47.9,521.01,2388.18,8.4773,393,38.75,23.3242,996 +1,121,0.0013,-0.0004,642.84,1586.95,1414.21,21.61,553.05,2388.19,9051.54,47.55,521.15,2388.13,8.4551,394,38.55,23.2929,997 +1,122,0.0001,0.0004,643.26,1590.54,1416.51,21.61,551.64,2388.19,9040.01,47.73,520.38,2388.19,8.478,392,38.78,23.1837,998 +1,123,0.0006,0.0003,642.76,1593.18,1412.84,21.61,552.58,2388.17,9052.98,47.84,520.49,2388.18,8.4807,394,38.85,23.2708,999 +1,124,-0.0012,0.0003,643.11,1602.74,1420.25,21.61,552.98,2388.17,9050.51,47.59,521.09,2388.17,8.4259,393,38.51,23.292,1000 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,129 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,130 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,131 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,132 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,133 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,134 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,135 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,136 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,137 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,138 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,139 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,140 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,141 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,142 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,143 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,144 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,145 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,146 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,147 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,148 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,149 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,150 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,151 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,152 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,153 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,154 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,155 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,156 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,157 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,158 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,159 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,160 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,161 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,162 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,163 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,169 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,170 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,171 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,172 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,173 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,174 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,175 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,176 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,177 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,178 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,179 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,180 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,181 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,182 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,183 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,184 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,185 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,186 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,187 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,188 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,189 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,190 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,191 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,192 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,193 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,194 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,195 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,196 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,197 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,198 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,199 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,200 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,201 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,202 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,203 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,204 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,205 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,206 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,207 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,208 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,209 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,210 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,211 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,212 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,213 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,214 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,215 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,216 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,217 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,218 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,219 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,220 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,221 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,222 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,223 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,224 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,225 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,226 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,227 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,228 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,229 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,230 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,231 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,232 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,233 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,234 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,235 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,236 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,237 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,238 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,239 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,240 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,241 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,242 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,243 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,244 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,245 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,246 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,247 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,253 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,254 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,255 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,256 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,257 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,258 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,259 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,260 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,261 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,262 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,263 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,264 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,265 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,266 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,267 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,268 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,269 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,270 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,271 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,272 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,273 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,274 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,275 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,276 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,277 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,278 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,279 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,280 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,281 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,282 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,283 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,284 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,285 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,286 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,287 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,288 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,289 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,290 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,291 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,292 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,293 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,294 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,295 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,296 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,297 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,298 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,299 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,300 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,301 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,302 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,303 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,304 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,305 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,306 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,307 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,308 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,309 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,310 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,311 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,312 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,313 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,314 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,315 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,316 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,317 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,318 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,319 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,320 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,321 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,322 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,323 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,324 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,325 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,326 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,327 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,328 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,329 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,330 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,331 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,337 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,338 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,339 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,340 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,341 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,342 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,343 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,344 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,345 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,346 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,347 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,348 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,349 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,350 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,351 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,352 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,353 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,354 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,355 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,356 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,357 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,358 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,359 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,360 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,361 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,362 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,363 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,364 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,365 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,366 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,367 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,368 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,369 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,370 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,371 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,372 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,373 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,374 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,375 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,376 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,377 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,378 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,379 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,380 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,381 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,382 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,383 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,384 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,385 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,386 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,387 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,388 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,389 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,390 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,391 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,392 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,393 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,394 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,395 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,396 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,397 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,398 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,399 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,400 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,401 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,402 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,403 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,404 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,405 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,406 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,407 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,408 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,409 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,410 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,411 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,412 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,413 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,414 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,415 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,421 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,422 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,423 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,424 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,425 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,426 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,427 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,428 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,429 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,430 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,431 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,432 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,433 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,434 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,435 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,436 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,437 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,438 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,439 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,440 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,441 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,442 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,443 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,444 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,445 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,446 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,447 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,448 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,449 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,450 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,451 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,452 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,453 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,454 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,455 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,456 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,457 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,458 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,459 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,460 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,461 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,462 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,463 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,464 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,465 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,466 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,467 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,468 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,469 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,470 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,471 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,472 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,473 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,474 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,475 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,476 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,477 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,478 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,479 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,480 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,481 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,482 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,483 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,484 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,485 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,486 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,487 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,488 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,489 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,490 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,491 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,492 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,493 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,494 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,495 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,496 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,497 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,498 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,499 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,505 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,506 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,507 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,508 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,509 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,510 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,511 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,512 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,513 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,514 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,515 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,516 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,517 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,518 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,519 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,520 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,521 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,522 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,523 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,524 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,525 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,526 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,527 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,528 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,529 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,530 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,531 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,532 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,533 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,534 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,535 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,536 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,537 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,538 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,539 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,540 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,541 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,542 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,543 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,544 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,545 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,546 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,547 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,548 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,549 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,550 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,551 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,552 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,553 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,554 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,555 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,556 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,557 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,558 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,559 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,560 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,561 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,562 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,563 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,564 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,565 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,566 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,567 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,568 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,569 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,570 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,571 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,572 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,573 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,574 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,575 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,576 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,577 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,578 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,579 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,580 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,581 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,582 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,583 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,589 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,590 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,591 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,592 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,593 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,594 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,595 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,596 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,597 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,598 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,599 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,600 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,601 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,602 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,603 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,604 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,605 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,606 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,607 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,608 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,609 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,610 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,611 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,612 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,613 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,614 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,615 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,616 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,617 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,618 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,619 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,620 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,621 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,622 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,623 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,624 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,625 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,626 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,627 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,628 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,629 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,630 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,631 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,632 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,633 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,634 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,635 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,636 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,637 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,638 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,639 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,640 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,641 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,642 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,643 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,644 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,645 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,646 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,647 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,648 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,649 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,650 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,651 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,652 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,653 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,654 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,655 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,656 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,657 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,658 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,659 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,660 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,661 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,662 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,663 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,664 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,665 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,666 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,667 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,673 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,674 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,675 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,676 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,677 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,678 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,679 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,680 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,681 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,682 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,683 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,684 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,685 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,686 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,687 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,688 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,689 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,690 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,691 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,692 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,693 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,694 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,695 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,696 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,697 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,698 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,699 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,700 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,701 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,702 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,703 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,704 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,705 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,706 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,707 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,708 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,709 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,710 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,711 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,712 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,713 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,714 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,715 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,716 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,717 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,718 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,719 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,720 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,721 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,722 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,723 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,724 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,725 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,726 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,727 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,728 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,729 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,730 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,731 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,732 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,733 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,734 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,735 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,736 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,737 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,738 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,739 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,740 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,741 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,742 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,743 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,744 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,745 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,746 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,747 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,748 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,749 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,750 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,751 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,757 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,758 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,759 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,760 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,761 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,762 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,763 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,764 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,765 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,766 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,767 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,768 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,769 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,770 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,771 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,772 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,773 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,774 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,775 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,776 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,777 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,778 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,779 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,780 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,781 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,782 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,783 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,784 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,785 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,786 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,787 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,788 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,789 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,790 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,791 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,792 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,793 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,794 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,795 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,796 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,797 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,798 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,799 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,800 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,801 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,802 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,803 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,804 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,805 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,806 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,807 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,808 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,809 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,810 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,811 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,812 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,813 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,814 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,815 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,816 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,817 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,818 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,819 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,820 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,821 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,822 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,823 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,824 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,825 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,826 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,827 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,828 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,829 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,830 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,831 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,832 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,833 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,834 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,835 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,841 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,842 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,843 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,844 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,845 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,846 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,847 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,848 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,849 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,850 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,851 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,852 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,853 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,854 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,855 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,856 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,857 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,858 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,859 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,860 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,861 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,862 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,863 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,864 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,865 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,866 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,867 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,868 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,869 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,870 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,871 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,872 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,873 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,874 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,875 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,876 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,877 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,878 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,879 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,880 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,881 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,882 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,883 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,884 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,885 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,886 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,887 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,888 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,889 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,890 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,891 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,892 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,893 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,894 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,895 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,896 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,897 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,898 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,899 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,900 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,901 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,902 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,903 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,904 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,905 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,906 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,907 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,908 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,909 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,910 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,911 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,912 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,913 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,914 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,915 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,916 +2,161,-0.003,-0.0001,643.5,1602.21,1432.17,21.61,551.85,2388.11,9144.17,48.34,520.26,2388.19,8.5269,396,38.43,23.0185,917 +2,162,-0.0011,0.0003,643.87,1605.83,1431.55,21.61,551.48,2388.16,9149.29,48.28,520.08,2388.15,8.5015,397,38.35,23.1104,918 +2,163,-0.0002,-0.0004,644.26,1610.89,1430.32,21.61,550.99,2388.15,9153.32,48.22,519.76,2388.16,8.5477,397,38.53,23.1291,919 +2,85,-0.006,0.0004,642.53,1588.86,1408.95,21.61,553.55,2388.14,9061.25,47.55,521.04,2388.1,8.4292,394,38.78,23.3566,925 +2,86,-0.0011,-0.0004,642.95,1597.2,1411.47,21.61,553.6,2388.08,9057.25,47.31,521.94,2388.09,8.3863,394,38.94,23.3206,926 +2,87,0.0007,0.0003,642.93,1590.9,1412.87,21.61,552.76,2388.14,9066.14,47.63,520.66,2388.11,8.4561,393,38.71,23.3149,927 +2,88,-0.001,-0.0003,643.2,1584.99,1410.14,21.61,554.31,2388.07,9066.42,47.53,521.32,2388.09,8.4165,394,38.77,23.2396,928 +2,89,0.0011,-0.0003,642.78,1582.6,1406.3,21.61,553.15,2388.09,9064.28,47.31,520.97,2388.12,8.4431,394,38.77,23.306,929 +2,90,0.0011,0.0005,643.21,1590.21,1404.97,21.61,552.96,2388.1,9064.05,47.58,520.82,2388.07,8.4168,393,38.66,23.3462,930 +2,91,-0.0026,0.0004,642.84,1584.29,1408.55,21.61,553.49,2388.12,9068.06,47.51,521.26,2388.08,8.4242,394,38.82,23.2589,931 +2,92,0.0003,-0.0004,643.05,1598.85,1414.03,21.61,552.79,2388.08,9066.91,47.37,521.73,2388.04,8.4679,394,39.0,23.2359,932 +2,93,-0.0013,0.0,642.79,1590.43,1418.25,21.61,553.16,2388.13,9067.12,47.54,521.63,2388.14,8.4684,393,38.87,23.29,933 +2,94,-0.0008,0.0001,642.95,1587.61,1410.23,21.61,553.68,2388.05,9068.69,47.55,521.23,2388.12,8.4461,393,38.75,23.3104,934 +2,95,-0.0002,-0.0004,642.58,1593.74,1416.13,21.61,552.6,2388.13,9074.47,47.77,521.46,2388.09,8.4234,393,38.73,23.2496,935 +2,96,-0.0024,0.0005,642.51,1590.91,1410.02,21.61,552.94,2388.05,9064.09,47.57,521.87,2388.05,8.4371,393,38.64,23.2385,936 +2,97,-0.0016,-0.0001,642.98,1588.13,1412.34,21.61,552.71,2388.13,9063.33,47.61,521.28,2388.03,8.4172,393,38.8,23.3132,937 +2,98,-0.0015,0.0001,642.89,1584.86,1412.78,21.61,553.42,2388.12,9073.67,47.68,521.57,2388.08,8.4596,395,38.72,23.2199,938 +2,99,0.0009,-0.0002,642.56,1593.29,1408.46,21.61,554.1,2388.09,9071.3,47.27,520.81,2388.03,8.4369,394,38.96,23.2136,939 +2,100,0.0037,-0.0003,642.78,1593.39,1412.04,21.61,553.44,2388.12,9068.22,47.78,521.44,2388.06,8.4227,394,38.9,23.3333,940 +2,101,0.0001,0.0002,642.98,1597.42,1414.86,21.61,553.73,2388.11,9062.6,47.75,520.85,2388.12,8.4758,394,38.73,23.2955,941 +2,102,0.0008,-0.0001,642.65,1591.57,1417.22,21.61,553.56,2388.05,9066.89,47.48,521.41,2388.13,8.4534,394,38.87,23.3309,942 +2,103,0.0013,-0.0001,643.52,1592.63,1412.81,21.61,553.34,2388.15,9067.29,47.69,521.18,2388.11,8.4221,394,38.66,23.3003,943 +2,104,-0.0019,-0.0002,642.36,1583.37,1407.82,21.61,552.65,2388.13,9074.41,47.7,521.26,2388.12,8.4414,392,38.8,23.1497,944 +2,105,-0.0013,-0.0002,642.59,1595.5,1409.09,21.61,552.72,2388.1,9079.35,47.57,521.32,2388.1,8.4595,394,38.75,23.2431,945 +2,106,0.0058,-0.0002,643.32,1593.4,1413.69,21.61,552.83,2388.11,9069.01,47.73,521.06,2388.1,8.4458,394,38.59,23.2403,946 +2,107,-0.0011,0.0005,642.95,1587.55,1413.53,21.61,552.95,2388.15,9077.44,47.55,520.97,2388.11,8.4574,393,38.84,23.2927,947 +2,108,0.0004,0.0001,643.21,1589.74,1415.34,21.61,553.34,2388.14,9068.53,47.71,520.62,2388.1,8.4501,393,38.79,23.2752,948 +2,109,0.0021,-0.0002,642.57,1593.72,1408.09,21.61,552.84,2388.05,9074.03,47.68,520.4,2388.14,8.4502,394,38.55,23.2462,949 +2,110,-0.0001,-0.0004,643.13,1594.1,1410.86,21.61,553.41,2388.11,9078.58,47.53,520.8,2388.12,8.4475,394,38.68,23.2126,950 +2,111,-0.0013,0.0005,643.28,1590.26,1414.54,21.61,553.37,2388.08,9075.37,47.75,521.57,2388.16,8.4847,394,38.75,23.3012,951 +2,112,-0.0011,-0.0003,642.9,1590.16,1412.15,21.61,552.3,2388.1,9074.06,47.78,521.29,2388.07,8.4958,394,38.71,23.2348,952 +2,113,-0.0003,-0.0001,642.92,1593.22,1414.53,21.61,553.3,2388.16,9074.19,47.6,521.02,2388.1,8.4353,395,38.81,23.2802,953 +2,114,0.0008,0.0,642.88,1582.94,1408.0,21.61,553.08,2388.1,9077.55,47.61,520.83,2388.12,8.4751,394,38.54,23.1653,954 +2,115,0.0012,-0.0001,642.78,1598.39,1418.32,21.61,552.89,2388.11,9080.4,47.64,520.95,2388.12,8.4596,393,38.72,23.3051,955 +2,116,0.0011,0.0004,643.39,1589.76,1414.51,21.61,552.85,2388.14,9068.97,47.65,521.22,2388.15,8.4555,395,38.7,23.2549,956 +2,117,-0.0005,-0.0003,643.12,1589.98,1416.63,21.61,552.69,2388.13,9084.03,47.77,521.21,2388.08,8.4526,396,38.79,23.1676,957 +2,118,-0.0022,0.0002,642.19,1592.49,1411.57,21.61,552.77,2388.13,9077.67,47.59,521.23,2388.09,8.4566,394,38.65,23.2317,958 +2,119,-0.0012,0.0002,643.25,1592.73,1409.92,21.61,552.74,2388.12,9078.64,47.88,521.08,2388.12,8.4402,393,38.74,23.2929,959 +2,120,0.0027,0.0,642.4,1590.66,1415.4,21.61,552.91,2388.09,9080.9,47.58,520.9,2388.11,8.4332,394,38.83,23.1578,960 +2,121,-0.0047,-0.0002,643.06,1594.49,1420.97,21.61,552.88,2388.06,9082.8,47.57,521.14,2388.1,8.4502,394,38.69,23.2251,961 +2,122,-0.0019,0.0002,643.01,1596.44,1411.48,21.61,553.19,2388.07,9074.17,47.76,521.21,2388.13,8.433,395,38.73,23.2467,962 +2,123,-0.0016,0.0005,643.12,1595.22,1414.96,21.61,552.75,2388.11,9082.71,47.57,520.87,2388.12,8.5017,392,38.65,23.1694,963 +2,124,0.0014,-0.0,642.76,1595.96,1418.67,21.61,551.91,2388.13,9081.99,47.85,521.44,2388.07,8.4446,395,38.68,23.2281,964 +2,125,0.0022,0.0003,643.03,1585.89,1408.57,21.61,552.9,2388.14,9082.0,47.71,520.78,2388.14,8.4838,395,38.79,23.2732,965 +2,126,-0.0025,-0.0,643.67,1592.31,1414.3,21.61,552.84,2388.15,9082.44,47.7,520.95,2388.15,8.4628,395,38.69,23.3933,966 +2,127,-0.0007,0.0003,642.71,1601.18,1412.94,21.61,552.71,2388.12,9082.4,47.64,520.77,2388.09,8.4777,394,38.84,23.2438,967 +2,128,0.001,-0.0004,643.27,1597.19,1418.92,21.61,552.56,2388.15,9081.87,47.77,520.88,2388.15,8.448,395,38.87,23.2494,968 +2,129,0.0021,0.0004,642.59,1595.24,1413.21,21.61,552.66,2388.08,9085.59,47.82,520.71,2388.1,8.4563,393,38.7,23.2775,969 +2,130,0.0016,-0.0001,643.05,1587.82,1414.59,21.61,552.81,2388.04,9091.8,47.76,520.33,2388.09,8.4322,396,38.78,23.1092,970 +2,131,-0.0013,0.0,643.07,1597.57,1418.82,21.61,552.14,2388.08,9090.13,47.82,521.22,2388.11,8.4116,395,38.67,23.1022,971 +2,132,0.0033,-0.0003,642.95,1592.71,1419.52,21.61,552.51,2388.05,9094.23,47.85,520.9,2388.09,8.4794,395,38.67,23.1766,972 +2,133,-0.0027,-0.0001,643.17,1595.73,1421.87,21.61,552.6,2388.16,9086.35,47.84,520.7,2388.1,8.4554,393,38.73,23.2046,973 +2,134,0.0008,0.0001,643.69,1595.99,1418.5,21.61,552.91,2388.19,9098.66,47.77,521.07,2388.1,8.4572,394,38.61,23.2138,974 +2,135,0.0001,-0.0001,642.98,1590.64,1417.78,21.61,552.19,2388.13,9099.87,47.76,520.8,2388.13,8.5038,393,38.6,23.1608,975 +2,136,0.0003,0.0003,643.24,1599.02,1417.34,21.61,552.61,2388.12,9096.29,47.78,520.82,2388.14,8.4764,395,38.49,23.1211,976 +2,137,-0.0015,0.0001,643.11,1592.77,1422.49,21.61,552.84,2388.08,9101.92,47.71,521.21,2388.14,8.4447,394,38.64,23.2517,977 +2,138,0.0012,-0.0004,642.93,1593.15,1420.71,21.61,552.82,2388.2,9099.01,47.79,520.95,2388.14,8.4903,394,38.59,23.2389,978 +2,139,0.0027,-0.0004,643.14,1598.42,1420.01,21.61,552.51,2388.15,9104.41,47.84,520.6,2388.13,8.4811,393,38.64,23.284,979 +2,140,0.0015,0.0002,643.28,1598.29,1426.52,21.61,552.84,2388.09,9101.7,47.86,520.1,2388.16,8.4892,394,38.85,23.1497,980 +2,141,0.0038,-0.0001,643.07,1594.69,1413.6,21.61,551.73,2388.13,9100.81,47.76,520.51,2388.13,8.5033,393,38.63,23.0761,981 +2,142,0.0004,-0.0002,643.32,1595.55,1424.19,21.61,552.29,2388.11,9107.28,47.78,520.54,2388.1,8.4915,395,38.64,23.1678,982 +2,143,0.0024,0.0003,642.84,1598.36,1422.59,21.61,552.88,2388.14,9112.81,47.9,521.08,2388.11,8.5333,397,38.47,23.2542,983 +2,144,0.0027,0.0,642.88,1595.65,1423.84,21.61,551.76,2388.17,9107.19,47.67,520.56,2388.11,8.5018,395,38.51,23.1509,984 +2,145,0.0005,0.0002,643.0,1594.56,1419.82,21.61,553.03,2388.17,9110.0,47.74,520.96,2388.09,8.509,397,38.71,23.1809,985 +2,146,-0.0024,-0.0,643.71,1603.7,1424.19,21.61,552.33,2388.13,9112.74,47.9,520.52,2388.09,8.4818,395,38.64,23.1287,986 +2,147,-0.0,0.0003,643.23,1599.5,1417.04,21.61,551.78,2388.16,9122.41,48.03,520.84,2388.13,8.5129,394,38.65,23.2254,987 +2,148,-0.0012,-0.0003,643.21,1596.17,1423.23,21.61,552.01,2388.19,9119.85,47.91,520.24,2388.11,8.4997,395,38.55,23.1753,988 +2,149,0.0012,-0.0001,643.46,1602.85,1421.16,21.61,552.1,2388.16,9124.86,48.03,520.18,2388.14,8.5221,394,38.64,23.0922,989 +2,150,-0.0038,-0.0003,643.39,1600.67,1421.84,21.61,551.97,2388.12,9123.27,48.01,520.89,2388.16,8.4655,394,38.8,23.2275,990 +2,151,0.002,-0.0002,643.6,1609.06,1428.92,21.61,551.98,2388.15,9126.03,47.76,520.04,2388.12,8.4907,395,38.73,23.1447,991 +2,152,0.0002,0.0004,643.54,1597.82,1421.46,21.61,551.85,2388.14,9121.6,47.92,521.02,2388.13,8.4987,396,38.57,23.13,992 +2,153,-0.0008,-0.0001,643.73,1598.38,1421.08,21.61,552.27,2388.14,9129.24,47.78,519.94,2388.17,8.5,397,38.31,23.1185,993 +2,154,-0.0003,-0.0003,643.23,1602.57,1418.94,21.61,551.8,2388.16,9124.75,47.8,520.35,2388.15,8.5346,396,38.56,23.1418,994 +2,155,0.0046,0.0002,643.08,1600.58,1426.46,21.61,551.96,2388.11,9134.47,48.05,520.44,2388.12,8.4948,396,38.53,23.0528,995 +2,156,-0.0016,-0.0004,643.71,1599.54,1419.52,21.61,552.08,2388.17,9133.8,47.87,520.4,2388.16,8.4988,395,38.48,23.0585,996 +2,157,0.0004,0.0,643.43,1604.86,1432.39,21.61,552.42,2388.16,9136.94,48.12,520.61,2388.14,8.4845,397,38.45,23.0453,997 +2,158,-0.0024,0.0001,643.17,1610.57,1427.79,21.61,552.3,2388.17,9131.0,48.07,520.74,2388.17,8.5075,396,38.58,23.1415,998 +2,159,-0.0008,-0.0004,643.53,1612.88,1418.86,21.61,551.15,2388.15,9146.79,48.11,520.5,2388.2,8.554,396,38.28,23.1357,999 +2,160,0.0011,0.0,643.77,1597.42,1429.73,21.61,551.2,2388.17,9140.98,48.04,519.8,2388.13,8.5109,397,38.49,23.209,1000 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,129 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,130 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,131 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,132 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,133 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,134 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,135 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,136 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,137 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,143 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,144 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,145 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,146 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,147 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,148 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,149 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,150 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,151 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,152 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,153 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,154 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,155 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,156 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,157 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,158 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,159 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,160 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,161 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,162 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,163 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,164 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,165 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,166 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,172 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,173 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,174 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,175 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,176 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,177 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,178 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,179 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,180 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,181 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,182 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,183 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,184 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,185 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,186 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,187 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,188 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,189 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,190 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,191 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,192 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,193 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,194 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,195 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,201 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,202 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,203 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,204 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,205 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,206 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,207 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,208 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,209 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,210 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,211 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,212 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,213 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,214 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,215 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,216 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,217 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,218 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,219 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,220 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,221 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,222 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,223 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,224 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,230 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,231 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,232 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,233 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,234 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,235 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,236 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,237 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,238 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,239 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,240 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,241 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,242 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,243 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,244 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,245 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,246 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,247 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,248 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,249 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,250 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,251 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,252 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,253 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,259 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,260 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,261 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,262 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,263 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,264 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,265 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,266 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,267 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,268 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,269 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,270 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,271 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,272 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,273 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,274 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,275 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,276 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,277 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,278 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,279 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,280 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,281 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,282 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,288 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,289 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,290 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,291 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,292 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,293 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,294 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,295 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,296 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,297 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,298 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,299 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,300 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,301 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,302 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,303 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,304 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,305 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,306 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,307 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,308 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,309 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,310 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,311 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,317 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,318 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,319 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,320 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,321 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,322 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,323 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,324 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,325 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,326 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,327 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,328 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,329 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,330 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,331 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,332 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,333 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,334 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,335 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,336 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,337 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,338 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,339 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,340 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,346 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,347 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,348 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,349 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,350 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,351 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,352 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,353 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,354 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,355 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,356 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,357 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,358 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,359 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,360 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,361 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,362 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,363 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,364 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,365 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,366 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,367 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,368 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,369 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,375 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,376 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,377 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,378 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,379 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,380 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,381 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,382 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,383 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,384 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,385 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,386 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,387 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,388 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,389 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,390 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,391 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,392 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,393 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,394 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,395 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,396 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,397 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,398 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,404 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,405 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,406 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,407 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,408 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,409 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,410 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,411 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,412 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,413 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,414 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,415 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,416 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,417 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,418 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,419 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,420 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,421 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,422 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,423 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,424 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,425 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,426 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,427 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,433 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,434 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,435 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,436 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,437 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,438 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,439 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,440 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,441 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,442 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,443 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,444 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,445 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,446 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,447 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,448 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,449 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,450 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,451 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,452 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,453 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,454 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,455 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,456 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,462 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,463 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,464 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,465 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,466 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,467 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,468 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,469 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,470 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,471 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,472 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,473 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,474 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,475 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,476 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,477 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,478 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,479 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,480 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,481 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,482 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,483 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,484 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,485 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,491 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,492 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,493 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,494 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,495 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,496 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,497 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,498 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,499 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,500 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,501 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,502 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,503 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,504 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,505 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,506 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,507 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,508 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,509 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,510 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,511 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,512 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,513 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,514 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,520 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,521 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,522 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,523 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,524 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,525 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,526 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,527 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,528 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,529 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,530 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,531 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,532 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,533 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,534 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,535 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,536 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,537 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,538 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,539 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,540 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,541 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,542 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,543 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,549 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,550 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,551 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,552 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,553 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,554 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,555 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,556 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,557 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,558 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,559 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,560 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,561 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,562 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,563 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,564 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,565 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,566 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,567 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,568 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,569 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,570 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,571 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,572 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,578 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,579 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,580 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,581 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,582 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,583 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,584 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,585 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,586 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,587 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,588 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,589 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,590 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,591 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,592 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,593 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,594 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,595 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,596 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,597 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,598 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,599 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,600 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,601 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,607 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,608 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,609 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,610 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,611 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,612 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,613 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,614 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,615 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,616 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,617 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,618 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,619 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,620 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,621 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,622 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,623 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,624 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,625 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,626 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,627 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,628 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,629 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,630 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,636 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,637 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,638 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,639 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,640 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,641 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,642 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,643 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,644 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,645 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,646 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,647 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,648 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,649 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,650 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,651 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,652 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,653 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,654 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,655 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,656 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,657 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,658 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,659 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,665 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,666 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,667 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,668 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,669 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,670 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,671 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,672 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,673 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,674 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,675 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,676 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,677 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,678 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,679 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,680 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,681 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,682 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,683 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,684 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,685 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,686 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,687 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,688 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,694 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,695 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,696 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,697 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,698 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,699 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,700 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,701 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,702 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,703 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,704 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,705 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,706 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,707 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,708 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,709 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,710 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,711 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,712 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,713 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,714 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,715 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,716 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,717 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,723 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,724 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,725 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,726 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,727 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,728 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,729 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,730 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,731 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,732 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,733 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,734 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,735 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,736 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,737 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,738 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,739 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,740 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,741 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,742 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,743 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,744 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,745 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,746 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,752 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,753 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,754 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,755 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,756 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,757 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,758 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,759 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,760 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,761 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,762 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,763 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,764 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,765 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,766 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,767 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,768 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,769 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,770 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,771 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,772 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,773 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,774 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,775 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,781 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,782 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,783 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,784 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,785 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,786 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,787 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,788 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,789 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,790 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,791 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,792 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,793 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,794 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,795 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,796 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,797 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,798 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,799 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,800 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,801 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,802 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,803 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,804 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,810 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,811 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,812 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,813 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,814 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,815 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,816 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,817 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,818 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,819 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,820 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,821 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,822 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,823 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,824 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,825 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,826 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,827 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,828 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,829 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,830 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,831 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,832 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,833 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,839 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,840 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,841 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,842 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,843 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,844 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,845 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,846 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,847 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,848 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,849 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,850 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,851 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,852 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,853 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,854 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,855 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,856 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,857 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,858 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,859 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,860 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,861 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,862 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,868 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,869 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,870 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,871 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,872 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,873 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,874 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,875 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,876 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,877 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,878 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,879 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,880 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,881 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,882 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,883 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,884 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,885 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,886 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,887 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,888 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,889 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,890 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,891 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,897 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,898 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,899 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,900 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,901 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,902 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,903 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,904 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,905 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,906 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,907 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,908 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,909 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,910 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,911 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,912 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,913 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,914 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,915 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,916 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,917 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,918 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,919 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,920 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,926 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,927 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,928 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,929 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,930 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,931 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,932 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,933 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,934 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,935 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,936 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,937 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,938 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,939 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,940 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,941 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,942 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,943 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,944 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,945 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,946 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,947 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,948 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,949 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,955 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,956 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,957 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,958 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,959 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,960 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,961 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,962 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,963 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,964 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,965 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,966 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,967 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,968 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,969 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,970 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,971 +3,131,0.0008,0.0005,643.64,1593.38,1435.94,21.61,551.86,2388.29,9038.74,48.03,520.04,2388.27,8.4988,396,38.43,23.205,972 +3,132,0.0026,-0.0005,643.19,1599.21,1425.07,21.61,551.14,2388.28,9036.16,48.17,519.77,2388.3,8.5256,397,38.41,23.0338,973 +3,133,-0.0024,-0.0002,643.47,1605.28,1423.89,21.61,551.23,2388.3,9038.97,48.12,519.77,2388.29,8.4876,395,38.47,23.0866,974 +3,134,0.0006,-0.0004,643.65,1597.0,1425.54,21.61,551.67,2388.31,9038.17,48.4,519.67,2388.29,8.5187,396,38.31,23.0414,975 +3,135,-0.0023,0.0001,643.61,1604.87,1428.42,21.61,551.73,2388.32,9031.44,48.22,519.1,2388.32,8.5308,396,38.43,23.1252,976 +3,136,-0.0022,-0.0005,643.79,1601.69,1430.32,21.61,551.12,2388.34,9035.03,48.37,518.94,2388.29,8.5266,395,38.18,23.1046,977 +3,137,-0.0004,-0.0003,644.15,1596.45,1432.49,21.61,550.95,2388.32,9036.5,48.26,519.07,2388.28,8.5533,394,38.24,23.0412,978 +3,114,-0.0013,0.0002,642.7,1595.68,1413.51,21.61,552.84,2388.17,9047.11,47.98,520.83,2388.15,8.4694,396,38.76,23.2286,984 +3,115,0.0015,-0.0,642.34,1599.3,1417.37,21.61,552.75,2388.22,9037.03,47.64,520.57,2388.22,8.477,394,38.6,23.1983,985 +3,116,0.0005,0.0,643.29,1596.8,1405.14,21.61,551.89,2388.16,9036.62,47.91,520.54,2388.18,8.467,392,38.75,23.1789,986 +3,117,-0.0019,-0.0,643.03,1587.07,1417.78,21.61,552.63,2388.27,9042.36,47.75,520.58,2388.17,8.4793,394,38.76,23.2321,987 +3,118,0.0009,0.0001,643.61,1597.52,1415.36,21.61,552.79,2388.23,9035.42,47.82,520.73,2388.21,8.5201,393,38.74,23.2151,988 +3,119,-0.0014,-0.0004,643.32,1597.04,1414.06,21.61,552.43,2388.25,9038.36,47.85,520.92,2388.24,8.4803,395,38.56,23.1646,989 +3,120,0.0018,-0.0001,643.39,1600.21,1419.3,21.61,552.95,2388.29,9040.99,47.62,520.17,2388.22,8.4742,395,38.48,23.1435,990 +3,121,-0.0001,-0.0,643.0,1600.43,1422.02,21.61,552.67,2388.21,9037.32,47.89,520.23,2388.28,8.5135,395,38.59,23.1313,991 +3,122,0.0009,-0.0002,643.09,1592.04,1423.27,21.61,551.75,2388.24,9035.58,47.94,520.23,2388.2,8.5122,394,38.35,23.251,992 +3,123,-0.0012,0.0003,643.4,1601.63,1423.86,21.61,552.16,2388.23,9035.67,48.02,519.25,2388.25,8.4965,395,38.47,23.1253,993 +3,124,0.0037,0.0001,643.57,1595.41,1420.78,21.61,552.7,2388.28,9037.3,47.84,520.3,2388.23,8.4846,394,38.5,23.1192,994 +3,125,-0.0008,-0.0003,643.73,1596.02,1428.69,21.61,552.19,2388.25,9034.23,48.05,520.3,2388.24,8.4859,395,38.61,23.1055,995 +3,126,-0.0012,0.0002,643.39,1599.21,1417.22,21.61,551.93,2388.25,9035.13,47.94,520.03,2388.23,8.5177,394,38.55,23.1789,996 +3,127,0.0011,0.0002,643.69,1597.92,1421.16,21.61,551.88,2388.3,9048.0,47.86,520.2,2388.25,8.5165,394,38.59,23.1994,997 +3,128,0.0005,-0.0003,643.45,1599.53,1418.5,21.61,551.77,2388.24,9034.51,47.85,520.36,2388.19,8.5058,395,38.37,23.1706,998 +3,129,0.0023,-0.0001,643.04,1596.31,1428.03,21.61,552.39,2388.26,9036.6,48.06,520.11,2388.26,8.5011,395,38.5,23.1568,999 +3,130,-0.0014,0.0002,643.41,1600.26,1420.7,21.61,552.04,2388.33,9037.55,48.0,519.95,2388.28,8.5241,395,38.42,23.2014,1000 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,129 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,130 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,131 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,132 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,133 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,134 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,135 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,136 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,137 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,138 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,139 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,140 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,141 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,142 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,143 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,144 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,145 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,146 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,147 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,153 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,154 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,155 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,156 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,157 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,158 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,159 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,160 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,161 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,162 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,163 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,164 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,165 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,166 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,167 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,168 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,169 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,170 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,171 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,172 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,173 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,174 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,175 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,176 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,177 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,178 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,179 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,180 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,181 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,182 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,183 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,184 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,185 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,186 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,187 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,188 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,189 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,190 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,191 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,192 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,193 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,194 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,195 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,196 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,197 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,198 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,199 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,200 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,201 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,202 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,203 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,204 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,205 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,206 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,207 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,208 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,209 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,210 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,211 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,212 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,213 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,214 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,215 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,216 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,217 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,218 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,224 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,225 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,226 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,227 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,228 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,229 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,230 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,231 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,232 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,233 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,234 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,235 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,236 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,237 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,238 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,239 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,240 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,241 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,242 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,243 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,244 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,245 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,246 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,247 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,248 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,249 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,250 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,251 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,252 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,253 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,254 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,255 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,256 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,257 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,258 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,259 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,260 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,261 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,262 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,263 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,264 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,265 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,266 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,267 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,268 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,269 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,270 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,271 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,272 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,273 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,274 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,275 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,276 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,277 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,278 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,279 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,280 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,281 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,282 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,283 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,284 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,285 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,286 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,287 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,288 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,289 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,295 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,296 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,297 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,298 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,299 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,300 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,301 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,302 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,303 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,304 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,305 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,306 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,307 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,308 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,309 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,310 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,311 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,312 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,313 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,314 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,315 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,316 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,317 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,318 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,319 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,320 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,321 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,322 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,323 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,324 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,325 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,326 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,327 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,328 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,329 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,330 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,331 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,332 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,333 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,334 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,335 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,336 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,337 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,338 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,339 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,340 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,341 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,342 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,343 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,344 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,345 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,346 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,347 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,348 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,349 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,350 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,351 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,352 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,353 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,354 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,355 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,356 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,357 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,358 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,359 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,360 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,366 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,367 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,368 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,369 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,370 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,371 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,372 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,373 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,374 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,375 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,376 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,377 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,378 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,379 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,380 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,381 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,382 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,383 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,384 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,385 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,386 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,387 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,388 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,389 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,390 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,391 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,392 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,393 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,394 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,395 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,396 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,397 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,398 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,399 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,400 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,401 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,402 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,403 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,404 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,405 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,406 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,407 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,408 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,409 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,410 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,411 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,412 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,413 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,414 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,415 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,416 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,417 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,418 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,419 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,420 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,421 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,422 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,423 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,424 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,425 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,426 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,427 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,428 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,429 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,430 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,431 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,437 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,438 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,439 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,440 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,441 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,442 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,443 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,444 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,445 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,446 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,447 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,448 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,449 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,450 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,451 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,452 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,453 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,454 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,455 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,456 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,457 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,458 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,459 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,460 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,461 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,462 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,463 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,464 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,465 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,466 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,467 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,468 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,469 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,470 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,471 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,472 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,473 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,474 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,475 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,476 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,477 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,478 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,479 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,480 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,481 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,482 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,483 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,484 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,485 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,486 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,487 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,488 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,489 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,490 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,491 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,492 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,493 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,494 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,495 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,496 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,497 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,498 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,499 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,500 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,501 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,502 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,508 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,509 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,510 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,511 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,512 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,513 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,514 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,515 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,516 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,517 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,518 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,519 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,520 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,521 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,522 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,523 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,524 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,525 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,526 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,527 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,528 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,529 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,530 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,531 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,532 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,533 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,534 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,535 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,536 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,537 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,538 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,539 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,540 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,541 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,542 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,543 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,544 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,545 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,546 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,547 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,548 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,549 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,550 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,551 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,552 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,553 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,554 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,555 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,556 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,557 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,558 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,559 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,560 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,561 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,562 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,563 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,564 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,565 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,566 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,567 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,568 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,569 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,570 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,571 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,572 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,573 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,579 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,580 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,581 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,582 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,583 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,584 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,585 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,586 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,587 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,588 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,589 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,590 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,591 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,592 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,593 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,594 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,595 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,596 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,597 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,598 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,599 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,600 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,601 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,602 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,603 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,604 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,605 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,606 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,607 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,608 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,609 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,610 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,611 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,612 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,613 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,614 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,615 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,616 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,617 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,618 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,619 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,620 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,621 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,622 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,623 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,624 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,625 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,626 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,627 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,628 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,629 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,630 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,631 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,632 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,633 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,634 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,635 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,636 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,637 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,638 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,639 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,640 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,641 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,642 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,643 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,644 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,650 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,651 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,652 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,653 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,654 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,655 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,656 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,657 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,658 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,659 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,660 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,661 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,662 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,663 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,664 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,665 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,666 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,667 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,668 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,669 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,670 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,671 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,672 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,673 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,674 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,675 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,676 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,677 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,678 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,679 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,680 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,681 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,682 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,683 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,684 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,685 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,686 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,687 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,688 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,689 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,690 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,691 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,692 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,693 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,694 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,695 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,696 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,697 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,698 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,699 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,700 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,701 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,702 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,703 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,704 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,705 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,706 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,707 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,708 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,709 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,710 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,711 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,712 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,713 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,714 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,715 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,721 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,722 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,723 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,724 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,725 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,726 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,727 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,728 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,729 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,730 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,731 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,732 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,733 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,734 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,735 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,736 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,737 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,738 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,739 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,740 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,741 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,742 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,743 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,744 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,745 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,746 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,747 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,748 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,749 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,750 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,751 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,752 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,753 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,754 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,755 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,756 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,757 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,758 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,759 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,760 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,761 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,762 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,763 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,764 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,765 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,766 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,767 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,768 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,769 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,770 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,771 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,772 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,773 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,774 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,775 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,776 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,777 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,778 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,779 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,780 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,781 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,782 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,783 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,784 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,785 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,786 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,792 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,793 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,794 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,795 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,796 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,797 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,798 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,799 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,800 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,801 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,802 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,803 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,804 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,805 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,806 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,807 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,808 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,809 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,810 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,811 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,812 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,813 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,814 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,815 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,816 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,817 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,818 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,819 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,820 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,821 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,822 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,823 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,824 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,825 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,826 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,827 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,828 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,829 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,830 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,831 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,832 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,833 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,834 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,835 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,836 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,837 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,838 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,839 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,840 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,841 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,842 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,843 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,844 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,845 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,846 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,847 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,848 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,849 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,850 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,851 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,852 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,853 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,854 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,855 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,856 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,857 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,863 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,864 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,865 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,866 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,867 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,868 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,869 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,870 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,871 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,872 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,873 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,874 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,875 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,876 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,877 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,878 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,879 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,880 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,881 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,882 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,883 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,884 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,885 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,886 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,887 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,888 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,889 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,890 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,891 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,892 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,893 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,894 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,895 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,896 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,897 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,898 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,899 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,900 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,901 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,902 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,903 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,904 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,905 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,906 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,907 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,908 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,909 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,910 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,911 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,912 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,913 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,914 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,915 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,916 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,917 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,918 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,919 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,920 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,921 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,922 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,923 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,924 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,925 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,926 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,927 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,928 +4,82,-0.0024,0.0004,642.63,1590.37,1409.12,21.61,553.83,2388.09,9056.51,47.52,521.49,2388.13,8.4301,394,38.88,23.3767,934 +4,83,-0.0027,0.0004,642.6,1596.22,1413.63,21.61,553.69,2388.07,9066.12,47.32,521.78,2388.06,8.4514,392,38.88,23.3562,935 +4,84,-0.001,0.0003,642.66,1582.98,1405.42,21.61,553.58,2388.07,9059.76,47.56,521.45,2388.1,8.4299,394,38.92,23.253,936 +4,85,-0.0004,0.0002,642.76,1584.01,1410.95,21.61,552.95,2388.12,9058.67,47.49,521.35,2388.08,8.4193,394,38.96,23.3762,937 +4,86,-0.0014,0.0004,643.15,1586.07,1403.86,21.61,553.75,2388.12,9065.34,47.58,520.98,2388.07,8.4624,392,38.91,23.3623,938 +4,87,-0.0005,-0.0002,642.56,1589.38,1410.15,21.61,553.65,2388.07,9055.95,47.49,521.27,2388.1,8.4508,392,38.64,23.2447,939 +4,88,0.0005,-0.0004,642.46,1587.3,1400.11,21.61,553.2,2388.05,9056.7,47.59,521.46,2388.13,8.4338,392,38.89,23.3638,940 +4,89,-0.0002,-0.0004,642.56,1590.26,1398.19,21.61,554.07,2388.12,9056.77,47.35,521.84,2388.03,8.4484,394,38.81,23.3328,941 +4,90,-0.0029,-0.0002,642.55,1590.39,1411.2,21.61,553.41,2388.09,9060.41,47.6,521.27,2388.11,8.4519,392,38.84,23.2538,942 +4,91,-0.0008,0.0001,642.73,1595.35,1406.87,21.61,553.54,2388.1,9053.54,47.64,521.36,2388.14,8.4245,394,38.9,23.4059,943 +4,92,-0.0031,0.0002,642.92,1592.66,1413.84,21.61,552.96,2388.05,9056.75,47.55,520.94,2388.05,8.4209,393,38.93,23.2621,944 +4,93,0.0007,0.0002,642.39,1590.18,1407.21,21.61,553.35,2388.12,9057.96,47.56,521.93,2388.08,8.4281,392,38.68,23.3493,945 +4,94,-0.0013,-0.0003,642.63,1600.35,1413.54,21.61,553.59,2388.06,9066.08,47.54,521.5,2388.12,8.4146,394,38.75,23.2756,946 +4,95,-0.0001,0.0001,642.32,1588.33,1412.62,21.61,552.87,2388.16,9060.49,47.45,521.76,2388.11,8.4454,393,38.64,23.1907,947 +4,96,-0.0004,-0.0,642.93,1589.02,1409.51,21.61,554.19,2388.06,9059.96,47.48,521.37,2388.09,8.4273,394,38.71,23.2507,948 +4,97,-0.0025,-0.0004,642.79,1584.44,1411.82,21.61,552.77,2388.07,9057.61,47.4,521.33,2388.05,8.4598,393,38.96,23.297,949 +4,98,0.0002,0.0001,642.47,1588.44,1407.33,21.61,552.8,2388.16,9062.09,47.46,521.68,2388.15,8.4531,396,38.79,23.3317,950 +4,99,-0.0001,-0.0004,642.48,1590.97,1407.0,21.61,553.41,2388.1,9066.31,47.65,521.79,2388.18,8.4381,394,38.75,23.3092,951 +4,100,0.0011,-0.0001,642.24,1592.93,1406.27,21.61,554.31,2388.14,9064.01,47.6,521.24,2388.12,8.4427,392,38.82,23.2163,952 +4,101,0.0023,-0.0002,642.43,1591.55,1408.5,21.61,553.5,2388.12,9064.79,47.75,521.67,2388.1,8.4226,394,38.77,23.2055,953 +4,102,0.0034,-0.0,643.07,1584.15,1409.92,21.61,553.25,2388.11,9063.07,47.48,521.79,2388.09,8.4719,393,38.73,23.2679,954 +4,103,-0.0023,-0.0003,642.97,1592.68,1419.79,21.61,552.41,2388.12,9064.23,47.65,521.1,2388.13,8.4451,395,38.82,23.2441,955 +4,104,0.0012,0.0003,642.56,1594.03,1418.14,21.61,552.83,2388.05,9058.89,47.49,521.51,2388.1,8.4452,393,38.76,23.2827,956 +4,105,-0.0043,-0.0004,642.79,1586.8,1410.65,21.61,553.9,2388.14,9056.13,47.65,521.46,2388.08,8.457,392,38.57,23.318,957 +4,106,0.0007,-0.0005,643.2,1586.22,1412.36,21.61,552.95,2388.07,9058.64,47.54,520.71,2388.11,8.4849,393,38.75,23.331,958 +4,107,-0.0032,-0.0003,642.85,1588.21,1409.41,21.61,553.57,2388.12,9062.35,47.8,520.5,2388.14,8.4806,394,38.71,23.2972,959 +4,108,-0.0015,0.0,643.17,1591.96,1412.28,21.61,552.96,2388.12,9067.62,47.43,521.32,2388.11,8.4827,394,38.82,23.2725,960 +4,109,0.0021,-0.0005,642.42,1587.99,1416.67,21.61,552.76,2388.16,9061.34,47.62,521.56,2388.17,8.4411,393,38.89,23.255,961 +4,110,-0.003,0.0001,643.41,1590.77,1412.13,21.61,553.47,2388.15,9064.69,47.67,520.8,2388.19,8.4413,394,38.71,23.2467,962 +4,111,0.0033,0.0,642.82,1590.22,1415.22,21.61,552.82,2388.13,9062.13,47.56,521.3,2388.16,8.4379,395,38.77,23.2111,963 +4,112,-0.0017,-0.0,642.38,1597.91,1411.05,21.61,552.56,2388.21,9055.93,47.81,520.85,2388.16,8.4773,394,38.72,23.2826,964 +4,113,-0.0016,-0.0003,642.97,1595.27,1415.56,21.61,552.93,2388.13,9065.61,47.6,521.33,2388.19,8.4642,394,38.76,23.1989,965 +4,114,-0.0016,-0.0005,642.93,1595.94,1412.62,21.61,553.0,2388.16,9050.85,47.56,521.09,2388.17,8.453,394,38.91,23.1937,966 +4,115,-0.0006,0.0004,642.9,1591.76,1411.27,21.61,552.35,2388.18,9062.0,47.69,521.17,2388.16,8.4697,393,38.87,23.2446,967 +4,116,0.0002,0.0,642.75,1594.44,1410.43,21.61,552.31,2388.13,9059.94,47.69,521.21,2388.11,8.4676,396,38.76,23.2957,968 +4,117,-0.0002,-0.0003,643.25,1593.25,1414.08,21.61,552.93,2388.16,9057.92,47.79,520.57,2388.18,8.4981,393,38.8,23.2223,969 +4,118,-0.0009,0.0001,642.81,1588.02,1419.38,21.61,552.71,2388.09,9053.48,47.69,520.9,2388.15,8.5322,394,38.84,23.193,970 +4,119,0.0012,0.0003,642.51,1596.97,1407.82,21.61,552.49,2388.19,9059.96,47.77,520.96,2388.2,8.4617,394,38.59,23.2466,971 +4,120,-0.0009,0.0002,642.77,1595.64,1414.42,21.61,552.66,2388.2,9055.5,47.93,520.48,2388.13,8.4452,395,38.79,23.2433,972 +4,121,-0.0001,0.0003,642.63,1592.91,1421.19,21.61,553.83,2388.15,9057.74,47.8,520.67,2388.2,8.4401,394,38.83,23.3424,973 +4,122,-0.0036,-0.0002,642.79,1597.51,1411.0,21.61,552.52,2388.18,9056.59,47.7,520.45,2388.16,8.4651,395,38.79,23.2957,974 +4,123,0.0017,0.0003,643.11,1586.78,1415.01,21.61,552.23,2388.17,9054.96,47.89,520.94,2388.14,8.4703,394,38.67,23.2559,975 +4,124,-0.0009,-0.0002,643.34,1596.92,1418.71,21.61,553.33,2388.16,9058.46,47.86,520.72,2388.18,8.4907,396,38.69,23.184,976 +4,125,-0.0019,0.0001,643.69,1592.69,1421.31,21.61,552.55,2388.18,9054.61,47.82,520.88,2388.18,8.4499,395,38.75,23.2074,977 +4,126,0.0003,0.0001,643.11,1599.4,1419.61,21.61,553.6,2388.16,9052.17,47.68,520.85,2388.24,8.4776,394,38.77,23.1867,978 +4,127,-0.0006,0.0003,643.1,1591.08,1412.16,21.61,552.47,2388.18,9058.51,47.76,520.46,2388.16,8.5023,393,38.61,23.1422,979 +4,128,0.0007,-0.0002,642.99,1598.99,1419.89,21.61,552.57,2388.19,9047.29,47.82,520.36,2388.25,8.4834,394,38.82,23.1397,980 +4,129,0.0013,0.0001,643.47,1590.66,1414.62,21.61,552.76,2388.21,9054.42,47.81,520.34,2388.19,8.4734,395,38.64,23.2383,981 +4,130,0.0033,0.0001,642.94,1597.17,1416.69,21.61,551.6,2388.2,9055.53,47.93,519.67,2388.18,8.4683,394,38.69,23.1293,982 +4,131,0.0012,0.0004,642.89,1590.84,1419.96,21.61,552.69,2388.17,9048.72,47.89,520.44,2388.23,8.4762,396,38.49,23.1771,983 +4,132,0.0013,-0.0004,643.09,1597.86,1426.76,21.61,551.91,2388.23,9055.1,47.96,520.11,2388.28,8.4593,393,38.56,23.1201,984 +4,133,-0.0029,-0.0001,643.11,1600.78,1422.72,21.61,552.71,2388.26,9059.97,47.81,520.44,2388.19,8.4931,395,38.62,23.1794,985 +4,134,-0.0005,0.0003,643.2,1592.29,1421.06,21.61,552.74,2388.2,9046.53,47.88,520.42,2388.22,8.4874,395,38.65,23.1702,986 +4,135,-0.0023,-0.0001,643.57,1599.64,1417.99,21.61,552.18,2388.24,9054.31,47.92,520.33,2388.26,8.5098,394,38.6,23.114,987 +4,136,0.0031,-0.0005,643.12,1604.85,1424.95,21.61,551.04,2388.2,9049.09,47.9,520.4,2388.27,8.5042,397,38.57,23.0882,988 +4,137,-0.0013,0.0003,643.62,1594.84,1426.06,21.61,552.25,2388.25,9054.86,48.22,520.31,2388.29,8.4972,396,38.6,23.1609,989 +4,138,-0.0009,-0.0005,643.43,1598.68,1422.57,21.61,551.29,2388.25,9053.92,48.01,520.48,2388.27,8.47,395,38.54,23.1793,990 +4,139,0.002,-0.0003,643.03,1603.67,1420.72,21.61,551.22,2388.28,9043.83,48.07,519.78,2388.27,8.4786,397,38.65,23.1517,991 +4,140,-0.0033,-0.0003,643.6,1601.88,1424.96,21.61,552.04,2388.32,9047.13,48.15,520.16,2388.21,8.4867,396,38.37,23.0697,992 +4,141,0.0028,0.0001,643.65,1598.35,1419.95,21.61,552.24,2388.21,9047.96,47.93,519.81,2388.27,8.4739,394,38.42,23.128,993 +4,142,0.0015,0.0,643.04,1591.57,1428.33,21.61,551.81,2388.32,9046.59,48.11,519.98,2388.32,8.4973,396,38.29,23.0459,994 +4,143,-0.0027,-0.0001,643.23,1606.09,1426.54,21.61,551.51,2388.27,9043.51,48.12,520.13,2388.28,8.5053,396,38.64,23.1447,995 +4,144,-0.0042,-0.0003,644.19,1597.88,1424.43,21.61,550.8,2388.31,9044.79,48.15,520.05,2388.27,8.5146,397,38.55,22.9495,996 +4,145,0.0009,-0.0,644.02,1602.9,1436.66,21.61,551.06,2388.28,9048.86,48.17,519.55,2388.23,8.5286,396,38.32,23.0548,997 +4,146,0.0042,0.0004,643.6,1604.72,1430.55,21.61,551.31,2388.34,9039.32,48.02,519.65,2388.26,8.5056,396,38.46,23.1961,998 +4,147,-0.0028,0.0002,643.75,1593.77,1438.22,21.61,551.29,2388.28,9047.79,48.33,519.77,2388.33,8.519,395,38.29,23.185,999 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,129 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,130 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,131 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,132 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,133 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,134 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,135 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,136 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,137 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,138 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,139 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,140 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,141 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,142 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,143 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,144 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,145 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,146 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,147 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,148 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,149 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,150 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,151 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,152 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,153 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,154 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,155 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,156 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,157 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,158 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,159 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,160 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,161 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,162 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,163 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,164 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,165 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,166 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,167 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,168 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,169 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,170 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,171 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,172 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,178 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,179 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,180 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,181 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,182 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,183 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,184 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,185 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,186 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,187 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,188 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,189 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,190 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,191 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,192 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,193 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,194 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,195 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,196 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,197 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,198 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,199 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,200 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,201 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,202 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,203 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,204 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,205 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,206 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,207 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,208 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,209 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,210 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,211 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,212 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,213 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,214 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,215 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,216 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,217 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,218 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,219 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,220 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,221 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,222 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,223 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,224 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,225 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,226 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,227 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,228 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,229 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,230 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,231 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,232 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,233 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,234 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,235 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,236 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,237 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,238 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,239 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,240 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,241 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,242 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,243 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,244 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,245 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,246 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,247 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,248 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,254 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,255 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,256 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,257 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,258 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,259 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,260 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,261 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,262 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,263 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,264 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,265 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,266 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,267 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,268 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,269 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,270 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,271 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,272 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,273 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,274 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,275 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,276 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,277 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,278 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,279 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,280 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,281 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,282 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,283 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,284 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,285 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,286 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,287 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,288 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,289 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,290 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,291 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,292 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,293 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,294 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,295 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,296 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,297 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,298 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,299 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,300 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,301 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,302 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,303 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,304 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,305 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,306 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,307 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,308 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,309 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,310 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,311 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,312 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,313 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,314 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,315 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,316 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,317 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,318 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,319 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,320 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,321 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,322 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,323 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,324 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,330 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,331 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,332 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,333 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,334 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,335 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,336 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,337 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,338 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,339 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,340 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,341 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,342 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,343 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,344 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,345 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,346 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,347 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,348 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,349 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,350 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,351 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,352 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,353 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,354 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,355 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,356 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,357 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,358 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,359 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,360 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,361 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,362 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,363 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,364 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,365 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,366 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,367 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,368 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,369 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,370 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,371 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,372 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,373 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,374 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,375 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,376 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,377 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,378 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,379 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,380 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,381 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,382 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,383 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,384 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,385 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,386 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,387 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,388 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,389 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,390 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,391 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,392 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,393 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,394 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,395 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,396 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,397 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,398 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,399 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,400 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,406 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,407 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,408 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,409 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,410 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,411 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,412 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,413 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,414 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,415 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,416 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,417 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,418 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,419 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,420 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,421 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,422 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,423 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,424 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,425 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,426 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,427 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,428 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,429 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,430 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,431 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,432 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,433 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,434 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,435 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,436 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,437 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,438 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,439 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,440 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,441 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,442 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,443 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,444 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,445 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,446 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,447 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,448 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,449 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,450 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,451 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,452 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,453 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,454 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,455 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,456 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,457 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,458 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,459 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,460 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,461 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,462 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,463 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,464 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,465 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,466 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,467 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,468 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,469 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,470 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,471 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,472 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,473 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,474 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,475 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,476 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,482 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,483 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,484 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,485 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,486 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,487 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,488 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,489 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,490 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,491 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,492 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,493 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,494 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,495 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,496 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,497 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,498 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,499 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,500 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,501 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,502 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,503 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,504 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,505 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,506 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,507 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,508 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,509 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,510 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,511 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,512 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,513 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,514 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,515 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,516 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,517 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,518 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,519 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,520 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,521 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,522 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,523 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,524 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,525 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,526 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,527 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,528 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,529 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,530 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,531 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,532 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,533 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,534 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,535 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,536 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,537 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,538 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,539 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,540 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,541 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,542 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,543 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,544 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,545 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,546 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,547 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,548 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,549 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,550 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,551 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,552 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,558 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,559 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,560 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,561 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,562 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,563 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,564 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,565 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,566 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,567 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,568 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,569 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,570 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,571 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,572 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,573 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,574 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,575 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,576 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,577 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,578 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,579 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,580 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,581 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,582 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,583 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,584 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,585 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,586 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,587 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,588 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,589 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,590 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,591 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,592 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,593 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,594 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,595 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,596 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,597 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,598 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,599 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,600 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,601 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,602 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,603 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,604 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,605 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,606 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,607 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,608 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,609 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,610 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,611 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,612 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,613 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,614 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,615 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,616 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,617 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,618 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,619 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,620 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,621 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,622 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,623 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,624 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,625 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,626 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,627 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,628 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,634 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,635 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,636 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,637 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,638 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,639 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,640 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,641 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,642 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,643 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,644 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,645 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,646 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,647 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,648 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,649 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,650 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,651 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,652 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,653 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,654 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,655 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,656 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,657 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,658 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,659 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,660 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,661 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,662 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,663 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,664 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,665 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,666 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,667 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,668 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,669 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,670 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,671 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,672 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,673 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,674 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,675 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,676 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,677 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,678 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,679 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,680 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,681 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,682 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,683 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,684 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,685 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,686 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,687 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,688 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,689 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,690 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,691 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,692 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,693 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,694 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,695 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,696 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,697 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,698 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,699 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,700 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,701 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,702 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,703 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,704 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,710 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,711 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,712 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,713 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,714 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,715 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,716 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,717 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,718 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,719 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,720 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,721 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,722 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,723 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,724 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,725 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,726 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,727 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,728 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,729 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,730 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,731 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,732 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,733 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,734 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,735 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,736 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,737 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,738 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,739 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,740 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,741 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,742 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,743 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,744 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,745 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,746 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,747 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,748 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,749 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,750 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,751 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,752 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,753 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,754 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,755 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,756 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,757 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,758 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,759 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,760 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,761 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,762 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,763 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,764 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,765 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,766 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,767 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,768 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,769 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,770 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,771 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,772 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,773 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,774 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,775 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,776 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,777 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,778 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,779 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,780 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,786 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,787 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,788 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,789 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,790 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,791 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,792 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,793 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,794 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,795 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,796 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,797 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,798 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,799 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,800 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,801 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,802 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,803 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,804 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,805 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,806 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,807 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,808 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,809 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,810 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,811 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,812 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,813 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,814 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,815 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,816 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,817 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,818 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,819 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,820 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,821 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,822 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,823 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,824 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,825 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,826 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,827 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,828 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,829 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,830 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,831 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,832 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,833 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,834 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,835 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,836 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,837 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,838 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,839 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,840 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,841 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,842 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,843 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,844 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,845 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,846 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,847 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,848 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,849 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,850 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,851 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,852 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,853 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,854 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,855 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,856 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,862 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,863 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,864 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,865 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,866 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,867 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,868 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,869 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,870 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,871 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,872 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,873 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,874 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,875 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,876 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,877 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,878 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,879 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,880 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,881 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,882 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,883 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,884 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,885 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,886 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,887 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,888 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,889 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,890 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,891 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,892 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,893 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,894 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,895 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,896 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,897 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,898 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,899 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,900 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,901 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,902 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,903 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,904 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,905 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,906 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,907 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,908 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,909 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,910 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,911 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,912 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,913 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,914 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,915 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,916 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,917 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,918 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,919 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,920 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,921 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,922 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,923 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,924 +5,165,-0.0012,-0.0005,643.43,1601.09,1425.62,21.61,552.69,2388.16,9119.65,48.19,520.61,2388.16,8.5099,397,38.45,23.0497,925 +5,166,0.0012,0.0002,643.36,1606.08,1426.33,21.61,551.7,2388.11,9123.57,48.08,520.51,2388.18,8.4909,395,38.39,23.0767,926 +5,167,0.0025,0.0001,643.25,1599.64,1431.86,21.61,551.67,2388.18,9127.94,47.91,520.02,2388.18,8.5475,396,38.44,23.0666,927 +5,168,-0.0013,-0.0005,643.27,1605.39,1424.66,21.61,551.99,2388.19,9120.77,48.07,519.95,2388.18,8.5478,394,38.43,23.0102,928 +5,169,-0.0002,-0.0005,643.0,1604.8,1427.89,21.61,551.78,2388.21,9132.96,47.96,519.55,2388.22,8.5028,394,38.4,23.0611,929 +5,170,0.0038,-0.0004,643.52,1605.43,1428.3,21.61,552.02,2388.19,9131.61,48.26,520.38,2388.23,8.5246,395,38.56,23.0791,930 +5,171,-0.0013,-0.0005,643.9,1599.63,1424.11,21.61,551.35,2388.17,9144.09,48.19,519.53,2388.17,8.52,397,38.41,23.0279,931 +5,172,-0.0005,0.0004,643.62,1605.19,1434.09,21.61,551.21,2388.18,9141.47,48.04,520.44,2388.22,8.5322,396,38.23,22.954,932 +5,102,-0.0023,-0.0005,643.19,1583.86,1409.59,21.61,553.27,2388.13,9060.29,47.67,521.5,2388.08,8.4491,393,38.89,23.2671,938 +5,103,0.0001,-0.0002,642.5,1597.45,1413.69,21.61,553.89,2388.1,9071.12,47.63,521.35,2388.06,8.4503,393,38.8,23.3327,939 +5,104,-0.0005,0.0,642.63,1595.18,1412.56,21.61,553.37,2388.09,9068.25,47.53,521.72,2388.14,8.4723,395,38.58,23.3522,940 +5,105,0.0002,-0.0003,642.58,1593.8,1414.52,21.61,553.57,2388.05,9064.91,47.59,521.19,2388.11,8.4567,392,38.91,23.3025,941 +5,106,-0.0017,0.0001,642.21,1588.56,1413.47,21.61,553.06,2388.13,9072.36,47.68,521.5,2388.13,8.4554,393,38.89,23.3917,942 +5,107,-0.0017,0.0002,642.6,1591.71,1401.65,21.61,553.49,2388.09,9066.61,47.52,521.64,2388.08,8.4336,392,38.71,23.2783,943 +5,108,0.0024,-0.0004,642.95,1587.13,1406.0,21.61,553.06,2388.09,9067.16,47.57,520.86,2388.1,8.4256,393,38.75,23.3807,944 +5,109,-0.0016,-0.0006,642.29,1591.57,1413.09,21.61,552.92,2388.11,9069.02,47.56,521.27,2388.09,8.4354,394,38.89,23.3013,945 +5,110,0.0022,-0.0002,642.54,1594.34,1402.25,21.61,552.79,2388.09,9059.85,47.59,521.5,2388.04,8.4388,393,38.97,23.3262,946 +5,111,-0.0022,-0.0001,643.16,1594.15,1412.5,21.61,553.75,2388.11,9066.8,47.41,521.78,2388.15,8.4483,395,38.79,23.3958,947 +5,112,-0.0014,-0.0002,643.11,1591.99,1407.55,21.61,553.35,2388.11,9061.1,47.58,521.3,2388.09,8.4796,394,38.66,23.3286,948 +5,113,0.0049,-0.0,642.45,1592.23,1406.55,21.61,552.96,2388.12,9070.94,47.65,521.51,2388.12,8.4517,394,38.73,23.4086,949 +5,114,0.0011,-0.0002,642.69,1594.03,1409.34,21.61,552.43,2388.14,9063.61,47.56,521.01,2388.12,8.4547,393,38.79,23.2735,950 +5,115,-0.0017,-0.0003,642.8,1591.34,1407.75,21.61,553.42,2388.11,9063.33,47.54,521.16,2388.09,8.4102,394,38.9,23.3267,951 +5,116,-0.0005,0.0001,643.24,1592.96,1410.35,21.61,553.12,2388.07,9062.71,47.55,521.38,2388.11,8.4696,393,38.75,23.2716,952 +5,117,-0.0022,-0.0003,643.09,1587.04,1416.93,21.61,552.95,2388.1,9068.04,47.6,521.15,2388.09,8.4731,393,38.85,23.2779,953 +5,118,0.001,-0.0005,643.1,1598.22,1409.86,21.61,552.96,2388.15,9073.95,47.55,521.1,2388.14,8.4662,395,38.82,23.3381,954 +5,119,0.0031,-0.0005,642.93,1601.9,1411.48,21.61,553.42,2388.04,9068.71,47.84,521.26,2388.07,8.449,393,38.77,23.3238,955 +5,120,-0.0001,0.0003,642.95,1589.43,1414.06,21.61,552.7,2388.09,9079.02,47.4,521.5,2388.11,8.4353,396,38.75,23.2008,956 +5,121,-0.0029,-0.0003,642.34,1595.83,1412.15,21.61,553.35,2388.09,9081.15,47.65,520.92,2388.08,8.4781,393,38.71,23.3712,957 +5,122,-0.0007,-0.0006,642.32,1583.33,1420.57,21.61,552.62,2388.1,9071.54,47.51,521.25,2388.08,8.4488,394,38.75,23.2756,958 +5,123,-0.001,-0.0002,643.41,1594.83,1414.63,21.61,552.77,2388.09,9070.42,47.66,521.18,2388.07,8.465,393,38.86,23.2641,959 +5,124,-0.001,0.0001,643.54,1594.6,1418.02,21.61,553.64,2388.07,9066.29,47.57,521.22,2388.12,8.4651,394,38.63,23.1732,960 +5,125,0.004,0.0001,643.0,1587.03,1414.03,21.61,552.89,2388.1,9069.48,47.78,521.43,2388.14,8.4778,394,38.86,23.2735,961 +5,126,-0.0005,-0.0005,642.73,1592.98,1417.84,21.61,552.97,2388.1,9074.16,47.53,521.12,2388.1,8.4656,394,38.73,23.2664,962 +5,127,0.0013,0.0003,643.08,1591.67,1408.61,21.61,552.61,2388.11,9078.07,47.69,521.15,2388.06,8.4479,394,38.71,23.263,963 +5,128,-0.0002,0.0001,642.52,1591.75,1412.43,21.61,552.97,2388.1,9072.21,47.71,520.5,2388.1,8.4591,393,38.58,23.2718,964 +5,129,0.0016,0.0004,642.64,1591.77,1414.79,21.61,552.7,2388.12,9082.96,47.83,521.19,2388.12,8.4318,394,38.68,23.2551,965 +5,130,-0.0023,-0.0002,643.19,1592.78,1418.57,21.61,552.43,2388.14,9078.88,47.88,520.72,2388.07,8.4593,394,38.61,23.2274,966 +5,131,0.0004,0.0,643.08,1594.65,1413.4,21.61,552.41,2388.12,9070.41,47.61,520.73,2388.11,8.4571,394,38.77,23.2466,967 +5,132,0.003,-0.0002,643.45,1595.35,1411.76,21.61,552.82,2388.11,9076.56,47.92,520.98,2388.08,8.4639,393,38.67,23.1271,968 +5,133,0.0035,0.0003,643.27,1596.23,1410.27,21.61,552.75,2388.12,9081.53,47.7,521.03,2388.15,8.5138,394,38.64,23.2095,969 +5,134,-0.0035,0.0002,642.97,1590.9,1419.92,21.61,552.62,2388.1,9082.52,47.56,520.64,2388.13,8.4321,395,38.68,23.176,970 +5,135,-0.0012,0.0,643.45,1589.47,1411.56,21.61,553.02,2388.05,9075.08,48.04,520.92,2388.16,8.4498,393,38.69,23.2795,971 +5,136,-0.004,0.0,643.23,1586.91,1415.23,21.61,552.87,2388.14,9084.62,47.83,521.04,2388.18,8.4507,395,38.66,23.0745,972 +5,137,0.0016,0.0001,642.89,1592.32,1415.1,21.61,552.57,2388.14,9080.7,47.69,521.2,2388.11,8.4793,395,38.81,23.2652,973 +5,138,0.0022,-0.0001,642.87,1595.57,1410.28,21.61,552.78,2388.16,9081.8,47.78,521.15,2388.09,8.4557,393,38.72,23.3655,974 +5,139,-0.0044,-0.0002,643.35,1596.72,1412.09,21.61,553.33,2388.09,9086.93,47.83,520.85,2388.09,8.4402,395,38.79,23.2684,975 +5,140,0.0003,0.0003,643.25,1599.01,1417.27,21.61,552.82,2388.14,9085.72,47.68,520.56,2388.12,8.477,394,38.68,23.2201,976 +5,141,0.0026,-0.0,642.84,1599.81,1414.42,21.61,553.38,2388.18,9089.78,47.92,521.09,2388.14,8.4785,394,38.71,23.2168,977 +5,142,-0.0042,0.0004,642.92,1600.22,1415.97,21.61,552.8,2388.17,9091.71,47.72,520.72,2388.14,8.4789,394,38.63,23.3223,978 +5,143,0.0013,-0.0005,643.15,1599.66,1420.32,21.61,553.24,2388.11,9083.81,47.7,520.72,2388.11,8.4854,394,38.67,23.2419,979 +5,144,-0.0023,-0.0002,643.13,1597.01,1419.5,21.61,552.61,2388.13,9092.82,47.83,520.99,2388.09,8.4966,393,38.68,23.2181,980 +5,145,0.0029,-0.0003,642.95,1595.3,1418.11,21.61,552.2,2388.08,9084.96,47.8,520.16,2388.14,8.4605,394,38.7,23.1871,981 +5,146,0.0017,-0.0002,643.42,1595.04,1421.76,21.61,552.32,2388.13,9090.33,47.95,520.93,2388.15,8.4472,396,38.77,23.0987,982 +5,147,-0.0019,0.0001,643.14,1595.7,1422.39,21.61,552.09,2388.14,9092.48,47.65,520.38,2388.14,8.4745,396,38.67,23.2111,983 +5,148,-0.0018,-0.0002,643.12,1598.39,1419.37,21.61,553.0,2388.15,9092.06,47.83,521.51,2388.08,8.4484,396,38.79,23.1724,984 +5,149,0.0026,-0.0001,643.65,1598.24,1418.29,21.61,552.7,2388.14,9097.14,47.94,520.36,2388.1,8.4778,395,38.56,23.2713,985 +5,150,0.0005,-0.0005,643.57,1595.96,1416.97,21.61,552.07,2388.1,9096.81,47.98,520.33,2388.09,8.4712,394,38.65,23.0672,986 +5,151,0.0027,0.0002,643.53,1603.99,1413.38,21.61,551.8,2388.14,9099.0,47.89,521.06,2388.11,8.4844,395,38.59,23.0649,987 +5,152,-0.0012,-0.0004,642.71,1601.85,1426.08,21.61,552.42,2388.09,9099.68,47.83,520.1,2388.1,8.4716,396,38.53,23.1546,988 +5,153,0.003,-0.0004,643.24,1598.63,1414.98,21.61,551.85,2388.14,9105.46,47.8,520.06,2388.12,8.4573,395,38.54,23.1331,989 +5,154,0.0022,-0.0002,642.9,1600.59,1421.96,21.61,552.18,2388.16,9101.43,47.9,520.66,2388.13,8.4994,395,38.41,23.1594,990 +5,155,-0.0041,0.0002,643.15,1595.63,1420.77,21.61,551.36,2388.15,9105.2,47.85,520.88,2388.13,8.5067,395,38.69,23.2001,991 +5,156,0.0037,-0.0001,643.43,1601.63,1412.51,21.61,552.84,2388.13,9106.37,47.86,520.13,2388.17,8.4705,395,38.58,23.1307,992 +5,157,-0.0005,-0.0004,644.37,1595.33,1416.67,21.61,551.55,2388.14,9105.62,48.02,520.14,2388.18,8.5038,396,38.67,23.0836,993 +5,158,-0.0017,0.0,643.24,1603.2,1422.86,21.61,552.14,2388.16,9102.78,47.96,520.34,2388.17,8.527,395,38.59,23.1506,994 +5,159,-0.0021,-0.0004,643.82,1597.65,1420.06,21.61,551.58,2388.15,9117.25,48.01,520.52,2388.13,8.5194,394,38.52,23.0807,995 +5,160,0.0013,-0.0005,643.75,1599.06,1423.18,21.61,552.83,2388.16,9111.12,48.21,519.84,2388.19,8.4952,395,38.57,23.1486,996 +5,161,0.0026,-0.0001,643.61,1596.16,1424.31,21.61,551.76,2388.15,9113.99,48.05,520.19,2388.22,8.507,398,38.7,23.0713,997 +5,162,-0.0003,0.0001,643.56,1597.76,1426.7,21.61,551.86,2388.17,9110.25,48.01,520.49,2388.14,8.515,396,38.54,23.1078,998 +5,163,0.0006,-0.0003,643.67,1603.32,1421.99,21.61,552.21,2388.19,9118.62,47.96,520.12,2388.16,8.5415,396,38.4,23.1444,999 +5,164,-0.0006,0.0003,643.44,1600.31,1424.57,21.61,551.36,2388.16,9116.28,48.0,519.82,2388.16,8.532,397,38.5,23.113,1000 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,129 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,130 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,131 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,132 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,133 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,134 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,135 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,136 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,137 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,138 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,139 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,140 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,141 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,142 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,143 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,144 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,145 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,146 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,147 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,148 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,149 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,150 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,151 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,152 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,153 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,159 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,160 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,161 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,162 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,163 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,164 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,165 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,166 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,167 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,168 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,169 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,170 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,171 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,172 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,173 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,174 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,175 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,176 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,177 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,178 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,179 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,180 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,181 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,182 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,183 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,184 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,185 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,186 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,187 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,188 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,189 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,190 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,191 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,192 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,193 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,194 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,195 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,196 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,197 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,198 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,199 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,200 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,201 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,202 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,203 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,204 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,205 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,206 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,207 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,208 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,209 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,210 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,211 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,212 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,213 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,214 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,215 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,216 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,217 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,218 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,219 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,220 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,221 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,222 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,223 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,224 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,225 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,226 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,227 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,228 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,229 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,230 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,231 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,232 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,233 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,234 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,235 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,241 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,242 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,243 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,244 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,245 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,246 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,247 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,248 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,249 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,250 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,251 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,252 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,253 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,254 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,255 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,256 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,257 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,258 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,259 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,260 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,261 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,262 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,263 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,264 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,265 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,266 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,267 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,268 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,269 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,270 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,271 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,272 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,273 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,274 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,275 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,276 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,277 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,278 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,279 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,280 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,281 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,282 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,283 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,284 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,285 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,286 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,287 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,288 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,289 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,290 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,291 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,292 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,293 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,294 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,295 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,296 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,297 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,298 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,299 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,300 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,301 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,302 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,303 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,304 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,305 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,306 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,307 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,308 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,309 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,310 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,311 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,312 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,313 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,314 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,315 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,316 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,317 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,323 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,324 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,325 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,326 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,327 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,328 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,329 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,330 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,331 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,332 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,333 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,334 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,335 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,336 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,337 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,338 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,339 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,340 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,341 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,342 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,343 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,344 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,345 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,346 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,347 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,348 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,349 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,350 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,351 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,352 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,353 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,354 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,355 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,356 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,357 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,358 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,359 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,360 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,361 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,362 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,363 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,364 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,365 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,366 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,367 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,368 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,369 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,370 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,371 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,372 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,373 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,374 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,375 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,376 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,377 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,378 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,379 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,380 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,381 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,382 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,383 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,384 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,385 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,386 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,387 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,388 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,389 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,390 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,391 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,392 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,393 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,394 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,395 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,396 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,397 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,398 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,399 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,405 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,406 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,407 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,408 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,409 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,410 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,411 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,412 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,413 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,414 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,415 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,416 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,417 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,418 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,419 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,420 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,421 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,422 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,423 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,424 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,425 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,426 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,427 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,428 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,429 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,430 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,431 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,432 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,433 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,434 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,435 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,436 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,437 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,438 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,439 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,440 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,441 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,442 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,443 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,444 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,445 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,446 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,447 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,448 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,449 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,450 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,451 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,452 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,453 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,454 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,455 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,456 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,457 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,458 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,459 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,460 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,461 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,462 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,463 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,464 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,465 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,466 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,467 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,468 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,469 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,470 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,471 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,472 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,473 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,474 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,475 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,476 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,477 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,478 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,479 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,480 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,481 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,487 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,488 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,489 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,490 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,491 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,492 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,493 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,494 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,495 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,496 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,497 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,498 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,499 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,500 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,501 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,502 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,503 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,504 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,505 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,506 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,507 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,508 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,509 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,510 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,511 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,512 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,513 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,514 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,515 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,516 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,517 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,518 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,519 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,520 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,521 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,522 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,523 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,524 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,525 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,526 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,527 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,528 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,529 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,530 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,531 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,532 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,533 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,534 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,535 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,536 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,537 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,538 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,539 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,540 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,541 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,542 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,543 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,544 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,545 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,546 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,547 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,548 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,549 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,550 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,551 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,552 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,553 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,554 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,555 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,556 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,557 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,558 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,559 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,560 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,561 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,562 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,563 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,569 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,570 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,571 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,572 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,573 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,574 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,575 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,576 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,577 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,578 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,579 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,580 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,581 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,582 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,583 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,584 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,585 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,586 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,587 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,588 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,589 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,590 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,591 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,592 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,593 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,594 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,595 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,596 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,597 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,598 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,599 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,600 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,601 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,602 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,603 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,604 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,605 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,606 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,607 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,608 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,609 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,610 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,611 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,612 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,613 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,614 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,615 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,616 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,617 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,618 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,619 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,620 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,621 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,622 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,623 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,624 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,625 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,626 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,627 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,628 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,629 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,630 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,631 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,632 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,633 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,634 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,635 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,636 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,637 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,638 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,639 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,640 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,641 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,642 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,643 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,644 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,645 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,651 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,652 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,653 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,654 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,655 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,656 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,657 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,658 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,659 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,660 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,661 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,662 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,663 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,664 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,665 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,666 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,667 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,668 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,669 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,670 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,671 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,672 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,673 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,674 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,675 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,676 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,677 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,678 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,679 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,680 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,681 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,682 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,683 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,684 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,685 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,686 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,687 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,688 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,689 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,690 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,691 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,692 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,693 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,694 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,695 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,696 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,697 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,698 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,699 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,700 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,701 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,702 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,703 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,704 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,705 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,706 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,707 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,708 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,709 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,710 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,711 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,712 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,713 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,714 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,715 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,716 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,717 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,718 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,719 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,720 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,721 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,722 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,723 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,724 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,725 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,726 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,727 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,733 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,734 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,735 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,736 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,737 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,738 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,739 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,740 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,741 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,742 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,743 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,744 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,745 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,746 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,747 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,748 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,749 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,750 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,751 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,752 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,753 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,754 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,755 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,756 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,757 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,758 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,759 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,760 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,761 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,762 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,763 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,764 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,765 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,766 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,767 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,768 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,769 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,770 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,771 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,772 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,773 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,774 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,775 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,776 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,777 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,778 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,779 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,780 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,781 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,782 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,783 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,784 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,785 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,786 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,787 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,788 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,789 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,790 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,791 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,792 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,793 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,794 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,795 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,796 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,797 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,798 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,799 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,800 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,801 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,802 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,803 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,804 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,805 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,806 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,807 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,808 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,809 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,815 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,816 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,817 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,818 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,819 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,820 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,821 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,822 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,823 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,824 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,825 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,826 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,827 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,828 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,829 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,830 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,831 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,832 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,833 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,834 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,835 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,836 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,837 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,838 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,839 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,840 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,841 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,842 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,843 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,844 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,845 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,846 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,847 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,848 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,849 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,850 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,851 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,852 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,853 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,854 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,855 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,856 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,857 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,858 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,859 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,860 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,861 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,862 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,863 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,864 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,865 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,866 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,867 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,868 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,869 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,870 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,871 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,872 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,873 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,874 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,875 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,876 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,877 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,878 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,879 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,880 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,881 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,882 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,883 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,884 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,885 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,886 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,887 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,888 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,889 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,890 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,891 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,897 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,898 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,899 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,900 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,901 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,902 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,903 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,904 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,905 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,906 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,907 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,908 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,909 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,910 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,911 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,912 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,913 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,914 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,915 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,916 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,917 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,918 +6,99,-0.0059,0.0003,643.08,1592.07,1402.73,21.61,554.1,2388.09,9062.5,47.67,521.78,2388.04,8.4301,393,38.67,23.3724,919 +6,100,0.0032,-0.0002,642.43,1584.57,1403.67,21.61,553.86,2388.04,9059.96,47.53,521.67,2388.13,8.376,392,38.88,23.3342,920 +6,101,0.0035,-0.0001,643.02,1584.25,1409.68,21.61,553.48,2388.08,9052.58,47.32,521.5,2388.06,8.4139,391,39.03,23.3181,921 +6,102,0.003,0.0001,642.39,1588.22,1407.89,21.61,553.79,2388.11,9064.1,47.48,520.9,2388.15,8.4006,394,39.04,23.2928,922 +6,103,-0.0009,-0.0002,642.23,1587.28,1403.56,21.61,553.08,2388.07,9050.84,47.53,521.83,2388.09,8.4197,392,39.09,23.3005,923 +6,104,-0.0027,0.0003,642.47,1592.11,1409.31,21.61,553.75,2388.09,9053.77,47.36,521.7,2388.1,8.4166,392,38.89,23.3102,924 +6,105,-0.0007,0.0005,642.42,1589.81,1404.53,21.61,553.52,2388.13,9052.66,47.31,521.74,2388.11,8.4415,392,38.96,23.3304,925 +6,106,-0.0007,0.0005,642.75,1588.21,1412.25,21.61,553.63,2388.09,9064.34,47.52,521.71,2388.16,8.4075,393,39.01,23.14,926 +6,107,0.001,0.0005,642.57,1589.74,1414.42,21.61,553.64,2388.09,9059.17,47.46,521.33,2388.14,8.4334,392,38.68,23.292,927 +6,108,0.0021,0.0001,642.18,1589.15,1409.79,21.61,553.58,2388.09,9056.41,47.57,521.1,2388.07,8.4276,394,38.84,23.3239,928 +6,109,0.0004,0.0006,642.59,1595.95,1404.41,21.61,552.97,2388.1,9050.36,47.58,521.16,2388.1,8.4642,395,38.94,23.1654,929 +6,110,-0.0023,-0.0002,642.97,1587.76,1403.83,21.61,553.71,2388.1,9049.55,47.51,521.65,2388.1,8.3939,393,38.74,23.2801,930 +6,111,0.0003,-0.0003,642.52,1588.07,1410.33,21.61,553.38,2388.11,9058.17,47.39,521.14,2388.1,8.4117,394,38.97,23.4121,931 +6,112,0.0005,0.0002,643.1,1587.48,1415.42,21.61,553.1,2388.09,9053.42,47.45,521.82,2388.07,8.4217,392,38.87,23.3041,932 +6,113,0.0021,0.0003,642.35,1594.27,1416.27,21.61,553.62,2388.08,9053.4,47.63,521.59,2388.12,8.4451,393,38.8,23.2377,933 +6,114,0.0034,-0.0001,642.59,1590.1,1411.15,21.61,553.58,2388.12,9048.45,47.44,521.35,2388.13,8.452,392,38.86,23.1795,934 +6,115,-0.0046,0.0002,642.62,1593.83,1401.63,21.61,552.91,2388.13,9054.82,47.61,521.46,2388.09,8.4641,394,38.75,23.318,935 +6,116,0.0032,-0.0003,643.09,1591.46,1410.38,21.61,553.7,2388.06,9060.02,47.56,521.21,2388.13,8.4315,393,38.7,23.2439,936 +6,117,0.0028,0.0004,642.39,1594.3,1405.07,21.61,552.44,2388.14,9044.68,47.51,521.06,2388.15,8.4438,393,38.89,23.3876,937 +6,118,-0.0006,0.0001,643.07,1590.65,1409.37,21.61,552.73,2388.13,9049.92,47.56,520.83,2388.13,8.4458,394,38.78,23.3416,938 +6,119,0.0013,0.0001,642.75,1594.59,1406.96,21.61,553.14,2388.14,9063.09,47.55,521.2,2388.11,8.4191,392,38.64,23.3339,939 +6,120,-0.0033,-0.0,643.02,1595.29,1417.4,21.61,553.83,2388.15,9047.21,47.52,521.12,2388.09,8.4594,392,38.81,23.3171,940 +6,121,-0.0008,0.0003,642.69,1592.61,1409.86,21.61,552.6,2388.18,9053.17,47.57,521.21,2388.14,8.4269,395,38.76,23.2646,941 +6,122,-0.0,-0.0004,642.92,1596.23,1408.93,21.61,553.55,2388.16,9047.01,47.53,521.1,2388.14,8.4356,392,38.91,23.1528,942 +6,123,0.0017,0.0002,643.27,1595.7,1413.31,21.61,552.24,2388.11,9051.48,47.67,520.84,2388.15,8.4648,395,38.78,23.3099,943 +6,124,0.0029,-0.0003,642.76,1592.82,1411.06,21.61,552.29,2388.11,9056.07,47.71,521.42,2388.13,8.4741,393,38.7,23.2458,944 +6,125,0.001,0.0002,642.85,1587.6,1408.54,21.61,553.82,2388.13,9059.11,47.64,520.88,2388.15,8.4727,395,38.64,23.2334,945 +6,126,0.0016,0.0001,643.19,1601.28,1411.58,21.61,553.02,2388.03,9051.04,47.74,521.08,2388.14,8.4586,394,38.76,23.2517,946 +6,127,-0.001,-0.0001,643.47,1588.04,1407.78,21.61,552.68,2388.14,9042.65,47.69,521.27,2388.2,8.4859,394,38.5,23.2031,947 +6,128,-0.0021,0.0005,643.0,1587.49,1403.65,21.61,552.56,2388.14,9045.68,47.54,521.42,2388.18,8.4993,394,38.74,23.3589,948 +6,129,0.0018,-0.0003,642.26,1592.53,1411.54,21.61,552.27,2388.14,9051.08,47.63,520.96,2388.12,8.4903,394,38.63,23.3984,949 +6,130,-0.0023,-0.0,643.27,1598.02,1417.3,21.61,552.08,2388.19,9045.25,47.44,520.81,2388.17,8.4477,393,38.6,23.1168,950 +6,131,-0.0015,0.0005,642.79,1605.14,1412.31,21.61,552.5,2388.18,9046.62,47.82,520.63,2388.17,8.4692,393,38.67,23.282,951 +6,132,-0.0037,-0.0002,642.65,1597.44,1411.96,21.61,553.15,2388.15,9047.84,47.86,520.35,2388.17,8.4987,394,38.72,23.1282,952 +6,133,-0.002,0.0002,642.95,1589.36,1416.3,21.61,552.85,2388.18,9051.72,47.68,520.52,2388.13,8.4577,392,38.7,23.1412,953 +6,134,0.0004,-0.0003,643.41,1595.64,1423.85,21.61,552.33,2388.15,9044.4,47.95,520.51,2388.25,8.4809,395,38.69,23.2528,954 +6,135,0.0019,0.0005,643.56,1591.97,1418.04,21.61,551.92,2388.16,9049.49,47.98,520.83,2388.21,8.4868,395,38.6,23.223,955 +6,136,-0.0047,-0.0004,643.47,1591.49,1420.28,21.61,552.61,2388.15,9054.03,47.99,520.59,2388.24,8.4735,394,38.64,23.1708,956 +6,137,0.0002,-0.0001,643.57,1596.03,1410.59,21.61,552.71,2388.19,9045.79,47.93,521.29,2388.24,8.4524,395,38.68,23.1601,957 +6,138,-0.0041,-0.0001,643.68,1591.82,1423.18,21.61,551.72,2388.22,9043.91,47.79,520.76,2388.2,8.4836,394,38.52,23.2241,958 +6,139,0.0,0.0004,643.47,1598.9,1420.03,21.61,551.89,2388.2,9041.51,47.96,520.2,2388.3,8.4889,397,38.8,23.1875,959 +6,140,-0.0034,-0.0,642.99,1596.62,1419.69,21.61,551.43,2388.25,9042.28,47.75,519.67,2388.26,8.4624,393,38.55,23.1125,960 +6,141,0.0032,0.0004,643.02,1593.47,1416.42,21.61,551.51,2388.21,9038.86,47.84,520.68,2388.23,8.4731,397,38.52,23.1204,961 +6,142,0.0036,-0.0,643.29,1601.39,1422.05,21.61,552.18,2388.2,9039.02,48.1,520.19,2388.22,8.4803,396,38.53,23.1883,962 +6,143,-0.0014,0.0002,643.42,1597.1,1409.22,21.61,551.47,2388.28,9036.02,47.99,520.61,2388.35,8.5015,395,38.52,23.1346,963 +6,144,-0.0024,0.0002,643.22,1603.33,1424.77,21.61,551.81,2388.26,9032.77,47.87,520.68,2388.27,8.4888,397,38.53,23.255,964 +6,145,-0.0014,-0.0003,643.01,1602.95,1432.39,21.61,551.84,2388.29,9044.65,48.04,520.18,2388.26,8.51,394,38.5,23.2066,965 +6,146,-0.0016,0.0002,643.01,1588.85,1425.83,21.61,550.83,2388.23,9042.78,47.96,519.86,2388.26,8.4933,395,38.53,23.1039,966 +6,147,-0.0004,0.0002,643.63,1598.37,1423.98,21.61,551.99,2388.27,9044.51,48.04,519.61,2388.28,8.5084,397,38.51,23.1239,967 +6,148,0.0054,0.0005,643.2,1596.3,1430.73,21.61,551.63,2388.31,9043.36,48.12,519.67,2388.24,8.4933,395,38.51,23.1135,968 +6,149,-0.0002,0.0,643.33,1605.33,1428.48,21.61,550.57,2388.27,9037.18,48.21,520.37,2388.33,8.5306,396,38.48,23.1331,969 +6,150,0.0017,0.0004,643.59,1593.13,1428.51,21.61,550.94,2388.27,9045.59,47.99,520.07,2388.32,8.5321,395,38.47,23.1119,970 +6,151,-0.0016,-0.0004,643.01,1602.05,1427.38,21.61,551.12,2388.32,9042.14,48.25,519.67,2388.28,8.5206,396,38.39,23.0744,971 +6,152,-0.0014,0.0003,643.95,1602.77,1426.13,21.61,551.38,2388.29,9040.12,48.2,519.53,2388.3,8.5036,395,38.61,23.1309,972 +6,153,0.0021,-0.0001,643.95,1592.45,1432.83,21.61,551.19,2388.28,9030.23,48.08,519.73,2388.34,8.5197,396,38.37,23.1362,973 +6,77,-0.0003,0.0002,642.39,1579.94,1407.18,21.61,553.65,2388.03,9065.52,47.23,521.58,2387.99,8.3834,393,38.91,23.3381,979 +6,78,0.0025,-0.0003,641.92,1588.11,1396.01,21.61,553.94,2388.06,9054.36,47.33,522.19,2388.04,8.4142,394,38.94,23.3567,980 +6,79,0.0017,0.0003,642.59,1588.06,1403.75,21.61,553.92,2388.06,9056.61,47.48,522.01,2388.04,8.4301,391,38.93,23.3814,981 +6,80,0.0012,-0.0003,642.05,1587.84,1399.65,21.61,554.89,2388.05,9057.06,47.33,521.57,2388.05,8.3794,393,38.84,23.4207,982 +6,81,0.0032,-0.0001,642.08,1587.5,1399.14,21.61,553.83,2388.05,9060.84,47.35,522.14,2388.05,8.4255,392,38.85,23.4022,983 +6,82,-0.0006,-0.0003,642.89,1588.96,1398.37,21.61,553.44,2388.06,9061.03,47.33,521.5,2388.07,8.4102,393,38.78,23.4228,984 +6,83,-0.001,0.0004,642.4,1584.42,1397.12,21.61,553.73,2388.09,9054.8,47.31,522.27,2388.01,8.4392,393,38.82,23.4182,985 +6,84,-0.001,-0.0002,642.3,1587.75,1401.31,21.61,553.76,2388.08,9057.0,47.42,521.99,2387.94,8.3855,392,38.97,23.3997,986 +6,85,0.0003,0.0003,642.62,1581.87,1403.94,21.61,553.91,2388.06,9054.86,47.16,521.67,2388.04,8.4167,391,38.86,23.3541,987 +6,86,-0.0005,0.0002,642.31,1589.65,1406.73,21.61,554.03,2388.02,9060.55,47.34,521.78,2388.01,8.3722,392,38.9,23.2648,988 +6,87,0.0004,0.0002,642.23,1588.44,1400.32,21.61,553.98,2388.13,9065.89,47.36,521.77,2388.03,8.4347,392,38.96,23.305,989 +6,88,0.0027,0.0002,642.2,1578.93,1400.61,21.61,553.87,2388.04,9062.82,47.36,522.32,2388.05,8.4206,394,38.89,23.2645,990 +6,89,0.0018,-0.0,642.6,1588.79,1406.36,21.61,554.51,2388.06,9059.06,47.26,521.59,2388.0,8.4282,391,38.92,23.347,991 +6,90,0.0034,-0.0001,642.22,1582.44,1397.63,21.61,554.05,2388.11,9060.22,47.4,522.21,2388.03,8.4036,393,39.07,23.3452,992 +6,91,0.0011,0.0003,642.35,1584.44,1399.87,21.61,553.74,2388.05,9058.99,47.5,522.59,2388.0,8.432,392,38.97,23.3659,993 +6,92,0.0026,-0.0003,642.53,1589.17,1406.01,21.61,554.36,2388.07,9061.24,47.39,522.1,2388.09,8.4308,393,38.67,23.3362,994 +6,93,0.0012,-0.0004,642.35,1597.77,1401.09,21.61,554.04,2388.04,9055.37,47.26,522.29,2388.05,8.4119,393,38.82,23.392,995 +6,94,0.0035,-0.0004,642.5,1586.1,1402.16,21.61,554.17,2388.09,9061.99,47.44,521.67,2388.04,8.4207,392,38.94,23.3952,996 +6,95,-0.0027,-0.0001,642.69,1585.56,1403.38,21.61,554.2,2388.08,9055.87,47.18,521.83,2388.1,8.4371,394,38.89,23.3558,997 +6,96,0.0011,0.0002,642.5,1588.29,1392.8,21.61,554.1,2388.07,9055.52,47.44,522.19,2388.04,8.4396,393,39.07,23.3494,998 +6,97,-0.0028,0.0001,642.24,1590.06,1406.45,21.61,553.88,2388.13,9054.91,47.33,522.13,2388.14,8.425,393,38.97,23.3445,999 +6,98,-0.0006,-0.0003,642.5,1582.24,1412.46,21.61,553.12,2388.02,9050.9,47.34,521.67,2388.07,8.436,391,38.97,23.3322,1000 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,129 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,130 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,131 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,132 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,133 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,134 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,135 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,136 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,137 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,143 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,144 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,145 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,146 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,147 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,148 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,149 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,150 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,151 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,152 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,153 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,154 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,155 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,156 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,157 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,158 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,159 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,160 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,161 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,162 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,163 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,164 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,165 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,166 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,167 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,168 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,169 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,170 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,176 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,177 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,178 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,179 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,180 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,181 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,182 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,183 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,184 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,185 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,186 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,187 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,188 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,189 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,190 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,191 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,192 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,193 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,194 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,195 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,196 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,197 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,198 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,199 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,200 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,201 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,202 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,203 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,209 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,210 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,211 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,212 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,213 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,214 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,215 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,216 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,217 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,218 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,219 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,220 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,221 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,222 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,223 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,224 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,225 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,226 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,227 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,228 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,229 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,230 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,231 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,232 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,233 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,234 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,235 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,236 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,242 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,243 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,244 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,245 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,246 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,247 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,248 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,249 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,250 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,251 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,252 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,253 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,254 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,255 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,256 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,257 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,258 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,259 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,260 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,261 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,262 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,263 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,264 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,265 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,266 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,267 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,268 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,269 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,275 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,276 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,277 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,278 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,279 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,280 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,281 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,282 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,283 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,284 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,285 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,286 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,287 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,288 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,289 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,290 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,291 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,292 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,293 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,294 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,295 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,296 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,297 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,298 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,299 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,300 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,301 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,302 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,308 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,309 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,310 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,311 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,312 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,313 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,314 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,315 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,316 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,317 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,318 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,319 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,320 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,321 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,322 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,323 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,324 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,325 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,326 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,327 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,328 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,329 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,330 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,331 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,332 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,333 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,334 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,335 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,341 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,342 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,343 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,344 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,345 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,346 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,347 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,348 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,349 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,350 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,351 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,352 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,353 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,354 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,355 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,356 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,357 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,358 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,359 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,360 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,361 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,362 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,363 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,364 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,365 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,366 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,367 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,368 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,374 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,375 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,376 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,377 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,378 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,379 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,380 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,381 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,382 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,383 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,384 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,385 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,386 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,387 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,388 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,389 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,390 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,391 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,392 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,393 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,394 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,395 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,396 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,397 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,398 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,399 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,400 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,401 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,407 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,408 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,409 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,410 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,411 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,412 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,413 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,414 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,415 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,416 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,417 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,418 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,419 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,420 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,421 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,422 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,423 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,424 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,425 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,426 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,427 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,428 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,429 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,430 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,431 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,432 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,433 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,434 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,440 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,441 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,442 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,443 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,444 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,445 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,446 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,447 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,448 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,449 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,450 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,451 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,452 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,453 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,454 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,455 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,456 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,457 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,458 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,459 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,460 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,461 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,462 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,463 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,464 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,465 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,466 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,467 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,473 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,474 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,475 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,476 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,477 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,478 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,479 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,480 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,481 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,482 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,483 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,484 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,485 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,486 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,487 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,488 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,489 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,490 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,491 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,492 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,493 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,494 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,495 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,496 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,497 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,498 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,499 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,500 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,506 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,507 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,508 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,509 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,510 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,511 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,512 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,513 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,514 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,515 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,516 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,517 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,518 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,519 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,520 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,521 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,522 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,523 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,524 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,525 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,526 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,527 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,528 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,529 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,530 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,531 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,532 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,533 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,539 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,540 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,541 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,542 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,543 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,544 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,545 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,546 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,547 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,548 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,549 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,550 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,551 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,552 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,553 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,554 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,555 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,556 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,557 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,558 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,559 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,560 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,561 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,562 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,563 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,564 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,565 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,566 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,572 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,573 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,574 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,575 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,576 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,577 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,578 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,579 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,580 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,581 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,582 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,583 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,584 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,585 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,586 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,587 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,588 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,589 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,590 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,591 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,592 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,593 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,594 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,595 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,596 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,597 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,598 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,599 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,605 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,606 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,607 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,608 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,609 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,610 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,611 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,612 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,613 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,614 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,615 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,616 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,617 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,618 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,619 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,620 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,621 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,622 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,623 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,624 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,625 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,626 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,627 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,628 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,629 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,630 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,631 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,632 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,638 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,639 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,640 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,641 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,642 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,643 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,644 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,645 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,646 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,647 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,648 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,649 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,650 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,651 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,652 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,653 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,654 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,655 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,656 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,657 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,658 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,659 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,660 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,661 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,662 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,663 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,664 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,665 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,671 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,672 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,673 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,674 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,675 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,676 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,677 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,678 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,679 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,680 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,681 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,682 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,683 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,684 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,685 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,686 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,687 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,688 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,689 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,690 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,691 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,692 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,693 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,694 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,695 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,696 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,697 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,698 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,704 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,705 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,706 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,707 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,708 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,709 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,710 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,711 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,712 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,713 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,714 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,715 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,716 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,717 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,718 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,719 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,720 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,721 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,722 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,723 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,724 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,725 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,726 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,727 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,728 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,729 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,730 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,731 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,737 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,738 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,739 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,740 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,741 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,742 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,743 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,744 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,745 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,746 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,747 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,748 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,749 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,750 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,751 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,752 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,753 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,754 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,755 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,756 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,757 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,758 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,759 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,760 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,761 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,762 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,763 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,764 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,770 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,771 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,772 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,773 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,774 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,775 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,776 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,777 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,778 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,779 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,780 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,781 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,782 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,783 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,784 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,785 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,786 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,787 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,788 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,789 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,790 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,791 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,792 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,793 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,794 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,795 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,796 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,797 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,803 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,804 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,805 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,806 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,807 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,808 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,809 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,810 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,811 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,812 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,813 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,814 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,815 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,816 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,817 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,818 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,819 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,820 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,821 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,822 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,823 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,824 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,825 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,826 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,827 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,828 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,829 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,830 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,836 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,837 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,838 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,839 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,840 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,841 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,842 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,843 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,844 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,845 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,846 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,847 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,848 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,849 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,850 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,851 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,852 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,853 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,854 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,855 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,856 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,857 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,858 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,859 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,860 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,861 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,862 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,863 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,869 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,870 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,871 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,872 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,873 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,874 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,875 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,876 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,877 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,878 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,879 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,880 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,881 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,882 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,883 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,884 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,885 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,886 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,887 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,888 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,889 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,890 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,891 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,892 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,893 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,894 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,895 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,896 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,902 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,903 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,904 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,905 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,906 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,907 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,908 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,909 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,910 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,911 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,912 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,913 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,914 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,915 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,916 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,917 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,918 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,919 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,920 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,921 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,922 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,923 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,924 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,925 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,926 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,927 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,928 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,929 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,935 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,936 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,937 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,938 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,939 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,940 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,941 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,942 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,943 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,944 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,945 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,946 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,947 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,948 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,949 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,950 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,951 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,952 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,953 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,954 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,955 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,956 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,957 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,958 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,959 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,960 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,961 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,962 +7,110,0.0027,0.0003,643.17,1592.01,1414.75,21.61,553.3,2388.15,9077.44,47.88,520.7,2388.19,8.4846,395,38.79,23.0781,968 +7,111,0.0013,-0.0002,642.91,1591.59,1416.65,21.61,552.76,2388.12,9074.59,47.67,520.86,2388.16,8.4647,395,38.83,23.2232,969 +7,112,-0.0002,-0.0003,643.15,1594.73,1417.91,21.61,552.08,2388.17,9079.39,47.89,520.57,2388.18,8.4486,394,38.68,23.1815,970 +7,113,-0.0043,0.0004,643.04,1600.74,1415.53,21.61,551.97,2388.17,9078.31,47.74,520.89,2388.18,8.5051,396,38.64,23.2676,971 +7,114,0.0001,0.0003,643.37,1594.45,1414.01,21.61,552.39,2388.12,9079.89,47.99,520.87,2388.15,8.48,395,38.61,23.2074,972 +7,115,-0.0023,0.0003,643.37,1595.82,1420.94,21.61,552.27,2388.18,9085.54,47.78,520.24,2388.2,8.4449,396,38.73,23.2096,973 +7,116,0.003,-0.0,643.31,1592.34,1424.37,21.61,552.41,2388.11,9085.15,47.69,520.89,2388.17,8.4997,395,38.74,23.2842,974 +7,117,-0.0018,0.0004,643.5,1599.52,1420.24,21.61,552.31,2388.22,9086.28,47.88,521.33,2388.15,8.4837,394,38.74,23.0986,975 +7,118,0.0043,0.0004,642.95,1594.4,1422.24,21.61,553.02,2388.18,9081.09,47.73,520.26,2388.16,8.4741,393,38.65,23.2814,976 +7,119,-0.0048,-0.0005,643.23,1604.24,1421.08,21.61,552.68,2388.17,9075.29,47.86,521.1,2388.19,8.4988,395,38.62,23.2337,977 +7,120,-0.0009,-0.0002,643.44,1599.91,1424.43,21.61,552.47,2388.13,9088.72,47.95,520.89,2388.14,8.5184,395,38.69,23.1808,978 +7,121,0.0004,0.0004,643.45,1594.56,1424.79,21.61,552.13,2388.19,9085.49,47.79,520.23,2388.17,8.5111,396,38.56,23.0963,979 +7,122,-0.0003,0.0001,642.9,1599.54,1424.63,21.61,552.43,2388.16,9083.26,47.87,520.3,2388.17,8.5111,394,38.66,23.1136,980 +7,123,0.0062,0.0002,643.34,1600.71,1415.52,21.61,552.41,2388.14,9083.9,47.99,520.79,2388.2,8.5128,394,38.55,23.0728,981 +7,124,0.0012,-0.0,643.63,1597.48,1424.03,21.61,552.17,2388.2,9088.37,48.09,520.43,2388.23,8.4987,395,38.61,23.1115,982 +7,125,-0.0001,-0.0,643.51,1597.66,1426.85,21.61,552.05,2388.15,9079.61,48.02,520.18,2388.12,8.5542,395,38.56,23.1302,983 +7,126,0.0049,0.0001,643.23,1595.68,1422.67,21.61,551.92,2388.19,9093.06,47.96,520.24,2388.19,8.5038,394,38.68,23.1466,984 +7,127,0.003,0.0002,643.42,1596.61,1424.21,21.61,551.51,2388.15,9092.39,47.99,519.82,2388.12,8.5076,394,38.55,23.1544,985 +7,128,-0.001,0.0001,643.76,1593.47,1425.2,21.61,552.06,2388.19,9096.48,47.92,520.49,2388.18,8.4707,395,38.22,23.137,986 +7,129,-0.0031,-0.0005,643.73,1594.39,1421.83,21.61,551.88,2388.17,9093.69,48.12,520.18,2388.2,8.4908,396,38.57,23.0219,987 +7,130,-0.002,0.0003,643.98,1599.26,1421.86,21.61,551.98,2388.22,9092.65,48.03,519.84,2388.23,8.4962,397,38.5,23.028,988 +7,131,-0.0031,0.0003,643.29,1599.67,1424.65,21.61,552.02,2388.19,9105.43,48.06,520.81,2388.16,8.504,397,38.45,23.0682,989 +7,132,0.0002,-0.0003,643.86,1597.87,1423.33,21.61,551.63,2388.21,9092.79,48.11,519.5,2388.16,8.5224,396,38.45,23.0418,990 +7,133,-0.0015,-0.0001,644.1,1601.31,1430.27,21.61,551.49,2388.22,9095.9,47.99,519.83,2388.23,8.4984,396,38.41,23.1364,991 +7,134,-0.0012,-0.0004,644.09,1605.88,1430.21,21.61,551.7,2388.18,9101.06,48.07,519.38,2388.18,8.5328,397,38.28,23.0637,992 +7,135,0.0004,0.0003,643.55,1596.63,1426.86,21.61,551.5,2388.18,9096.97,48.09,519.38,2388.2,8.5118,396,38.48,23.0993,993 +7,136,-0.0044,0.0,643.79,1601.3,1427.36,21.61,551.32,2388.22,9100.74,48.21,519.77,2388.25,8.5529,398,38.24,23.0289,994 +7,137,0.0014,-0.0,643.39,1602.76,1434.81,21.61,551.64,2388.17,9106.12,48.16,519.6,2388.25,8.5312,396,38.49,23.1398,995 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,129 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,130 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,131 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,132 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,133 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,134 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,135 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,136 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,137 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,138 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,139 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,140 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,141 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,142 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,143 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,144 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,145 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,146 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,147 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,148 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,149 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,150 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,151 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,152 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,153 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,154 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,160 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,161 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,162 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,163 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,164 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,165 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,166 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,167 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,168 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,169 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,170 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,171 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,172 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,173 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,174 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,175 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,176 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,177 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,178 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,179 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,180 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,181 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,182 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,183 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,184 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,185 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,191 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,192 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,193 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,194 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,195 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,196 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,197 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,198 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,199 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,200 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,201 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,202 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,203 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,204 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,205 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,206 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,207 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,208 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,209 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,210 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,211 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,212 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,213 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,214 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,215 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,216 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,222 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,223 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,224 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,225 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,226 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,227 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,228 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,229 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,230 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,231 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,232 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,233 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,234 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,235 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,236 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,237 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,238 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,239 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,240 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,241 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,242 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,243 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,244 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,245 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,246 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,247 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,253 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,254 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,255 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,256 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,257 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,258 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,259 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,260 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,261 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,262 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,263 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,264 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,265 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,266 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,267 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,268 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,269 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,270 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,271 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,272 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,273 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,274 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,275 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,276 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,277 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,278 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,284 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,285 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,286 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,287 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,288 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,289 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,290 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,291 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,292 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,293 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,294 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,295 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,296 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,297 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,298 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,299 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,300 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,301 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,302 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,303 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,304 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,305 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,306 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,307 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,308 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,309 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,315 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,316 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,317 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,318 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,319 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,320 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,321 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,322 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,323 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,324 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,325 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,326 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,327 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,328 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,329 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,330 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,331 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,332 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,333 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,334 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,335 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,336 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,337 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,338 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,339 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,340 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,346 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,347 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,348 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,349 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,350 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,351 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,352 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,353 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,354 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,355 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,356 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,357 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,358 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,359 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,360 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,361 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,362 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,363 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,364 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,365 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,366 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,367 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,368 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,369 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,370 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,371 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,377 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,378 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,379 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,380 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,381 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,382 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,383 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,384 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,385 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,386 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,387 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,388 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,389 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,390 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,391 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,392 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,393 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,394 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,395 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,396 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,397 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,398 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,399 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,400 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,401 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,402 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,408 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,409 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,410 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,411 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,412 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,413 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,414 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,415 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,416 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,417 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,418 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,419 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,420 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,421 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,422 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,423 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,424 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,425 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,426 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,427 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,428 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,429 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,430 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,431 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,432 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,433 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,439 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,440 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,441 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,442 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,443 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,444 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,445 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,446 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,447 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,448 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,449 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,450 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,451 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,452 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,453 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,454 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,455 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,456 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,457 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,458 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,459 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,460 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,461 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,462 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,463 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,464 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,470 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,471 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,472 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,473 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,474 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,475 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,476 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,477 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,478 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,479 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,480 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,481 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,482 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,483 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,484 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,485 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,486 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,487 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,488 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,489 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,490 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,491 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,492 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,493 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,494 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,495 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,501 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,502 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,503 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,504 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,505 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,506 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,507 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,508 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,509 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,510 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,511 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,512 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,513 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,514 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,515 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,516 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,517 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,518 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,519 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,520 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,521 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,522 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,523 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,524 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,525 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,526 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,532 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,533 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,534 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,535 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,536 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,537 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,538 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,539 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,540 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,541 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,542 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,543 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,544 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,545 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,546 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,547 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,548 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,549 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,550 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,551 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,552 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,553 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,554 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,555 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,556 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,557 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,563 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,564 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,565 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,566 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,567 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,568 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,569 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,570 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,571 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,572 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,573 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,574 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,575 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,576 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,577 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,578 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,579 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,580 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,581 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,582 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,583 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,584 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,585 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,586 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,587 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,588 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,594 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,595 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,596 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,597 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,598 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,599 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,600 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,601 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,602 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,603 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,604 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,605 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,606 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,607 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,608 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,609 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,610 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,611 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,612 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,613 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,614 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,615 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,616 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,617 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,618 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,619 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,625 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,626 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,627 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,628 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,629 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,630 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,631 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,632 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,633 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,634 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,635 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,636 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,637 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,638 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,639 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,640 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,641 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,642 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,643 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,644 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,645 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,646 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,647 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,648 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,649 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,650 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,656 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,657 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,658 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,659 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,660 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,661 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,662 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,663 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,664 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,665 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,666 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,667 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,668 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,669 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,670 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,671 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,672 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,673 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,674 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,675 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,676 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,677 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,678 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,679 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,680 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,681 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,687 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,688 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,689 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,690 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,691 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,692 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,693 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,694 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,695 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,696 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,697 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,698 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,699 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,700 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,701 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,702 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,703 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,704 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,705 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,706 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,707 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,708 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,709 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,710 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,711 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,712 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,718 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,719 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,720 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,721 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,722 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,723 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,724 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,725 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,726 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,727 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,728 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,729 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,730 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,731 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,732 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,733 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,734 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,735 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,736 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,737 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,738 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,739 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,740 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,741 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,742 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,743 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,749 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,750 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,751 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,752 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,753 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,754 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,755 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,756 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,757 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,758 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,759 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,760 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,761 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,762 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,763 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,764 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,765 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,766 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,767 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,768 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,769 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,770 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,771 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,772 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,773 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,774 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,780 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,781 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,782 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,783 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,784 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,785 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,786 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,787 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,788 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,789 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,790 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,791 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,792 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,793 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,794 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,795 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,796 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,797 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,798 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,799 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,800 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,801 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,802 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,803 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,804 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,805 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,811 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,812 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,813 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,814 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,815 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,816 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,817 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,818 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,819 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,820 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,821 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,822 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,823 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,824 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,825 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,826 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,827 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,828 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,829 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,830 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,831 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,832 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,833 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,834 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,835 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,836 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,842 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,843 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,844 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,845 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,846 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,847 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,848 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,849 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,850 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,851 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,852 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,853 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,854 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,855 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,856 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,857 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,858 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,859 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,860 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,861 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,862 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,863 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,864 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,865 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,866 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,867 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,873 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,874 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,875 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,876 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,877 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,878 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,879 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,880 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,881 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,882 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,883 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,884 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,885 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,886 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,887 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,888 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,889 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,890 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,891 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,892 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,893 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,894 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,895 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,896 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,897 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,898 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,904 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,905 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,906 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,907 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,908 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,909 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,910 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,911 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,912 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,913 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,914 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,915 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,916 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,917 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,918 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,919 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,920 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,921 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,922 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,923 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,924 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,925 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,926 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,927 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,928 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,929 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,935 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,936 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,937 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,938 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,939 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,940 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,941 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,942 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,943 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,944 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,945 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,946 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,947 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,948 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,949 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,950 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,951 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,952 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,953 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,954 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,955 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,956 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,957 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,958 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,959 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,960 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,966 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,967 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,968 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,969 +8,133,0.0032,-0.0005,643.06,1590.19,1418.03,21.61,551.9,2388.17,9062.99,47.65,520.73,2388.14,8.5025,396,38.42,23.147,970 +8,134,0.0006,0.0002,643.66,1595.34,1417.9,21.61,552.93,2388.19,9067.22,47.92,520.61,2388.14,8.4781,394,38.77,23.1558,971 +8,135,0.0007,0.0004,643.37,1592.53,1419.16,21.61,552.18,2388.18,9055.96,47.93,520.48,2388.21,8.5044,396,38.64,23.1469,972 +8,136,-0.0018,0.0002,643.98,1591.07,1409.57,21.61,552.29,2388.21,9064.23,48.0,520.1,2388.23,8.4964,396,38.7,23.1985,973 +8,137,-0.005,-0.0004,642.93,1606.2,1417.29,21.61,551.79,2388.21,9061.16,47.97,520.51,2388.24,8.4975,395,38.56,23.1274,974 +8,138,0.0025,0.0004,643.14,1608.28,1419.0,21.61,552.45,2388.17,9071.95,47.83,520.49,2388.2,8.5129,396,38.52,23.1556,975 +8,139,-0.0047,-0.0005,643.41,1601.91,1419.03,21.61,551.99,2388.21,9065.21,47.95,520.67,2388.19,8.4958,394,38.5,23.0929,976 +8,140,0.0024,-0.0002,643.24,1596.97,1423.24,21.61,551.9,2388.22,9074.99,47.97,520.29,2388.18,8.5246,395,38.54,23.0823,977 +8,141,0.0007,-0.0004,643.09,1602.25,1416.6,21.61,551.73,2388.21,9062.39,47.86,520.26,2388.17,8.4908,396,38.66,23.0397,978 +8,142,0.0013,0.0001,643.02,1593.8,1426.77,21.61,551.85,2388.22,9074.13,47.91,520.27,2388.21,8.4793,395,38.64,23.1973,979 +8,143,0.0017,0.0,643.27,1606.55,1421.85,21.61,552.02,2388.21,9064.42,47.91,520.08,2388.21,8.4697,394,38.61,23.099,980 +8,144,-0.0018,0.0002,643.87,1599.52,1423.96,21.61,551.49,2388.23,9071.32,47.97,519.93,2388.26,8.465,396,38.71,23.0314,981 +8,145,-0.0035,-0.0002,643.03,1599.24,1426.0,21.61,551.31,2388.22,9070.29,48.07,520.21,2388.25,8.5291,395,38.66,23.0945,982 +8,146,0.0002,0.0004,643.12,1606.96,1423.84,21.61,552.0,2388.2,9067.18,48.02,519.85,2388.23,8.5117,396,38.5,23.1474,983 +8,147,0.0018,0.0004,642.92,1598.62,1419.2,21.61,551.88,2388.19,9072.67,48.17,519.76,2388.11,8.527,396,38.41,23.1524,984 +8,148,-0.0002,-0.0003,643.52,1590.78,1426.85,21.61,552.29,2388.14,9074.69,48.1,519.73,2388.24,8.5134,395,38.4,23.0164,985 +8,149,-0.0025,0.0004,643.52,1602.14,1428.06,21.61,551.19,2388.21,9074.56,48.03,519.29,2388.2,8.5141,396,38.26,22.9364,986 +8,150,0.001,-0.0002,643.87,1599.88,1430.02,21.61,551.01,2388.24,9078.59,48.29,519.64,2388.25,8.5131,397,38.45,23.0717,987 +8,151,-0.0003,-0.0005,643.35,1603.88,1425.5,21.61,552.22,2388.24,9072.62,48.12,520.54,2388.28,8.517,395,38.44,23.0762,988 +8,152,-0.0002,0.0003,643.79,1606.27,1427.02,21.61,552.07,2388.21,9073.81,48.14,519.71,2388.27,8.5169,395,38.64,23.107,989 +8,153,-0.0012,0.0002,643.81,1607.37,1426.15,21.61,550.82,2388.3,9080.28,48.26,519.19,2388.2,8.53,395,38.46,23.1067,990 +8,154,0.0009,-0.0004,643.49,1601.95,1423.58,21.61,551.86,2388.27,9074.92,48.08,519.38,2388.24,8.5105,399,38.29,23.0154,991 +8,129,-0.0021,0.0001,643.55,1590.15,1417.15,21.61,552.49,2388.16,9063.9,47.87,520.03,2388.16,8.5181,396,38.85,23.1989,997 +8,130,-0.0023,0.0001,643.02,1595.82,1422.54,21.61,552.46,2388.18,9068.36,47.84,520.43,2388.13,8.4626,396,38.83,23.1767,998 +8,131,-0.0,0.0001,643.06,1596.61,1412.71,21.61,552.04,2388.16,9061.24,47.86,520.99,2388.2,8.4882,395,38.74,23.3388,999 +8,132,0.0012,-0.0004,643.38,1602.24,1420.27,21.61,552.66,2388.19,9062.0,48.0,520.19,2388.22,8.487,395,38.52,23.1739,1000 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,129 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,130 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,131 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,132 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,133 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,134 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,135 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,136 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,137 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,138 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,139 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,140 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,141 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,142 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,143 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,144 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,145 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,146 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,147 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,148 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,149 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,150 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,151 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,152 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,153 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,154 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,155 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,161 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,162 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,163 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,164 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,165 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,166 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,167 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,168 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,169 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,170 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,171 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,172 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,173 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,174 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,175 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,176 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,177 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,178 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,179 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,180 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,181 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,182 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,183 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,184 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,185 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,186 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,187 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,193 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,194 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,195 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,196 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,197 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,198 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,199 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,200 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,201 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,202 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,203 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,204 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,205 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,206 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,207 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,208 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,209 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,210 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,211 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,212 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,213 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,214 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,215 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,216 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,217 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,218 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,219 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,225 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,226 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,227 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,228 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,229 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,230 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,231 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,232 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,233 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,234 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,235 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,236 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,237 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,238 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,239 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,240 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,241 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,242 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,243 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,244 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,245 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,246 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,247 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,248 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,249 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,250 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,251 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,257 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,258 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,259 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,260 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,261 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,262 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,263 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,264 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,265 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,266 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,267 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,268 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,269 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,270 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,271 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,272 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,273 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,274 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,275 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,276 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,277 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,278 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,279 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,280 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,281 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,282 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,283 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,289 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,290 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,291 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,292 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,293 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,294 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,295 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,296 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,297 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,298 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,299 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,300 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,301 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,302 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,303 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,304 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,305 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,306 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,307 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,308 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,309 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,310 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,311 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,312 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,313 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,314 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,315 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,321 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,322 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,323 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,324 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,325 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,326 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,327 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,328 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,329 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,330 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,331 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,332 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,333 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,334 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,335 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,336 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,337 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,338 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,339 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,340 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,341 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,342 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,343 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,344 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,345 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,346 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,347 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,353 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,354 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,355 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,356 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,357 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,358 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,359 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,360 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,361 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,362 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,363 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,364 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,365 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,366 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,367 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,368 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,369 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,370 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,371 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,372 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,373 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,374 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,375 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,376 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,377 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,378 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,379 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,385 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,386 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,387 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,388 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,389 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,390 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,391 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,392 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,393 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,394 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,395 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,396 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,397 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,398 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,399 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,400 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,401 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,402 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,403 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,404 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,405 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,406 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,407 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,408 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,409 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,410 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,411 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,417 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,418 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,419 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,420 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,421 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,422 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,423 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,424 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,425 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,426 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,427 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,428 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,429 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,430 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,431 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,432 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,433 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,434 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,435 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,436 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,437 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,438 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,439 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,440 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,441 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,442 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,443 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,449 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,450 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,451 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,452 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,453 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,454 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,455 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,456 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,457 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,458 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,459 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,460 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,461 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,462 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,463 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,464 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,465 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,466 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,467 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,468 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,469 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,470 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,471 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,472 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,473 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,474 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,475 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,481 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,482 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,483 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,484 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,485 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,486 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,487 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,488 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,489 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,490 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,491 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,492 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,493 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,494 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,495 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,496 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,497 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,498 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,499 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,500 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,501 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,502 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,503 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,504 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,505 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,506 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,507 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,513 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,514 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,515 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,516 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,517 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,518 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,519 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,520 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,521 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,522 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,523 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,524 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,525 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,526 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,527 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,528 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,529 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,530 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,531 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,532 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,533 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,534 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,535 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,536 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,537 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,538 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,539 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,545 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,546 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,547 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,548 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,549 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,550 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,551 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,552 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,553 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,554 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,555 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,556 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,557 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,558 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,559 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,560 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,561 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,562 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,563 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,564 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,565 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,566 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,567 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,568 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,569 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,570 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,571 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,577 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,578 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,579 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,580 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,581 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,582 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,583 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,584 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,585 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,586 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,587 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,588 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,589 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,590 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,591 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,592 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,593 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,594 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,595 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,596 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,597 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,598 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,599 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,600 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,601 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,602 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,603 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,609 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,610 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,611 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,612 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,613 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,614 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,615 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,616 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,617 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,618 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,619 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,620 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,621 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,622 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,623 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,624 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,625 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,626 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,627 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,628 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,629 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,630 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,631 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,632 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,633 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,634 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,635 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,641 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,642 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,643 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,644 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,645 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,646 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,647 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,648 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,649 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,650 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,651 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,652 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,653 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,654 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,655 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,656 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,657 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,658 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,659 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,660 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,661 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,662 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,663 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,664 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,665 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,666 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,667 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,673 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,674 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,675 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,676 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,677 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,678 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,679 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,680 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,681 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,682 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,683 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,684 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,685 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,686 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,687 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,688 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,689 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,690 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,691 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,692 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,693 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,694 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,695 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,696 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,697 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,698 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,699 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,705 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,706 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,707 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,708 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,709 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,710 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,711 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,712 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,713 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,714 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,715 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,716 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,717 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,718 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,719 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,720 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,721 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,722 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,723 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,724 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,725 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,726 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,727 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,728 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,729 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,730 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,731 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,737 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,738 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,739 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,740 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,741 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,742 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,743 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,744 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,745 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,746 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,747 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,748 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,749 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,750 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,751 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,752 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,753 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,754 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,755 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,756 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,757 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,758 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,759 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,760 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,761 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,762 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,763 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,769 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,770 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,771 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,772 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,773 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,774 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,775 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,776 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,777 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,778 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,779 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,780 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,781 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,782 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,783 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,784 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,785 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,786 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,787 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,788 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,789 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,790 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,791 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,792 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,793 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,794 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,795 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,801 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,802 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,803 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,804 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,805 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,806 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,807 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,808 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,809 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,810 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,811 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,812 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,813 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,814 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,815 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,816 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,817 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,818 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,819 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,820 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,821 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,822 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,823 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,824 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,825 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,826 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,827 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,833 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,834 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,835 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,836 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,837 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,838 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,839 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,840 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,841 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,842 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,843 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,844 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,845 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,846 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,847 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,848 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,849 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,850 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,851 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,852 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,853 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,854 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,855 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,856 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,857 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,858 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,859 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,865 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,866 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,867 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,868 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,869 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,870 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,871 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,872 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,873 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,874 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,875 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,876 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,877 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,878 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,879 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,880 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,881 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,882 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,883 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,884 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,885 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,886 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,887 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,888 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,889 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,890 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,891 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,897 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,898 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,899 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,900 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,901 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,902 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,903 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,904 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,905 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,906 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,907 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,908 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,909 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,910 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,911 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,912 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,913 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,914 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,915 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,916 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,917 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,918 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,919 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,920 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,921 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,922 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,923 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,929 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,930 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,931 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,932 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,933 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,934 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,935 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,936 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,937 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,938 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,939 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,940 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,941 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,942 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,943 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,944 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,945 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,946 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,947 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,948 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,949 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,950 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,951 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,952 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,953 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,954 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,955 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,961 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,962 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,963 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,964 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,965 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,966 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,967 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,968 +9,137,0.0003,-0.0003,643.42,1597.9,1407.36,21.61,552.42,2388.16,9070.11,47.99,520.4,2388.2,8.4693,395,38.73,23.1159,969 +9,138,0.0005,-0.0002,643.05,1592.87,1418.14,21.61,552.26,2388.18,9068.3,47.86,520.81,2388.18,8.5216,395,38.48,23.1711,970 +9,139,0.0016,0.0004,643.24,1593.36,1416.3,21.61,552.63,2388.14,9065.47,48.04,520.78,2388.13,8.4757,396,38.7,23.2691,971 +9,140,0.0003,-0.0002,643.03,1596.59,1423.6,21.61,552.1,2388.19,9056.11,47.89,520.38,2388.23,8.478,396,38.59,23.0576,972 +9,141,0.0004,0.0001,643.73,1594.93,1418.33,21.61,552.05,2388.19,9064.85,47.8,520.84,2388.19,8.4894,395,38.6,23.1253,973 +9,142,0.0029,0.0004,643.26,1597.54,1421.15,21.61,551.58,2388.14,9062.47,47.93,520.35,2388.12,8.4824,393,38.45,23.1465,974 +9,143,0.0029,0.0003,642.8,1597.51,1414.92,21.61,552.67,2388.24,9067.98,48.07,520.33,2388.26,8.4884,394,38.48,23.1075,975 +9,144,-0.0024,0.0004,643.63,1603.44,1426.94,21.61,551.88,2388.17,9057.41,47.81,520.78,2388.22,8.5239,395,38.48,23.209,976 +9,145,0.0003,0.0003,643.27,1599.82,1426.25,21.61,551.46,2388.2,9073.02,48.02,520.12,2388.22,8.522,396,38.66,23.0795,977 +9,146,0.001,0.0004,643.63,1599.5,1418.61,21.61,551.84,2388.2,9070.44,48.11,520.54,2388.2,8.5025,393,38.51,23.1539,978 +9,147,-0.0003,-0.0003,644.09,1597.71,1419.98,21.61,552.49,2388.22,9063.92,48.03,519.69,2388.18,8.5008,396,38.62,23.1075,979 +9,148,-0.0058,-0.0004,643.76,1604.73,1424.21,21.61,552.03,2388.19,9070.91,48.06,519.53,2388.2,8.4957,397,38.58,23.1208,980 +9,149,0.0018,0.0001,643.56,1605.47,1432.01,21.61,551.68,2388.23,9067.07,47.97,519.73,2388.28,8.4927,396,38.52,23.0482,981 +9,150,-0.0025,0.0002,643.64,1601.19,1422.98,21.61,551.82,2388.23,9070.74,48.16,520.2,2388.29,8.5236,397,38.53,23.064,982 +9,151,0.0034,-0.0002,643.43,1598.68,1436.78,21.61,551.11,2388.26,9062.89,48.0,519.97,2388.26,8.5096,397,38.4,23.0142,983 +9,152,0.0014,0.0001,643.59,1597.97,1426.5,21.61,551.54,2388.19,9059.84,48.12,519.2,2388.22,8.5198,395,38.46,23.12,984 +9,153,0.0024,0.0,643.77,1599.57,1428.83,21.61,552.0,2388.31,9068.57,48.12,519.53,2388.22,8.5095,397,38.57,23.1388,985 +9,154,-0.0003,-0.0001,643.74,1604.81,1438.41,21.61,550.8,2388.22,9061.7,48.14,519.83,2388.27,8.5313,396,38.3,23.0633,986 +9,155,0.0047,0.0003,643.45,1603.62,1428.64,21.61,550.75,2388.21,9068.93,48.2,519.35,2388.26,8.488,396,38.44,23.1179,987 +9,129,0.0016,-0.0002,643.09,1586.63,1419.79,21.61,552.89,2388.18,9070.53,47.68,520.63,2388.12,8.4476,394,38.93,23.2861,993 +9,130,-0.0007,0.0005,643.06,1592.74,1416.36,21.61,552.38,2388.14,9061.5,47.84,521.56,2388.17,8.4627,394,38.52,23.2895,994 +9,131,0.0022,0.0006,643.19,1588.68,1417.03,21.61,552.48,2388.17,9070.52,47.56,520.56,2388.15,8.4832,392,38.67,23.2531,995 +9,132,0.0006,0.0003,643.39,1601.82,1414.52,21.61,552.76,2388.12,9053.98,47.89,520.89,2388.14,8.4785,392,38.75,23.1035,996 +9,133,-0.0012,0.0002,642.9,1597.63,1411.69,21.61,552.45,2388.12,9065.39,47.93,520.51,2388.2,8.4251,395,38.68,23.127,997 +9,134,0.0018,-0.0003,642.79,1598.16,1418.44,21.61,552.59,2388.18,9063.85,47.73,520.75,2388.19,8.4851,395,38.67,23.2983,998 +9,135,-0.0009,0.0004,643.62,1593.49,1411.44,21.61,553.1,2388.24,9069.53,47.82,520.55,2388.16,8.501,393,38.57,23.2482,999 +9,136,-0.0013,0.0005,642.91,1609.52,1415.21,21.61,552.7,2388.16,9065.37,47.71,520.93,2388.26,8.5072,395,38.68,23.1555,1000 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,129 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,130 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,131 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,132 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,133 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,134 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,135 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,136 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,137 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,138 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,139 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,140 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,141 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,142 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,143 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,144 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,145 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,146 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,147 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,148 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,149 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,150 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,151 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,152 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,153 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,154 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,155 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,156 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,162 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,163 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,164 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,165 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,166 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,167 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,168 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,169 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,170 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,171 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,172 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,173 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,174 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,175 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,176 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,177 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,178 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,179 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,180 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,181 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,182 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,183 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,184 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,185 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,186 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,187 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,188 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,189 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,190 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,191 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,192 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,193 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,194 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,195 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,196 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,197 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,198 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,199 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,200 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,201 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,202 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,203 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,204 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,205 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,206 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,207 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,208 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,209 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,210 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,211 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,212 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,213 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,214 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,215 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,216 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,217 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,218 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,219 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,220 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,221 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,222 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,223 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,224 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,230 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,231 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,232 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,233 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,234 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,235 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,236 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,237 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,238 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,239 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,240 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,241 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,242 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,243 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,244 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,245 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,246 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,247 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,248 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,249 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,250 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,251 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,252 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,253 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,254 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,255 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,256 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,257 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,258 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,259 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,260 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,261 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,262 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,263 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,264 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,265 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,266 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,267 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,268 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,269 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,270 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,271 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,272 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,273 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,274 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,275 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,276 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,277 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,278 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,279 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,280 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,281 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,282 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,283 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,284 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,285 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,286 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,287 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,288 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,289 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,290 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,291 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,292 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,298 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,299 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,300 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,301 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,302 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,303 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,304 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,305 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,306 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,307 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,308 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,309 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,310 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,311 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,312 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,313 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,314 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,315 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,316 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,317 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,318 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,319 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,320 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,321 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,322 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,323 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,324 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,325 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,326 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,327 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,328 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,329 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,330 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,331 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,332 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,333 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,334 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,335 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,336 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,337 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,338 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,339 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,340 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,341 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,342 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,343 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,344 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,345 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,346 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,347 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,348 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,349 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,350 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,351 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,352 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,353 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,354 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,355 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,356 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,357 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,358 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,359 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,360 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,366 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,367 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,368 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,369 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,370 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,371 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,372 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,373 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,374 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,375 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,376 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,377 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,378 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,379 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,380 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,381 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,382 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,383 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,384 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,385 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,386 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,387 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,388 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,389 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,390 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,391 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,392 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,393 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,394 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,395 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,396 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,397 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,398 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,399 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,400 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,401 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,402 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,403 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,404 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,405 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,406 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,407 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,408 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,409 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,410 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,411 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,412 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,413 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,414 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,415 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,416 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,417 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,418 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,419 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,420 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,421 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,422 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,423 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,424 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,425 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,426 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,427 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,428 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,434 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,435 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,436 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,437 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,438 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,439 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,440 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,441 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,442 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,443 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,444 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,445 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,446 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,447 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,448 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,449 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,450 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,451 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,452 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,453 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,454 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,455 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,456 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,457 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,458 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,459 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,460 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,461 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,462 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,463 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,464 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,465 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,466 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,467 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,468 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,469 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,470 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,471 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,472 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,473 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,474 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,475 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,476 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,477 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,478 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,479 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,480 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,481 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,482 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,483 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,484 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,485 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,486 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,487 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,488 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,489 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,490 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,491 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,492 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,493 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,494 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,495 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,496 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,502 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,503 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,504 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,505 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,506 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,507 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,508 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,509 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,510 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,511 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,512 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,513 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,514 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,515 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,516 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,517 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,518 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,519 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,520 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,521 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,522 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,523 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,524 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,525 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,526 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,527 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,528 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,529 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,530 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,531 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,532 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,533 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,534 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,535 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,536 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,537 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,538 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,539 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,540 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,541 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,542 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,543 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,544 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,545 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,546 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,547 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,548 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,549 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,550 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,551 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,552 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,553 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,554 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,555 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,556 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,557 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,558 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,559 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,560 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,561 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,562 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,563 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,564 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,570 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,571 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,572 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,573 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,574 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,575 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,576 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,577 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,578 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,579 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,580 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,581 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,582 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,583 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,584 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,585 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,586 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,587 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,588 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,589 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,590 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,591 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,592 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,593 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,594 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,595 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,596 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,597 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,598 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,599 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,600 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,601 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,602 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,603 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,604 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,605 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,606 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,607 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,608 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,609 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,610 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,611 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,612 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,613 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,614 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,615 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,616 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,617 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,618 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,619 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,620 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,621 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,622 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,623 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,624 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,625 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,626 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,627 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,628 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,629 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,630 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,631 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,632 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,638 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,639 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,640 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,641 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,642 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,643 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,644 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,645 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,646 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,647 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,648 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,649 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,650 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,651 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,652 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,653 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,654 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,655 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,656 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,657 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,658 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,659 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,660 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,661 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,662 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,663 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,664 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,665 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,666 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,667 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,668 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,669 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,670 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,671 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,672 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,673 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,674 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,675 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,676 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,677 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,678 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,679 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,680 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,681 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,682 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,683 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,684 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,685 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,686 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,687 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,688 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,689 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,690 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,691 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,692 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,693 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,694 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,695 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,696 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,697 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,698 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,699 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,700 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,706 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,707 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,708 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,709 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,710 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,711 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,712 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,713 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,714 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,715 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,716 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,717 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,718 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,719 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,720 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,721 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,722 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,723 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,724 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,725 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,726 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,727 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,728 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,729 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,730 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,731 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,732 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,733 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,734 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,735 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,736 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,737 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,738 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,739 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,740 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,741 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,742 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,743 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,744 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,745 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,746 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,747 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,748 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,749 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,750 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,751 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,752 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,753 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,754 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,755 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,756 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,757 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,758 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,759 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,760 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,761 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,762 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,763 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,764 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,765 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,766 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,767 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,768 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,774 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,775 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,776 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,777 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,778 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,779 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,780 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,781 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,782 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,783 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,784 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,785 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,786 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,787 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,788 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,789 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,790 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,791 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,792 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,793 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,794 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,795 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,796 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,797 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,798 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,799 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,800 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,801 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,802 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,803 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,804 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,805 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,806 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,807 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,808 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,809 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,810 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,811 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,812 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,813 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,814 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,815 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,816 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,817 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,818 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,819 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,820 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,821 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,822 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,823 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,824 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,825 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,826 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,827 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,828 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,829 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,830 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,831 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,832 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,833 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,834 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,835 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,836 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,842 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,843 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,844 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,845 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,846 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,847 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,848 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,849 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,850 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,851 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,852 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,853 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,854 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,855 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,856 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,857 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,858 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,859 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,860 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,861 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,862 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,863 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,864 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,865 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,866 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,867 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,868 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,869 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,870 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,871 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,872 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,873 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,874 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,875 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,876 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,877 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,878 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,879 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,880 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,881 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,882 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,883 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,884 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,885 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,886 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,887 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,888 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,889 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,890 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,891 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,892 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,893 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,894 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,895 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,896 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,897 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,898 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,899 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,900 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,901 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,902 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,903 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,904 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,910 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,911 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,912 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,913 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,914 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,915 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,916 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,917 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,918 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,919 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,920 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,921 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,922 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,923 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,924 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,925 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,926 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,927 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,928 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,929 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,930 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,931 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,932 +10,117,-0.0027,0.0004,642.52,1590.2,1415.13,21.61,552.96,2388.12,9067.87,47.6,521.03,2388.12,8.4495,393,38.74,23.2222,933 +10,118,-0.0,0.0001,643.49,1589.88,1409.32,21.61,553.19,2388.1,9062.92,47.6,521.63,2388.09,8.4703,393,38.55,23.2505,934 +10,119,0.0004,0.0004,643.54,1595.95,1408.58,21.61,552.31,2388.1,9063.07,47.6,521.33,2388.11,8.4701,394,38.68,23.2997,935 +10,120,-0.0017,0.0001,642.25,1592.89,1411.42,21.61,552.6,2388.14,9066.45,47.57,521.16,2388.12,8.4521,394,39.02,23.2368,936 +10,121,-0.0018,-0.0001,643.13,1588.82,1408.53,21.61,552.63,2388.17,9072.97,47.69,521.07,2388.13,8.4408,394,38.75,23.3158,937 +10,122,0.0005,-0.0006,643.46,1593.95,1415.53,21.61,552.89,2388.13,9061.16,47.52,520.96,2388.13,8.4797,394,38.78,23.338,938 +10,123,0.0008,0.0002,642.67,1588.42,1411.25,21.61,553.1,2388.1,9067.88,47.67,521.53,2388.08,8.458,394,38.66,23.3001,939 +10,124,-0.0044,-0.0005,642.52,1592.81,1415.81,21.61,553.23,2388.1,9061.55,47.61,520.91,2388.18,8.4518,393,38.7,23.1875,940 +10,125,0.001,-0.0002,643.06,1589.57,1412.43,21.61,553.02,2388.09,9063.4,47.71,520.85,2388.12,8.4502,393,38.79,23.2527,941 +10,126,-0.0003,0.0001,642.92,1590.67,1421.69,21.61,552.73,2388.19,9069.43,47.71,520.92,2388.16,8.4457,394,38.74,23.2362,942 +10,127,-0.0018,0.0002,643.11,1595.68,1417.98,21.61,553.28,2388.17,9063.53,47.82,521.03,2388.14,8.4623,393,38.63,23.2736,943 +10,128,0.0033,0.0003,643.27,1595.21,1413.42,21.61,553.25,2388.11,9060.99,47.74,521.15,2388.1,8.438,393,38.67,23.3541,944 +10,129,-0.0001,-0.0002,643.6,1599.84,1411.23,21.61,553.2,2388.14,9062.5,47.79,521.0,2388.13,8.4169,394,38.78,23.225,945 +10,130,0.0023,-0.0003,643.14,1590.61,1425.93,21.61,552.29,2388.19,9066.76,47.73,520.73,2388.2,8.4698,394,38.73,23.14,946 +10,131,-0.0017,-0.0004,642.85,1598.3,1414.73,21.61,552.53,2388.14,9069.35,47.85,521.05,2388.12,8.4344,395,38.74,23.1894,947 +10,132,0.0003,0.0003,642.42,1595.58,1418.83,21.61,552.94,2388.12,9055.72,47.58,521.39,2388.1,8.476,394,38.63,23.2456,948 +10,133,0.0003,-0.0,643.36,1594.81,1420.22,21.61,552.73,2388.11,9066.42,47.79,520.7,2388.15,8.4811,394,38.68,23.2257,949 +10,134,0.0025,-0.0003,643.45,1596.37,1421.27,21.61,553.08,2388.17,9059.07,47.81,521.01,2388.11,8.4774,395,38.56,23.2161,950 +10,135,0.0006,0.0001,642.99,1594.73,1416.37,21.61,552.5,2388.14,9071.96,47.92,520.64,2388.1,8.4526,394,38.73,23.2071,951 +10,136,-0.0006,0.0001,642.78,1592.86,1421.81,21.61,552.58,2388.2,9067.56,47.96,520.67,2388.14,8.4943,395,38.73,23.2364,952 +10,137,-0.0014,0.0003,643.32,1594.91,1416.92,21.61,553.14,2388.12,9064.23,47.93,520.41,2388.16,8.4502,395,38.72,23.2724,953 +10,138,0.0001,-0.0001,643.21,1596.61,1420.15,21.61,552.49,2388.18,9067.86,47.84,520.63,2388.08,8.5024,395,38.61,23.177,954 +10,139,0.0002,0.0001,643.33,1596.31,1413.42,21.61,552.67,2388.19,9063.7,48.1,520.44,2388.1,8.478,393,38.51,23.1215,955 +10,140,-0.0002,0.0003,643.43,1594.1,1421.17,21.61,552.4,2388.17,9065.09,47.89,520.36,2388.23,8.4943,395,38.58,23.314,956 +10,141,0.0002,-0.0002,643.28,1587.88,1424.33,21.61,551.96,2388.21,9063.13,47.84,520.62,2388.17,8.5124,395,38.45,23.1511,957 +10,142,0.0062,0.0002,643.59,1597.32,1419.68,21.61,552.4,2388.2,9069.51,47.88,520.39,2388.17,8.4901,393,38.69,23.2351,958 +10,143,0.0007,0.0004,643.07,1597.23,1430.24,21.61,551.72,2388.19,9073.09,47.98,520.49,2388.26,8.4828,394,38.74,23.1984,959 +10,144,0.0006,0.0003,643.61,1596.57,1419.65,21.61,552.02,2388.19,9057.36,48.09,520.52,2388.21,8.4843,395,38.63,23.163,960 +10,145,-0.0022,-0.0004,643.02,1596.19,1425.81,21.61,551.73,2388.23,9064.02,47.87,520.35,2388.16,8.491,396,38.52,23.174,961 +10,146,0.0009,-0.0002,642.88,1594.9,1423.26,21.61,552.54,2388.19,9064.64,48.07,520.16,2388.25,8.506,394,38.62,23.1121,962 +10,147,0.0036,0.0004,644.39,1599.15,1419.19,21.61,551.93,2388.27,9055.47,48.07,520.35,2388.21,8.5023,394,38.55,23.0201,963 +10,148,0.0002,-0.0005,643.35,1606.24,1427.64,21.61,551.48,2388.22,9060.29,48.0,519.87,2388.23,8.5171,395,38.55,23.1058,964 +10,149,-0.0023,-0.0004,643.23,1604.83,1420.38,21.61,552.01,2388.22,9064.76,47.92,519.88,2388.19,8.4739,394,38.63,23.2567,965 +10,150,0.0027,0.0001,643.25,1602.22,1428.44,21.61,551.39,2388.22,9058.24,48.1,519.88,2388.19,8.5225,396,38.67,23.1656,966 +10,151,-0.0031,-0.0001,643.49,1605.44,1430.65,21.61,551.49,2388.21,9059.86,47.98,520.0,2388.27,8.4897,396,38.53,23.13,967 +10,152,0.0011,-0.0,643.7,1601.54,1430.44,21.61,551.27,2388.22,9065.01,48.19,520.42,2388.22,8.5174,396,38.34,23.1092,968 +10,153,-0.0013,-0.0001,643.9,1598.11,1424.08,21.61,552.29,2388.26,9058.62,48.23,519.83,2388.25,8.4983,396,38.53,23.0466,969 +10,154,-0.0005,-0.0002,643.68,1602.37,1428.99,21.61,551.75,2388.23,9058.97,48.1,519.88,2388.23,8.5023,395,38.57,23.1139,970 +10,155,-0.0003,-0.0003,643.96,1602.49,1424.95,21.61,551.84,2388.31,9055.83,48.23,519.44,2388.3,8.5058,396,38.48,23.0874,971 +10,156,0.0077,-0.0003,643.02,1603.77,1432.16,21.61,551.52,2388.24,9058.54,48.29,519.55,2388.26,8.5308,396,38.33,23.1137,972 +10,94,-0.001,0.0004,641.95,1580.15,1400.39,21.61,553.35,2388.04,9067.45,47.53,522.01,2388.05,8.4644,391,38.87,23.4745,978 +10,95,0.0016,0.0004,642.56,1585.3,1407.67,21.61,553.79,2388.03,9074.58,47.61,521.05,2388.03,8.4146,393,38.8,23.315,979 +10,96,0.0059,-0.0,642.27,1589.45,1410.2,21.61,553.82,2388.09,9061.73,47.32,522.26,2388.06,8.4384,392,38.91,23.3839,980 +10,97,-0.0047,0.0003,642.45,1590.32,1398.2,21.61,554.3,2388.08,9070.62,47.47,521.07,2388.1,8.4309,392,39.12,23.2567,981 +10,98,0.0046,0.0002,642.69,1575.27,1406.36,21.61,553.34,2388.1,9071.23,47.33,522.02,2388.12,8.455,392,38.72,23.252,982 +10,99,0.0,0.0001,643.49,1594.19,1406.57,21.61,553.36,2388.11,9066.45,47.48,521.61,2388.07,8.4639,392,38.76,23.3405,983 +10,100,-0.0029,0.0003,642.52,1595.92,1401.31,21.61,554.4,2388.08,9070.59,47.39,521.62,2388.05,8.4331,392,38.78,23.4594,984 +10,101,0.002,0.0001,642.84,1587.37,1403.4,21.61,553.55,2388.12,9065.87,47.59,521.1,2388.07,8.4479,392,38.79,23.3209,985 +10,102,-0.0001,-0.0001,642.78,1590.35,1409.35,21.61,553.65,2388.1,9074.34,47.58,521.42,2388.06,8.4143,392,38.98,23.2586,986 +10,103,0.0021,-0.0003,642.0,1589.82,1408.18,21.61,553.81,2388.03,9069.22,47.52,521.78,2388.07,8.4346,394,38.92,23.3236,987 +10,104,0.0005,0.0001,642.66,1586.26,1406.16,21.61,554.5,2388.08,9064.37,47.2,521.1,2388.11,8.4174,394,39.01,23.3186,988 +10,105,-0.0002,0.0,642.44,1592.8,1406.41,21.61,553.6,2388.05,9066.17,47.58,521.47,2388.15,8.432,393,38.81,23.2766,989 +10,106,0.0032,-0.0002,642.49,1592.73,1413.18,21.61,553.19,2388.06,9066.1,47.66,521.65,2388.04,8.4442,394,38.83,23.3073,990 +10,107,-0.0014,-0.0005,642.73,1588.13,1409.88,21.61,553.48,2388.08,9073.41,47.37,521.47,2388.09,8.4404,393,39.05,23.261,991 +10,108,0.0,-0.0005,642.66,1590.02,1405.38,21.61,554.1,2388.06,9062.94,47.49,521.59,2388.14,8.4212,395,38.82,23.3297,992 +10,109,0.0016,0.0001,643.28,1593.36,1407.74,21.61,553.41,2388.13,9062.57,47.6,521.21,2388.13,8.4519,393,38.94,23.2969,993 +10,110,0.0003,-0.0003,642.85,1589.5,1405.17,21.61,553.76,2388.06,9070.56,47.43,521.32,2388.1,8.38,395,38.79,23.3736,994 +10,111,0.0034,-0.0004,642.6,1590.83,1408.17,21.61,552.65,2388.08,9063.58,47.62,521.23,2388.05,8.4403,394,38.67,23.2976,995 +10,112,0.0016,-0.0005,642.54,1590.85,1411.5,21.61,554.23,2388.09,9073.97,47.57,521.76,2388.09,8.4659,393,38.81,23.348,996 +10,113,-0.0014,0.0003,641.62,1590.42,1410.84,21.61,552.93,2388.11,9071.05,47.6,521.27,2388.13,8.4444,394,38.82,23.2527,997 +10,114,-0.0004,-0.0006,642.89,1588.31,1412.33,21.61,553.4,2388.13,9060.91,47.39,521.3,2388.08,8.4732,393,38.76,23.2057,998 +10,115,0.0048,0.0001,642.78,1586.4,1405.91,21.61,552.91,2388.11,9069.53,47.58,520.99,2388.11,8.4626,394,38.89,23.3035,999 +10,116,-0.0015,-0.0002,642.41,1592.92,1403.3,21.61,552.58,2388.06,9066.44,47.52,521.9,2388.14,8.4435,392,38.79,23.3524,1000 diff --git a/deployment/kubernetes/Pulumi.github-actions.yaml b/deployment/kubernetes/Pulumi.github-actions.yaml index 1f7f8f3..30567a2 100644 --- a/deployment/kubernetes/Pulumi.github-actions.yaml +++ b/deployment/kubernetes/Pulumi.github-actions.yaml @@ -11,6 +11,8 @@ config: lm-sensors: true monitoring: true influxdb2: true + grafana: true + predictive-maintenance: true antares-idl-k8s:config: cloud: type: aws diff --git a/deployment/kubernetes/Pulumi.yaml b/deployment/kubernetes/Pulumi.yaml index 15cd189..1b1e8a0 100644 --- a/deployment/kubernetes/Pulumi.yaml +++ b/deployment/kubernetes/Pulumi.yaml @@ -16,8 +16,10 @@ config: antares-idl-k8s:components.growatt: false antares-idl-k8s:components.lm-sensors: false antares-idl-k8s:components.influxdb2: false + antares-idl-k8s:components.grafana: false # Monitoring includes Prometheus, Grafana and Etcd on a separate # namespace + antares-idl-k8s:components.predictive-maintenance: false antares-idl-k8s:components.monitoring: false diff --git a/deployment/kubernetes/__main__.py b/deployment/kubernetes/__main__.py index 1538540..53b04ae 100644 --- a/deployment/kubernetes/__main__.py +++ b/deployment/kubernetes/__main__.py @@ -44,10 +44,12 @@ import postgresql import emqx import influxdb2 +import grafana import cert_manager import growatt import lm_sensors import monitoring +import predictive_maintenance # Create namespace for components resources["namespace"] = Namespace( @@ -100,8 +102,14 @@ if component_enabled("influxdb2"): influxdb2.deploy() +if component_enabled("grafana"): + grafana.deploy() + if component_enabled("growatt"): growatt.deploy() if component_enabled("lm-sensors"): lm_sensors.deploy() + +if component_enabled("predictive-maintenance"): + predictive_maintenance.deploy() diff --git a/deployment/kubernetes/airbyte.py b/deployment/kubernetes/airbyte.py index 3e1ddb2..cb70ab0 100644 --- a/deployment/kubernetes/airbyte.py +++ b/deployment/kubernetes/airbyte.py @@ -87,7 +87,6 @@ def deploy(): namespace=resources["namespace"].metadata["name"], ), spec=PersistentVolumeClaimSpecArgs( - # TODO: take it from config storage_class_name=config.get("/airbyte/storage-class", "efs-sc"), access_modes=["ReadWriteOnce"], resources={"requests": {"storage": "20M"}}, diff --git a/deployment/kubernetes/grafana.py b/deployment/kubernetes/grafana.py new file mode 100644 index 0000000..f7329de --- /dev/null +++ b/deployment/kubernetes/grafana.py @@ -0,0 +1,85 @@ +""" +MIT License + +Copyright (c) 2023 HCLTech + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + +import pulumi +from pulumi_kubernetes.helm.v3 import ( + Release, + ReleaseArgs, + RepositoryOptsArgs, +) +from pulumi_kubernetes.core.v1 import Secret, SecretInitArgs +from pulumi_kubernetes.meta.v1 import ObjectMetaArgs +from antares_common.resources import resources, component_enabled +from antares_common.config import config + + +def deploy(): + grafana_helm_values = {"securityContext": {"runAsUser": 1000, "runAsGroup": 1000}} + + if component_enabled("efs-eks"): + grafana_helm_values["persistence"] = { + "enabled": True, + "storageClass": "efs-sc-user-1000", + "accessModes": ["ReadWriteMany"], + } + + admin_password_secret = Secret( + "grafana-admin", + SecretInitArgs( + string_data={ + "admin-password": config.get("/grafana/admin-password", "antares12"), + "admin-user": "admin", + }, + metadata=ObjectMetaArgs( + namespace=resources["namespace"].metadata["name"], + name="grafana-admin", + ), + ), + ) + + resources["grafana-admin-password"] = admin_password_secret + grafana_helm_values["admin"] = { + "existingSecret": "grafana-admin", + } + + grafana_release = Release( + "grafana", + ReleaseArgs( + chart="grafana", + name="grafana", + repository_opts=RepositoryOptsArgs( + repo="https://grafana.github.io/helm-charts", + ), + namespace=resources["namespace"].metadata["name"], + values={ + **grafana_helm_values, + **(config.get("/grafana/helm-values", {})), + }, + ), + opts=pulumi.ResourceOptions(depends_on=[resources["grafana-admin-password"]]), + ) + + resources["grafana"] = grafana_release + + return diff --git a/deployment/kubernetes/predictive_maintenance.py b/deployment/kubernetes/predictive_maintenance.py new file mode 100644 index 0000000..a9f055f --- /dev/null +++ b/deployment/kubernetes/predictive_maintenance.py @@ -0,0 +1,130 @@ +""" +MIT License + +Copyright (c) 2023 HCLTech + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + + +import pulumi +from pulumi_kubernetes.apps.v1 import Deployment, DeploymentSpecArgs +from pulumi_kubernetes.meta.v1 import LabelSelectorArgs, ObjectMetaArgs +from pulumi_kubernetes.core.v1 import ( + ContainerArgs, + PodSpecArgs, + PodTemplateSpecArgs, +) +from antares_common.resources import resources, component_enabled +from antares_common.config import config + + +def deploy(): + app_labels = {"app": "predictive_maintenance", "app_type": "ingestion"} + + if component_enabled("emqx"): + predictive_maintenance_env = [ + {"name": "MQTT_PORT", "value": "1883"}, + {"name": "MQTT_HOST", "value": "emqx-ee"}, + ] + else: + predictive_maintenance_env = [] + + if component_enabled("influxdb2"): + predictive_maintenance_env = predictive_maintenance_env + [ + { + "name": "INFLUX_TOKEN", + "value": config.get("/influxdb2/helm-values/adminUser/token", ""), + }, + { + "name": "INFLUX_ORG", + "value": config.get( + "/influxdb2/helm-values/adminUser/organization", "" + ), + }, + { + "name": "INFLUX_URL", + "value": config.get("/influxdb2/url", "http://influxdb2"), + }, + {"name": "INFLUX_PORT", "value": "80"}, + { + "name": "INFLUX_BUCKET", + "value": config.get( + "/influxdb2/helm-values/adminUser/bucket", "default" + ), + }, + ] + + predictive_maintenance_env = predictive_maintenance_env + config.get( + "/predictive-maintenance/env", [] + ) + + docker_image = config.get("/predictive-maintenance/docker-image") + + if not docker_image: + docker_image = resources[f"{config.get('/cloud/type')}_stack_ref"].get_output( + "predictive_maintenance-full-image-name" + ) + + for container in ["predict", "load"]: + deployment = Deployment( + f"pred-maint-{container}", + metadata=ObjectMetaArgs( + namespace=resources["namespace"].metadata["name"], + labels={**app_labels, **config.get("labels", {})}, + ), + spec=DeploymentSpecArgs( + selector=LabelSelectorArgs(match_labels=app_labels), + replicas=1, + template=PodTemplateSpecArgs( + metadata=ObjectMetaArgs( + labels=app_labels, + namespace=resources["namespace"].metadata["name"], + ), + spec=PodSpecArgs( + containers=[ + ContainerArgs( + name="pred-maint", + image=docker_image, + env=predictive_maintenance_env + + [{"name": "LOAD_MODEL", "value": container}], + env_from=config.get( + "/predictive-maintenance/env-from", [] + ), + resources=config.get( + "/predictive_maintenance/resources", + { + "requests": { + "cpu": "20m", + "memory": "128Mi", + "ephemeral-storage": "10Mi", + } + }, + ), + ) + ], + ), + ), + ), + opts=pulumi.ResourceOptions(), + ) + + resources["pred-maint-datagen-deployment"] = deployment + + return