From 5159656c34adc58b52c701c83ff749ac976b227c Mon Sep 17 00:00:00 2001 From: Ralf Anton Beier Date: Wed, 27 May 2026 05:54:41 +0200 Subject: [PATCH 1/2] =?UTF-8?q?feat(falcon):=20v0.19.2=20=E2=80=94=20Actua?= =?UTF-8?q?tors=20message=20+=20multi=5Fthread=20runtime;=20Finding=202=20?= =?UTF-8?q?closed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lands the architectural fix for v0.19.1's Finding 1 (per-rotor Double publishes → single Actuators publish) plus a tokio runtime model fix that fully closes Finding 2 (IMU + NavSat under-rate). Ships: - gz.msgs.Actuators defined locally (gz-transport-rs 0.1.0 doesn't ship actuators.proto); prost::Message derive, wire-compatible with Harmonic MulticopterMotorModel. - Single publish to //cmd_vel; per-rotor mpsc fanout collapsed to one channel carrying [4×f32]. - tokio runtime: new_current_thread → new_multi_thread(2 workers). The spawned subscriber + publisher tasks now actually run after setup block_on returns (current_thread only drives during explicit block_on; the 51 IMU frames / 4 Hz observed at v0.19.1 were stragglers from the brief setup window). Closes Finding 2. - prost = { version = "0.13", features = ["derive"] } as gazebo dep. - bench-evidence/gz-sim/{1779853824-*, 2026-05-27-*.md} - FV-FALCON-SIM-008 + FEAT-FALCON-v0.19.2 rollout entry. v0.19.2 bench (15-second hover): verdict: backend=gazebo steps=1500 climb=0.00 m counters: imu_recv=3572 navsat_recv=178 motor_send=1500 IMU rate observed 203 Hz / configured 200 Hz ✓ NavSat observed 10.1 Hz / configured 10 Hz ✓ motor_send observed 100 Hz exact ✓ climb 0.00 m ✗ (sub-issues) Two sub-issues found, both v0.19.3 targets: 1a. gz-transport-rs 0.1.0's advertise-direction discovery isn't reaching gz Sim 8's registry (subscribe direction works; gz CLI publish on same topic does register). Upstream wire-format or partition mismatch. 1b. Even native `gz topic -p` publishing full-rpm Actuators to /quad/cmd_vel doesn't lift the body. SDF model tuning issue (motorConstant or plugin namespace). Verification: - cargo test --workspace → 405 passing (preserved). - cargo test -p falcon-sitl-gz --features gazebo → 11/11. - cargo build --features gazebo → green. - rivet validate → PASS. Headline: IMU + NavSat now stream at configured rates, counters work end-to-end, bridge survives heavy load (3572+178+1500 events in 17 s, zero errors). Co-Authored-By: Claude Opus 4.7 (1M context) --- artifacts/features/FEAT-FALCON-rollout.yaml | 73 +- artifacts/verification/FV-FALCON-SIM-008.yaml | 95 ++ .../1779853824-gazebo-hover-harness.log | 14 + .../gz-sim/1779853824-gazebo-hover-ticks.csv | 1501 +++++++++++++++++ ...9.2-actuators-and-multi-thread-findings.md | 130 ++ examples/falcon-sitl-gz/Cargo.toml | 12 +- examples/falcon-sitl-gz/src/physics.rs | 137 +- 7 files changed, 1922 insertions(+), 40 deletions(-) create mode 100644 artifacts/verification/FV-FALCON-SIM-008.yaml create mode 100644 bench-evidence/gz-sim/1779853824-gazebo-hover-harness.log create mode 100644 bench-evidence/gz-sim/1779853824-gazebo-hover-ticks.csv create mode 100644 bench-evidence/gz-sim/2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md diff --git a/artifacts/features/FEAT-FALCON-rollout.yaml b/artifacts/features/FEAT-FALCON-rollout.yaml index f3a4264..e6e5ca9 100644 --- a/artifacts/features/FEAT-FALCON-rollout.yaml +++ b/artifacts/features/FEAT-FALCON-rollout.yaml @@ -1585,6 +1585,77 @@ artifacts: - type: depends-on target: FEAT-FALCON-v0.19.0 + - id: FEAT-FALCON-v0.19.2 + type: feature + title: "v0.19.2 — Actuators message + multi_thread runtime (Finding 2 closed)" + status: approved + description: > + LANDED. Targets v0.19.1's two findings. **Finding 2** (IMU + NavSat + under-rate) is fully closed by a tokio runtime model fix. + **Finding 1** (per-rotor Double vs single-topic Actuators) lands + architecturally and surfaces two sub-issues that v0.19.3 picks up. + + Ships: + - `gz.msgs.Actuators` defined locally (gz-transport-rs 0.1.0 + doesn't ship `actuators.proto`); prost::Message derive, + wire-compatible with Harmonic MulticopterMotorModel. + Single publish to `//cmd_vel`; per-rotor mpsc fanout + collapsed to one channel carrying `[4×f32]`. + - tokio runtime switched from `new_current_thread` to + `new_multi_thread(2 workers)`. Spawned subscriber + publisher + tasks now actually run after the setup `block_on` returns + (current_thread only drives during explicit block_on; the + 51 / 4 Hz IMU rate observed at v0.19.1 was stragglers from + the setup window). Closes Finding 2. + - `prost = { version = "0.13", features = ["derive"] }` as a + gazebo-feature dep. + - bench-evidence/gz-sim/-gazebo-hover-{harness.log,ticks.csv} + and `2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md`. + - FV-FALCON-SIM-008. + + v0.19.2 bench (15 s hover): + verdict: backend=gazebo steps=1500 climb=0.00 m + counters: imu_recv=3572 navsat_recv=178 motor_send=1500 + IMU rate observed 203 Hz / configured 200 Hz ✓ + NavSat observed 10.1 Hz / configured 10 Hz ✓ + motor observed 100 Hz exact ✓ + climb 0.00 m ✗ + + Two sub-issues found, both v0.19.3 targets: + 1a. gz-transport-rs 0.1.0's advertise-direction discovery + isn't reaching gz Sim 8's registry (subscribe direction + works; gz CLI publish on same topic does register). + Upstream wire-format or partition mismatch. + 1b. Even native `gz topic -p` publishing full-rpm Actuators + to `/quad/cmd_vel` doesn't lift the body. SDF model + tuning issue (motorConstant or plugin namespace). + + Verification: + - cargo test --workspace → 405 passing (preserved). + - cargo test -p falcon-sitl-gz --features gazebo → 11/11. + - cargo build --features gazebo → green. + - rivet validate → PASS. + + Honestly NOT claimed: + - That the cascade flies in gz physics yet. Verdict FAIL. + - That gz-transport-rs 0.1.0's discovery is broken in + general — only that gz Sim 8 doesn't see our advertise. + + The headline: IMU + NavSat now stream at configured rates, + the counters work, and the bridge survives heavy load + (3572+178+1500 events in 17 s, zero errors). + tags: [falcon, milestone, v0.19.2, gazebo, actuators, runtime-fix, bench-evidence, landed] + fields: + release-target: "Actuators message + multi_thread runtime; Finding 2 closed" + bench-date: "2026-05-27" + gz-version: "8.11.0" + counters-observed: "imu_recv=3572 navsat_recv=178 motor_send=1500" + findings-closed: ["Finding 2 (IMU+NavSat under-rate)"] + findings-partial: ["Finding 1 (Actuators — sub-issues 1a + 1b open)"] + links: + - type: depends-on + target: FEAT-FALCON-v0.19.1 + - id: FEAT-FALCON-v1.0 type: feature title: "v1.0 — six-domain credit dossier + airframe variants" @@ -1617,4 +1688,4 @@ artifacts: - type: implements target: SYSREQ-FALCON-010 - type: depends-on - target: FEAT-FALCON-v0.19.1 + target: FEAT-FALCON-v0.19.2 diff --git a/artifacts/verification/FV-FALCON-SIM-008.yaml b/artifacts/verification/FV-FALCON-SIM-008.yaml new file mode 100644 index 0000000..2c6ed74 --- /dev/null +++ b/artifacts/verification/FV-FALCON-SIM-008.yaml @@ -0,0 +1,95 @@ +artifacts: + - id: FV-FALCON-SIM-008 + type: sw-verification + title: "v0.19.2 — Actuators message + multi_thread runtime: Finding 2 closed, Finding 1 partially landed" + status: approved + description: > + v0.19.2 lands the architectural fix for v0.19.1's Finding 1 + (per-rotor Double publishes → single Actuators publish) plus + a runtime-model fix that closes Finding 2 completely (IMU and + NavSat under-rate). + + Closes: + - **Finding 2** (NavSat 0 frames + IMU 4 Hz / 200 Hz + configured): switching the tokio runtime from + `new_current_thread` to `new_multi_thread` with 2 workers + fixed it entirely. The spawned subscriber tasks were + orphaned after `block_on(setup)` returned — current_thread + only drives during explicit `block_on`. v0.19.2 bench: + IMU @ 203 Hz, NavSat @ 10.1 Hz (both within 1.5 % of + configured). + + Partially lands: + - **Finding 1** (per-rotor Double vs single-topic Actuators): + Actuators message defined locally (gz-transport-rs 0.1.0 + doesn't ship actuators.proto), single-topic publish to + //cmd_vel, per-rotor mpsc fanout collapsed to one + channel carrying [4×f32]. `publish()` succeeds + end-to-end (1500/1500, 0 errors). Two sub-issues block + actual flight: + + 1a. gz-transport-rs 0.1.0's advertise-direction discovery + isn't reaching gz Sim 8's registry. `gz topic -i` + mid-run doesn't list our bridge as a publisher; gz + CLI publishes the same topic correctly. Subscribe + direction works fine. + 1b. Even native `gz topic -p` publishing to /quad/cmd_vel + with full-rpm Actuators doesn't lift the body. + SDF model tuning issue (likely motorConstant or + plugin namespace). + + v0.19.2 bench evidence + (`bench-evidence/gz-sim/-gazebo-hover-{harness.log,ticks.csv}` + and `2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md`): + + verdict: backend=gazebo steps=1500 climb=0.00 m + counters: imu_recv=3572 navsat_recv=178 motor_send=1500 + IMU rate observed 203 Hz / configured 200 Hz ✓ + NavSat rate observed 10.1 Hz / configured 10 Hz ✓ + motor_send observed 100 Hz exact ✓ + climb 0.00 m ✗ (sub-issues 1a + 1b) + + Verification: + - cargo test --workspace → 405 passing (preserved). + - cargo test -p falcon-sitl-gz --features gazebo → 11/11. + - cargo build -p falcon-sitl-gz --features gazebo → green. + - rivet validate → PASS. + + Honestly NOT claimed: + - That the cascade flies in gz physics. It doesn't yet. + - That gz-transport-rs 0.1.0's discovery is broken in + general — only that gz Sim 8's advertise registry + doesn't see us. Partition mismatch, multicast group, or + wire-format are all candidates. + - That the SDF model is fully diagnosed. Native gz CLI + publishing the same Actuators also doesn't lift — + confirms the issue is below the bridge. + + The runtime fix alone is the headline: IMU + NavSat now + stream at configured rates, the counters work end-to-end, + and the v0.19.1 framework is demonstrated under real load + (3572 IMU + 178 NavSat + 1500 publishes over 17 s with no + drops or errors). + + v0.19.3 candidates: + - Audit SDF against a known-flying gz Sim 8 multicopter + reference (ros_gz_sim demos, PX4 gz_x500). + - Diagnose gz-transport-rs 0.1.0 discovery vs gz Sim 8 + (partition + multicast + wire-format), workaround + options. + tags: [falcon, sim, gazebo, bench-evidence, actuators, runtime-fix, v0.19.2] + fields: + bench-evidence-dir: bench-evidence/gz-sim/ + bench-date: "2026-05-27" + gz-version: "8.11.0" + counters-observed: + imu_recv: 3572 + navsat_recv: 178 + motor_send: 1500 + verdict: FAIL + findings-closed: ["Finding 2 (IMU+NavSat under-rate)"] + findings-partial: ["Finding 1 (Actuators format — landed; sub-issues 1a + 1b open)"] + runtime-change: "tokio current_thread → multi_thread (2 workers)" + links: + - type: verifies + target: SWREQ-FALCON-SIM-P04 diff --git a/bench-evidence/gz-sim/1779853824-gazebo-hover-harness.log b/bench-evidence/gz-sim/1779853824-gazebo-hover-harness.log new file mode 100644 index 0000000..43f6ed0 --- /dev/null +++ b/bench-evidence/gz-sim/1779853824-gazebo-hover-harness.log @@ -0,0 +1,14 @@ +falcon-sitl-gz bench-evidence +backend: gazebo +scenario: hover +timestamp: 1779853824 + +steps: 1500 +net_climb: 0.000 m +min_alt: 0.020 m +max_alt: 0.020 m +wall: 17.621 s +imu_recv: 3572 +navsat_recv:178 +motor_send: 1500 +verdict: FAIL diff --git a/bench-evidence/gz-sim/1779853824-gazebo-hover-ticks.csv b/bench-evidence/gz-sim/1779853824-gazebo-hover-ticks.csv new file mode 100644 index 0000000..57a3da0 --- /dev/null +++ b/bench-evidence/gz-sim/1779853824-gazebo-hover-ticks.csv @@ -0,0 +1,1501 @@ +step,t_s,n_m,e_m,d_m,ax_body,ay_body,az_body,gx_body,gy_body,gz_body,m0,m1,m2,m3,imu_recv,navsat_recv,motor_send +0,0.000,0.0000,0.0000,-0.0200,-0.0047,0.0005,-9.7956,0.0010,-0.0011,-0.0009,0.700,0.700,0.700,0.700,51,1,1 +1,0.010,0.0000,0.0000,-0.0200,0.0048,-0.0027,-9.8016,-0.0005,0.0004,0.0015,0.700,0.700,0.700,0.700,53,2,2 +2,0.020,0.0000,0.0000,-0.0200,0.0041,0.0008,-9.8025,0.0005,0.0004,0.0015,0.700,0.700,0.700,0.700,56,2,3 +3,0.030,0.0000,0.0000,-0.0200,0.0015,0.0015,-9.8021,-0.0005,0.0007,0.0013,0.700,0.700,0.700,0.700,58,2,4 +4,0.040,0.0000,0.0000,-0.0200,0.0004,-0.0028,-9.7986,0.0001,-0.0020,0.0007,0.700,0.700,0.700,0.700,60,2,5 +5,0.050,0.0000,0.0000,-0.0200,0.0009,0.0011,-9.7978,0.0016,-0.0003,0.0008,0.700,0.700,0.700,0.700,63,2,6 +6,0.060,0.0000,0.0000,-0.0200,0.0022,-0.0027,-9.8030,0.0004,0.0002,-0.0007,0.700,0.700,0.700,0.700,65,2,7 +7,0.070,0.0000,0.0000,-0.0200,-0.0014,0.0020,-9.8004,-0.0006,0.0004,0.0009,0.700,0.700,0.700,0.700,68,2,8 +8,0.080,0.0000,0.0000,-0.0200,0.0021,0.0035,-9.8027,-0.0003,-0.0005,0.0009,0.700,0.700,0.700,0.700,70,2,9 +9,0.090,0.0000,0.0000,-0.0200,-0.0021,0.0027,-9.7969,-0.0002,0.0010,0.0009,0.700,0.700,0.700,0.700,72,3,10 +10,0.100,0.0000,0.0000,-0.0200,-0.0014,-0.0044,-9.7987,0.0012,-0.0004,-0.0004,0.700,0.700,0.700,0.700,75,3,11 +11,0.110,0.0000,0.0000,-0.0200,-0.0022,0.0030,-9.8002,0.0005,-0.0002,-0.0001,0.700,0.700,0.700,0.700,77,3,12 +12,0.120,0.0000,0.0000,-0.0200,-0.0007,-0.0013,-9.7992,0.0011,-0.0006,-0.0001,0.700,0.700,0.700,0.700,80,3,13 +13,0.130,0.0000,0.0000,-0.0200,-0.0017,0.0007,-9.7980,-0.0009,-0.0007,0.0024,0.700,0.700,0.700,0.700,82,3,14 +14,0.140,0.0000,0.0000,-0.0200,-0.0001,0.0045,-9.8035,0.0001,0.0019,0.0002,0.700,0.700,0.700,0.700,84,3,15 +15,0.150,0.0000,0.0000,-0.0200,0.0012,-0.0004,-9.7994,-0.0021,0.0001,-0.0021,0.700,0.700,0.700,0.700,87,3,16 +16,0.160,0.0000,0.0000,-0.0200,-0.0002,0.0007,-9.7989,0.0003,0.0013,-0.0006,0.700,0.700,0.700,0.700,89,3,17 +17,0.170,0.0000,0.0000,-0.0200,-0.0022,-0.0036,-9.8011,0.0006,-0.0002,-0.0016,0.700,0.700,0.700,0.700,91,3,18 +18,0.180,0.0000,0.0000,-0.0200,0.0020,0.0035,-9.7981,-0.0022,-0.0009,-0.0007,0.700,0.700,0.700,0.700,94,4,19 +19,0.190,0.0000,0.0000,-0.0200,0.0014,-0.0006,-9.7977,0.0003,0.0001,-0.0005,0.700,0.700,0.700,0.700,96,4,20 +20,0.200,0.0000,0.0000,-0.0200,0.0035,0.0061,-9.8003,0.0002,-0.0010,-0.0001,0.700,0.700,0.700,0.700,98,4,21 +21,0.210,0.0000,0.0000,-0.0200,0.0010,-0.0000,-9.7989,-0.0006,-0.0006,-0.0003,0.700,0.700,0.700,0.700,101,4,22 +22,0.220,0.0000,0.0000,-0.0200,0.0007,0.0010,-9.7991,-0.0005,0.0000,0.0011,0.700,0.700,0.700,0.700,103,4,23 +23,0.230,0.0000,0.0000,-0.0200,-0.0010,-0.0015,-9.7978,0.0003,-0.0007,-0.0005,0.700,0.700,0.700,0.700,105,4,24 +24,0.240,0.0000,0.0000,-0.0200,-0.0022,-0.0011,-9.8034,0.0002,0.0015,-0.0013,0.700,0.700,0.700,0.700,108,4,25 +25,0.250,0.0000,0.0000,-0.0200,0.0036,-0.0032,-9.8027,0.0002,0.0003,0.0010,0.700,0.700,0.700,0.700,110,4,26 +26,0.260,0.0000,0.0000,-0.0200,-0.0004,0.0014,-9.7999,0.0001,0.0012,0.0013,0.700,0.700,0.700,0.700,113,5,27 +27,0.270,0.0000,0.0000,-0.0200,0.0024,0.0003,-9.7984,0.0004,-0.0011,-0.0006,0.700,0.700,0.700,0.700,115,5,28 +28,0.280,0.0000,0.0000,-0.0200,0.0015,0.0041,-9.8008,0.0000,0.0003,0.0004,0.700,0.700,0.700,0.700,117,5,29 +29,0.290,0.0000,0.0000,-0.0200,-0.0007,0.0029,-9.7993,-0.0002,-0.0003,0.0000,0.700,0.700,0.700,0.700,120,5,30 +30,0.300,0.0000,0.0000,-0.0200,-0.0022,-0.0041,-9.8000,-0.0011,0.0005,0.0002,0.700,0.700,0.700,0.700,122,5,31 +31,0.310,0.0000,0.0000,-0.0200,0.0003,0.0003,-9.8022,-0.0015,-0.0000,-0.0002,0.700,0.700,0.700,0.700,125,5,32 +32,0.320,0.0000,0.0000,-0.0200,-0.0038,-0.0004,-9.7985,-0.0007,-0.0009,-0.0015,0.700,0.700,0.700,0.700,127,5,33 +33,0.330,0.0000,0.0000,-0.0200,0.0017,0.0023,-9.7995,-0.0012,0.0006,0.0003,0.700,0.700,0.700,0.700,130,5,34 +34,0.340,0.0000,0.0000,-0.0200,-0.0018,-0.0005,-9.7996,0.0010,-0.0015,-0.0008,0.700,0.700,0.700,0.700,132,6,35 +35,0.350,0.0000,0.0000,-0.0200,-0.0010,-0.0028,-9.8022,-0.0003,0.0010,0.0003,0.700,0.700,0.700,0.700,134,6,36 +36,0.360,0.0000,0.0000,-0.0200,-0.0027,-0.0003,-9.8034,-0.0010,0.0000,-0.0007,0.700,0.700,0.700,0.700,136,6,37 +37,0.370,0.0000,0.0000,-0.0200,0.0012,0.0031,-9.7989,0.0016,-0.0003,0.0002,0.700,0.700,0.700,0.700,139,6,38 +38,0.380,0.0000,0.0000,-0.0200,0.0003,-0.0031,-9.7979,0.0008,0.0013,-0.0001,0.700,0.700,0.700,0.700,141,6,39 +39,0.390,0.0000,0.0000,-0.0200,0.0002,0.0035,-9.8007,-0.0011,0.0005,0.0002,0.700,0.700,0.700,0.700,144,6,40 +40,0.400,0.0000,0.0000,-0.0200,-0.0014,0.0014,-9.7982,0.0005,0.0014,-0.0003,0.700,0.700,0.700,0.700,146,6,41 +41,0.410,0.0000,0.0000,-0.0200,-0.0005,-0.0009,-9.8022,-0.0000,-0.0001,-0.0015,0.700,0.700,0.700,0.700,149,6,42 +42,0.420,0.0000,0.0000,-0.0200,-0.0009,0.0002,-9.8026,0.0006,0.0010,-0.0002,0.700,0.700,0.700,0.700,151,6,43 +43,0.430,0.0000,0.0000,-0.0200,-0.0015,-0.0040,-9.8014,-0.0006,0.0004,0.0000,0.700,0.700,0.700,0.700,153,7,44 +44,0.440,0.0000,0.0000,-0.0200,0.0005,-0.0018,-9.7967,-0.0015,-0.0010,0.0007,0.700,0.700,0.700,0.700,156,7,45 +45,0.450,0.0000,0.0000,-0.0200,0.0008,0.0032,-9.8023,0.0003,0.0010,-0.0011,0.700,0.700,0.700,0.700,158,7,46 +46,0.460,0.0000,0.0000,-0.0200,-0.0002,-0.0022,-9.7998,-0.0006,0.0010,-0.0010,0.700,0.700,0.700,0.700,161,7,47 +47,0.470,0.0000,0.0000,-0.0200,0.0011,0.0019,-9.8002,-0.0002,-0.0013,0.0004,0.700,0.700,0.700,0.700,163,7,48 +48,0.480,0.0000,0.0000,-0.0200,0.0000,0.0004,-9.7975,0.0005,0.0002,-0.0004,0.700,0.700,0.700,0.700,166,7,49 +49,0.490,0.0000,0.0000,-0.0200,0.0009,0.0002,-9.7997,-0.0003,0.0001,-0.0008,0.700,0.700,0.700,0.700,168,7,50 +50,0.500,0.0000,0.0000,-0.0200,-0.0017,-0.0005,-9.7974,0.0002,-0.0002,0.0010,0.700,0.700,0.700,0.700,170,7,51 +51,0.510,0.0000,0.0000,-0.0200,0.0023,0.0013,-9.8008,0.0008,-0.0003,0.0001,0.700,0.700,0.700,0.700,173,8,52 +52,0.520,0.0000,0.0000,-0.0200,-0.0010,0.0003,-9.7979,0.0001,-0.0005,-0.0006,0.700,0.700,0.700,0.700,175,8,53 +53,0.530,0.0000,0.0000,-0.0200,0.0015,-0.0008,-9.8002,0.0001,0.0010,0.0018,0.700,0.700,0.700,0.700,178,8,54 +54,0.540,0.0000,0.0000,-0.0200,0.0016,-0.0003,-9.8003,-0.0009,-0.0005,-0.0001,0.700,0.700,0.700,0.700,180,8,55 +55,0.550,0.0000,0.0000,-0.0200,0.0025,-0.0013,-9.8002,-0.0014,-0.0005,-0.0002,0.700,0.700,0.700,0.700,182,8,56 +56,0.560,0.0000,0.0000,-0.0200,0.0017,-0.0024,-9.8041,0.0010,-0.0008,-0.0012,0.700,0.700,0.700,0.700,184,8,57 +57,0.570,0.0000,0.0000,-0.0200,0.0001,-0.0008,-9.8001,-0.0007,0.0006,-0.0003,0.700,0.700,0.700,0.700,187,8,58 +58,0.580,0.0000,0.0000,-0.0200,-0.0011,0.0017,-9.7974,0.0003,-0.0006,0.0009,0.700,0.700,0.700,0.700,189,8,59 +59,0.590,0.0000,0.0000,-0.0200,0.0010,-0.0016,-9.7992,-0.0013,0.0020,-0.0005,0.700,0.700,0.700,0.700,191,8,60 +60,0.600,0.0000,0.0000,-0.0200,0.0021,0.0005,-9.7988,0.0006,-0.0006,0.0015,0.700,0.700,0.700,0.700,194,9,61 +61,0.610,0.0000,0.0000,-0.0200,-0.0020,0.0009,-9.7976,0.0004,-0.0017,-0.0005,0.700,0.700,0.700,0.700,196,9,62 +62,0.620,0.0000,0.0000,-0.0200,0.0008,0.0041,-9.7997,-0.0010,0.0013,0.0004,0.700,0.700,0.700,0.700,198,9,63 +63,0.630,0.0000,0.0000,-0.0200,-0.0024,0.0010,-9.7976,-0.0003,0.0008,0.0010,0.700,0.700,0.700,0.700,201,9,64 +64,0.640,0.0000,0.0000,-0.0200,-0.0003,0.0027,-9.8038,-0.0005,-0.0021,-0.0009,0.700,0.700,0.700,0.700,203,9,65 +65,0.650,0.0000,0.0000,-0.0200,0.0006,0.0033,-9.8021,-0.0001,-0.0010,0.0005,0.700,0.700,0.700,0.700,205,9,66 +66,0.660,0.0000,0.0000,-0.0200,0.0041,0.0005,-9.7983,0.0004,0.0012,-0.0003,0.700,0.700,0.700,0.700,208,9,67 +67,0.670,0.0000,0.0000,-0.0200,-0.0046,0.0032,-9.8009,-0.0000,0.0005,0.0011,0.700,0.700,0.700,0.700,210,9,68 +68,0.680,0.0000,0.0000,-0.0200,0.0008,-0.0006,-9.8012,-0.0002,0.0000,0.0004,0.700,0.700,0.700,0.700,213,10,69 +69,0.690,0.0000,0.0000,-0.0200,0.0028,-0.0006,-9.8008,0.0006,-0.0001,-0.0006,0.700,0.700,0.700,0.700,215,10,70 +70,0.700,0.0000,0.0000,-0.0200,-0.0042,0.0027,-9.7991,-0.0009,0.0007,-0.0013,0.700,0.700,0.700,0.700,218,10,71 +71,0.710,0.0000,0.0000,-0.0200,-0.0049,-0.0003,-9.8000,-0.0000,0.0012,0.0010,0.700,0.700,0.700,0.700,220,10,72 +72,0.720,0.0000,0.0000,-0.0200,-0.0037,-0.0008,-9.7979,-0.0004,-0.0003,0.0010,0.700,0.700,0.700,0.700,222,10,73 +73,0.730,0.0000,0.0000,-0.0200,0.0005,0.0000,-9.7987,-0.0017,0.0002,0.0004,0.700,0.700,0.700,0.700,225,10,74 +74,0.740,0.0000,0.0000,-0.0200,0.0034,-0.0037,-9.8021,0.0004,0.0014,0.0008,0.700,0.700,0.700,0.700,227,10,75 +75,0.750,0.0000,0.0000,-0.0200,0.0006,0.0031,-9.7971,0.0012,0.0006,0.0009,0.700,0.700,0.700,0.700,229,10,76 +76,0.760,0.0000,0.0000,-0.0200,0.0001,-0.0017,-9.7983,-0.0007,0.0012,-0.0019,0.700,0.700,0.700,0.700,232,11,77 +77,0.770,0.0000,0.0000,-0.0200,0.0011,0.0021,-9.7966,-0.0015,0.0008,-0.0003,0.700,0.700,0.700,0.700,234,11,78 +78,0.780,0.0000,0.0000,-0.0200,0.0016,0.0008,-9.8008,-0.0014,0.0018,0.0006,0.700,0.700,0.700,0.700,236,11,79 +79,0.790,0.0000,0.0000,-0.0200,0.0026,-0.0017,-9.7990,-0.0001,-0.0003,-0.0009,0.700,0.700,0.700,0.700,239,11,80 +80,0.800,0.0000,0.0000,-0.0200,0.0005,-0.0013,-9.7985,0.0003,-0.0009,0.0004,0.700,0.700,0.700,0.700,241,11,81 +81,0.810,0.0000,0.0000,-0.0200,-0.0015,0.0012,-9.8016,-0.0004,0.0002,-0.0013,0.700,0.700,0.700,0.700,243,11,82 +82,0.820,0.0000,0.0000,-0.0200,-0.0002,-0.0030,-9.8002,-0.0001,-0.0005,0.0009,0.700,0.700,0.700,0.700,246,11,83 +83,0.830,0.0000,0.0000,-0.0200,0.0034,-0.0016,-9.8015,-0.0020,0.0008,0.0003,0.700,0.700,0.700,0.700,248,11,84 +84,0.840,0.0000,0.0000,-0.0200,0.0035,0.0031,-9.7967,0.0002,0.0010,-0.0004,0.700,0.700,0.700,0.700,250,11,85 +85,0.850,0.0000,0.0000,-0.0200,0.0016,-0.0008,-9.7982,0.0000,0.0000,-0.0006,0.700,0.700,0.700,0.700,253,12,86 +86,0.860,0.0000,0.0000,-0.0200,0.0033,0.0030,-9.8003,0.0005,-0.0010,0.0014,0.700,0.700,0.700,0.700,255,12,87 +87,0.870,0.0000,0.0000,-0.0200,0.0021,-0.0023,-9.8030,0.0010,-0.0016,0.0001,0.700,0.700,0.700,0.700,257,12,88 +88,0.880,0.0000,0.0000,-0.0200,-0.0007,-0.0018,-9.7936,0.0002,-0.0017,-0.0000,0.700,0.700,0.700,0.700,260,12,89 +89,0.890,0.0000,0.0000,-0.0200,-0.0003,-0.0011,-9.8021,0.0007,-0.0001,-0.0002,0.700,0.700,0.700,0.700,262,12,90 +90,0.900,0.0000,0.0000,-0.0200,-0.0003,-0.0018,-9.7968,-0.0013,-0.0012,0.0014,0.700,0.700,0.700,0.700,265,12,91 +91,0.910,0.0000,0.0000,-0.0200,-0.0001,-0.0017,-9.8008,0.0004,0.0003,-0.0013,0.700,0.700,0.700,0.700,267,12,92 +92,0.920,0.0000,0.0000,-0.0200,-0.0021,0.0033,-9.7984,-0.0007,-0.0010,0.0001,0.700,0.700,0.700,0.700,270,12,93 +93,0.930,0.0000,0.0000,-0.0200,-0.0018,0.0032,-9.7994,-0.0006,-0.0009,-0.0015,0.700,0.700,0.700,0.700,272,13,94 +94,0.940,0.0000,0.0000,-0.0200,0.0016,-0.0010,-9.8008,0.0016,0.0011,-0.0005,0.700,0.700,0.700,0.700,274,13,95 +95,0.950,0.0000,0.0000,-0.0200,0.0002,0.0024,-9.8029,-0.0008,-0.0013,-0.0010,0.700,0.700,0.700,0.700,276,13,96 +96,0.960,0.0000,0.0000,-0.0200,0.0009,0.0033,-9.8033,-0.0003,0.0012,0.0005,0.700,0.700,0.700,0.700,278,13,97 +97,0.970,0.0000,0.0000,-0.0200,-0.0011,0.0019,-9.7980,-0.0008,-0.0001,-0.0006,0.700,0.700,0.700,0.700,281,13,98 +98,0.980,0.0000,0.0000,-0.0200,0.0023,-0.0007,-9.7995,0.0004,-0.0006,0.0022,0.700,0.700,0.700,0.700,283,13,99 +99,0.990,0.0000,0.0000,-0.0200,-0.0009,-0.0022,-9.8032,-0.0010,0.0019,-0.0008,0.700,0.700,0.700,0.700,285,13,100 +100,1.000,0.0000,0.0000,-0.0200,0.0017,-0.0025,-9.7974,-0.0002,-0.0025,-0.0000,0.700,0.700,0.700,0.700,288,13,101 +101,1.010,0.0000,0.0000,-0.0200,-0.0024,-0.0043,-9.8034,0.0009,0.0011,0.0016,0.700,0.700,0.700,0.700,290,13,102 +102,1.020,0.0000,0.0000,-0.0200,0.0009,-0.0032,-9.7972,0.0000,0.0002,0.0001,0.700,0.700,0.700,0.700,293,14,103 +103,1.030,0.0000,0.0000,-0.0200,0.0017,-0.0055,-9.8005,-0.0002,-0.0005,0.0009,0.700,0.700,0.700,0.700,295,14,104 +104,1.040,0.0000,0.0000,-0.0200,-0.0012,-0.0010,-9.7985,-0.0009,0.0019,-0.0011,0.700,0.700,0.700,0.700,297,14,105 +105,1.050,0.0000,0.0000,-0.0200,0.0004,0.0054,-9.7991,-0.0018,0.0006,-0.0015,0.700,0.700,0.700,0.700,299,14,106 +106,1.060,0.0000,0.0000,-0.0200,-0.0009,-0.0004,-9.8041,0.0015,0.0003,0.0013,0.700,0.700,0.700,0.700,301,14,107 +107,1.070,0.0000,0.0000,-0.0200,-0.0003,0.0010,-9.8011,0.0001,-0.0000,-0.0003,0.700,0.700,0.700,0.700,304,14,108 +108,1.080,0.0000,0.0000,-0.0200,0.0044,-0.0005,-9.7984,0.0002,0.0010,-0.0018,0.700,0.700,0.700,0.700,306,14,109 +109,1.090,0.0000,0.0000,-0.0200,-0.0017,0.0013,-9.7993,-0.0006,-0.0002,-0.0001,0.700,0.700,0.700,0.700,308,14,110 +110,1.100,0.0000,0.0000,-0.0200,-0.0003,-0.0018,-9.7962,-0.0013,0.0024,-0.0001,0.700,0.700,0.700,0.700,311,14,111 +111,1.110,0.0000,0.0000,-0.0200,0.0023,0.0001,-9.7989,0.0004,0.0015,0.0003,0.700,0.700,0.700,0.700,313,15,112 +112,1.120,0.0000,0.0000,-0.0200,-0.0010,0.0006,-9.7969,-0.0013,0.0004,0.0004,0.700,0.700,0.700,0.700,315,15,113 +113,1.130,0.0000,0.0000,-0.0200,0.0013,0.0014,-9.7984,-0.0005,0.0018,-0.0009,0.700,0.700,0.700,0.700,317,15,114 +114,1.140,0.0000,0.0000,-0.0200,0.0014,0.0020,-9.8049,-0.0024,0.0003,0.0002,0.700,0.700,0.700,0.700,319,15,115 +115,1.150,0.0000,0.0000,-0.0200,0.0022,0.0024,-9.8015,-0.0011,0.0009,-0.0007,0.700,0.700,0.700,0.700,322,15,116 +116,1.160,0.0000,0.0000,-0.0200,0.0018,-0.0017,-9.7996,-0.0000,0.0002,0.0014,0.700,0.700,0.700,0.700,324,15,117 +117,1.170,0.0000,0.0000,-0.0200,-0.0008,-0.0012,-9.8014,0.0001,-0.0001,0.0006,0.700,0.700,0.700,0.700,326,15,118 +118,1.180,0.0000,0.0000,-0.0200,0.0007,-0.0009,-9.8031,-0.0007,-0.0002,0.0014,0.700,0.700,0.700,0.700,329,15,119 +119,1.190,0.0000,0.0000,-0.0200,-0.0016,-0.0006,-9.8037,0.0009,-0.0004,-0.0001,0.700,0.700,0.700,0.700,331,15,120 +120,1.200,0.0000,0.0000,-0.0200,0.0023,0.0011,-9.8027,0.0008,-0.0006,0.0004,0.700,0.700,0.700,0.700,333,16,121 +121,1.210,0.0000,0.0000,-0.0200,0.0025,-0.0012,-9.7982,-0.0003,-0.0013,0.0001,0.700,0.700,0.700,0.700,336,16,122 +122,1.220,0.0000,0.0000,-0.0200,0.0043,-0.0027,-9.7983,-0.0006,0.0022,-0.0005,0.700,0.700,0.700,0.700,338,16,123 +123,1.230,0.0000,0.0000,-0.0200,-0.0004,0.0024,-9.8008,0.0013,0.0001,-0.0009,0.700,0.700,0.700,0.700,341,16,124 +124,1.240,0.0000,0.0000,-0.0200,-0.0007,-0.0050,-9.7972,0.0027,-0.0012,0.0003,0.700,0.700,0.700,0.700,343,16,125 +125,1.250,0.0000,0.0000,-0.0200,-0.0011,-0.0031,-9.7980,0.0004,0.0006,-0.0010,0.700,0.700,0.700,0.700,346,16,126 +126,1.260,0.0000,0.0000,-0.0200,-0.0008,-0.0034,-9.8042,-0.0010,-0.0013,0.0008,0.700,0.700,0.700,0.700,348,16,127 +127,1.270,0.0000,0.0000,-0.0200,-0.0034,-0.0023,-9.7963,-0.0007,-0.0002,-0.0013,0.700,0.700,0.700,0.700,351,16,128 +128,1.280,0.0000,0.0000,-0.0200,0.0014,0.0014,-9.7999,-0.0002,-0.0008,0.0001,0.700,0.700,0.700,0.700,353,17,129 +129,1.290,0.0000,0.0000,-0.0200,0.0011,0.0025,-9.8017,-0.0012,0.0001,-0.0012,0.700,0.700,0.700,0.700,356,17,130 +130,1.300,0.0000,0.0000,-0.0200,-0.0003,-0.0004,-9.7973,-0.0001,-0.0030,-0.0007,0.700,0.700,0.700,0.700,358,17,131 +131,1.310,0.0000,0.0000,-0.0200,-0.0007,-0.0009,-9.8008,-0.0009,-0.0005,-0.0003,0.700,0.700,0.700,0.700,360,17,132 +132,1.320,0.0000,0.0000,-0.0200,0.0027,0.0037,-9.7994,0.0006,-0.0002,0.0001,0.700,0.700,0.700,0.700,363,17,133 +133,1.330,0.0000,0.0000,-0.0200,0.0013,-0.0001,-9.7968,-0.0017,-0.0010,-0.0018,0.700,0.700,0.700,0.700,365,17,134 +134,1.340,0.0000,0.0000,-0.0200,-0.0013,0.0026,-9.7957,0.0001,-0.0009,-0.0005,0.700,0.700,0.700,0.700,367,17,135 +135,1.350,0.0000,0.0000,-0.0200,-0.0018,-0.0025,-9.8007,-0.0007,-0.0002,0.0021,0.700,0.700,0.700,0.700,370,17,136 +136,1.360,0.0000,0.0000,-0.0200,-0.0009,0.0007,-9.7977,-0.0003,-0.0001,-0.0000,0.700,0.700,0.700,0.700,372,18,137 +137,1.370,0.0000,0.0000,-0.0200,-0.0030,-0.0020,-9.7981,0.0001,-0.0013,-0.0000,0.700,0.700,0.700,0.700,374,18,138 +138,1.380,0.0000,0.0000,-0.0200,-0.0017,0.0019,-9.7975,-0.0016,-0.0012,0.0019,0.700,0.700,0.700,0.700,376,18,139 +139,1.390,0.0000,0.0000,-0.0200,-0.0005,0.0009,-9.7998,0.0007,-0.0017,-0.0008,0.700,0.700,0.700,0.700,379,18,140 +140,1.400,0.0000,0.0000,-0.0200,-0.0028,-0.0025,-9.8003,-0.0007,-0.0001,-0.0003,0.700,0.700,0.700,0.700,381,18,141 +141,1.410,0.0000,0.0000,-0.0200,0.0011,-0.0055,-9.8019,-0.0009,-0.0003,-0.0015,0.700,0.700,0.700,0.700,383,18,142 +142,1.420,0.0000,0.0000,-0.0200,-0.0036,-0.0030,-9.7987,-0.0020,0.0002,-0.0001,0.700,0.700,0.700,0.700,386,18,143 +143,1.430,0.0000,0.0000,-0.0200,0.0023,-0.0012,-9.7971,-0.0007,-0.0002,0.0001,0.700,0.700,0.700,0.700,388,18,144 +144,1.440,0.0000,0.0000,-0.0200,-0.0006,0.0005,-9.7995,-0.0011,-0.0003,0.0000,0.700,0.700,0.700,0.700,391,18,145 +145,1.450,0.0000,0.0000,-0.0200,-0.0044,0.0008,-9.8027,-0.0019,-0.0019,0.0008,0.700,0.700,0.700,0.700,393,19,146 +146,1.460,0.0000,0.0000,-0.0200,-0.0018,0.0004,-9.7993,-0.0003,0.0008,-0.0007,0.700,0.700,0.700,0.700,395,19,147 +147,1.470,0.0000,0.0000,-0.0200,0.0017,-0.0004,-9.8007,-0.0011,-0.0009,0.0008,0.700,0.700,0.700,0.700,397,19,148 +148,1.480,0.0000,0.0000,-0.0200,0.0039,-0.0019,-9.7987,-0.0004,0.0001,-0.0002,0.700,0.700,0.700,0.700,400,19,149 +149,1.490,0.0000,0.0000,-0.0200,-0.0041,0.0000,-9.8044,-0.0009,0.0007,-0.0009,0.700,0.700,0.700,0.700,402,19,150 +150,1.500,0.0000,0.0000,-0.0200,0.0028,0.0039,-9.7998,-0.0006,-0.0006,0.0003,0.700,0.700,0.700,0.700,405,19,151 +151,1.510,0.0000,0.0000,-0.0200,0.0001,-0.0013,-9.7993,0.0001,0.0010,-0.0005,0.700,0.700,0.700,0.700,407,19,152 +152,1.520,0.0000,0.0000,-0.0200,0.0018,-0.0002,-9.8000,0.0002,-0.0002,0.0010,0.700,0.700,0.700,0.700,409,19,153 +153,1.530,0.0000,0.0000,-0.0200,0.0004,0.0015,-9.7977,-0.0012,0.0002,-0.0002,0.700,0.700,0.700,0.700,412,20,154 +154,1.540,0.0000,0.0000,-0.0200,-0.0036,0.0037,-9.7998,0.0003,0.0014,-0.0011,0.700,0.700,0.700,0.700,414,20,155 +155,1.550,0.0000,0.0000,-0.0200,0.0011,-0.0004,-9.7940,0.0001,-0.0013,0.0007,0.700,0.700,0.700,0.700,416,20,156 +156,1.560,0.0000,0.0000,-0.0200,-0.0009,0.0006,-9.7997,-0.0010,0.0006,0.0008,0.700,0.700,0.700,0.700,419,20,157 +157,1.570,0.0000,0.0000,-0.0200,0.0008,-0.0028,-9.8011,-0.0008,0.0006,-0.0005,0.700,0.700,0.700,0.700,421,20,158 +158,1.580,0.0000,0.0000,-0.0200,-0.0003,0.0015,-9.8003,-0.0007,0.0008,-0.0005,0.700,0.700,0.700,0.700,423,20,159 +159,1.590,0.0000,0.0000,-0.0200,-0.0013,-0.0012,-9.7984,-0.0001,-0.0003,0.0006,0.700,0.700,0.700,0.700,425,20,160 +160,1.600,0.0000,0.0000,-0.0200,0.0016,-0.0007,-9.7962,0.0004,-0.0023,0.0008,0.700,0.700,0.700,0.700,428,20,161 +161,1.610,0.0000,0.0000,-0.0200,0.0004,-0.0025,-9.7964,-0.0004,0.0003,0.0002,0.700,0.700,0.700,0.700,430,20,162 +162,1.620,0.0000,0.0000,-0.0200,-0.0023,-0.0008,-9.7994,-0.0005,-0.0002,-0.0001,0.700,0.700,0.700,0.700,432,21,163 +163,1.630,0.0000,0.0000,-0.0200,-0.0005,-0.0011,-9.7983,0.0027,-0.0010,0.0008,0.700,0.700,0.700,0.700,435,21,164 +164,1.640,0.0000,0.0000,-0.0200,-0.0024,-0.0004,-9.7957,0.0004,-0.0001,0.0009,0.700,0.700,0.700,0.700,437,21,165 +165,1.650,0.0000,0.0000,-0.0200,0.0001,-0.0023,-9.8019,-0.0007,0.0025,-0.0011,0.700,0.700,0.700,0.700,440,21,166 +166,1.660,0.0000,0.0000,-0.0200,-0.0013,-0.0017,-9.8017,0.0004,0.0007,-0.0001,0.700,0.700,0.700,0.700,442,21,167 +167,1.670,0.0000,0.0000,-0.0200,-0.0016,-0.0011,-9.7969,-0.0014,-0.0014,0.0002,0.700,0.700,0.700,0.700,444,21,168 +168,1.680,0.0000,0.0000,-0.0200,-0.0003,0.0009,-9.7964,0.0007,0.0001,-0.0016,0.700,0.700,0.700,0.700,447,21,169 +169,1.690,0.0000,0.0000,-0.0200,0.0014,-0.0010,-9.7995,0.0010,0.0010,-0.0005,0.700,0.700,0.700,0.700,449,21,170 +170,1.700,0.0000,0.0000,-0.0200,0.0005,-0.0003,-9.7988,-0.0014,0.0001,0.0006,0.700,0.700,0.700,0.700,451,21,171 +171,1.710,0.0000,0.0000,-0.0200,0.0012,-0.0015,-9.8023,-0.0010,0.0008,0.0012,0.700,0.700,0.700,0.700,454,22,172 +172,1.720,0.0000,0.0000,-0.0200,-0.0002,0.0013,-9.7982,-0.0014,-0.0006,-0.0007,0.700,0.700,0.700,0.700,456,22,173 +173,1.730,0.0000,0.0000,-0.0200,-0.0003,-0.0003,-9.7979,-0.0013,0.0008,0.0006,0.700,0.700,0.700,0.700,459,22,174 +174,1.740,0.0000,0.0000,-0.0200,0.0003,-0.0008,-9.7959,0.0007,0.0010,0.0000,0.700,0.700,0.700,0.700,461,22,175 +175,1.750,0.0000,0.0000,-0.0200,0.0008,0.0006,-9.8028,0.0008,-0.0002,-0.0001,0.700,0.700,0.700,0.700,463,22,176 +176,1.760,0.0000,0.0000,-0.0200,-0.0002,0.0018,-9.8028,0.0001,0.0018,0.0005,0.700,0.700,0.700,0.700,466,22,177 +177,1.770,0.0000,0.0000,-0.0200,-0.0017,-0.0012,-9.7954,0.0006,0.0001,0.0004,0.700,0.700,0.700,0.700,468,22,178 +178,1.780,0.0000,0.0000,-0.0200,-0.0030,0.0016,-9.8001,0.0002,-0.0009,0.0000,0.700,0.700,0.700,0.700,471,22,179 +179,1.790,0.0000,0.0000,-0.0200,-0.0009,-0.0009,-9.7989,0.0005,-0.0014,0.0011,0.700,0.700,0.700,0.700,473,23,180 +180,1.800,0.0000,0.0000,-0.0200,-0.0005,0.0022,-9.8016,-0.0007,0.0006,0.0006,0.700,0.700,0.700,0.700,475,23,181 +181,1.810,0.0000,0.0000,-0.0200,0.0031,0.0024,-9.8004,-0.0011,0.0000,0.0021,0.700,0.700,0.700,0.700,478,23,182 +182,1.820,0.0000,0.0000,-0.0200,-0.0022,0.0019,-9.8001,-0.0005,0.0012,-0.0013,0.700,0.700,0.700,0.700,480,23,183 +183,1.830,0.0000,0.0000,-0.0200,0.0002,0.0009,-9.8048,0.0007,0.0010,-0.0004,0.700,0.700,0.700,0.700,483,23,184 +184,1.840,0.0000,0.0000,-0.0200,0.0035,0.0023,-9.7993,-0.0009,-0.0009,-0.0006,0.700,0.700,0.700,0.700,485,23,185 +185,1.850,0.0000,0.0000,-0.0200,0.0015,0.0001,-9.7993,0.0012,0.0002,-0.0006,0.700,0.700,0.700,0.700,487,23,186 +186,1.860,0.0000,0.0000,-0.0200,0.0042,-0.0015,-9.8000,-0.0010,-0.0002,0.0017,0.700,0.700,0.700,0.700,490,23,187 +187,1.870,0.0000,0.0000,-0.0200,-0.0026,0.0034,-9.8005,-0.0002,0.0002,-0.0006,0.700,0.700,0.700,0.700,492,24,188 +188,1.880,0.0000,0.0000,-0.0200,-0.0007,-0.0014,-9.8017,0.0005,-0.0002,-0.0011,0.700,0.700,0.700,0.700,494,24,189 +189,1.890,0.0000,0.0000,-0.0200,0.0020,-0.0018,-9.7962,-0.0006,0.0009,0.0001,0.700,0.700,0.700,0.700,497,24,190 +190,1.900,0.0000,0.0000,-0.0200,-0.0034,0.0032,-9.7997,0.0011,0.0016,0.0015,0.700,0.700,0.700,0.700,499,24,191 +191,1.910,0.0000,0.0000,-0.0200,-0.0000,-0.0015,-9.8022,0.0024,0.0014,0.0001,0.700,0.700,0.700,0.700,502,24,192 +192,1.920,0.0000,0.0000,-0.0200,0.0025,0.0011,-9.8023,-0.0004,-0.0006,0.0013,0.700,0.700,0.700,0.700,504,24,193 +193,1.930,0.0000,0.0000,-0.0200,0.0011,-0.0009,-9.8011,0.0004,-0.0003,-0.0009,0.700,0.700,0.700,0.700,506,24,194 +194,1.940,0.0000,0.0000,-0.0200,0.0021,-0.0033,-9.8005,0.0003,0.0006,0.0003,0.700,0.700,0.700,0.700,508,24,195 +195,1.950,0.0000,0.0000,-0.0200,0.0017,0.0005,-9.7980,0.0019,0.0021,-0.0000,0.700,0.700,0.700,0.700,511,24,196 +196,1.960,0.0000,0.0000,-0.0200,-0.0037,0.0007,-9.8015,-0.0001,0.0010,0.0001,0.700,0.700,0.700,0.700,513,25,197 +197,1.970,0.0000,0.0000,-0.0200,0.0026,0.0006,-9.8015,0.0005,-0.0017,-0.0008,0.700,0.700,0.700,0.700,516,25,198 +198,1.980,0.0000,0.0000,-0.0200,-0.0012,0.0002,-9.7969,0.0011,-0.0007,0.0008,0.700,0.700,0.700,0.700,518,25,199 +199,1.990,0.0000,0.0000,-0.0200,0.0012,0.0005,-9.7975,-0.0004,0.0008,0.0000,0.700,0.700,0.700,0.700,520,25,200 +200,2.000,0.0000,0.0000,-0.0200,0.0019,0.0029,-9.8007,0.0005,0.0010,-0.0017,0.700,0.700,0.700,0.700,522,25,201 +201,2.010,0.0000,0.0000,-0.0200,0.0024,-0.0007,-9.7989,0.0006,-0.0010,-0.0002,0.700,0.700,0.700,0.700,525,25,202 +202,2.020,0.0000,0.0000,-0.0200,-0.0021,-0.0044,-9.7996,-0.0003,-0.0005,-0.0011,0.700,0.700,0.700,0.700,527,25,203 +203,2.030,0.0000,0.0000,-0.0200,0.0035,0.0020,-9.7973,-0.0010,-0.0002,0.0013,0.700,0.700,0.700,0.700,530,25,204 +204,2.040,0.0000,0.0000,-0.0200,0.0015,0.0015,-9.8028,0.0004,0.0002,0.0006,0.700,0.700,0.700,0.700,532,26,205 +205,2.050,0.0000,0.0000,-0.0200,-0.0021,0.0042,-9.7975,-0.0005,0.0004,-0.0016,0.700,0.700,0.700,0.700,535,26,206 +206,2.060,0.0000,0.0000,-0.0200,0.0011,0.0026,-9.7997,0.0007,0.0007,-0.0004,0.700,0.700,0.700,0.700,537,26,207 +207,2.070,0.0000,0.0000,-0.0200,-0.0017,-0.0021,-9.8002,0.0002,0.0005,0.0002,0.700,0.700,0.700,0.700,539,26,208 +208,2.080,0.0000,0.0000,-0.0200,-0.0008,0.0014,-9.8025,-0.0004,-0.0007,0.0011,0.700,0.700,0.700,0.700,541,26,209 +209,2.090,0.0000,0.0000,-0.0200,0.0005,0.0011,-9.8003,-0.0007,-0.0013,0.0015,0.700,0.700,0.700,0.700,544,26,210 +210,2.100,0.0000,0.0000,-0.0200,-0.0029,-0.0027,-9.7983,0.0014,0.0002,-0.0004,0.700,0.700,0.700,0.700,546,26,211 +211,2.110,0.0000,0.0000,-0.0200,-0.0027,-0.0043,-9.7975,0.0019,-0.0012,0.0004,0.700,0.700,0.700,0.700,549,26,212 +212,2.120,0.0000,0.0000,-0.0200,0.0018,0.0002,-9.7992,-0.0006,0.0002,-0.0008,0.700,0.700,0.700,0.700,551,26,213 +213,2.130,0.0000,0.0000,-0.0200,-0.0036,-0.0020,-9.8011,-0.0001,-0.0002,0.0001,0.700,0.700,0.700,0.700,553,27,214 +214,2.140,0.0000,0.0000,-0.0200,-0.0024,-0.0018,-9.8015,-0.0002,-0.0010,0.0002,0.700,0.700,0.700,0.700,556,27,215 +215,2.150,0.0000,0.0000,-0.0200,-0.0019,-0.0030,-9.8004,0.0003,0.0008,-0.0020,0.700,0.700,0.700,0.700,558,27,216 +216,2.160,0.0000,0.0000,-0.0200,0.0000,-0.0024,-9.8013,0.0005,0.0005,0.0009,0.700,0.700,0.700,0.700,561,27,217 +217,2.170,0.0000,0.0000,-0.0200,0.0040,0.0018,-9.7989,-0.0001,-0.0008,-0.0006,0.700,0.700,0.700,0.700,563,27,218 +218,2.180,0.0000,0.0000,-0.0200,0.0021,0.0013,-9.7997,0.0002,-0.0005,-0.0015,0.700,0.700,0.700,0.700,565,27,219 +219,2.190,0.0000,0.0000,-0.0200,-0.0004,0.0006,-9.7994,-0.0008,0.0002,0.0006,0.700,0.700,0.700,0.700,568,27,220 +220,2.200,0.0000,0.0000,-0.0200,0.0033,0.0004,-9.7988,0.0006,-0.0010,-0.0013,0.700,0.700,0.700,0.700,570,27,221 +221,2.210,0.0000,0.0000,-0.0200,-0.0012,-0.0002,-9.7981,0.0004,-0.0001,0.0014,0.700,0.700,0.700,0.700,573,28,222 +222,2.220,0.0000,0.0000,-0.0200,-0.0041,0.0031,-9.8008,-0.0004,0.0016,-0.0008,0.700,0.700,0.700,0.700,575,28,223 +223,2.230,0.0000,0.0000,-0.0200,0.0003,0.0043,-9.8001,-0.0002,-0.0007,0.0014,0.700,0.700,0.700,0.700,577,28,224 +224,2.240,0.0000,0.0000,-0.0200,0.0040,0.0001,-9.7983,0.0011,-0.0011,0.0009,0.700,0.700,0.700,0.700,579,28,225 +225,2.250,0.0000,0.0000,-0.0200,-0.0016,-0.0001,-9.7990,-0.0002,0.0001,0.0001,0.700,0.700,0.700,0.700,582,28,226 +226,2.260,0.0000,0.0000,-0.0200,0.0041,-0.0035,-9.7976,0.0004,0.0012,-0.0007,0.700,0.700,0.700,0.700,584,28,227 +227,2.270,0.0000,0.0000,-0.0200,0.0023,0.0006,-9.8035,0.0001,0.0003,0.0013,0.700,0.700,0.700,0.700,587,28,228 +228,2.280,0.0000,0.0000,-0.0200,0.0034,-0.0001,-9.8009,0.0008,0.0017,-0.0010,0.700,0.700,0.700,0.700,589,28,229 +229,2.290,0.0000,0.0000,-0.0200,-0.0008,-0.0002,-9.8019,-0.0006,-0.0016,0.0011,0.700,0.700,0.700,0.700,592,29,230 +230,2.300,0.0000,0.0000,-0.0200,-0.0009,0.0054,-9.8026,-0.0001,-0.0002,0.0002,0.700,0.700,0.700,0.700,594,29,231 +231,2.310,0.0000,0.0000,-0.0200,-0.0009,-0.0035,-9.8011,0.0003,0.0016,0.0000,0.700,0.700,0.700,0.700,597,29,232 +232,2.320,0.0000,0.0000,-0.0200,-0.0007,-0.0008,-9.8005,-0.0015,-0.0015,-0.0003,0.700,0.700,0.700,0.700,599,29,233 +233,2.330,0.0000,0.0000,-0.0200,-0.0029,0.0011,-9.7981,0.0000,-0.0006,0.0000,0.700,0.700,0.700,0.700,602,29,234 +234,2.340,0.0000,0.0000,-0.0200,0.0023,0.0010,-9.8019,0.0004,-0.0008,0.0005,0.700,0.700,0.700,0.700,604,29,235 +235,2.350,0.0000,0.0000,-0.0200,0.0029,0.0003,-9.8009,-0.0019,-0.0001,-0.0001,0.700,0.700,0.700,0.700,607,29,236 +236,2.360,0.0000,0.0000,-0.0200,-0.0009,0.0025,-9.7994,-0.0003,0.0008,0.0007,0.700,0.700,0.700,0.700,609,29,237 +237,2.370,0.0000,0.0000,-0.0200,0.0013,0.0011,-9.8028,-0.0005,-0.0007,-0.0015,0.700,0.700,0.700,0.700,611,29,238 +238,2.380,0.0000,0.0000,-0.0200,0.0002,0.0007,-9.7999,0.0004,-0.0000,-0.0008,0.700,0.700,0.700,0.700,614,30,239 +239,2.390,0.0000,0.0000,-0.0200,-0.0075,0.0008,-9.8043,-0.0001,-0.0005,0.0002,0.700,0.700,0.700,0.700,616,30,240 +240,2.400,0.0000,0.0000,-0.0200,0.0003,0.0011,-9.8009,-0.0005,0.0001,-0.0001,0.700,0.700,0.700,0.700,618,30,241 +241,2.410,0.0000,0.0000,-0.0200,0.0028,0.0001,-9.7961,-0.0004,0.0008,-0.0012,0.700,0.700,0.700,0.700,620,30,242 +242,2.420,0.0000,0.0000,-0.0200,-0.0014,-0.0002,-9.7999,-0.0003,0.0000,0.0021,0.700,0.700,0.700,0.700,622,30,243 +243,2.430,0.0000,0.0000,-0.0200,-0.0000,0.0012,-9.7975,-0.0001,0.0008,-0.0003,0.700,0.700,0.700,0.700,625,30,244 +244,2.440,0.0000,0.0000,-0.0200,0.0011,-0.0004,-9.7983,0.0006,0.0009,0.0011,0.700,0.700,0.700,0.700,627,30,245 +245,2.450,0.0000,0.0000,-0.0200,-0.0000,0.0012,-9.7998,-0.0007,0.0014,0.0010,0.700,0.700,0.700,0.700,629,30,246 +246,2.460,0.0000,0.0000,-0.0200,0.0003,0.0031,-9.7990,-0.0011,0.0011,0.0007,0.700,0.700,0.700,0.700,632,31,247 +247,2.470,0.0000,0.0000,-0.0200,0.0005,0.0005,-9.8031,0.0010,0.0002,0.0008,0.700,0.700,0.700,0.700,634,31,248 +248,2.480,0.0000,0.0000,-0.0200,-0.0037,-0.0017,-9.8017,0.0005,-0.0008,-0.0003,0.700,0.700,0.700,0.700,636,31,249 +249,2.490,0.0000,0.0000,-0.0200,-0.0011,0.0023,-9.8031,0.0005,0.0006,0.0011,0.700,0.700,0.700,0.700,638,31,250 +250,2.500,0.0000,0.0000,-0.0200,0.0015,-0.0035,-9.8024,-0.0002,0.0005,0.0006,0.700,0.700,0.700,0.700,641,31,251 +251,2.510,0.0000,0.0000,-0.0200,0.0002,-0.0041,-9.7991,0.0010,-0.0003,-0.0012,0.700,0.700,0.700,0.700,643,31,252 +252,2.520,0.0000,0.0000,-0.0200,0.0042,0.0018,-9.8038,0.0005,-0.0021,-0.0001,0.700,0.700,0.700,0.700,646,31,253 +253,2.530,0.0000,0.0000,-0.0200,0.0008,-0.0028,-9.7984,0.0009,-0.0005,0.0001,0.700,0.700,0.700,0.700,648,31,254 +254,2.540,0.0000,0.0000,-0.0200,-0.0011,0.0001,-9.8002,0.0011,0.0015,-0.0012,0.700,0.700,0.700,0.700,651,31,255 +255,2.550,0.0000,0.0000,-0.0200,-0.0030,-0.0022,-9.7997,0.0005,-0.0011,-0.0012,0.700,0.700,0.700,0.700,653,32,256 +256,2.560,0.0000,0.0000,-0.0200,-0.0019,0.0009,-9.7996,-0.0003,-0.0008,-0.0003,0.700,0.700,0.700,0.700,656,32,257 +257,2.570,0.0000,0.0000,-0.0200,0.0005,-0.0007,-9.7998,0.0009,0.0015,0.0003,0.700,0.700,0.700,0.700,658,32,258 +258,2.580,0.0000,0.0000,-0.0200,-0.0002,-0.0001,-9.8014,0.0002,-0.0001,-0.0001,0.700,0.700,0.700,0.700,660,32,259 +259,2.590,0.0000,0.0000,-0.0200,0.0009,-0.0014,-9.7985,0.0011,-0.0009,-0.0003,0.700,0.700,0.700,0.700,663,32,260 +260,2.600,0.0000,0.0000,-0.0200,0.0029,0.0001,-9.7945,-0.0006,-0.0010,0.0006,0.700,0.700,0.700,0.700,665,32,261 +261,2.610,0.0000,0.0000,-0.0200,0.0016,0.0002,-9.8045,0.0005,0.0012,-0.0006,0.700,0.700,0.700,0.700,667,32,262 +262,2.620,0.0000,0.0000,-0.0200,0.0008,-0.0048,-9.7999,-0.0007,0.0002,0.0005,0.700,0.700,0.700,0.700,669,32,263 +263,2.630,0.0000,0.0000,-0.0200,-0.0015,0.0010,-9.7995,0.0002,0.0003,-0.0005,0.700,0.700,0.700,0.700,672,33,264 +264,2.640,0.0000,0.0000,-0.0200,-0.0006,-0.0018,-9.8013,-0.0001,-0.0019,-0.0009,0.700,0.700,0.700,0.700,674,33,265 +265,2.650,0.0000,0.0000,-0.0200,-0.0023,-0.0006,-9.8029,-0.0013,0.0006,0.0004,0.700,0.700,0.700,0.700,677,33,266 +266,2.660,0.0000,0.0000,-0.0200,-0.0025,0.0023,-9.8017,0.0006,-0.0012,-0.0004,0.700,0.700,0.700,0.700,679,33,267 +267,2.670,0.0000,0.0000,-0.0200,-0.0013,0.0005,-9.8018,-0.0012,0.0003,-0.0013,0.700,0.700,0.700,0.700,682,33,268 +268,2.680,0.0000,0.0000,-0.0200,-0.0025,0.0028,-9.8003,-0.0004,0.0003,-0.0001,0.700,0.700,0.700,0.700,684,33,269 +269,2.690,0.0000,0.0000,-0.0200,-0.0028,0.0005,-9.8000,0.0000,-0.0009,-0.0001,0.700,0.700,0.700,0.700,686,33,270 +270,2.700,0.0000,0.0000,-0.0200,-0.0040,0.0019,-9.7954,-0.0001,0.0007,-0.0007,0.700,0.700,0.700,0.700,689,33,271 +271,2.710,0.0000,0.0000,-0.0200,-0.0014,0.0000,-9.8041,-0.0013,-0.0017,0.0017,0.700,0.700,0.700,0.700,691,33,272 +272,2.720,0.0000,0.0000,-0.0200,0.0009,-0.0018,-9.7974,0.0001,0.0007,0.0007,0.700,0.700,0.700,0.700,694,34,273 +273,2.730,0.0000,0.0000,-0.0200,-0.0012,-0.0019,-9.8000,-0.0003,-0.0022,0.0003,0.700,0.700,0.700,0.700,696,34,274 +274,2.740,0.0000,0.0000,-0.0200,0.0010,0.0003,-9.7974,0.0006,0.0004,-0.0003,0.700,0.700,0.700,0.700,699,34,275 +275,2.750,0.0000,0.0000,-0.0200,0.0018,-0.0022,-9.7996,-0.0002,-0.0018,-0.0012,0.700,0.700,0.700,0.700,701,34,276 +276,2.760,0.0000,0.0000,-0.0200,0.0025,-0.0012,-9.7984,0.0003,-0.0011,0.0001,0.700,0.700,0.700,0.700,704,34,277 +277,2.770,0.0000,0.0000,-0.0200,-0.0001,0.0014,-9.8026,-0.0001,0.0002,0.0001,0.700,0.700,0.700,0.700,706,34,278 +278,2.780,0.0000,0.0000,-0.0200,-0.0039,0.0000,-9.8009,0.0018,-0.0016,0.0002,0.700,0.700,0.700,0.700,709,34,279 +279,2.790,0.0000,0.0000,-0.0200,-0.0014,-0.0007,-9.7991,0.0006,-0.0009,-0.0000,0.700,0.700,0.700,0.700,711,34,280 +280,2.800,0.0000,0.0000,-0.0200,0.0009,0.0006,-9.8029,0.0006,0.0006,-0.0006,0.700,0.700,0.700,0.700,713,35,281 +281,2.810,0.0000,0.0000,-0.0200,-0.0024,-0.0018,-9.8010,-0.0029,-0.0011,-0.0004,0.700,0.700,0.700,0.700,715,35,282 +282,2.820,0.0000,0.0000,-0.0200,0.0006,0.0006,-9.7979,0.0009,0.0001,0.0007,0.700,0.700,0.700,0.700,718,35,283 +283,2.830,0.0000,0.0000,-0.0200,0.0005,-0.0032,-9.7969,-0.0021,0.0001,0.0004,0.700,0.700,0.700,0.700,720,35,284 +284,2.840,0.0000,0.0000,-0.0200,0.0030,0.0024,-9.7999,0.0001,-0.0023,0.0008,0.700,0.700,0.700,0.700,722,35,285 +285,2.850,0.0000,0.0000,-0.0200,0.0038,-0.0005,-9.8054,-0.0009,-0.0006,-0.0013,0.700,0.700,0.700,0.700,724,35,286 +286,2.860,0.0000,0.0000,-0.0200,0.0007,0.0036,-9.8001,-0.0000,0.0003,0.0014,0.700,0.700,0.700,0.700,727,35,287 +287,2.870,0.0000,0.0000,-0.0200,0.0007,-0.0018,-9.8016,-0.0006,0.0019,-0.0003,0.700,0.700,0.700,0.700,729,35,288 +288,2.880,0.0000,0.0000,-0.0200,-0.0009,0.0010,-9.7988,0.0012,-0.0005,0.0006,0.700,0.700,0.700,0.700,731,35,289 +289,2.890,0.0000,0.0000,-0.0200,-0.0039,-0.0023,-9.8026,-0.0009,0.0005,-0.0006,0.700,0.700,0.700,0.700,733,36,290 +290,2.900,0.0000,0.0000,-0.0200,-0.0003,-0.0045,-9.7997,0.0004,-0.0011,0.0007,0.700,0.700,0.700,0.700,736,36,291 +291,2.910,0.0000,0.0000,-0.0200,0.0012,-0.0009,-9.8026,-0.0011,0.0006,-0.0003,0.700,0.700,0.700,0.700,738,36,292 +292,2.920,0.0000,0.0000,-0.0200,0.0000,0.0039,-9.7962,0.0012,0.0002,-0.0000,0.700,0.700,0.700,0.700,740,36,293 +293,2.930,0.0000,0.0000,-0.0200,0.0004,0.0003,-9.8022,-0.0009,0.0016,0.0002,0.700,0.700,0.700,0.700,743,36,294 +294,2.940,0.0000,0.0000,-0.0200,-0.0013,-0.0035,-9.7990,0.0014,-0.0009,-0.0004,0.700,0.700,0.700,0.700,745,36,295 +295,2.950,0.0000,0.0000,-0.0200,-0.0025,-0.0010,-9.7957,0.0009,-0.0004,0.0015,0.700,0.700,0.700,0.700,748,36,296 +296,2.960,0.0000,0.0000,-0.0200,0.0011,-0.0017,-9.7989,-0.0014,-0.0009,0.0013,0.700,0.700,0.700,0.700,750,36,297 +297,2.970,0.0000,0.0000,-0.0200,-0.0023,0.0026,-9.7996,-0.0002,-0.0012,-0.0005,0.700,0.700,0.700,0.700,752,37,298 +298,2.980,0.0000,0.0000,-0.0200,0.0018,0.0029,-9.8012,-0.0004,-0.0006,-0.0015,0.700,0.700,0.700,0.700,754,37,299 +299,2.990,0.0000,0.0000,-0.0200,0.0017,-0.0011,-9.8033,0.0006,-0.0002,0.0005,0.700,0.700,0.700,0.700,757,37,300 +300,3.000,0.0000,0.0000,-0.0200,-0.0008,0.0022,-9.8028,0.0001,-0.0009,0.0001,0.700,0.700,0.700,0.700,759,37,301 +301,3.010,0.0000,0.0000,-0.0200,0.0042,-0.0010,-9.8019,0.0001,-0.0002,0.0004,0.700,0.700,0.700,0.700,762,37,302 +302,3.020,0.0000,0.0000,-0.0200,0.0027,-0.0032,-9.8004,-0.0006,0.0000,0.0004,0.700,0.700,0.700,0.700,764,37,303 +303,3.030,0.0000,0.0000,-0.0200,-0.0029,-0.0003,-9.7986,-0.0007,-0.0009,0.0006,0.700,0.700,0.700,0.700,767,37,304 +304,3.040,0.0000,0.0000,-0.0200,0.0012,0.0019,-9.7983,-0.0004,0.0008,-0.0006,0.700,0.700,0.700,0.700,769,37,305 +305,3.050,0.0000,0.0000,-0.0200,0.0039,0.0010,-9.7994,0.0001,-0.0000,-0.0010,0.700,0.700,0.700,0.700,771,37,306 +306,3.060,0.0000,0.0000,-0.0200,-0.0008,0.0010,-9.8034,-0.0021,-0.0003,-0.0012,0.700,0.700,0.700,0.700,774,38,307 +307,3.070,0.0000,0.0000,-0.0200,-0.0015,-0.0011,-9.8047,0.0008,0.0001,0.0007,0.700,0.700,0.700,0.700,776,38,308 +308,3.080,0.0000,0.0000,-0.0200,-0.0011,-0.0002,-9.8018,-0.0005,-0.0001,0.0010,0.700,0.700,0.700,0.700,778,38,309 +309,3.090,0.0000,0.0000,-0.0200,0.0006,0.0007,-9.7990,-0.0016,-0.0001,-0.0010,0.700,0.700,0.700,0.700,781,38,310 +310,3.100,0.0000,0.0000,-0.0200,-0.0000,0.0004,-9.7999,-0.0013,0.0010,-0.0001,0.700,0.700,0.700,0.700,783,38,311 +311,3.110,0.0000,0.0000,-0.0200,0.0014,-0.0012,-9.7987,-0.0008,-0.0009,0.0006,0.700,0.700,0.700,0.700,785,38,312 +312,3.120,0.0000,0.0000,-0.0200,-0.0003,0.0016,-9.7982,-0.0001,0.0018,-0.0008,0.700,0.700,0.700,0.700,787,38,313 +313,3.130,0.0000,0.0000,-0.0200,-0.0006,0.0023,-9.8009,0.0003,0.0004,-0.0003,0.700,0.700,0.700,0.700,789,38,314 +314,3.140,0.0000,0.0000,-0.0200,0.0049,0.0020,-9.7981,-0.0017,-0.0004,-0.0011,0.700,0.700,0.700,0.700,792,39,315 +315,3.150,0.0000,0.0000,-0.0200,0.0049,-0.0022,-9.7967,0.0008,0.0011,-0.0008,0.700,0.700,0.700,0.700,794,39,316 +316,3.160,0.0000,0.0000,-0.0200,0.0013,-0.0024,-9.7999,0.0003,0.0001,-0.0006,0.700,0.700,0.700,0.700,796,39,317 +317,3.170,0.0000,0.0000,-0.0200,0.0025,0.0022,-9.8012,-0.0001,-0.0006,0.0017,0.700,0.700,0.700,0.700,798,39,318 +318,3.180,0.0000,0.0000,-0.0200,0.0011,-0.0020,-9.8000,0.0002,-0.0007,-0.0010,0.700,0.700,0.700,0.700,801,39,319 +319,3.190,0.0000,0.0000,-0.0200,-0.0002,0.0015,-9.8005,-0.0013,-0.0012,-0.0007,0.700,0.700,0.700,0.700,803,39,320 +320,3.200,0.0000,0.0000,-0.0200,0.0023,0.0047,-9.8007,0.0002,-0.0014,-0.0013,0.700,0.700,0.700,0.700,805,39,321 +321,3.210,0.0000,0.0000,-0.0200,0.0029,0.0015,-9.8048,0.0006,0.0022,-0.0003,0.700,0.700,0.700,0.700,808,39,322 +322,3.220,0.0000,0.0000,-0.0200,0.0001,0.0017,-9.8009,-0.0005,0.0006,-0.0002,0.700,0.700,0.700,0.700,810,39,323 +323,3.230,0.0000,0.0000,-0.0200,0.0001,0.0005,-9.8021,0.0008,0.0000,-0.0004,0.700,0.700,0.700,0.700,813,40,324 +324,3.240,0.0000,0.0000,-0.0200,-0.0027,-0.0017,-9.7986,0.0009,-0.0007,0.0001,0.700,0.700,0.700,0.700,815,40,325 +325,3.250,0.0000,0.0000,-0.0200,0.0038,0.0011,-9.8023,-0.0003,-0.0005,0.0014,0.700,0.700,0.700,0.700,817,40,326 +326,3.260,0.0000,0.0000,-0.0200,0.0007,0.0006,-9.8017,-0.0003,0.0014,0.0007,0.700,0.700,0.700,0.700,820,40,327 +327,3.270,0.0000,0.0000,-0.0200,0.0002,0.0028,-9.7963,-0.0002,0.0005,-0.0001,0.700,0.700,0.700,0.700,822,40,328 +328,3.280,0.0000,0.0000,-0.0200,-0.0024,0.0028,-9.8031,0.0001,-0.0010,-0.0016,0.700,0.700,0.700,0.700,824,40,329 +329,3.290,0.0000,0.0000,-0.0200,-0.0016,0.0059,-9.7991,0.0000,-0.0012,-0.0006,0.700,0.700,0.700,0.700,827,40,330 +330,3.300,0.0000,0.0000,-0.0200,-0.0040,-0.0025,-9.7998,-0.0009,0.0000,0.0002,0.700,0.700,0.700,0.700,829,40,331 +331,3.310,0.0000,0.0000,-0.0200,-0.0018,-0.0011,-9.8005,-0.0011,0.0004,0.0004,0.700,0.700,0.700,0.700,831,40,332 +332,3.320,0.0000,0.0000,-0.0200,-0.0027,0.0018,-9.8011,-0.0009,-0.0001,0.0005,0.700,0.700,0.700,0.700,833,41,333 +333,3.330,0.0000,0.0000,-0.0200,-0.0034,-0.0036,-9.7977,-0.0006,0.0016,-0.0019,0.700,0.700,0.700,0.700,836,41,334 +334,3.340,0.0000,0.0000,-0.0200,0.0009,-0.0053,-9.8002,-0.0010,0.0009,-0.0027,0.700,0.700,0.700,0.700,838,41,335 +335,3.350,0.0000,0.0000,-0.0200,0.0003,-0.0036,-9.7953,0.0012,-0.0008,0.0009,0.700,0.700,0.700,0.700,841,41,336 +336,3.360,0.0000,0.0000,-0.0200,0.0000,0.0039,-9.7978,0.0006,0.0009,0.0008,0.700,0.700,0.700,0.700,843,41,337 +337,3.370,0.0000,0.0000,-0.0200,0.0014,-0.0009,-9.8055,-0.0004,-0.0003,0.0001,0.700,0.700,0.700,0.700,845,41,338 +338,3.380,0.0000,0.0000,-0.0200,-0.0012,0.0012,-9.8025,0.0010,-0.0011,0.0011,0.700,0.700,0.700,0.700,848,41,339 +339,3.390,0.0000,0.0000,-0.0200,-0.0028,-0.0021,-9.8012,-0.0008,-0.0008,0.0003,0.700,0.700,0.700,0.700,850,41,340 +340,3.400,0.0000,0.0000,-0.0200,0.0037,0.0004,-9.8031,0.0006,-0.0006,0.0008,0.700,0.700,0.700,0.700,852,42,341 +341,3.410,0.0000,0.0000,-0.0200,-0.0048,-0.0011,-9.8004,0.0003,-0.0004,0.0011,0.700,0.700,0.700,0.700,854,42,342 +342,3.420,0.0000,0.0000,-0.0200,-0.0008,0.0033,-9.8009,-0.0010,0.0003,0.0013,0.700,0.700,0.700,0.700,857,42,343 +343,3.430,0.0000,0.0000,-0.0200,0.0017,0.0004,-9.7978,-0.0012,-0.0003,0.0009,0.700,0.700,0.700,0.700,859,42,344 +344,3.440,0.0000,0.0000,-0.0200,-0.0001,0.0003,-9.8012,0.0003,0.0005,0.0008,0.700,0.700,0.700,0.700,861,42,345 +345,3.450,0.0000,0.0000,-0.0200,0.0011,-0.0012,-9.7979,0.0014,0.0005,-0.0000,0.700,0.700,0.700,0.700,864,42,346 +346,3.460,0.0000,0.0000,-0.0200,-0.0019,-0.0006,-9.8007,0.0005,-0.0012,-0.0002,0.700,0.700,0.700,0.700,866,42,347 +347,3.470,0.0000,0.0000,-0.0200,-0.0003,0.0005,-9.7987,-0.0002,0.0013,0.0010,0.700,0.700,0.700,0.700,868,42,348 +348,3.480,0.0000,0.0000,-0.0200,-0.0008,-0.0030,-9.7986,-0.0006,0.0002,-0.0005,0.700,0.700,0.700,0.700,871,42,349 +349,3.490,0.0000,0.0000,-0.0200,-0.0010,0.0008,-9.7980,0.0011,0.0003,0.0007,0.700,0.700,0.700,0.700,873,43,350 +350,3.500,0.0000,0.0000,-0.0200,0.0006,-0.0011,-9.8013,-0.0011,0.0009,0.0003,0.700,0.700,0.700,0.700,875,43,351 +351,3.510,0.0000,0.0000,-0.0200,-0.0004,-0.0026,-9.7959,-0.0009,-0.0004,0.0009,0.700,0.700,0.700,0.700,877,43,352 +352,3.520,0.0000,0.0000,-0.0200,-0.0027,0.0035,-9.7987,-0.0001,0.0007,0.0001,0.700,0.700,0.700,0.700,880,43,353 +353,3.530,0.0000,0.0000,-0.0200,0.0047,-0.0025,-9.8026,0.0009,-0.0010,-0.0012,0.700,0.700,0.700,0.700,882,43,354 +354,3.540,0.0000,0.0000,-0.0200,0.0027,0.0012,-9.7996,-0.0009,0.0009,-0.0002,0.700,0.700,0.700,0.700,885,43,355 +355,3.550,0.0000,0.0000,-0.0200,0.0014,0.0010,-9.7982,-0.0007,0.0003,-0.0008,0.700,0.700,0.700,0.700,887,43,356 +356,3.560,0.0000,0.0000,-0.0200,-0.0001,0.0020,-9.7996,0.0004,-0.0002,0.0012,0.700,0.700,0.700,0.700,890,43,357 +357,3.570,0.0000,0.0000,-0.0200,-0.0058,-0.0006,-9.8004,0.0008,0.0003,-0.0000,0.700,0.700,0.700,0.700,892,44,358 +358,3.580,0.0000,0.0000,-0.0200,-0.0030,0.0019,-9.8020,0.0005,0.0002,-0.0006,0.700,0.700,0.700,0.700,894,44,359 +359,3.590,0.0000,0.0000,-0.0200,0.0024,-0.0035,-9.8002,-0.0008,0.0007,0.0008,0.700,0.700,0.700,0.700,896,44,360 +360,3.600,0.0000,0.0000,-0.0200,0.0035,0.0010,-9.8018,0.0011,-0.0001,0.0004,0.700,0.700,0.700,0.700,898,44,361 +361,3.610,0.0000,0.0000,-0.0200,-0.0008,-0.0002,-9.7995,0.0007,-0.0005,0.0008,0.700,0.700,0.700,0.700,901,44,362 +362,3.620,0.0000,0.0000,-0.0200,0.0002,-0.0003,-9.7996,-0.0014,0.0026,0.0009,0.700,0.700,0.700,0.700,903,44,363 +363,3.630,0.0000,0.0000,-0.0200,-0.0039,0.0019,-9.8007,-0.0009,0.0003,-0.0008,0.700,0.700,0.700,0.700,905,44,364 +364,3.640,0.0000,0.0000,-0.0200,0.0020,-0.0003,-9.8000,-0.0003,0.0009,0.0020,0.700,0.700,0.700,0.700,908,44,365 +365,3.650,0.0000,0.0000,-0.0200,-0.0013,-0.0033,-9.8004,0.0003,-0.0006,-0.0010,0.700,0.700,0.700,0.700,910,44,366 +366,3.660,0.0000,0.0000,-0.0200,-0.0021,0.0010,-9.7970,-0.0003,0.0000,-0.0019,0.700,0.700,0.700,0.700,912,45,367 +367,3.670,0.0000,0.0000,-0.0200,0.0046,0.0031,-9.7976,-0.0006,0.0001,0.0003,0.700,0.700,0.700,0.700,915,45,368 +368,3.680,0.0000,0.0000,-0.0200,-0.0025,0.0010,-9.8020,-0.0002,0.0006,-0.0006,0.700,0.700,0.700,0.700,917,45,369 +369,3.690,0.0000,0.0000,-0.0200,0.0020,0.0011,-9.8011,-0.0002,0.0004,0.0009,0.700,0.700,0.700,0.700,920,45,370 +370,3.700,0.0000,0.0000,-0.0200,0.0014,-0.0021,-9.8007,0.0010,0.0007,-0.0007,0.700,0.700,0.700,0.700,922,45,371 +371,3.710,0.0000,0.0000,-0.0200,0.0031,0.0047,-9.8009,0.0004,0.0010,-0.0004,0.700,0.700,0.700,0.700,924,45,372 +372,3.720,0.0000,0.0000,-0.0200,-0.0006,0.0031,-9.7998,-0.0016,0.0002,-0.0016,0.700,0.700,0.700,0.700,926,45,373 +373,3.730,0.0000,0.0000,-0.0200,0.0034,-0.0008,-9.8001,0.0011,-0.0012,-0.0000,0.700,0.700,0.700,0.700,929,45,374 +374,3.740,0.0000,0.0000,-0.0200,-0.0009,0.0001,-9.7996,-0.0009,-0.0004,0.0007,0.700,0.700,0.700,0.700,931,45,375 +375,3.750,0.0000,0.0000,-0.0200,-0.0016,-0.0024,-9.8012,0.0004,0.0013,-0.0014,0.700,0.700,0.700,0.700,933,46,376 +376,3.760,0.0000,0.0000,-0.0200,0.0003,0.0026,-9.8013,0.0005,0.0023,-0.0012,0.700,0.700,0.700,0.700,935,46,377 +377,3.770,0.0000,0.0000,-0.0200,0.0006,0.0005,-9.7999,-0.0014,-0.0016,0.0001,0.700,0.700,0.700,0.700,938,46,378 +378,3.780,0.0000,0.0000,-0.0200,-0.0005,0.0017,-9.8002,0.0016,-0.0006,-0.0006,0.700,0.700,0.700,0.700,940,46,379 +379,3.790,0.0000,0.0000,-0.0200,-0.0017,0.0011,-9.8052,-0.0004,-0.0001,0.0005,0.700,0.700,0.700,0.700,943,46,380 +380,3.800,0.0000,0.0000,-0.0200,0.0007,-0.0020,-9.8017,-0.0012,-0.0006,0.0016,0.700,0.700,0.700,0.700,945,46,381 +381,3.810,0.0000,0.0000,-0.0200,0.0040,0.0001,-9.8006,0.0006,-0.0009,-0.0005,0.700,0.700,0.700,0.700,947,46,382 +382,3.820,0.0000,0.0000,-0.0200,-0.0013,-0.0017,-9.8022,-0.0012,-0.0006,-0.0006,0.700,0.700,0.700,0.700,950,46,383 +383,3.830,0.0000,0.0000,-0.0200,-0.0001,-0.0026,-9.7978,-0.0004,-0.0006,0.0003,0.700,0.700,0.700,0.700,952,47,384 +384,3.840,0.0000,0.0000,-0.0200,-0.0025,-0.0016,-9.8036,0.0000,0.0015,0.0004,0.700,0.700,0.700,0.700,954,47,385 +385,3.850,0.0000,0.0000,-0.0200,-0.0001,0.0013,-9.8019,0.0001,0.0001,-0.0012,0.700,0.700,0.700,0.700,957,47,386 +386,3.860,0.0000,0.0000,-0.0200,-0.0011,-0.0069,-9.8012,0.0001,-0.0018,-0.0010,0.700,0.700,0.700,0.700,959,47,387 +387,3.870,0.0000,0.0000,-0.0200,0.0022,0.0011,-9.8021,-0.0005,-0.0007,-0.0016,0.700,0.700,0.700,0.700,961,47,388 +388,3.880,0.0000,0.0000,-0.0200,0.0001,-0.0013,-9.7965,-0.0009,-0.0009,-0.0010,0.700,0.700,0.700,0.700,963,47,389 +389,3.890,0.0000,0.0000,-0.0200,-0.0041,0.0007,-9.8002,0.0005,-0.0013,0.0011,0.700,0.700,0.700,0.700,966,47,390 +390,3.900,0.0000,0.0000,-0.0200,-0.0036,-0.0031,-9.8025,0.0000,0.0005,0.0007,0.700,0.700,0.700,0.700,968,47,391 +391,3.910,0.0000,0.0000,-0.0200,-0.0006,-0.0018,-9.7996,-0.0008,0.0009,0.0012,0.700,0.700,0.700,0.700,971,47,392 +392,3.920,0.0000,0.0000,-0.0200,0.0009,-0.0013,-9.8001,-0.0013,0.0002,0.0004,0.700,0.700,0.700,0.700,973,48,393 +393,3.930,0.0000,0.0000,-0.0200,0.0010,-0.0003,-9.7987,-0.0001,0.0009,0.0017,0.700,0.700,0.700,0.700,975,48,394 +394,3.940,0.0000,0.0000,-0.0200,0.0012,-0.0005,-9.8030,-0.0005,-0.0007,-0.0000,0.700,0.700,0.700,0.700,977,48,395 +395,3.950,0.0000,0.0000,-0.0200,-0.0024,0.0010,-9.8000,0.0000,-0.0001,-0.0007,0.700,0.700,0.700,0.700,980,48,396 +396,3.960,0.0000,0.0000,-0.0200,0.0003,0.0000,-9.7965,0.0009,-0.0008,-0.0003,0.700,0.700,0.700,0.700,982,48,397 +397,3.970,0.0000,0.0000,-0.0200,-0.0029,-0.0017,-9.7973,-0.0002,0.0001,0.0005,0.700,0.700,0.700,0.700,984,48,398 +398,3.980,0.0000,0.0000,-0.0200,-0.0003,0.0010,-9.7985,0.0008,-0.0007,-0.0003,0.700,0.700,0.700,0.700,987,48,399 +399,3.990,0.0000,0.0000,-0.0200,0.0016,-0.0004,-9.8033,-0.0006,-0.0002,0.0002,0.700,0.700,0.700,0.700,989,48,400 +400,4.000,0.0000,0.0000,-0.0200,-0.0030,-0.0032,-9.7993,0.0000,-0.0014,-0.0018,0.700,0.700,0.700,0.700,991,48,401 +401,4.010,0.0000,0.0000,-0.0200,0.0027,-0.0007,-9.7991,-0.0010,0.0000,0.0004,0.700,0.700,0.700,0.700,993,49,402 +402,4.020,0.0000,0.0000,-0.0200,0.0003,-0.0015,-9.7979,0.0002,-0.0004,-0.0003,0.700,0.700,0.700,0.700,996,49,403 +403,4.030,0.0000,0.0000,-0.0200,0.0011,0.0019,-9.8018,0.0029,-0.0010,0.0000,0.700,0.700,0.700,0.700,998,49,404 +404,4.040,0.0000,0.0000,-0.0200,0.0023,0.0013,-9.7999,-0.0003,-0.0014,0.0002,0.700,0.700,0.700,0.700,1000,49,405 +405,4.050,0.0000,0.0000,-0.0200,0.0011,0.0035,-9.8006,-0.0005,-0.0000,0.0009,0.700,0.700,0.700,0.700,1002,49,406 +406,4.060,0.0000,0.0000,-0.0200,-0.0023,-0.0004,-9.7985,0.0004,0.0002,0.0012,0.700,0.700,0.700,0.700,1004,49,407 +407,4.070,0.0000,0.0000,-0.0200,0.0018,0.0039,-9.7999,-0.0013,-0.0012,0.0001,0.700,0.700,0.700,0.700,1007,49,408 +408,4.080,0.0000,0.0000,-0.0200,0.0006,0.0010,-9.8014,-0.0011,-0.0011,0.0011,0.700,0.700,0.700,0.700,1009,49,409 +409,4.090,0.0000,0.0000,-0.0200,-0.0011,0.0017,-9.8007,0.0002,-0.0006,0.0018,0.700,0.700,0.700,0.700,1012,50,410 +410,4.100,0.0000,0.0000,-0.0200,-0.0002,-0.0005,-9.7992,0.0020,0.0010,0.0002,0.700,0.700,0.700,0.700,1014,50,411 +411,4.110,0.0000,0.0000,-0.0200,0.0052,-0.0005,-9.7972,0.0003,-0.0010,-0.0008,0.700,0.700,0.700,0.700,1017,50,412 +412,4.120,0.0000,0.0000,-0.0200,0.0046,-0.0001,-9.7983,-0.0001,0.0007,-0.0004,0.700,0.700,0.700,0.700,1019,50,413 +413,4.130,0.0000,0.0000,-0.0200,-0.0023,0.0045,-9.7982,-0.0004,-0.0013,0.0002,0.700,0.700,0.700,0.700,1021,50,414 +414,4.140,0.0000,0.0000,-0.0200,0.0040,0.0021,-9.8007,-0.0006,-0.0008,0.0007,0.700,0.700,0.700,0.700,1024,50,415 +415,4.150,0.0000,0.0000,-0.0200,0.0021,-0.0009,-9.8000,-0.0007,-0.0010,-0.0005,0.700,0.700,0.700,0.700,1026,50,416 +416,4.160,0.0000,0.0000,-0.0200,0.0019,0.0006,-9.7967,-0.0003,-0.0015,-0.0012,0.700,0.700,0.700,0.700,1028,50,417 +417,4.170,0.0000,0.0000,-0.0200,0.0004,0.0004,-9.7975,0.0007,0.0019,0.0016,0.700,0.700,0.700,0.700,1030,50,418 +418,4.180,0.0000,0.0000,-0.0200,0.0020,0.0031,-9.8020,-0.0001,0.0007,-0.0001,0.700,0.700,0.700,0.700,1032,51,419 +419,4.190,0.0000,0.0000,-0.0200,0.0031,-0.0016,-9.7964,0.0001,0.0002,-0.0000,0.700,0.700,0.700,0.700,1035,51,420 +420,4.200,0.0000,0.0000,-0.0200,0.0032,-0.0026,-9.8004,-0.0005,-0.0004,0.0001,0.700,0.700,0.700,0.700,1037,51,421 +421,4.210,0.0000,0.0000,-0.0200,0.0004,-0.0002,-9.7990,0.0010,-0.0002,0.0010,0.700,0.700,0.700,0.700,1039,51,422 +422,4.220,0.0000,0.0000,-0.0200,-0.0003,-0.0006,-9.8042,-0.0006,-0.0006,-0.0002,0.700,0.700,0.700,0.700,1042,51,423 +423,4.230,0.0000,0.0000,-0.0200,-0.0002,-0.0018,-9.7996,0.0001,-0.0012,-0.0003,0.700,0.700,0.700,0.700,1044,51,424 +424,4.240,0.0000,0.0000,-0.0200,-0.0019,0.0012,-9.7996,0.0014,-0.0003,0.0006,0.700,0.700,0.700,0.700,1047,51,425 +425,4.250,0.0000,0.0000,-0.0200,0.0020,-0.0001,-9.8020,-0.0003,0.0012,0.0006,0.700,0.700,0.700,0.700,1049,51,426 +426,4.260,0.0000,0.0000,-0.0200,-0.0014,0.0006,-9.8003,-0.0000,-0.0016,-0.0006,0.700,0.700,0.700,0.700,1051,51,427 +427,4.270,0.0000,0.0000,-0.0200,0.0001,0.0018,-9.7989,-0.0002,0.0000,-0.0006,0.700,0.700,0.700,0.700,1053,52,428 +428,4.280,0.0000,0.0000,-0.0200,-0.0003,-0.0046,-9.8007,0.0003,-0.0007,-0.0001,0.700,0.700,0.700,0.700,1056,52,429 +429,4.290,0.0000,0.0000,-0.0200,0.0002,-0.0005,-9.8009,-0.0010,0.0006,-0.0017,0.700,0.700,0.700,0.700,1058,52,430 +430,4.300,0.0000,0.0000,-0.0200,-0.0033,0.0037,-9.7998,-0.0004,-0.0009,0.0001,0.700,0.700,0.700,0.700,1060,52,431 +431,4.310,0.0000,0.0000,-0.0200,0.0001,0.0032,-9.7985,0.0003,-0.0021,0.0007,0.700,0.700,0.700,0.700,1063,52,432 +432,4.320,0.0000,0.0000,-0.0200,-0.0013,0.0008,-9.8042,-0.0002,-0.0007,-0.0001,0.700,0.700,0.700,0.700,1065,52,433 +433,4.330,0.0000,0.0000,-0.0200,-0.0029,-0.0009,-9.8017,0.0002,0.0005,-0.0012,0.700,0.700,0.700,0.700,1067,52,434 +434,4.340,0.0000,0.0000,-0.0200,0.0006,0.0003,-9.7998,0.0002,-0.0002,-0.0000,0.700,0.700,0.700,0.700,1070,52,435 +435,4.350,0.0000,0.0000,-0.0200,-0.0001,-0.0014,-9.8002,-0.0001,0.0002,-0.0005,0.700,0.700,0.700,0.700,1072,53,436 +436,4.360,0.0000,0.0000,-0.0200,-0.0023,-0.0004,-9.7990,-0.0010,-0.0000,-0.0019,0.700,0.700,0.700,0.700,1074,53,437 +437,4.370,0.0000,0.0000,-0.0200,-0.0019,0.0023,-9.7992,-0.0008,0.0001,0.0002,0.700,0.700,0.700,0.700,1077,53,438 +438,4.380,0.0000,0.0000,-0.0200,-0.0043,0.0012,-9.7982,0.0014,0.0011,0.0004,0.700,0.700,0.700,0.700,1079,53,439 +439,4.390,0.0000,0.0000,-0.0200,-0.0007,-0.0016,-9.7985,0.0009,0.0009,-0.0004,0.700,0.700,0.700,0.700,1081,53,440 +440,4.400,0.0000,0.0000,-0.0200,0.0026,-0.0044,-9.8015,-0.0013,-0.0011,0.0007,0.700,0.700,0.700,0.700,1083,53,441 +441,4.410,0.0000,0.0000,-0.0200,0.0042,0.0027,-9.8018,-0.0001,-0.0009,-0.0004,0.700,0.700,0.700,0.700,1085,53,442 +442,4.420,0.0000,0.0000,-0.0200,-0.0015,-0.0012,-9.8021,0.0004,-0.0004,0.0005,0.700,0.700,0.700,0.700,1088,53,443 +443,4.430,0.0000,0.0000,-0.0200,0.0011,-0.0001,-9.8014,-0.0003,0.0006,0.0000,0.700,0.700,0.700,0.700,1090,53,444 +444,4.440,0.0000,0.0000,-0.0200,-0.0047,-0.0039,-9.7990,0.0000,0.0007,-0.0013,0.700,0.700,0.700,0.700,1092,54,445 +445,4.450,0.0000,0.0000,-0.0200,-0.0002,0.0023,-9.7991,0.0006,0.0003,-0.0008,0.700,0.700,0.700,0.700,1094,54,446 +446,4.460,0.0000,0.0000,-0.0200,0.0016,-0.0011,-9.7986,-0.0028,0.0006,0.0004,0.700,0.700,0.700,0.700,1097,54,447 +447,4.470,0.0000,0.0000,-0.0200,-0.0016,0.0011,-9.8035,-0.0003,-0.0020,-0.0001,0.700,0.700,0.700,0.700,1099,54,448 +448,4.480,0.0000,0.0000,-0.0200,0.0001,-0.0000,-9.7972,0.0007,-0.0000,0.0011,0.700,0.700,0.700,0.700,1102,54,449 +449,4.490,0.0000,0.0000,-0.0200,0.0001,-0.0017,-9.7987,0.0011,0.0011,-0.0019,0.700,0.700,0.700,0.700,1104,54,450 +450,4.500,0.0000,0.0000,-0.0200,0.0012,0.0001,-9.8038,0.0008,0.0003,-0.0012,0.700,0.700,0.700,0.700,1106,54,451 +451,4.510,0.0000,0.0000,-0.0200,0.0007,0.0016,-9.8007,0.0003,0.0000,0.0010,0.700,0.700,0.700,0.700,1108,54,452 +452,4.520,0.0000,0.0000,-0.0200,-0.0020,-0.0003,-9.8024,-0.0013,-0.0003,0.0001,0.700,0.700,0.700,0.700,1110,54,453 +453,4.530,0.0000,0.0000,-0.0200,-0.0012,0.0005,-9.7993,-0.0001,0.0011,0.0002,0.700,0.700,0.700,0.700,1113,55,454 +454,4.540,0.0000,0.0000,-0.0200,-0.0010,-0.0060,-9.8011,-0.0002,0.0015,-0.0003,0.700,0.700,0.700,0.700,1115,55,455 +455,4.550,0.0000,0.0000,-0.0200,-0.0067,0.0005,-9.8016,0.0012,0.0003,0.0007,0.700,0.700,0.700,0.700,1117,55,456 +456,4.560,0.0000,0.0000,-0.0200,-0.0044,0.0041,-9.7999,-0.0005,0.0004,0.0005,0.700,0.700,0.700,0.700,1119,55,457 +457,4.570,0.0000,0.0000,-0.0200,-0.0022,0.0045,-9.8046,0.0006,0.0016,0.0004,0.700,0.700,0.700,0.700,1122,55,458 +458,4.580,0.0000,0.0000,-0.0200,-0.0006,-0.0047,-9.7984,0.0018,0.0013,0.0004,0.700,0.700,0.700,0.700,1124,55,459 +459,4.590,0.0000,0.0000,-0.0200,-0.0004,0.0042,-9.8016,-0.0017,0.0012,-0.0003,0.700,0.700,0.700,0.700,1127,55,460 +460,4.600,0.0000,0.0000,-0.0200,-0.0041,-0.0025,-9.8031,-0.0010,-0.0020,-0.0007,0.700,0.700,0.700,0.700,1129,55,461 +461,4.610,0.0000,0.0000,-0.0200,0.0004,-0.0043,-9.7997,0.0010,-0.0002,0.0003,0.700,0.700,0.700,0.700,1131,55,462 +462,4.620,0.0000,0.0000,-0.0200,-0.0027,0.0026,-9.7972,-0.0005,0.0005,0.0000,0.700,0.700,0.700,0.700,1134,56,463 +463,4.630,0.0000,0.0000,-0.0200,0.0007,0.0018,-9.7970,0.0005,0.0016,0.0011,0.700,0.700,0.700,0.700,1136,56,464 +464,4.640,0.0000,0.0000,-0.0200,0.0009,-0.0005,-9.8019,0.0008,-0.0008,0.0012,0.700,0.700,0.700,0.700,1139,56,465 +465,4.650,0.0000,0.0000,-0.0200,-0.0023,-0.0007,-9.8030,-0.0003,0.0004,-0.0014,0.700,0.700,0.700,0.700,1141,56,466 +466,4.660,0.0000,0.0000,-0.0200,0.0006,-0.0026,-9.8025,0.0001,-0.0003,-0.0009,0.700,0.700,0.700,0.700,1143,56,467 +467,4.670,0.0000,0.0000,-0.0200,0.0023,0.0021,-9.7995,0.0000,-0.0010,0.0006,0.700,0.700,0.700,0.700,1146,56,468 +468,4.680,0.0000,0.0000,-0.0200,0.0007,-0.0007,-9.7981,0.0003,-0.0001,-0.0004,0.700,0.700,0.700,0.700,1148,56,469 +469,4.690,0.0000,0.0000,-0.0200,-0.0040,-0.0034,-9.7997,-0.0027,-0.0001,0.0003,0.700,0.700,0.700,0.700,1151,56,470 +470,4.700,0.0000,0.0000,-0.0200,-0.0014,-0.0012,-9.7985,-0.0019,-0.0011,-0.0009,0.700,0.700,0.700,0.700,1153,57,471 +471,4.710,0.0000,0.0000,-0.0200,0.0009,-0.0008,-9.8001,-0.0001,0.0004,-0.0001,0.700,0.700,0.700,0.700,1155,57,472 +472,4.720,0.0000,0.0000,-0.0200,0.0017,-0.0027,-9.7983,-0.0002,0.0000,-0.0011,0.700,0.700,0.700,0.700,1158,57,473 +473,4.730,0.0000,0.0000,-0.0200,0.0032,0.0022,-9.7996,0.0010,0.0003,-0.0016,0.700,0.700,0.700,0.700,1160,57,474 +474,4.740,0.0000,0.0000,-0.0200,-0.0010,-0.0030,-9.8016,-0.0016,0.0009,0.0001,0.700,0.700,0.700,0.700,1163,57,475 +475,4.750,0.0000,0.0000,-0.0200,-0.0003,0.0016,-9.7983,0.0002,-0.0002,0.0005,0.700,0.700,0.700,0.700,1165,57,476 +476,4.760,0.0000,0.0000,-0.0200,-0.0018,-0.0004,-9.8023,0.0001,0.0013,0.0014,0.700,0.700,0.700,0.700,1167,57,477 +477,4.770,0.0000,0.0000,-0.0200,0.0015,0.0021,-9.8033,-0.0009,0.0004,-0.0007,0.700,0.700,0.700,0.700,1169,57,478 +478,4.780,0.0000,0.0000,-0.0200,0.0006,0.0009,-9.7986,-0.0011,0.0004,0.0015,0.700,0.700,0.700,0.700,1172,58,479 +479,4.790,0.0000,0.0000,-0.0200,-0.0021,-0.0023,-9.8000,-0.0010,0.0007,0.0010,0.700,0.700,0.700,0.700,1174,58,480 +480,4.800,0.0000,0.0000,-0.0200,-0.0027,-0.0016,-9.8012,0.0003,-0.0011,-0.0005,0.700,0.700,0.700,0.700,1177,58,481 +481,4.810,0.0000,0.0000,-0.0200,0.0004,-0.0035,-9.7984,-0.0000,0.0008,-0.0014,0.700,0.700,0.700,0.700,1179,58,482 +482,4.820,0.0000,0.0000,-0.0200,0.0007,-0.0031,-9.7999,0.0001,-0.0014,0.0010,0.700,0.700,0.700,0.700,1181,58,483 +483,4.830,0.0000,0.0000,-0.0200,0.0007,0.0003,-9.8003,0.0017,0.0003,0.0002,0.700,0.700,0.700,0.700,1184,58,484 +484,4.840,0.0000,0.0000,-0.0200,-0.0040,0.0002,-9.7966,0.0012,-0.0008,0.0018,0.700,0.700,0.700,0.700,1186,58,485 +485,4.850,0.0000,0.0000,-0.0200,-0.0004,0.0021,-9.7994,-0.0001,0.0008,-0.0010,0.700,0.700,0.700,0.700,1189,58,486 +486,4.860,0.0000,0.0000,-0.0200,-0.0001,0.0012,-9.7995,0.0017,0.0004,-0.0020,0.700,0.700,0.700,0.700,1191,58,487 +487,4.870,0.0000,0.0000,-0.0200,-0.0048,-0.0006,-9.8021,0.0012,-0.0017,-0.0004,0.700,0.700,0.700,0.700,1194,59,488 +488,4.880,0.0000,0.0000,-0.0200,-0.0009,0.0006,-9.7985,-0.0001,0.0007,-0.0007,0.700,0.700,0.700,0.700,1196,59,489 +489,4.890,0.0000,0.0000,-0.0200,-0.0003,-0.0003,-9.7979,-0.0002,0.0002,0.0006,0.700,0.700,0.700,0.700,1199,59,490 +490,4.900,0.0000,0.0000,-0.0200,0.0009,-0.0022,-9.8016,0.0018,-0.0002,0.0014,0.700,0.700,0.700,0.700,1201,59,491 +491,4.910,0.0000,0.0000,-0.0200,-0.0008,-0.0021,-9.8048,0.0012,0.0011,-0.0008,0.700,0.700,0.700,0.700,1204,59,492 +492,4.920,0.0000,0.0000,-0.0200,0.0010,0.0009,-9.7985,-0.0007,0.0004,-0.0000,0.700,0.700,0.700,0.700,1206,59,493 +493,4.930,0.0000,0.0000,-0.0200,0.0016,0.0007,-9.8013,0.0002,0.0008,0.0010,0.700,0.700,0.700,0.700,1209,59,494 +494,4.940,0.0000,0.0000,-0.0200,0.0017,0.0036,-9.8019,-0.0014,0.0001,0.0008,0.700,0.700,0.700,0.700,1211,59,495 +495,4.950,0.0000,0.0000,-0.0200,-0.0023,-0.0016,-9.8032,-0.0004,-0.0008,-0.0010,0.700,0.700,0.700,0.700,1213,60,496 +496,4.960,0.0000,0.0000,-0.0200,-0.0021,-0.0006,-9.8030,0.0005,0.0002,0.0003,0.700,0.700,0.700,0.700,1216,60,497 +497,4.970,0.0000,0.0000,-0.0200,-0.0004,0.0002,-9.7958,0.0032,0.0021,-0.0012,0.700,0.700,0.700,0.700,1218,60,498 +498,4.980,0.0000,0.0000,-0.0200,0.0005,-0.0036,-9.7990,-0.0000,-0.0018,0.0000,0.700,0.700,0.700,0.700,1221,60,499 +499,4.990,0.0000,0.0000,-0.0200,-0.0000,0.0007,-9.8024,0.0004,-0.0013,-0.0005,0.700,0.700,0.700,0.700,1223,60,500 +500,5.000,0.0000,0.0000,-0.0200,-0.0004,0.0007,-9.7969,0.0002,0.0016,0.0006,0.700,0.700,0.700,0.700,1226,60,501 +501,5.010,0.0000,0.0000,-0.0200,0.0044,0.0003,-9.7974,0.0004,0.0012,-0.0008,0.700,0.700,0.700,0.700,1228,60,502 +502,5.020,0.0000,0.0000,-0.0200,0.0033,0.0004,-9.7982,0.0013,0.0001,-0.0000,0.700,0.700,0.700,0.700,1230,60,503 +503,5.030,0.0000,0.0000,-0.0200,0.0018,-0.0004,-9.7975,-0.0003,-0.0001,-0.0011,0.700,0.700,0.700,0.700,1233,61,504 +504,5.040,0.0000,0.0000,-0.0200,0.0025,0.0005,-9.8011,0.0002,0.0005,0.0005,0.700,0.700,0.700,0.700,1235,61,505 +505,5.050,0.0000,0.0000,-0.0200,0.0022,0.0031,-9.7991,0.0008,-0.0001,-0.0010,0.700,0.700,0.700,0.700,1237,61,506 +506,5.060,0.0000,0.0000,-0.0200,0.0009,0.0012,-9.8020,-0.0005,0.0011,0.0005,0.700,0.700,0.700,0.700,1240,61,507 +507,5.070,0.0000,0.0000,-0.0200,0.0026,0.0025,-9.8007,-0.0016,0.0015,-0.0005,0.700,0.700,0.700,0.700,1242,61,508 +508,5.080,0.0000,0.0000,-0.0200,-0.0005,-0.0006,-9.7987,0.0006,0.0002,0.0002,0.700,0.700,0.700,0.700,1244,61,509 +509,5.090,0.0000,0.0000,-0.0200,-0.0035,-0.0001,-9.7985,-0.0007,-0.0009,0.0022,0.700,0.700,0.700,0.700,1247,61,510 +510,5.100,0.0000,0.0000,-0.0200,-0.0017,-0.0001,-9.7971,-0.0002,0.0017,0.0011,0.700,0.700,0.700,0.700,1249,61,511 +511,5.110,0.0000,0.0000,-0.0200,0.0005,-0.0023,-9.7989,0.0001,0.0010,0.0009,0.700,0.700,0.700,0.700,1252,62,512 +512,5.120,0.0000,0.0000,-0.0200,-0.0004,0.0005,-9.8032,-0.0004,-0.0018,-0.0003,0.700,0.700,0.700,0.700,1254,62,513 +513,5.130,0.0000,0.0000,-0.0200,-0.0006,0.0017,-9.7988,-0.0001,-0.0006,-0.0007,0.700,0.700,0.700,0.700,1256,62,514 +514,5.140,0.0000,0.0000,-0.0200,-0.0017,-0.0025,-9.8000,0.0013,-0.0012,-0.0014,0.700,0.700,0.700,0.700,1258,62,515 +515,5.150,0.0000,0.0000,-0.0200,-0.0016,0.0019,-9.8016,0.0008,-0.0006,-0.0005,0.700,0.700,0.700,0.700,1261,62,516 +516,5.160,0.0000,0.0000,-0.0200,-0.0005,-0.0009,-9.8025,0.0000,-0.0000,-0.0007,0.700,0.700,0.700,0.700,1263,62,517 +517,5.170,0.0000,0.0000,-0.0200,0.0014,-0.0011,-9.8009,-0.0008,0.0003,0.0011,0.700,0.700,0.700,0.700,1266,62,518 +518,5.180,0.0000,0.0000,-0.0200,-0.0015,-0.0011,-9.7996,-0.0006,0.0007,0.0002,0.700,0.700,0.700,0.700,1268,62,519 +519,5.190,0.0000,0.0000,-0.0200,-0.0030,-0.0029,-9.8022,-0.0002,0.0002,-0.0018,0.700,0.700,0.700,0.700,1270,62,520 +520,5.200,0.0000,0.0000,-0.0200,0.0020,0.0004,-9.8009,-0.0001,0.0005,0.0010,0.700,0.700,0.700,0.700,1272,63,521 +521,5.210,0.0000,0.0000,-0.0200,-0.0006,-0.0027,-9.7981,-0.0014,-0.0005,0.0008,0.700,0.700,0.700,0.700,1274,63,522 +522,5.220,0.0000,0.0000,-0.0200,-0.0018,0.0015,-9.8032,0.0010,0.0003,-0.0012,0.700,0.700,0.700,0.700,1277,63,523 +523,5.230,0.0000,0.0000,-0.0200,-0.0019,-0.0004,-9.8012,0.0004,0.0015,0.0008,0.700,0.700,0.700,0.700,1279,63,524 +524,5.240,0.0000,0.0000,-0.0200,-0.0002,-0.0000,-9.7969,-0.0009,0.0001,-0.0019,0.700,0.700,0.700,0.700,1281,63,525 +525,5.250,0.0000,0.0000,-0.0200,0.0006,-0.0027,-9.7996,-0.0001,-0.0000,-0.0002,0.700,0.700,0.700,0.700,1284,63,526 +526,5.260,0.0000,0.0000,-0.0200,0.0008,-0.0025,-9.8008,-0.0001,-0.0009,0.0014,0.700,0.700,0.700,0.700,1286,63,527 +527,5.270,0.0000,0.0000,-0.0200,-0.0019,0.0013,-9.8001,0.0003,-0.0008,0.0004,0.700,0.700,0.700,0.700,1289,63,528 +528,5.280,0.0000,0.0000,-0.0200,-0.0018,0.0031,-9.7973,0.0013,0.0007,-0.0016,0.700,0.700,0.700,0.700,1291,63,529 +529,5.290,0.0000,0.0000,-0.0200,0.0022,0.0023,-9.8008,-0.0013,0.0001,0.0020,0.700,0.700,0.700,0.700,1293,64,530 +530,5.300,0.0000,0.0000,-0.0200,-0.0011,-0.0010,-9.8002,-0.0000,-0.0001,0.0013,0.700,0.700,0.700,0.700,1295,64,531 +531,5.310,0.0000,0.0000,-0.0200,-0.0019,-0.0011,-9.7993,0.0003,-0.0012,-0.0003,0.700,0.700,0.700,0.700,1297,64,532 +532,5.320,0.0000,0.0000,-0.0200,0.0012,-0.0027,-9.7977,-0.0001,-0.0006,0.0011,0.700,0.700,0.700,0.700,1300,64,533 +533,5.330,0.0000,0.0000,-0.0200,0.0010,-0.0002,-9.7997,0.0013,-0.0008,0.0002,0.700,0.700,0.700,0.700,1302,64,534 +534,5.340,0.0000,0.0000,-0.0200,-0.0025,0.0012,-9.7969,0.0005,-0.0004,-0.0009,0.700,0.700,0.700,0.700,1304,64,535 +535,5.350,0.0000,0.0000,-0.0200,0.0002,0.0019,-9.7969,-0.0008,-0.0010,0.0007,0.700,0.700,0.700,0.700,1307,64,536 +536,5.360,0.0000,0.0000,-0.0200,0.0009,-0.0022,-9.8030,-0.0008,-0.0005,0.0003,0.700,0.700,0.700,0.700,1309,64,537 +537,5.370,0.0000,0.0000,-0.0200,0.0012,-0.0004,-9.7981,-0.0010,0.0004,0.0011,0.700,0.700,0.700,0.700,1312,65,538 +538,5.380,0.0000,0.0000,-0.0200,-0.0013,-0.0028,-9.8028,0.0009,0.0007,0.0005,0.700,0.700,0.700,0.700,1314,65,539 +539,5.390,0.0000,0.0000,-0.0200,0.0019,-0.0021,-9.7983,-0.0008,-0.0011,0.0004,0.700,0.700,0.700,0.700,1316,65,540 +540,5.400,0.0000,0.0000,-0.0200,-0.0011,0.0009,-9.8016,0.0010,-0.0001,0.0015,0.700,0.700,0.700,0.700,1318,65,541 +541,5.410,0.0000,0.0000,-0.0200,-0.0032,-0.0021,-9.8034,0.0006,0.0008,-0.0005,0.700,0.700,0.700,0.700,1321,65,542 +542,5.420,0.0000,0.0000,-0.0200,0.0027,0.0014,-9.8027,-0.0014,0.0011,-0.0021,0.700,0.700,0.700,0.700,1323,65,543 +543,5.430,0.0000,0.0000,-0.0200,-0.0006,-0.0012,-9.7987,-0.0007,-0.0014,-0.0004,0.700,0.700,0.700,0.700,1325,65,544 +544,5.440,0.0000,0.0000,-0.0200,0.0017,0.0026,-9.8007,-0.0013,-0.0008,0.0006,0.700,0.700,0.700,0.700,1328,65,545 +545,5.450,0.0000,0.0000,-0.0200,0.0008,0.0025,-9.8005,-0.0003,-0.0002,-0.0002,0.700,0.700,0.700,0.700,1330,65,546 +546,5.460,0.0000,0.0000,-0.0200,-0.0025,0.0012,-9.8042,0.0006,-0.0000,-0.0004,0.700,0.700,0.700,0.700,1332,66,547 +547,5.470,0.0000,0.0000,-0.0200,-0.0051,-0.0030,-9.8006,-0.0002,0.0016,0.0005,0.700,0.700,0.700,0.700,1335,66,548 +548,5.480,0.0000,0.0000,-0.0200,0.0005,0.0020,-9.8006,0.0014,-0.0009,0.0003,0.700,0.700,0.700,0.700,1337,66,549 +549,5.490,0.0000,0.0000,-0.0200,-0.0004,-0.0036,-9.8014,0.0004,0.0003,-0.0015,0.700,0.700,0.700,0.700,1339,66,550 +550,5.500,0.0000,0.0000,-0.0200,0.0037,-0.0059,-9.8023,-0.0012,0.0000,-0.0007,0.700,0.700,0.700,0.700,1341,66,551 +551,5.510,0.0000,0.0000,-0.0200,0.0017,-0.0008,-9.7980,0.0005,-0.0007,0.0008,0.700,0.700,0.700,0.700,1344,66,552 +552,5.520,0.0000,0.0000,-0.0200,0.0006,-0.0017,-9.8002,0.0000,-0.0009,-0.0005,0.700,0.700,0.700,0.700,1346,66,553 +553,5.530,0.0000,0.0000,-0.0200,-0.0012,0.0006,-9.7982,-0.0001,-0.0002,0.0004,0.700,0.700,0.700,0.700,1349,66,554 +554,5.540,0.0000,0.0000,-0.0200,0.0009,-0.0005,-9.8015,0.0002,0.0004,0.0003,0.700,0.700,0.700,0.700,1351,66,555 +555,5.550,0.0000,0.0000,-0.0200,-0.0002,0.0005,-9.7984,0.0004,0.0001,-0.0002,0.700,0.700,0.700,0.700,1353,67,556 +556,5.560,0.0000,0.0000,-0.0200,-0.0011,0.0006,-9.8008,-0.0012,-0.0004,0.0003,0.700,0.700,0.700,0.700,1356,67,557 +557,5.570,0.0000,0.0000,-0.0200,-0.0011,-0.0022,-9.8023,-0.0000,0.0004,-0.0007,0.700,0.700,0.700,0.700,1358,67,558 +558,5.580,0.0000,0.0000,-0.0200,0.0022,-0.0016,-9.7970,0.0004,0.0012,-0.0010,0.700,0.700,0.700,0.700,1360,67,559 +559,5.590,0.0000,0.0000,-0.0200,0.0020,-0.0030,-9.8039,0.0000,0.0000,0.0001,0.700,0.700,0.700,0.700,1362,67,560 +560,5.600,0.0000,0.0000,-0.0200,0.0011,0.0035,-9.8012,-0.0001,0.0003,-0.0003,0.700,0.700,0.700,0.700,1365,67,561 +561,5.610,0.0000,0.0000,-0.0200,-0.0026,-0.0002,-9.7977,-0.0009,0.0011,0.0002,0.700,0.700,0.700,0.700,1367,67,562 +562,5.620,0.0000,0.0000,-0.0200,0.0020,0.0014,-9.8034,0.0008,-0.0000,-0.0013,0.700,0.700,0.700,0.700,1370,67,563 +563,5.630,0.0000,0.0000,-0.0200,0.0024,-0.0024,-9.8013,0.0002,-0.0008,-0.0008,0.700,0.700,0.700,0.700,1372,68,564 +564,5.640,0.0000,0.0000,-0.0200,-0.0034,0.0035,-9.7976,-0.0003,0.0007,-0.0010,0.700,0.700,0.700,0.700,1375,68,565 +565,5.650,0.0000,0.0000,-0.0200,-0.0010,-0.0010,-9.8031,-0.0010,0.0012,0.0004,0.700,0.700,0.700,0.700,1377,68,566 +566,5.660,0.0000,0.0000,-0.0200,-0.0022,0.0003,-9.8005,0.0004,-0.0008,0.0014,0.700,0.700,0.700,0.700,1380,68,567 +567,5.670,0.0000,0.0000,-0.0200,-0.0011,-0.0040,-9.8024,0.0012,-0.0003,-0.0003,0.700,0.700,0.700,0.700,1382,68,568 +568,5.680,0.0000,0.0000,-0.0200,-0.0010,-0.0002,-9.8016,0.0004,0.0002,0.0005,0.700,0.700,0.700,0.700,1384,68,569 +569,5.690,0.0000,0.0000,-0.0200,-0.0027,-0.0019,-9.8020,0.0005,0.0013,0.0007,0.700,0.700,0.700,0.700,1387,68,570 +570,5.700,0.0000,0.0000,-0.0200,-0.0017,-0.0013,-9.8012,-0.0010,-0.0014,0.0014,0.700,0.700,0.700,0.700,1389,68,571 +571,5.710,0.0000,0.0000,-0.0200,-0.0002,-0.0007,-9.7989,-0.0003,-0.0015,0.0006,0.700,0.700,0.700,0.700,1392,69,572 +572,5.720,0.0000,0.0000,-0.0200,-0.0012,-0.0015,-9.8007,-0.0007,0.0015,0.0006,0.700,0.700,0.700,0.700,1394,69,573 +573,5.730,0.0000,0.0000,-0.0200,0.0002,-0.0027,-9.7994,-0.0002,-0.0002,0.0004,0.700,0.700,0.700,0.700,1396,69,574 +574,5.740,0.0000,0.0000,-0.0200,0.0035,-0.0016,-9.8000,-0.0001,-0.0003,0.0001,0.700,0.700,0.700,0.700,1398,69,575 +575,5.750,0.0000,0.0000,-0.0200,-0.0018,0.0008,-9.7991,0.0005,-0.0007,0.0004,0.700,0.700,0.700,0.700,1400,69,576 +576,5.760,0.0000,0.0000,-0.0200,0.0033,0.0034,-9.8038,-0.0023,0.0008,0.0002,0.700,0.700,0.700,0.700,1403,69,577 +577,5.770,0.0000,0.0000,-0.0200,-0.0022,-0.0012,-9.8047,-0.0013,0.0001,-0.0006,0.700,0.700,0.700,0.700,1405,69,578 +578,5.780,0.0000,0.0000,-0.0200,0.0024,0.0002,-9.7994,0.0000,-0.0006,-0.0003,0.700,0.700,0.700,0.700,1407,69,579 +579,5.790,0.0000,0.0000,-0.0200,-0.0012,0.0005,-9.7993,-0.0009,-0.0005,-0.0012,0.700,0.700,0.700,0.700,1410,69,580 +580,5.800,0.0000,0.0000,-0.0200,-0.0017,0.0002,-9.8006,-0.0012,-0.0001,-0.0003,0.700,0.700,0.700,0.700,1412,70,581 +581,5.810,0.0000,0.0000,-0.0200,0.0041,-0.0036,-9.8019,0.0009,0.0002,-0.0005,0.700,0.700,0.700,0.700,1414,70,582 +582,5.820,0.0000,0.0000,-0.0200,0.0003,0.0019,-9.7973,-0.0008,0.0022,-0.0018,0.700,0.700,0.700,0.700,1417,70,583 +583,5.830,0.0000,0.0000,-0.0200,-0.0007,-0.0003,-9.7981,0.0022,-0.0001,0.0003,0.700,0.700,0.700,0.700,1419,70,584 +584,5.840,0.0000,0.0000,-0.0200,0.0016,0.0033,-9.7990,-0.0003,-0.0015,-0.0000,0.700,0.700,0.700,0.700,1421,70,585 +585,5.850,0.0000,0.0000,-0.0200,-0.0003,0.0020,-9.7995,-0.0006,-0.0001,-0.0005,0.700,0.700,0.700,0.700,1423,70,586 +586,5.860,0.0000,0.0000,-0.0200,0.0036,-0.0021,-9.8027,-0.0001,-0.0000,-0.0006,0.700,0.700,0.700,0.700,1426,70,587 +587,5.870,0.0000,0.0000,-0.0200,-0.0003,-0.0032,-9.7998,-0.0002,-0.0002,0.0013,0.700,0.700,0.700,0.700,1428,70,588 +588,5.880,0.0000,0.0000,-0.0200,0.0033,-0.0005,-9.8006,0.0004,-0.0011,0.0003,0.700,0.700,0.700,0.700,1430,70,589 +589,5.890,0.0000,0.0000,-0.0200,0.0022,0.0025,-9.7981,-0.0013,-0.0005,0.0002,0.700,0.700,0.700,0.700,1433,71,590 +590,5.900,0.0000,0.0000,-0.0200,-0.0014,0.0011,-9.8007,0.0005,0.0002,0.0003,0.700,0.700,0.700,0.700,1435,71,591 +591,5.910,0.0000,0.0000,-0.0200,-0.0059,0.0012,-9.7996,0.0006,0.0005,0.0013,0.700,0.700,0.700,0.700,1437,71,592 +592,5.920,0.0000,0.0000,-0.0200,-0.0019,-0.0029,-9.8003,0.0001,-0.0004,-0.0019,0.700,0.700,0.700,0.700,1440,71,593 +593,5.930,0.0000,0.0000,-0.0200,-0.0012,-0.0016,-9.8007,0.0017,-0.0012,-0.0005,0.700,0.700,0.700,0.700,1442,71,594 +594,5.940,0.0000,0.0000,-0.0200,0.0013,-0.0001,-9.7976,-0.0006,-0.0010,-0.0010,0.700,0.700,0.700,0.700,1444,71,595 +595,5.950,0.0000,0.0000,-0.0200,0.0055,0.0023,-9.7998,0.0012,0.0008,0.0004,0.700,0.700,0.700,0.700,1447,71,596 +596,5.960,0.0000,0.0000,-0.0200,0.0021,0.0029,-9.7984,-0.0004,-0.0006,-0.0016,0.700,0.700,0.700,0.700,1449,71,597 +597,5.970,0.0000,0.0000,-0.0200,-0.0004,-0.0011,-9.7978,0.0001,0.0001,-0.0012,0.700,0.700,0.700,0.700,1451,71,598 +598,5.980,0.0000,0.0000,-0.0200,-0.0015,0.0003,-9.8001,-0.0003,0.0018,-0.0011,0.700,0.700,0.700,0.700,1454,72,599 +599,5.990,0.0000,0.0000,-0.0200,0.0015,-0.0021,-9.7984,-0.0006,0.0001,0.0007,0.700,0.700,0.700,0.700,1456,72,600 +600,6.000,0.0000,0.0000,-0.0200,0.0003,-0.0024,-9.7973,-0.0011,0.0007,0.0012,0.700,0.700,0.700,0.700,1459,72,601 +601,6.010,0.0000,0.0000,-0.0200,-0.0009,-0.0002,-9.8038,0.0002,-0.0005,0.0001,0.700,0.700,0.700,0.700,1461,72,602 +602,6.020,0.0000,0.0000,-0.0200,-0.0000,0.0024,-9.8019,0.0009,-0.0005,0.0008,0.700,0.700,0.700,0.700,1464,72,603 +603,6.030,0.0000,0.0000,-0.0200,0.0019,0.0014,-9.8016,0.0022,-0.0021,-0.0008,0.700,0.700,0.700,0.700,1466,72,604 +604,6.040,0.0000,0.0000,-0.0200,-0.0015,-0.0017,-9.8011,-0.0001,0.0007,-0.0008,0.700,0.700,0.700,0.700,1469,72,605 +605,6.050,0.0000,0.0000,-0.0200,0.0003,0.0012,-9.7986,0.0005,0.0002,-0.0002,0.700,0.700,0.700,0.700,1471,72,606 +606,6.060,0.0000,0.0000,-0.0200,0.0014,-0.0007,-9.7975,0.0014,0.0003,-0.0014,0.700,0.700,0.700,0.700,1473,73,607 +607,6.070,0.0000,0.0000,-0.0200,0.0004,-0.0014,-9.8000,-0.0005,0.0012,-0.0002,0.700,0.700,0.700,0.700,1476,73,608 +608,6.080,0.0000,0.0000,-0.0200,-0.0017,0.0001,-9.7990,0.0017,-0.0003,-0.0002,0.700,0.700,0.700,0.700,1478,73,609 +609,6.090,0.0000,0.0000,-0.0200,-0.0024,0.0015,-9.7974,0.0010,-0.0008,0.0002,0.700,0.700,0.700,0.700,1480,73,610 +610,6.100,0.0000,0.0000,-0.0200,0.0017,-0.0007,-9.7983,0.0007,-0.0008,-0.0006,0.700,0.700,0.700,0.700,1483,73,611 +611,6.110,0.0000,0.0000,-0.0200,0.0019,0.0032,-9.8035,0.0008,-0.0008,-0.0005,0.700,0.700,0.700,0.700,1485,73,612 +612,6.120,0.0000,0.0000,-0.0200,-0.0018,0.0012,-9.8006,-0.0012,-0.0006,0.0002,0.700,0.700,0.700,0.700,1488,73,613 +613,6.130,0.0000,0.0000,-0.0200,0.0035,-0.0010,-9.8010,-0.0002,0.0002,0.0019,0.700,0.700,0.700,0.700,1490,73,614 +614,6.140,0.0000,0.0000,-0.0200,-0.0019,0.0010,-9.8014,0.0002,0.0019,-0.0002,0.700,0.700,0.700,0.700,1493,74,615 +615,6.150,0.0000,0.0000,-0.0200,-0.0018,-0.0017,-9.7939,0.0009,0.0005,-0.0004,0.700,0.700,0.700,0.700,1495,74,616 +616,6.160,0.0000,0.0000,-0.0200,0.0028,0.0010,-9.7979,0.0007,-0.0008,-0.0004,0.700,0.700,0.700,0.700,1497,74,617 +617,6.170,0.0000,0.0000,-0.0200,-0.0014,-0.0017,-9.8000,0.0006,0.0012,0.0013,0.700,0.700,0.700,0.700,1500,74,618 +618,6.180,0.0000,0.0000,-0.0200,0.0022,0.0047,-9.8052,0.0011,0.0011,-0.0017,0.700,0.700,0.700,0.700,1502,74,619 +619,6.190,0.0000,0.0000,-0.0200,0.0002,0.0046,-9.8028,-0.0003,0.0002,0.0012,0.700,0.700,0.700,0.700,1505,74,620 +620,6.200,0.0000,0.0000,-0.0200,0.0012,-0.0032,-9.8000,0.0000,0.0011,0.0011,0.700,0.700,0.700,0.700,1507,74,621 +621,6.210,0.0000,0.0000,-0.0200,-0.0015,-0.0018,-9.7978,-0.0004,-0.0005,-0.0018,0.700,0.700,0.700,0.700,1509,74,622 +622,6.220,0.0000,0.0000,-0.0200,0.0024,-0.0002,-9.8030,-0.0007,-0.0007,-0.0010,0.700,0.700,0.700,0.700,1512,75,623 +623,6.230,0.0000,0.0000,-0.0200,0.0013,-0.0024,-9.8011,0.0004,-0.0003,-0.0005,0.700,0.700,0.700,0.700,1514,75,624 +624,6.240,0.0000,0.0000,-0.0200,-0.0003,-0.0008,-9.7969,-0.0012,-0.0005,0.0001,0.700,0.700,0.700,0.700,1517,75,625 +625,6.250,0.0000,0.0000,-0.0200,-0.0006,-0.0008,-9.8023,-0.0006,-0.0007,-0.0008,0.700,0.700,0.700,0.700,1519,75,626 +626,6.260,0.0000,0.0000,-0.0200,-0.0019,0.0017,-9.7977,-0.0010,0.0009,-0.0002,0.700,0.700,0.700,0.700,1522,75,627 +627,6.270,0.0000,0.0000,-0.0200,-0.0008,0.0017,-9.7987,-0.0007,0.0008,-0.0009,0.700,0.700,0.700,0.700,1524,75,628 +628,6.280,0.0000,0.0000,-0.0200,-0.0021,0.0008,-9.7975,0.0012,0.0008,-0.0001,0.700,0.700,0.700,0.700,1527,75,629 +629,6.290,0.0000,0.0000,-0.0200,-0.0010,-0.0013,-9.8001,0.0008,-0.0012,0.0003,0.700,0.700,0.700,0.700,1529,75,630 +630,6.300,0.0000,0.0000,-0.0200,0.0018,-0.0003,-9.8022,-0.0031,-0.0010,-0.0003,0.700,0.700,0.700,0.700,1532,76,631 +631,6.310,0.0000,0.0000,-0.0200,-0.0006,-0.0005,-9.8006,-0.0010,-0.0004,0.0000,0.700,0.700,0.700,0.700,1534,76,632 +632,6.320,0.0000,0.0000,-0.0200,0.0016,-0.0008,-9.7948,0.0006,0.0001,0.0028,0.700,0.700,0.700,0.700,1536,76,633 +633,6.330,0.0000,0.0000,-0.0200,0.0004,0.0023,-9.8000,0.0004,-0.0003,0.0010,0.700,0.700,0.700,0.700,1538,76,634 +634,6.340,0.0000,0.0000,-0.0200,-0.0027,-0.0021,-9.8032,-0.0017,0.0001,-0.0005,0.700,0.700,0.700,0.700,1541,76,635 +635,6.350,0.0000,0.0000,-0.0200,0.0024,-0.0020,-9.8011,0.0003,0.0006,-0.0011,0.700,0.700,0.700,0.700,1543,76,636 +636,6.360,0.0000,0.0000,-0.0200,0.0019,0.0016,-9.8030,0.0011,0.0002,-0.0002,0.700,0.700,0.700,0.700,1546,76,637 +637,6.370,0.0000,0.0000,-0.0200,-0.0004,-0.0026,-9.8017,-0.0000,0.0008,-0.0001,0.700,0.700,0.700,0.700,1548,76,638 +638,6.380,0.0000,0.0000,-0.0200,-0.0013,-0.0011,-9.8018,-0.0014,0.0000,0.0001,0.700,0.700,0.700,0.700,1551,76,639 +639,6.390,0.0000,0.0000,-0.0200,-0.0011,0.0024,-9.8022,-0.0000,0.0000,-0.0001,0.700,0.700,0.700,0.700,1553,77,640 +640,6.400,0.0000,0.0000,-0.0200,-0.0002,-0.0010,-9.7971,-0.0005,-0.0000,-0.0006,0.700,0.700,0.700,0.700,1555,77,641 +641,6.410,0.0000,0.0000,-0.0200,0.0008,0.0032,-9.8010,-0.0005,0.0011,0.0005,0.700,0.700,0.700,0.700,1557,77,642 +642,6.420,0.0000,0.0000,-0.0200,-0.0041,0.0024,-9.8010,0.0003,-0.0008,-0.0010,0.700,0.700,0.700,0.700,1559,77,643 +643,6.430,0.0000,0.0000,-0.0200,-0.0032,0.0007,-9.7995,-0.0004,0.0012,-0.0006,0.700,0.700,0.700,0.700,1562,77,644 +644,6.440,0.0000,0.0000,-0.0200,-0.0024,-0.0015,-9.8012,-0.0001,0.0015,0.0016,0.700,0.700,0.700,0.700,1564,77,645 +645,6.450,0.0000,0.0000,-0.0200,0.0008,-0.0002,-9.8011,-0.0014,-0.0008,-0.0001,0.700,0.700,0.700,0.700,1567,77,646 +646,6.460,0.0000,0.0000,-0.0200,0.0014,0.0032,-9.8014,-0.0007,0.0010,0.0011,0.700,0.700,0.700,0.700,1569,77,647 +647,6.470,0.0000,0.0000,-0.0200,-0.0010,-0.0039,-9.7983,-0.0009,0.0007,-0.0007,0.700,0.700,0.700,0.700,1571,77,648 +648,6.480,0.0000,0.0000,-0.0200,-0.0011,0.0011,-9.7989,0.0012,0.0009,-0.0005,0.700,0.700,0.700,0.700,1573,78,649 +649,6.490,0.0000,0.0000,-0.0200,0.0008,-0.0004,-9.7987,0.0004,0.0015,-0.0010,0.700,0.700,0.700,0.700,1575,78,650 +650,6.500,0.0000,0.0000,-0.0200,-0.0022,0.0015,-9.8010,-0.0003,-0.0002,0.0007,0.700,0.700,0.700,0.700,1578,78,651 +651,6.510,0.0000,0.0000,-0.0200,-0.0003,0.0038,-9.8004,-0.0000,-0.0000,-0.0000,0.700,0.700,0.700,0.700,1580,78,652 +652,6.520,0.0000,0.0000,-0.0200,0.0020,0.0001,-9.8003,0.0006,0.0019,-0.0003,0.700,0.700,0.700,0.700,1582,78,653 +653,6.530,0.0000,0.0000,-0.0200,-0.0017,0.0010,-9.8017,-0.0012,-0.0006,0.0003,0.700,0.700,0.700,0.700,1584,78,654 +654,6.540,0.0000,0.0000,-0.0200,-0.0003,0.0020,-9.7990,-0.0015,-0.0026,-0.0004,0.700,0.700,0.700,0.700,1586,78,655 +655,6.550,0.0000,0.0000,-0.0200,0.0010,0.0012,-9.7998,0.0003,-0.0005,0.0011,0.700,0.700,0.700,0.700,1589,78,656 +656,6.560,0.0000,0.0000,-0.0200,-0.0020,-0.0010,-9.8005,0.0012,0.0003,-0.0011,0.700,0.700,0.700,0.700,1591,78,657 +657,6.570,0.0000,0.0000,-0.0200,0.0001,-0.0006,-9.8015,-0.0011,0.0008,0.0001,0.700,0.700,0.700,0.700,1594,79,658 +658,6.580,0.0000,0.0000,-0.0200,0.0024,-0.0036,-9.7997,-0.0013,0.0007,-0.0001,0.700,0.700,0.700,0.700,1596,79,659 +659,6.590,0.0000,0.0000,-0.0200,-0.0002,0.0012,-9.8008,0.0007,-0.0008,0.0006,0.700,0.700,0.700,0.700,1598,79,660 +660,6.600,0.0000,0.0000,-0.0200,-0.0038,0.0014,-9.7990,-0.0004,-0.0013,-0.0010,0.700,0.700,0.700,0.700,1601,79,661 +661,6.610,0.0000,0.0000,-0.0200,-0.0020,-0.0002,-9.7994,-0.0007,0.0019,0.0005,0.700,0.700,0.700,0.700,1603,79,662 +662,6.620,0.0000,0.0000,-0.0200,0.0009,0.0016,-9.8019,0.0010,-0.0007,-0.0004,0.700,0.700,0.700,0.700,1605,79,663 +663,6.630,0.0000,0.0000,-0.0200,0.0008,-0.0017,-9.7994,0.0023,-0.0007,-0.0008,0.700,0.700,0.700,0.700,1608,79,664 +664,6.640,0.0000,0.0000,-0.0200,0.0032,0.0015,-9.7976,-0.0001,0.0001,0.0017,0.700,0.700,0.700,0.700,1610,79,665 +665,6.650,0.0000,0.0000,-0.0200,-0.0005,0.0012,-9.7973,-0.0003,0.0021,0.0011,0.700,0.700,0.700,0.700,1613,80,666 +666,6.660,0.0000,0.0000,-0.0200,0.0010,0.0060,-9.7949,0.0007,0.0003,0.0007,0.700,0.700,0.700,0.700,1615,80,667 +667,6.670,0.0000,0.0000,-0.0200,-0.0035,-0.0000,-9.7994,0.0001,-0.0011,-0.0014,0.700,0.700,0.700,0.700,1617,80,668 +668,6.680,0.0000,0.0000,-0.0200,-0.0019,-0.0021,-9.7997,0.0011,0.0004,-0.0005,0.700,0.700,0.700,0.700,1620,80,669 +669,6.690,0.0000,0.0000,-0.0200,0.0017,-0.0032,-9.7980,-0.0001,0.0001,0.0006,0.700,0.700,0.700,0.700,1622,80,670 +670,6.700,0.0000,0.0000,-0.0200,-0.0030,-0.0012,-9.7990,-0.0007,-0.0009,-0.0020,0.700,0.700,0.700,0.700,1625,80,671 +671,6.710,0.0000,0.0000,-0.0200,-0.0023,-0.0000,-9.8013,0.0007,0.0002,0.0005,0.700,0.700,0.700,0.700,1627,80,672 +672,6.720,0.0000,0.0000,-0.0200,-0.0003,0.0011,-9.7990,-0.0012,0.0000,0.0000,0.700,0.700,0.700,0.700,1629,80,673 +673,6.730,0.0000,0.0000,-0.0200,-0.0018,0.0009,-9.8008,0.0002,-0.0006,0.0003,0.700,0.700,0.700,0.700,1632,81,674 +674,6.740,0.0000,0.0000,-0.0200,0.0010,0.0028,-9.8016,-0.0013,0.0002,-0.0006,0.700,0.700,0.700,0.700,1634,81,675 +675,6.750,0.0000,0.0000,-0.0200,-0.0011,0.0037,-9.7991,0.0013,0.0011,0.0005,0.700,0.700,0.700,0.700,1636,81,676 +676,6.760,0.0000,0.0000,-0.0200,-0.0038,-0.0023,-9.7979,0.0004,-0.0011,-0.0010,0.700,0.700,0.700,0.700,1638,81,677 +677,6.770,0.0000,0.0000,-0.0200,0.0011,-0.0023,-9.7997,0.0008,-0.0013,0.0009,0.700,0.700,0.700,0.700,1641,81,678 +678,6.780,0.0000,0.0000,-0.0200,0.0022,-0.0013,-9.8010,-0.0006,0.0008,-0.0005,0.700,0.700,0.700,0.700,1643,81,679 +679,6.790,0.0000,0.0000,-0.0200,0.0017,-0.0036,-9.8001,0.0009,0.0008,-0.0011,0.700,0.700,0.700,0.700,1645,81,680 +680,6.800,0.0000,0.0000,-0.0200,0.0022,-0.0005,-9.7992,-0.0003,-0.0012,-0.0009,0.700,0.700,0.700,0.700,1647,81,681 +681,6.810,0.0000,0.0000,-0.0200,0.0017,0.0052,-9.8015,0.0005,-0.0022,-0.0009,0.700,0.700,0.700,0.700,1649,81,682 +682,6.820,0.0000,0.0000,-0.0200,0.0015,-0.0020,-9.8009,-0.0015,0.0003,0.0018,0.700,0.700,0.700,0.700,1652,82,683 +683,6.830,0.0000,0.0000,-0.0200,-0.0023,0.0047,-9.8000,0.0004,0.0003,0.0016,0.700,0.700,0.700,0.700,1654,82,684 +684,6.840,0.0000,0.0000,-0.0200,-0.0014,0.0011,-9.7971,0.0002,-0.0003,-0.0004,0.700,0.700,0.700,0.700,1656,82,685 +685,6.850,0.0000,0.0000,-0.0200,-0.0011,0.0003,-9.7993,0.0002,-0.0010,-0.0012,0.700,0.700,0.700,0.700,1658,82,686 +686,6.860,0.0000,0.0000,-0.0200,0.0024,0.0021,-9.7988,-0.0003,0.0006,0.0009,0.700,0.700,0.700,0.700,1660,82,687 +687,6.870,0.0000,0.0000,-0.0200,0.0027,0.0006,-9.7985,0.0017,-0.0005,0.0005,0.700,0.700,0.700,0.700,1663,82,688 +688,6.880,0.0000,0.0000,-0.0200,0.0007,0.0013,-9.7967,0.0002,0.0003,0.0005,0.700,0.700,0.700,0.700,1665,82,689 +689,6.890,0.0000,0.0000,-0.0200,-0.0028,-0.0005,-9.8010,0.0033,0.0009,-0.0015,0.700,0.700,0.700,0.700,1668,82,690 +690,6.900,0.0000,0.0000,-0.0200,-0.0024,-0.0032,-9.8037,-0.0011,0.0011,0.0002,0.700,0.700,0.700,0.700,1670,82,691 +691,6.910,0.0000,0.0000,-0.0200,0.0011,-0.0009,-9.7999,0.0009,0.0008,-0.0012,0.700,0.700,0.700,0.700,1673,83,692 +692,6.920,0.0000,0.0000,-0.0200,-0.0018,0.0012,-9.8045,0.0010,-0.0008,0.0006,0.700,0.700,0.700,0.700,1675,83,693 +693,6.930,0.0000,0.0000,-0.0200,-0.0007,0.0010,-9.7986,0.0016,-0.0014,0.0007,0.700,0.700,0.700,0.700,1677,83,694 +694,6.940,0.0000,0.0000,-0.0200,-0.0036,-0.0022,-9.8003,-0.0011,0.0015,-0.0004,0.700,0.700,0.700,0.700,1679,83,695 +695,6.950,0.0000,0.0000,-0.0200,-0.0006,-0.0004,-9.7985,0.0013,0.0009,0.0003,0.700,0.700,0.700,0.700,1681,83,696 +696,6.960,0.0000,0.0000,-0.0200,0.0005,0.0007,-9.7975,-0.0001,-0.0003,0.0005,0.700,0.700,0.700,0.700,1684,83,697 +697,6.970,0.0000,0.0000,-0.0200,-0.0017,-0.0040,-9.8043,-0.0007,-0.0008,0.0010,0.700,0.700,0.700,0.700,1686,83,698 +698,6.980,0.0000,0.0000,-0.0200,0.0028,0.0010,-9.8013,0.0004,-0.0002,0.0007,0.700,0.700,0.700,0.700,1689,83,699 +699,6.990,0.0000,0.0000,-0.0200,0.0030,0.0003,-9.8022,-0.0014,0.0004,-0.0002,0.700,0.700,0.700,0.700,1691,83,700 +700,7.000,0.0000,0.0000,-0.0200,-0.0012,-0.0051,-9.7997,0.0005,0.0006,0.0004,0.700,0.700,0.700,0.700,1693,84,701 +701,7.010,0.0000,0.0000,-0.0200,-0.0004,0.0019,-9.7983,-0.0002,0.0002,0.0008,0.700,0.700,0.700,0.700,1696,84,702 +702,7.020,0.0000,0.0000,-0.0200,-0.0001,-0.0011,-9.8033,0.0010,0.0005,-0.0002,0.700,0.700,0.700,0.700,1698,84,703 +703,7.030,0.0000,0.0000,-0.0200,0.0002,0.0015,-9.8007,-0.0012,0.0005,-0.0003,0.700,0.700,0.700,0.700,1701,84,704 +704,7.040,0.0000,0.0000,-0.0200,0.0008,-0.0008,-9.8003,-0.0003,0.0011,0.0003,0.700,0.700,0.700,0.700,1703,84,705 +705,7.050,0.0000,0.0000,-0.0200,-0.0003,-0.0013,-9.7976,-0.0001,0.0011,-0.0004,0.700,0.700,0.700,0.700,1705,84,706 +706,7.060,0.0000,0.0000,-0.0200,0.0021,-0.0007,-9.8020,-0.0013,0.0002,0.0001,0.700,0.700,0.700,0.700,1707,84,707 +707,7.070,0.0000,0.0000,-0.0200,0.0010,0.0016,-9.7979,0.0004,-0.0001,-0.0012,0.700,0.700,0.700,0.700,1709,84,708 +708,7.080,0.0000,0.0000,-0.0200,0.0008,-0.0032,-9.7994,-0.0000,-0.0018,-0.0000,0.700,0.700,0.700,0.700,1712,85,709 +709,7.090,0.0000,0.0000,-0.0200,0.0014,0.0024,-9.7978,0.0014,0.0006,0.0020,0.700,0.700,0.700,0.700,1714,85,710 +710,7.100,0.0000,0.0000,-0.0200,-0.0019,0.0019,-9.8012,0.0000,-0.0010,0.0003,0.700,0.700,0.700,0.700,1716,85,711 +711,7.110,0.0000,0.0000,-0.0200,-0.0002,0.0010,-9.8007,-0.0001,0.0008,-0.0006,0.700,0.700,0.700,0.700,1718,85,712 +712,7.120,0.0000,0.0000,-0.0200,-0.0027,0.0001,-9.7983,-0.0006,0.0001,0.0006,0.700,0.700,0.700,0.700,1721,85,713 +713,7.130,0.0000,0.0000,-0.0200,0.0053,-0.0003,-9.7999,0.0004,-0.0011,-0.0015,0.700,0.700,0.700,0.700,1723,85,714 +714,7.140,0.0000,0.0000,-0.0200,0.0033,0.0002,-9.8029,0.0011,-0.0026,0.0005,0.700,0.700,0.700,0.700,1726,85,715 +715,7.150,0.0000,0.0000,-0.0200,-0.0035,-0.0010,-9.8038,0.0009,0.0003,-0.0021,0.700,0.700,0.700,0.700,1728,85,716 +716,7.160,0.0000,0.0000,-0.0200,-0.0012,0.0023,-9.8028,0.0015,-0.0001,0.0014,0.700,0.700,0.700,0.700,1730,85,717 +717,7.170,0.0000,0.0000,-0.0200,0.0018,0.0017,-9.8023,0.0000,-0.0005,-0.0004,0.700,0.700,0.700,0.700,1732,86,718 +718,7.180,0.0000,0.0000,-0.0200,-0.0014,0.0007,-9.7991,-0.0014,0.0004,-0.0007,0.700,0.700,0.700,0.700,1735,86,719 +719,7.190,0.0000,0.0000,-0.0200,-0.0037,-0.0021,-9.7982,-0.0005,-0.0008,-0.0009,0.700,0.700,0.700,0.700,1737,86,720 +720,7.200,0.0000,0.0000,-0.0200,0.0000,0.0006,-9.8001,-0.0022,-0.0013,0.0015,0.700,0.700,0.700,0.700,1740,86,721 +721,7.210,0.0000,0.0000,-0.0200,-0.0007,0.0035,-9.7972,-0.0007,-0.0003,0.0017,0.700,0.700,0.700,0.700,1742,86,722 +722,7.220,0.0000,0.0000,-0.0200,0.0007,-0.0003,-9.7994,0.0021,-0.0002,-0.0009,0.700,0.700,0.700,0.700,1745,86,723 +723,7.230,0.0000,0.0000,-0.0200,-0.0005,0.0024,-9.8009,0.0004,0.0010,-0.0005,0.700,0.700,0.700,0.700,1747,86,724 +724,7.240,0.0000,0.0000,-0.0200,-0.0014,0.0002,-9.8007,-0.0002,-0.0012,-0.0006,0.700,0.700,0.700,0.700,1749,86,725 +725,7.250,0.0000,0.0000,-0.0200,0.0017,0.0012,-9.7988,0.0003,0.0001,0.0004,0.700,0.700,0.700,0.700,1751,86,726 +726,7.260,0.0000,0.0000,-0.0200,-0.0023,-0.0003,-9.7967,0.0007,-0.0012,0.0002,0.700,0.700,0.700,0.700,1753,87,727 +727,7.270,0.0000,0.0000,-0.0200,0.0042,-0.0002,-9.8012,0.0008,-0.0013,-0.0005,0.700,0.700,0.700,0.700,1756,87,728 +728,7.280,0.0000,0.0000,-0.0200,0.0020,0.0019,-9.8004,-0.0004,-0.0007,0.0002,0.700,0.700,0.700,0.700,1758,87,729 +729,7.290,0.0000,0.0000,-0.0200,-0.0036,-0.0003,-9.8005,-0.0003,-0.0013,0.0015,0.700,0.700,0.700,0.700,1760,87,730 +730,7.300,0.0000,0.0000,-0.0200,0.0006,-0.0050,-9.7984,0.0002,-0.0003,-0.0001,0.700,0.700,0.700,0.700,1763,87,731 +731,7.310,0.0000,0.0000,-0.0200,-0.0009,0.0012,-9.8014,-0.0000,-0.0016,-0.0004,0.700,0.700,0.700,0.700,1765,87,732 +732,7.320,0.0000,0.0000,-0.0200,0.0009,-0.0005,-9.7983,0.0001,0.0014,-0.0020,0.700,0.700,0.700,0.700,1767,87,733 +733,7.330,0.0000,0.0000,-0.0200,-0.0015,0.0013,-9.8033,-0.0001,0.0001,-0.0007,0.700,0.700,0.700,0.700,1769,87,734 +734,7.340,0.0000,0.0000,-0.0200,-0.0035,-0.0062,-9.8001,0.0002,-0.0011,-0.0003,0.700,0.700,0.700,0.700,1771,87,735 +735,7.350,0.0000,0.0000,-0.0200,0.0025,-0.0000,-9.7991,0.0003,-0.0008,0.0011,0.700,0.700,0.700,0.700,1774,88,736 +736,7.360,0.0000,0.0000,-0.0200,0.0020,0.0013,-9.8014,0.0000,-0.0001,-0.0007,0.700,0.700,0.700,0.700,1776,88,737 +737,7.370,0.0000,0.0000,-0.0200,-0.0025,0.0017,-9.7988,0.0011,0.0001,0.0007,0.700,0.700,0.700,0.700,1778,88,738 +738,7.380,0.0000,0.0000,-0.0200,-0.0007,-0.0013,-9.7971,-0.0003,-0.0007,0.0008,0.700,0.700,0.700,0.700,1780,88,739 +739,7.390,0.0000,0.0000,-0.0200,-0.0020,0.0002,-9.8021,0.0010,0.0006,-0.0013,0.700,0.700,0.700,0.700,1782,88,740 +740,7.400,0.0000,0.0000,-0.0200,0.0040,-0.0045,-9.7990,0.0001,-0.0003,-0.0009,0.700,0.700,0.700,0.700,1785,88,741 +741,7.410,0.0000,0.0000,-0.0200,-0.0029,-0.0006,-9.7961,-0.0003,-0.0010,0.0006,0.700,0.700,0.700,0.700,1787,88,742 +742,7.420,0.0000,0.0000,-0.0200,-0.0004,-0.0004,-9.7976,-0.0002,0.0006,-0.0007,0.700,0.700,0.700,0.700,1790,88,743 +743,7.430,0.0000,0.0000,-0.0200,-0.0012,-0.0003,-9.7988,-0.0001,-0.0006,0.0014,0.700,0.700,0.700,0.700,1792,89,744 +744,7.440,0.0000,0.0000,-0.0200,0.0025,-0.0032,-9.8008,-0.0004,0.0004,-0.0001,0.700,0.700,0.700,0.700,1794,89,745 +745,7.450,0.0000,0.0000,-0.0200,-0.0018,-0.0015,-9.7990,0.0008,0.0003,-0.0002,0.700,0.700,0.700,0.700,1797,89,746 +746,7.460,0.0000,0.0000,-0.0200,0.0025,-0.0038,-9.7968,-0.0002,0.0011,-0.0005,0.700,0.700,0.700,0.700,1799,89,747 +747,7.470,0.0000,0.0000,-0.0200,0.0023,0.0006,-9.8020,-0.0013,0.0006,-0.0005,0.700,0.700,0.700,0.700,1802,89,748 +748,7.480,0.0000,0.0000,-0.0200,0.0033,-0.0043,-9.7964,-0.0012,0.0011,0.0006,0.700,0.700,0.700,0.700,1804,89,749 +749,7.490,0.0000,0.0000,-0.0200,0.0001,0.0003,-9.7994,-0.0001,0.0006,-0.0018,0.700,0.700,0.700,0.700,1806,89,750 +750,7.500,0.0000,0.0000,-0.0200,-0.0010,0.0021,-9.7970,-0.0008,-0.0001,0.0016,0.700,0.700,0.700,0.700,1808,89,751 +751,7.510,0.0000,0.0000,-0.0200,0.0007,0.0004,-9.8019,0.0006,-0.0002,-0.0022,0.700,0.700,0.700,0.700,1811,89,752 +752,7.520,0.0000,0.0000,-0.0200,0.0025,0.0006,-9.8031,-0.0008,-0.0000,0.0001,0.700,0.700,0.700,0.700,1813,90,753 +753,7.530,0.0000,0.0000,-0.0200,-0.0027,0.0011,-9.8026,-0.0003,-0.0005,0.0008,0.700,0.700,0.700,0.700,1816,90,754 +754,7.540,0.0000,0.0000,-0.0200,0.0032,-0.0015,-9.7998,0.0004,-0.0008,-0.0006,0.700,0.700,0.700,0.700,1818,90,755 +755,7.550,0.0000,0.0000,-0.0200,-0.0018,-0.0039,-9.7948,-0.0003,-0.0006,-0.0018,0.700,0.700,0.700,0.700,1820,90,756 +756,7.560,0.0000,0.0000,-0.0200,0.0029,-0.0008,-9.7991,0.0009,0.0009,-0.0011,0.700,0.700,0.700,0.700,1823,90,757 +757,7.570,0.0000,0.0000,-0.0200,0.0003,-0.0016,-9.7981,0.0013,0.0013,0.0002,0.700,0.700,0.700,0.700,1825,90,758 +758,7.580,0.0000,0.0000,-0.0200,0.0008,0.0015,-9.8050,-0.0013,-0.0002,0.0003,0.700,0.700,0.700,0.700,1827,90,759 +759,7.590,0.0000,0.0000,-0.0200,-0.0045,0.0002,-9.7998,-0.0005,-0.0007,0.0009,0.700,0.700,0.700,0.700,1829,90,760 +760,7.600,0.0000,0.0000,-0.0200,-0.0002,0.0011,-9.7976,-0.0011,-0.0007,-0.0017,0.700,0.700,0.700,0.700,1832,91,761 +761,7.610,0.0000,0.0000,-0.0200,-0.0026,-0.0013,-9.8015,-0.0009,0.0007,-0.0001,0.700,0.700,0.700,0.700,1834,91,762 +762,7.620,0.0000,0.0000,-0.0200,0.0028,0.0050,-9.8011,0.0003,0.0008,0.0002,0.700,0.700,0.700,0.700,1837,91,763 +763,7.630,0.0000,0.0000,-0.0200,-0.0033,0.0051,-9.7987,0.0007,-0.0008,-0.0014,0.700,0.700,0.700,0.700,1839,91,764 +764,7.640,0.0000,0.0000,-0.0200,0.0004,0.0023,-9.7972,0.0003,-0.0002,-0.0022,0.700,0.700,0.700,0.700,1841,91,765 +765,7.650,0.0000,0.0000,-0.0200,0.0004,-0.0019,-9.8027,0.0019,0.0002,-0.0009,0.700,0.700,0.700,0.700,1843,91,766 +766,7.660,0.0000,0.0000,-0.0200,0.0017,-0.0004,-9.8018,0.0005,0.0002,0.0005,0.700,0.700,0.700,0.700,1846,91,767 +767,7.670,0.0000,0.0000,-0.0200,-0.0024,0.0005,-9.7993,0.0005,-0.0007,-0.0004,0.700,0.700,0.700,0.700,1848,91,768 +768,7.680,0.0000,0.0000,-0.0200,-0.0007,-0.0029,-9.7996,0.0007,-0.0007,0.0014,0.700,0.700,0.700,0.700,1851,91,769 +769,7.690,0.0000,0.0000,-0.0200,-0.0004,-0.0004,-9.7973,0.0003,0.0003,-0.0009,0.700,0.700,0.700,0.700,1853,92,770 +770,7.700,0.0000,0.0000,-0.0200,-0.0008,-0.0009,-9.7982,0.0006,-0.0002,-0.0017,0.700,0.700,0.700,0.700,1855,92,771 +771,7.710,0.0000,0.0000,-0.0200,-0.0004,0.0009,-9.7967,-0.0001,-0.0005,-0.0005,0.700,0.700,0.700,0.700,1858,92,772 +772,7.720,0.0000,0.0000,-0.0200,0.0020,-0.0003,-9.8008,0.0010,0.0013,0.0015,0.700,0.700,0.700,0.700,1860,92,773 +773,7.730,0.0000,0.0000,-0.0200,0.0003,0.0014,-9.7975,-0.0009,0.0002,0.0000,0.700,0.700,0.700,0.700,1862,92,774 +774,7.740,0.0000,0.0000,-0.0200,-0.0004,-0.0002,-9.8010,-0.0008,0.0010,-0.0005,0.700,0.700,0.700,0.700,1865,92,775 +775,7.750,0.0000,0.0000,-0.0200,-0.0008,0.0028,-9.8016,0.0000,-0.0005,-0.0000,0.700,0.700,0.700,0.700,1867,92,776 +776,7.760,0.0000,0.0000,-0.0200,-0.0025,0.0003,-9.8003,-0.0005,0.0006,-0.0009,0.700,0.700,0.700,0.700,1870,92,777 +777,7.770,0.0000,0.0000,-0.0200,0.0015,0.0004,-9.7958,0.0005,0.0002,-0.0002,0.700,0.700,0.700,0.700,1872,93,778 +778,7.780,0.0000,0.0000,-0.0200,-0.0024,-0.0014,-9.7994,-0.0000,0.0008,-0.0011,0.700,0.700,0.700,0.700,1875,93,779 +779,7.790,0.0000,0.0000,-0.0200,-0.0009,-0.0026,-9.7988,0.0008,-0.0000,0.0016,0.700,0.700,0.700,0.700,1877,93,780 +780,7.800,0.0000,0.0000,-0.0200,0.0027,0.0045,-9.7994,0.0005,-0.0012,-0.0005,0.700,0.700,0.700,0.700,1879,93,781 +781,7.810,0.0000,0.0000,-0.0200,-0.0013,0.0015,-9.7989,0.0009,0.0014,0.0016,0.700,0.700,0.700,0.700,1882,93,782 +782,7.820,0.0000,0.0000,-0.0200,0.0000,-0.0001,-9.8012,0.0001,0.0010,-0.0006,0.700,0.700,0.700,0.700,1884,93,783 +783,7.830,0.0000,0.0000,-0.0200,0.0006,-0.0005,-9.7986,-0.0007,-0.0001,0.0007,0.700,0.700,0.700,0.700,1887,93,784 +784,7.840,0.0000,0.0000,-0.0200,0.0002,0.0020,-9.8011,-0.0004,0.0008,-0.0004,0.700,0.700,0.700,0.700,1889,93,785 +785,7.850,0.0000,0.0000,-0.0200,-0.0017,0.0006,-9.7992,0.0004,-0.0005,0.0006,0.700,0.700,0.700,0.700,1891,93,786 +786,7.860,0.0000,0.0000,-0.0200,-0.0008,0.0015,-9.7989,-0.0003,0.0011,0.0005,0.700,0.700,0.700,0.700,1893,94,787 +787,7.870,0.0000,0.0000,-0.0200,-0.0005,0.0006,-9.7985,-0.0009,-0.0005,0.0010,0.700,0.700,0.700,0.700,1896,94,788 +788,7.880,0.0000,0.0000,-0.0200,0.0017,-0.0033,-9.7972,-0.0011,0.0006,0.0009,0.700,0.700,0.700,0.700,1898,94,789 +789,7.890,0.0000,0.0000,-0.0200,0.0014,0.0007,-9.7969,-0.0004,0.0002,-0.0009,0.700,0.700,0.700,0.700,1900,94,790 +790,7.900,0.0000,0.0000,-0.0200,-0.0003,-0.0005,-9.8002,-0.0006,0.0004,-0.0001,0.700,0.700,0.700,0.700,1903,94,791 +791,7.910,0.0000,0.0000,-0.0200,-0.0001,0.0030,-9.8010,-0.0008,-0.0006,-0.0007,0.700,0.700,0.700,0.700,1905,94,792 +792,7.920,0.0000,0.0000,-0.0200,0.0019,-0.0026,-9.7993,0.0002,-0.0011,-0.0001,0.700,0.700,0.700,0.700,1908,94,793 +793,7.930,0.0000,0.0000,-0.0200,0.0021,-0.0002,-9.7999,-0.0000,-0.0015,-0.0017,0.700,0.700,0.700,0.700,1910,94,794 +794,7.940,0.0000,0.0000,-0.0200,0.0004,-0.0004,-9.8004,-0.0007,0.0015,-0.0009,0.700,0.700,0.700,0.700,1912,95,795 +795,7.950,0.0000,0.0000,-0.0200,0.0019,0.0010,-9.7983,-0.0005,-0.0002,0.0008,0.700,0.700,0.700,0.700,1915,95,796 +796,7.960,0.0000,0.0000,-0.0200,-0.0029,-0.0007,-9.7985,0.0014,0.0016,0.0011,0.700,0.700,0.700,0.700,1917,95,797 +797,7.970,0.0000,0.0000,-0.0200,0.0006,-0.0039,-9.7967,-0.0001,0.0006,-0.0005,0.700,0.700,0.700,0.700,1920,95,798 +798,7.980,0.0000,0.0000,-0.0200,0.0007,0.0003,-9.8010,-0.0013,0.0009,0.0004,0.700,0.700,0.700,0.700,1922,95,799 +799,7.990,0.0000,0.0000,-0.0200,0.0032,0.0027,-9.7971,-0.0003,0.0001,-0.0008,0.700,0.700,0.700,0.700,1925,95,800 +800,8.000,0.0000,0.0000,-0.0200,0.0040,0.0027,-9.7986,-0.0012,0.0006,0.0012,0.700,0.700,0.700,0.700,1927,95,801 +801,8.010,0.0000,0.0000,-0.0200,0.0011,0.0008,-9.8017,0.0008,0.0018,0.0002,0.700,0.700,0.700,0.700,1930,95,802 +802,8.020,0.0000,0.0000,-0.0200,0.0033,-0.0031,-9.8016,-0.0003,-0.0011,-0.0001,0.700,0.700,0.700,0.700,1932,96,803 +803,8.030,0.0000,0.0000,-0.0200,-0.0022,0.0003,-9.7991,0.0003,-0.0017,0.0006,0.700,0.700,0.700,0.700,1934,96,804 +804,8.040,0.0000,0.0000,-0.0200,0.0041,0.0010,-9.7988,-0.0005,-0.0014,0.0008,0.700,0.700,0.700,0.700,1937,96,805 +805,8.050,0.0000,0.0000,-0.0200,0.0036,0.0009,-9.7997,-0.0005,0.0000,-0.0012,0.700,0.700,0.700,0.700,1939,96,806 +806,8.060,0.0000,0.0000,-0.0200,0.0027,0.0018,-9.7991,-0.0001,0.0001,-0.0002,0.700,0.700,0.700,0.700,1942,96,807 +807,8.070,0.0000,0.0000,-0.0200,0.0025,-0.0009,-9.8013,0.0001,-0.0002,0.0001,0.700,0.700,0.700,0.700,1944,96,808 +808,8.080,0.0000,0.0000,-0.0200,0.0007,-0.0010,-9.7973,0.0014,0.0004,0.0000,0.700,0.700,0.700,0.700,1946,96,809 +809,8.090,0.0000,0.0000,-0.0200,-0.0024,-0.0003,-9.8035,0.0007,0.0001,-0.0005,0.700,0.700,0.700,0.700,1948,96,810 +810,8.100,0.0000,0.0000,-0.0200,-0.0011,0.0022,-9.7976,-0.0005,0.0007,0.0005,0.700,0.700,0.700,0.700,1951,96,811 +811,8.110,0.0000,0.0000,-0.0200,-0.0009,-0.0056,-9.8001,-0.0004,-0.0019,-0.0019,0.700,0.700,0.700,0.700,1953,97,812 +812,8.120,0.0000,0.0000,-0.0200,0.0012,0.0024,-9.7966,0.0003,-0.0001,-0.0003,0.700,0.700,0.700,0.700,1956,97,813 +813,8.130,0.0000,0.0000,-0.0200,-0.0045,-0.0009,-9.8027,0.0010,0.0006,-0.0019,0.700,0.700,0.700,0.700,1958,97,814 +814,8.140,0.0000,0.0000,-0.0200,0.0003,0.0035,-9.7985,0.0005,0.0010,-0.0009,0.700,0.700,0.700,0.700,1961,97,815 +815,8.150,0.0000,0.0000,-0.0200,-0.0000,-0.0002,-9.8010,-0.0000,0.0008,-0.0009,0.700,0.700,0.700,0.700,1963,97,816 +816,8.160,0.0000,0.0000,-0.0200,-0.0005,0.0029,-9.8035,-0.0009,-0.0006,0.0014,0.700,0.700,0.700,0.700,1965,97,817 +817,8.170,0.0000,0.0000,-0.0200,0.0020,-0.0001,-9.8031,-0.0003,-0.0001,-0.0003,0.700,0.700,0.700,0.700,1967,97,818 +818,8.180,0.0000,0.0000,-0.0200,-0.0013,0.0020,-9.7989,-0.0003,0.0006,0.0005,0.700,0.700,0.700,0.700,1970,97,819 +819,8.190,0.0000,0.0000,-0.0200,0.0034,0.0002,-9.8003,-0.0007,-0.0017,-0.0005,0.700,0.700,0.700,0.700,1972,98,820 +820,8.200,0.0000,0.0000,-0.0200,-0.0023,-0.0004,-9.7993,0.0002,0.0017,-0.0021,0.700,0.700,0.700,0.700,1975,98,821 +821,8.210,0.0000,0.0000,-0.0200,0.0018,-0.0027,-9.7992,0.0007,0.0002,-0.0008,0.700,0.700,0.700,0.700,1977,98,822 +822,8.220,0.0000,0.0000,-0.0200,-0.0011,0.0019,-9.7986,-0.0005,-0.0011,-0.0002,0.700,0.700,0.700,0.700,1980,98,823 +823,8.230,0.0000,0.0000,-0.0200,-0.0009,-0.0027,-9.7969,0.0007,-0.0002,-0.0010,0.700,0.700,0.700,0.700,1982,98,824 +824,8.240,0.0000,0.0000,-0.0200,-0.0020,0.0019,-9.7997,0.0013,0.0003,0.0007,0.700,0.700,0.700,0.700,1985,98,825 +825,8.250,0.0000,0.0000,-0.0200,0.0016,-0.0043,-9.8014,-0.0001,-0.0002,-0.0020,0.700,0.700,0.700,0.700,1987,98,826 +826,8.260,0.0000,0.0000,-0.0200,0.0028,0.0011,-9.7985,-0.0002,-0.0006,0.0016,0.700,0.700,0.700,0.700,1990,98,827 +827,8.270,0.0000,0.0000,-0.0200,0.0008,-0.0021,-9.7995,-0.0012,-0.0004,-0.0003,0.700,0.700,0.700,0.700,1992,99,828 +828,8.280,0.0000,0.0000,-0.0200,-0.0004,0.0028,-9.7986,0.0017,0.0002,-0.0003,0.700,0.700,0.700,0.700,1994,99,829 +829,8.290,0.0000,0.0000,-0.0200,0.0011,-0.0012,-9.8003,0.0006,0.0001,0.0006,0.700,0.700,0.700,0.700,1997,99,830 +830,8.300,0.0000,0.0000,-0.0200,0.0006,0.0002,-9.8002,-0.0015,-0.0003,0.0014,0.700,0.700,0.700,0.700,1999,99,831 +831,8.310,0.0000,0.0000,-0.0200,0.0012,0.0009,-9.7964,-0.0011,-0.0005,0.0016,0.700,0.700,0.700,0.700,2001,99,832 +832,8.320,0.0000,0.0000,-0.0200,0.0024,0.0011,-9.8020,-0.0001,0.0012,0.0009,0.700,0.700,0.700,0.700,2004,99,833 +833,8.330,0.0000,0.0000,-0.0200,0.0006,-0.0033,-9.8004,-0.0001,0.0010,0.0009,0.700,0.700,0.700,0.700,2006,99,834 +834,8.340,0.0000,0.0000,-0.0200,0.0055,0.0006,-9.7989,-0.0009,0.0001,0.0006,0.700,0.700,0.700,0.700,2009,99,835 +835,8.350,0.0000,0.0000,-0.0200,0.0025,-0.0052,-9.7955,-0.0003,0.0013,0.0006,0.700,0.700,0.700,0.700,2011,99,836 +836,8.360,0.0000,0.0000,-0.0200,0.0004,0.0007,-9.8029,-0.0001,-0.0005,0.0002,0.700,0.700,0.700,0.700,2013,100,837 +837,8.370,0.0000,0.0000,-0.0200,-0.0002,0.0013,-9.7984,-0.0007,-0.0003,0.0009,0.700,0.700,0.700,0.700,2015,100,838 +838,8.380,0.0000,0.0000,-0.0200,0.0003,0.0012,-9.7993,-0.0000,0.0010,-0.0008,0.700,0.700,0.700,0.700,2018,100,839 +839,8.390,0.0000,0.0000,-0.0200,0.0007,-0.0008,-9.8000,-0.0009,-0.0004,0.0016,0.700,0.700,0.700,0.700,2020,100,840 +840,8.400,0.0000,0.0000,-0.0200,0.0003,-0.0026,-9.7992,0.0015,-0.0015,-0.0010,0.700,0.700,0.700,0.700,2022,100,841 +841,8.410,0.0000,0.0000,-0.0200,-0.0048,-0.0024,-9.8017,0.0000,0.0014,-0.0004,0.700,0.700,0.700,0.700,2025,100,842 +842,8.420,0.0000,0.0000,-0.0200,-0.0018,0.0001,-9.8030,-0.0004,0.0002,0.0012,0.700,0.700,0.700,0.700,2027,100,843 +843,8.430,0.0000,0.0000,-0.0200,-0.0002,-0.0009,-9.7987,0.0006,0.0001,0.0002,0.700,0.700,0.700,0.700,2029,100,844 +844,8.440,0.0000,0.0000,-0.0200,-0.0011,0.0029,-9.7989,0.0001,0.0011,-0.0009,0.700,0.700,0.700,0.700,2031,100,845 +845,8.450,0.0000,0.0000,-0.0200,0.0020,0.0016,-9.8008,0.0020,0.0016,0.0011,0.700,0.700,0.700,0.700,2034,101,846 +846,8.460,0.0000,0.0000,-0.0200,-0.0003,-0.0027,-9.7991,-0.0001,0.0018,-0.0003,0.700,0.700,0.700,0.700,2036,101,847 +847,8.470,0.0000,0.0000,-0.0200,0.0047,-0.0001,-9.7964,-0.0004,-0.0002,-0.0009,0.700,0.700,0.700,0.700,2038,101,848 +848,8.480,0.0000,0.0000,-0.0200,0.0012,-0.0007,-9.8022,0.0010,0.0011,-0.0004,0.700,0.700,0.700,0.700,2040,101,849 +849,8.490,0.0000,0.0000,-0.0200,-0.0004,0.0017,-9.8049,-0.0012,0.0013,0.0009,0.700,0.700,0.700,0.700,2043,101,850 +850,8.500,0.0000,0.0000,-0.0200,-0.0001,-0.0000,-9.8023,0.0006,-0.0004,-0.0001,0.700,0.700,0.700,0.700,2045,101,851 +851,8.510,0.0000,0.0000,-0.0200,0.0023,-0.0028,-9.8035,0.0004,-0.0008,0.0004,0.700,0.700,0.700,0.700,2047,101,852 +852,8.520,0.0000,0.0000,-0.0200,-0.0001,0.0009,-9.7994,0.0006,0.0007,0.0011,0.700,0.700,0.700,0.700,2049,101,853 +853,8.530,0.0000,0.0000,-0.0200,-0.0003,0.0006,-9.8022,-0.0006,-0.0014,-0.0000,0.700,0.700,0.700,0.700,2051,101,854 +854,8.540,0.0000,0.0000,-0.0200,-0.0040,-0.0021,-9.7999,0.0003,-0.0008,-0.0015,0.700,0.700,0.700,0.700,2054,102,855 +855,8.550,0.0000,0.0000,-0.0200,-0.0017,0.0027,-9.7995,-0.0000,0.0009,0.0001,0.700,0.700,0.700,0.700,2056,102,856 +856,8.560,0.0000,0.0000,-0.0200,-0.0010,-0.0025,-9.8013,-0.0001,0.0001,-0.0003,0.700,0.700,0.700,0.700,2059,102,857 +857,8.570,0.0000,0.0000,-0.0200,-0.0019,0.0028,-9.8000,0.0015,0.0004,-0.0013,0.700,0.700,0.700,0.700,2061,102,858 +858,8.580,0.0000,0.0000,-0.0200,0.0020,-0.0030,-9.8018,0.0040,0.0006,0.0008,0.700,0.700,0.700,0.700,2063,102,859 +859,8.590,0.0000,0.0000,-0.0200,-0.0006,0.0034,-9.8044,0.0005,-0.0000,-0.0006,0.700,0.700,0.700,0.700,2065,102,860 +860,8.600,0.0000,0.0000,-0.0200,-0.0030,0.0015,-9.7997,0.0005,-0.0004,-0.0010,0.700,0.700,0.700,0.700,2068,102,861 +861,8.610,0.0000,0.0000,-0.0200,0.0019,-0.0003,-9.8019,-0.0009,0.0003,-0.0007,0.700,0.700,0.700,0.700,2070,102,862 +862,8.620,0.0000,0.0000,-0.0200,-0.0039,0.0003,-9.8001,-0.0004,0.0003,-0.0001,0.700,0.700,0.700,0.700,2072,103,863 +863,8.630,0.0000,0.0000,-0.0200,-0.0025,0.0005,-9.7959,-0.0006,-0.0003,0.0002,0.700,0.700,0.700,0.700,2075,103,864 +864,8.640,0.0000,0.0000,-0.0200,0.0003,0.0017,-9.8011,-0.0009,-0.0019,0.0008,0.700,0.700,0.700,0.700,2077,103,865 +865,8.650,0.0000,0.0000,-0.0200,-0.0008,-0.0017,-9.8030,0.0014,0.0009,-0.0015,0.700,0.700,0.700,0.700,2079,103,866 +866,8.660,0.0000,0.0000,-0.0200,-0.0017,-0.0034,-9.8000,-0.0003,-0.0008,0.0006,0.700,0.700,0.700,0.700,2082,103,867 +867,8.670,0.0000,0.0000,-0.0200,0.0028,-0.0014,-9.8026,0.0000,0.0003,-0.0011,0.700,0.700,0.700,0.700,2084,103,868 +868,8.680,0.0000,0.0000,-0.0200,0.0025,-0.0010,-9.7995,-0.0004,0.0002,-0.0005,0.700,0.700,0.700,0.700,2087,103,869 +869,8.690,0.0000,0.0000,-0.0200,0.0006,-0.0045,-9.7974,-0.0009,0.0018,-0.0005,0.700,0.700,0.700,0.700,2089,103,870 +870,8.700,0.0000,0.0000,-0.0200,0.0001,0.0017,-9.8012,0.0006,-0.0007,-0.0001,0.700,0.700,0.700,0.700,2092,104,871 +871,8.710,0.0000,0.0000,-0.0200,-0.0001,0.0011,-9.7997,-0.0004,0.0008,-0.0016,0.700,0.700,0.700,0.700,2094,104,872 +872,8.720,0.0000,0.0000,-0.0200,-0.0019,-0.0001,-9.8006,-0.0005,-0.0003,-0.0002,0.700,0.700,0.700,0.700,2096,104,873 +873,8.730,0.0000,0.0000,-0.0200,0.0038,0.0015,-9.7987,-0.0001,-0.0010,-0.0017,0.700,0.700,0.700,0.700,2098,104,874 +874,8.740,0.0000,0.0000,-0.0200,-0.0001,0.0018,-9.8024,-0.0012,-0.0005,0.0001,0.700,0.700,0.700,0.700,2101,104,875 +875,8.750,0.0000,0.0000,-0.0200,-0.0015,-0.0003,-9.7991,-0.0003,0.0003,-0.0004,0.700,0.700,0.700,0.700,2103,104,876 +876,8.760,0.0000,0.0000,-0.0200,0.0000,-0.0006,-9.8007,0.0005,0.0011,-0.0003,0.700,0.700,0.700,0.700,2106,104,877 +877,8.770,0.0000,0.0000,-0.0200,0.0016,-0.0010,-9.7993,0.0006,0.0013,-0.0001,0.700,0.700,0.700,0.700,2108,104,878 +878,8.780,0.0000,0.0000,-0.0200,0.0046,0.0027,-9.7980,-0.0004,-0.0031,0.0004,0.700,0.700,0.700,0.700,2111,104,879 +879,8.790,0.0000,0.0000,-0.0200,0.0002,0.0010,-9.8024,0.0001,0.0005,0.0005,0.700,0.700,0.700,0.700,2113,105,880 +880,8.800,0.0000,0.0000,-0.0200,-0.0001,-0.0005,-9.7990,-0.0001,0.0011,-0.0004,0.700,0.700,0.700,0.700,2115,105,881 +881,8.810,0.0000,0.0000,-0.0200,0.0007,0.0014,-9.7991,0.0008,-0.0006,-0.0001,0.700,0.700,0.700,0.700,2118,105,882 +882,8.820,0.0000,0.0000,-0.0200,-0.0014,0.0011,-9.7999,-0.0012,0.0000,0.0000,0.700,0.700,0.700,0.700,2120,105,883 +883,8.830,0.0000,0.0000,-0.0200,0.0022,-0.0006,-9.7989,0.0012,0.0019,-0.0019,0.700,0.700,0.700,0.700,2123,105,884 +884,8.840,0.0000,0.0000,-0.0200,0.0033,0.0003,-9.8030,-0.0004,-0.0009,-0.0004,0.700,0.700,0.700,0.700,2125,105,885 +885,8.850,0.0000,0.0000,-0.0200,-0.0038,0.0024,-9.8007,0.0006,-0.0003,-0.0003,0.700,0.700,0.700,0.700,2128,105,886 +886,8.860,0.0000,0.0000,-0.0200,0.0009,-0.0005,-9.7987,0.0014,0.0006,-0.0006,0.700,0.700,0.700,0.700,2130,105,887 +887,8.870,0.0000,0.0000,-0.0200,-0.0013,-0.0019,-9.7985,0.0004,0.0004,-0.0001,0.700,0.700,0.700,0.700,2132,106,888 +888,8.880,0.0000,0.0000,-0.0200,-0.0011,-0.0000,-9.7995,-0.0008,-0.0006,-0.0016,0.700,0.700,0.700,0.700,2135,106,889 +889,8.890,0.0000,0.0000,-0.0200,-0.0003,-0.0032,-9.8013,-0.0011,-0.0016,-0.0014,0.700,0.700,0.700,0.700,2137,106,890 +890,8.900,0.0000,0.0000,-0.0200,0.0003,0.0036,-9.8024,0.0011,-0.0008,0.0003,0.700,0.700,0.700,0.700,2139,106,891 +891,8.910,0.0000,0.0000,-0.0200,-0.0009,-0.0000,-9.8032,-0.0001,-0.0011,-0.0002,0.700,0.700,0.700,0.700,2142,106,892 +892,8.920,0.0000,0.0000,-0.0200,0.0001,-0.0027,-9.7970,-0.0004,0.0013,0.0012,0.700,0.700,0.700,0.700,2144,106,893 +893,8.930,0.0000,0.0000,-0.0200,0.0020,-0.0002,-9.8000,-0.0013,0.0008,-0.0004,0.700,0.700,0.700,0.700,2146,106,894 +894,8.940,0.0000,0.0000,-0.0200,0.0021,-0.0011,-9.8033,0.0007,0.0003,0.0002,0.700,0.700,0.700,0.700,2149,106,895 +895,8.950,0.0000,0.0000,-0.0200,0.0019,0.0028,-9.8018,0.0014,0.0002,0.0005,0.700,0.700,0.700,0.700,2151,106,896 +896,8.960,0.0000,0.0000,-0.0200,-0.0011,0.0013,-9.7996,0.0009,-0.0014,0.0004,0.700,0.700,0.700,0.700,2153,107,897 +897,8.970,0.0000,0.0000,-0.0200,0.0010,-0.0017,-9.7979,-0.0023,-0.0004,0.0001,0.700,0.700,0.700,0.700,2156,107,898 +898,8.980,0.0000,0.0000,-0.0200,0.0039,0.0030,-9.7985,-0.0009,-0.0002,0.0009,0.700,0.700,0.700,0.700,2158,107,899 +899,8.990,0.0000,0.0000,-0.0200,-0.0003,-0.0044,-9.7969,0.0000,0.0008,0.0006,0.700,0.700,0.700,0.700,2161,107,900 +900,9.000,0.0000,0.0000,-0.0200,0.0025,-0.0004,-9.8019,0.0008,0.0013,-0.0006,0.700,0.700,0.700,0.700,2163,107,901 +901,9.010,0.0000,0.0000,-0.0200,-0.0004,-0.0010,-9.7967,0.0006,-0.0000,0.0022,0.700,0.700,0.700,0.700,2165,107,902 +902,9.020,0.0000,0.0000,-0.0200,0.0004,-0.0011,-9.8033,-0.0002,0.0005,0.0007,0.700,0.700,0.700,0.700,2167,107,903 +903,9.030,0.0000,0.0000,-0.0200,-0.0039,-0.0020,-9.7988,0.0005,0.0009,-0.0003,0.700,0.700,0.700,0.700,2170,107,904 +904,9.040,0.0000,0.0000,-0.0200,0.0009,0.0024,-9.7992,0.0007,0.0006,-0.0002,0.700,0.700,0.700,0.700,2172,108,905 +905,9.050,0.0000,0.0000,-0.0200,0.0027,-0.0019,-9.7978,-0.0011,0.0000,0.0011,0.700,0.700,0.700,0.700,2174,108,906 +906,9.060,0.0000,0.0000,-0.0200,-0.0008,-0.0024,-9.8023,-0.0013,0.0013,-0.0019,0.700,0.700,0.700,0.700,2177,108,907 +907,9.070,0.0000,0.0000,-0.0200,-0.0001,-0.0037,-9.7996,-0.0003,-0.0001,0.0017,0.700,0.700,0.700,0.700,2179,108,908 +908,9.080,0.0000,0.0000,-0.0200,0.0008,0.0025,-9.7970,-0.0002,-0.0007,0.0004,0.700,0.700,0.700,0.700,2181,108,909 +909,9.090,0.0000,0.0000,-0.0200,-0.0025,0.0061,-9.8026,0.0009,0.0016,-0.0012,0.700,0.700,0.700,0.700,2184,108,910 +910,9.100,0.0000,0.0000,-0.0200,0.0005,-0.0032,-9.8009,0.0004,-0.0001,0.0005,0.700,0.700,0.700,0.700,2186,108,911 +911,9.110,0.0000,0.0000,-0.0200,-0.0025,0.0027,-9.7996,-0.0011,0.0003,-0.0005,0.700,0.700,0.700,0.700,2188,108,912 +912,9.120,0.0000,0.0000,-0.0200,-0.0015,0.0021,-9.8024,-0.0007,-0.0003,0.0003,0.700,0.700,0.700,0.700,2191,108,913 +913,9.130,0.0000,0.0000,-0.0200,0.0027,0.0014,-9.8021,0.0000,0.0006,0.0002,0.700,0.700,0.700,0.700,2193,109,914 +914,9.140,0.0000,0.0000,-0.0200,-0.0005,0.0000,-9.8007,-0.0003,-0.0013,-0.0006,0.700,0.700,0.700,0.700,2196,109,915 +915,9.150,0.0000,0.0000,-0.0200,-0.0013,-0.0010,-9.7988,-0.0015,0.0008,0.0006,0.700,0.700,0.700,0.700,2198,109,916 +916,9.160,0.0000,0.0000,-0.0200,-0.0009,-0.0012,-9.7988,0.0021,0.0015,-0.0016,0.700,0.700,0.700,0.700,2201,109,917 +917,9.170,0.0000,0.0000,-0.0200,-0.0022,-0.0009,-9.8023,-0.0010,0.0012,0.0005,0.700,0.700,0.700,0.700,2203,109,918 +918,9.180,0.0000,0.0000,-0.0200,0.0011,0.0004,-9.8002,0.0004,-0.0008,-0.0000,0.700,0.700,0.700,0.700,2205,109,919 +919,9.190,0.0000,0.0000,-0.0200,-0.0000,0.0004,-9.8018,0.0003,0.0002,0.0023,0.700,0.700,0.700,0.700,2208,109,920 +920,9.200,0.0000,0.0000,-0.0200,0.0030,-0.0025,-9.8021,-0.0004,0.0000,0.0003,0.700,0.700,0.700,0.700,2210,109,921 +921,9.210,0.0000,0.0000,-0.0200,0.0009,0.0017,-9.8018,0.0009,0.0014,-0.0002,0.700,0.700,0.700,0.700,2212,110,922 +922,9.220,0.0000,0.0000,-0.0200,0.0001,0.0003,-9.8025,-0.0006,-0.0012,-0.0011,0.700,0.700,0.700,0.700,2215,110,923 +923,9.230,0.0000,0.0000,-0.0200,-0.0013,-0.0008,-9.7978,0.0019,-0.0005,-0.0002,0.700,0.700,0.700,0.700,2217,110,924 +924,9.240,0.0000,0.0000,-0.0200,0.0064,0.0007,-9.7999,-0.0001,0.0003,0.0011,0.700,0.700,0.700,0.700,2220,110,925 +925,9.250,0.0000,0.0000,-0.0200,-0.0016,-0.0035,-9.7992,0.0009,0.0008,-0.0014,0.700,0.700,0.700,0.700,2222,110,926 +926,9.260,0.0000,0.0000,-0.0200,0.0032,0.0011,-9.8026,-0.0001,0.0009,-0.0009,0.700,0.700,0.700,0.700,2224,110,927 +927,9.270,0.0000,0.0000,-0.0200,-0.0002,-0.0050,-9.8022,0.0003,0.0005,0.0010,0.700,0.700,0.700,0.700,2227,110,928 +928,9.280,0.0000,0.0000,-0.0200,-0.0009,0.0013,-9.8001,0.0010,0.0009,0.0011,0.700,0.700,0.700,0.700,2229,110,929 +929,9.290,0.0000,0.0000,-0.0200,0.0010,0.0047,-9.7998,0.0016,0.0006,0.0011,0.700,0.700,0.700,0.700,2231,110,930 +930,9.300,0.0000,0.0000,-0.0200,-0.0021,0.0012,-9.7995,-0.0012,0.0005,-0.0001,0.700,0.700,0.700,0.700,2233,111,931 +931,9.310,0.0000,0.0000,-0.0200,-0.0017,-0.0002,-9.8018,0.0003,-0.0005,-0.0008,0.700,0.700,0.700,0.700,2236,111,932 +932,9.320,0.0000,0.0000,-0.0200,-0.0013,-0.0009,-9.8002,0.0009,0.0001,-0.0008,0.700,0.700,0.700,0.700,2238,111,933 +933,9.330,0.0000,0.0000,-0.0200,-0.0000,0.0010,-9.8019,-0.0013,-0.0004,0.0006,0.700,0.700,0.700,0.700,2240,111,934 +934,9.340,0.0000,0.0000,-0.0200,0.0039,0.0008,-9.8015,0.0005,0.0006,-0.0007,0.700,0.700,0.700,0.700,2243,111,935 +935,9.350,0.0000,0.0000,-0.0200,0.0031,0.0004,-9.8015,0.0003,0.0011,-0.0008,0.700,0.700,0.700,0.700,2245,111,936 +936,9.360,0.0000,0.0000,-0.0200,0.0004,-0.0049,-9.7997,0.0002,0.0007,0.0004,0.700,0.700,0.700,0.700,2247,111,937 +937,9.370,0.0000,0.0000,-0.0200,0.0042,0.0039,-9.8020,-0.0005,0.0004,0.0008,0.700,0.700,0.700,0.700,2249,111,938 +938,9.380,0.0000,0.0000,-0.0200,0.0003,0.0011,-9.8020,0.0014,0.0011,0.0009,0.700,0.700,0.700,0.700,2252,112,939 +939,9.390,0.0000,0.0000,-0.0200,0.0020,0.0022,-9.8030,0.0021,-0.0006,0.0006,0.700,0.700,0.700,0.700,2254,112,940 +940,9.400,0.0000,0.0000,-0.0200,-0.0005,0.0026,-9.7992,0.0005,0.0001,-0.0004,0.700,0.700,0.700,0.700,2257,112,941 +941,9.410,0.0000,0.0000,-0.0200,0.0038,0.0022,-9.8041,0.0002,-0.0003,-0.0001,0.700,0.700,0.700,0.700,2259,112,942 +942,9.420,0.0000,0.0000,-0.0200,0.0004,0.0001,-9.7996,0.0007,0.0007,0.0000,0.700,0.700,0.700,0.700,2261,112,943 +943,9.430,0.0000,0.0000,-0.0200,-0.0028,0.0010,-9.7998,0.0001,-0.0019,-0.0006,0.700,0.700,0.700,0.700,2264,112,944 +944,9.440,0.0000,0.0000,-0.0200,0.0044,-0.0045,-9.8041,0.0002,0.0008,-0.0001,0.700,0.700,0.700,0.700,2266,112,945 +945,9.450,0.0000,0.0000,-0.0200,-0.0027,0.0012,-9.7958,0.0003,0.0012,-0.0013,0.700,0.700,0.700,0.700,2268,112,946 +946,9.460,0.0000,0.0000,-0.0200,0.0010,0.0023,-9.7996,0.0007,-0.0001,-0.0013,0.700,0.700,0.700,0.700,2270,112,947 +947,9.470,0.0000,0.0000,-0.0200,0.0029,0.0014,-9.7999,-0.0013,-0.0010,0.0006,0.700,0.700,0.700,0.700,2273,113,948 +948,9.480,0.0000,0.0000,-0.0200,0.0026,-0.0001,-9.7989,-0.0013,-0.0007,-0.0001,0.700,0.700,0.700,0.700,2275,113,949 +949,9.490,0.0000,0.0000,-0.0200,-0.0007,0.0007,-9.8000,-0.0007,0.0006,0.0025,0.700,0.700,0.700,0.700,2277,113,950 +950,9.500,0.0000,0.0000,-0.0200,0.0018,0.0027,-9.7996,0.0007,-0.0013,-0.0002,0.700,0.700,0.700,0.700,2280,113,951 +951,9.510,0.0000,0.0000,-0.0200,0.0040,0.0035,-9.7961,0.0021,0.0003,-0.0012,0.700,0.700,0.700,0.700,2282,113,952 +952,9.520,0.0000,0.0000,-0.0200,-0.0008,0.0026,-9.8021,0.0013,0.0014,-0.0008,0.700,0.700,0.700,0.700,2285,113,953 +953,9.530,0.0000,0.0000,-0.0200,-0.0005,-0.0013,-9.7995,0.0006,0.0005,0.0009,0.700,0.700,0.700,0.700,2287,113,954 +954,9.540,0.0000,0.0000,-0.0200,0.0025,0.0021,-9.7985,0.0003,0.0002,0.0006,0.700,0.700,0.700,0.700,2289,113,955 +955,9.550,0.0000,0.0000,-0.0200,0.0022,0.0035,-9.7993,-0.0016,-0.0021,-0.0004,0.700,0.700,0.700,0.700,2292,114,956 +956,9.560,0.0000,0.0000,-0.0200,-0.0005,-0.0041,-9.8016,0.0011,-0.0006,-0.0011,0.700,0.700,0.700,0.700,2294,114,957 +957,9.570,0.0000,0.0000,-0.0200,0.0001,-0.0001,-9.8046,0.0002,-0.0015,-0.0013,0.700,0.700,0.700,0.700,2297,114,958 +958,9.580,0.0000,0.0000,-0.0200,0.0029,-0.0003,-9.7985,-0.0015,0.0007,-0.0002,0.700,0.700,0.700,0.700,2299,114,959 +959,9.590,0.0000,0.0000,-0.0200,0.0017,0.0007,-9.7989,-0.0005,-0.0009,0.0013,0.700,0.700,0.700,0.700,2302,114,960 +960,9.600,0.0000,0.0000,-0.0200,0.0010,-0.0012,-9.8006,0.0013,-0.0007,0.0012,0.700,0.700,0.700,0.700,2304,114,961 +961,9.610,0.0000,0.0000,-0.0200,0.0023,0.0050,-9.7961,0.0010,0.0002,0.0012,0.700,0.700,0.700,0.700,2307,114,962 +962,9.620,0.0000,0.0000,-0.0200,0.0022,0.0017,-9.8015,0.0003,-0.0003,-0.0006,0.700,0.700,0.700,0.700,2309,114,963 +963,9.630,0.0000,0.0000,-0.0200,-0.0032,-0.0007,-9.7994,-0.0007,-0.0015,-0.0013,0.700,0.700,0.700,0.700,2312,115,964 +964,9.640,0.0000,0.0000,-0.0200,0.0019,-0.0012,-9.8008,0.0006,0.0008,-0.0018,0.700,0.700,0.700,0.700,2314,115,965 +965,9.650,0.0000,0.0000,-0.0200,0.0013,-0.0002,-9.8006,0.0014,0.0012,-0.0005,0.700,0.700,0.700,0.700,2317,115,966 +966,9.660,0.0000,0.0000,-0.0200,0.0005,-0.0016,-9.8004,0.0023,0.0011,0.0010,0.700,0.700,0.700,0.700,2319,115,967 +967,9.670,0.0000,0.0000,-0.0200,-0.0016,0.0009,-9.8002,-0.0010,0.0012,-0.0001,0.700,0.700,0.700,0.700,2322,115,968 +968,9.680,0.0000,0.0000,-0.0200,-0.0034,-0.0002,-9.8025,-0.0002,-0.0002,-0.0005,0.700,0.700,0.700,0.700,2324,115,969 +969,9.690,0.0000,0.0000,-0.0200,-0.0022,-0.0042,-9.7945,-0.0004,-0.0006,-0.0006,0.700,0.700,0.700,0.700,2326,115,970 +970,9.700,0.0000,0.0000,-0.0200,0.0018,-0.0011,-9.7999,0.0003,-0.0010,0.0018,0.700,0.700,0.700,0.700,2328,115,971 +971,9.710,0.0000,0.0000,-0.0200,-0.0013,0.0006,-9.8010,0.0004,0.0008,0.0016,0.700,0.700,0.700,0.700,2331,115,972 +972,9.720,0.0000,0.0000,-0.0200,-0.0013,-0.0005,-9.8000,0.0009,-0.0003,0.0005,0.700,0.700,0.700,0.700,2333,116,973 +973,9.730,0.0000,0.0000,-0.0200,-0.0006,0.0021,-9.8011,0.0017,0.0003,0.0023,0.700,0.700,0.700,0.700,2335,116,974 +974,9.740,0.0000,0.0000,-0.0200,0.0017,-0.0006,-9.8022,-0.0001,0.0005,0.0004,0.700,0.700,0.700,0.700,2338,116,975 +975,9.750,0.0000,0.0000,-0.0200,-0.0005,-0.0034,-9.8017,0.0001,-0.0014,-0.0012,0.700,0.700,0.700,0.700,2340,116,976 +976,9.760,0.0000,0.0000,-0.0200,0.0025,-0.0022,-9.8011,-0.0008,-0.0012,0.0004,0.700,0.700,0.700,0.700,2343,116,977 +977,9.770,0.0000,0.0000,-0.0200,0.0006,0.0023,-9.7997,0.0004,-0.0002,-0.0011,0.700,0.700,0.700,0.700,2345,116,978 +978,9.780,0.0000,0.0000,-0.0200,-0.0002,0.0024,-9.7965,0.0011,-0.0005,-0.0007,0.700,0.700,0.700,0.700,2348,116,979 +979,9.790,0.0000,0.0000,-0.0200,0.0005,-0.0014,-9.8019,0.0015,0.0006,-0.0009,0.700,0.700,0.700,0.700,2350,116,980 +980,9.800,0.0000,0.0000,-0.0200,-0.0023,-0.0009,-9.7995,-0.0016,0.0005,0.0014,0.700,0.700,0.700,0.700,2352,117,981 +981,9.810,0.0000,0.0000,-0.0200,0.0016,0.0026,-9.8001,0.0001,0.0001,-0.0004,0.700,0.700,0.700,0.700,2354,117,982 +982,9.820,0.0000,0.0000,-0.0200,-0.0045,-0.0005,-9.7983,-0.0016,-0.0015,0.0003,0.700,0.700,0.700,0.700,2356,117,983 +983,9.830,0.0000,0.0000,-0.0200,0.0028,-0.0020,-9.7969,-0.0006,0.0004,-0.0001,0.700,0.700,0.700,0.700,2359,117,984 +984,9.840,0.0000,0.0000,-0.0200,0.0008,0.0002,-9.8022,0.0007,-0.0016,-0.0014,0.700,0.700,0.700,0.700,2361,117,985 +985,9.850,0.0000,0.0000,-0.0200,-0.0017,0.0016,-9.7980,-0.0005,0.0007,0.0003,0.700,0.700,0.700,0.700,2363,117,986 +986,9.860,0.0000,0.0000,-0.0200,-0.0005,-0.0013,-9.7986,-0.0002,0.0007,-0.0008,0.700,0.700,0.700,0.700,2366,117,987 +987,9.870,0.0000,0.0000,-0.0200,-0.0023,0.0003,-9.7997,-0.0001,-0.0001,0.0013,0.700,0.700,0.700,0.700,2368,117,988 +988,9.880,0.0000,0.0000,-0.0200,0.0008,0.0004,-9.8022,-0.0017,0.0018,0.0005,0.700,0.700,0.700,0.700,2370,117,989 +989,9.890,0.0000,0.0000,-0.0200,0.0036,-0.0027,-9.8023,-0.0005,-0.0005,-0.0018,0.700,0.700,0.700,0.700,2373,118,990 +990,9.900,0.0000,0.0000,-0.0200,-0.0007,-0.0023,-9.7987,0.0006,-0.0010,0.0008,0.700,0.700,0.700,0.700,2375,118,991 +991,9.910,0.0000,0.0000,-0.0200,0.0017,0.0028,-9.7991,0.0010,0.0016,-0.0001,0.700,0.700,0.700,0.700,2377,118,992 +992,9.920,0.0000,0.0000,-0.0200,-0.0007,-0.0032,-9.7998,-0.0015,-0.0010,-0.0007,0.700,0.700,0.700,0.700,2380,118,993 +993,9.930,0.0000,0.0000,-0.0200,0.0025,-0.0030,-9.7981,0.0005,0.0015,-0.0003,0.700,0.700,0.700,0.700,2382,118,994 +994,9.940,0.0000,0.0000,-0.0200,-0.0001,-0.0019,-9.8008,-0.0014,0.0014,-0.0008,0.700,0.700,0.700,0.700,2384,118,995 +995,9.950,0.0000,0.0000,-0.0200,-0.0016,0.0001,-9.7976,0.0008,0.0018,0.0005,0.700,0.700,0.700,0.700,2387,118,996 +996,9.960,0.0000,0.0000,-0.0200,-0.0019,0.0031,-9.7976,-0.0005,-0.0006,0.0012,0.700,0.700,0.700,0.700,2389,118,997 +997,9.970,0.0000,0.0000,-0.0200,0.0042,0.0017,-9.7995,-0.0006,-0.0008,-0.0013,0.700,0.700,0.700,0.700,2391,118,998 +998,9.980,0.0000,0.0000,-0.0200,-0.0028,0.0011,-9.7976,0.0007,0.0006,-0.0007,0.700,0.700,0.700,0.700,2394,119,999 +999,9.990,0.0000,0.0000,-0.0200,-0.0011,0.0015,-9.7985,0.0007,0.0002,-0.0009,0.700,0.700,0.700,0.700,2396,119,1000 +1000,10.000,0.0000,0.0000,-0.0200,-0.0004,-0.0006,-9.8009,-0.0004,0.0015,-0.0016,0.700,0.700,0.700,0.700,2398,119,1001 +1001,10.010,0.0000,0.0000,-0.0200,0.0011,0.0004,-9.8028,0.0005,-0.0000,-0.0006,0.700,0.700,0.700,0.700,2401,119,1002 +1002,10.020,0.0000,0.0000,-0.0200,-0.0003,0.0031,-9.8047,0.0003,0.0006,0.0017,0.700,0.700,0.700,0.700,2403,119,1003 +1003,10.030,0.0000,0.0000,-0.0200,0.0031,0.0024,-9.7989,0.0003,0.0006,-0.0008,0.700,0.700,0.700,0.700,2405,119,1004 +1004,10.040,0.0000,0.0000,-0.0200,-0.0013,-0.0009,-9.7982,-0.0008,-0.0001,0.0002,0.700,0.700,0.700,0.700,2407,119,1005 +1005,10.050,0.0000,0.0000,-0.0200,0.0003,0.0007,-9.8014,0.0006,0.0009,-0.0006,0.700,0.700,0.700,0.700,2410,119,1006 +1006,10.060,0.0000,0.0000,-0.0200,0.0016,-0.0022,-9.7987,0.0012,-0.0010,-0.0005,0.700,0.700,0.700,0.700,2412,120,1007 +1007,10.070,0.0000,0.0000,-0.0200,-0.0020,-0.0016,-9.8045,-0.0008,-0.0001,0.0010,0.700,0.700,0.700,0.700,2415,120,1008 +1008,10.080,0.0000,0.0000,-0.0200,0.0012,0.0021,-9.7992,-0.0004,-0.0008,0.0007,0.700,0.700,0.700,0.700,2417,120,1009 +1009,10.090,0.0000,0.0000,-0.0200,-0.0038,-0.0017,-9.7990,-0.0005,0.0008,0.0003,0.700,0.700,0.700,0.700,2419,120,1010 +1010,10.100,0.0000,0.0000,-0.0200,-0.0020,-0.0025,-9.8000,0.0001,0.0001,0.0007,0.700,0.700,0.700,0.700,2421,120,1011 +1011,10.110,0.0000,0.0000,-0.0200,-0.0011,-0.0019,-9.7994,-0.0000,0.0003,0.0003,0.700,0.700,0.700,0.700,2423,120,1012 +1012,10.120,0.0000,0.0000,-0.0200,-0.0018,0.0009,-9.7986,0.0002,0.0005,0.0007,0.700,0.700,0.700,0.700,2426,120,1013 +1013,10.130,0.0000,0.0000,-0.0200,0.0016,-0.0013,-9.7990,0.0001,-0.0002,-0.0006,0.700,0.700,0.700,0.700,2428,120,1014 +1014,10.140,0.0000,0.0000,-0.0200,0.0032,-0.0013,-9.8014,-0.0001,0.0007,-0.0000,0.700,0.700,0.700,0.700,2431,120,1015 +1015,10.150,0.0000,0.0000,-0.0200,0.0004,-0.0027,-9.8034,-0.0006,-0.0010,0.0003,0.700,0.700,0.700,0.700,2433,121,1016 +1016,10.160,0.0000,0.0000,-0.0200,0.0017,-0.0012,-9.8010,0.0010,-0.0013,0.0006,0.700,0.700,0.700,0.700,2435,121,1017 +1017,10.170,0.0000,0.0000,-0.0200,0.0038,-0.0007,-9.8007,-0.0000,0.0001,-0.0001,0.700,0.700,0.700,0.700,2438,121,1018 +1018,10.180,0.0000,0.0000,-0.0200,-0.0036,-0.0002,-9.8006,0.0014,-0.0000,-0.0016,0.700,0.700,0.700,0.700,2440,121,1019 +1019,10.190,0.0000,0.0000,-0.0200,0.0003,0.0012,-9.7976,-0.0001,0.0004,-0.0003,0.700,0.700,0.700,0.700,2443,121,1020 +1020,10.200,0.0000,0.0000,-0.0200,-0.0028,-0.0039,-9.8004,0.0005,0.0012,-0.0006,0.700,0.700,0.700,0.700,2445,121,1021 +1021,10.210,0.0000,0.0000,-0.0200,0.0003,-0.0027,-9.8035,-0.0014,-0.0009,0.0010,0.700,0.700,0.700,0.700,2447,121,1022 +1022,10.220,0.0000,0.0000,-0.0200,-0.0017,0.0026,-9.8006,-0.0002,-0.0002,0.0009,0.700,0.700,0.700,0.700,2449,121,1023 +1023,10.230,0.0000,0.0000,-0.0200,-0.0005,0.0034,-9.7973,0.0002,0.0014,0.0010,0.700,0.700,0.700,0.700,2451,121,1024 +1024,10.240,0.0000,0.0000,-0.0200,0.0010,0.0013,-9.7991,-0.0013,0.0011,-0.0010,0.700,0.700,0.700,0.700,2454,122,1025 +1025,10.250,0.0000,0.0000,-0.0200,0.0013,0.0023,-9.7997,0.0010,0.0002,0.0003,0.700,0.700,0.700,0.700,2456,122,1026 +1026,10.260,0.0000,0.0000,-0.0200,-0.0014,-0.0026,-9.7995,-0.0014,-0.0015,0.0003,0.700,0.700,0.700,0.700,2458,122,1027 +1027,10.270,0.0000,0.0000,-0.0200,-0.0023,-0.0024,-9.7999,-0.0005,-0.0001,0.0008,0.700,0.700,0.700,0.700,2461,122,1028 +1028,10.280,0.0000,0.0000,-0.0200,-0.0032,0.0021,-9.7991,-0.0002,-0.0011,-0.0007,0.700,0.700,0.700,0.700,2463,122,1029 +1029,10.290,0.0000,0.0000,-0.0200,0.0009,-0.0008,-9.8004,-0.0002,0.0019,-0.0003,0.700,0.700,0.700,0.700,2465,122,1030 +1030,10.300,0.0000,0.0000,-0.0200,-0.0000,0.0041,-9.7973,-0.0003,0.0012,0.0007,0.700,0.700,0.700,0.700,2468,122,1031 +1031,10.310,0.0000,0.0000,-0.0200,0.0026,0.0008,-9.8018,-0.0010,0.0009,0.0009,0.700,0.700,0.700,0.700,2470,122,1032 +1032,10.320,0.0000,0.0000,-0.0200,-0.0005,0.0029,-9.8015,0.0019,0.0007,0.0009,0.700,0.700,0.700,0.700,2472,123,1033 +1033,10.330,0.0000,0.0000,-0.0200,-0.0018,-0.0006,-9.7976,0.0008,0.0005,0.0006,0.700,0.700,0.700,0.700,2474,123,1034 +1034,10.340,0.0000,0.0000,-0.0200,0.0001,-0.0045,-9.8008,0.0009,-0.0012,-0.0001,0.700,0.700,0.700,0.700,2477,123,1035 +1035,10.350,0.0000,0.0000,-0.0200,-0.0002,-0.0003,-9.8001,0.0010,-0.0003,-0.0008,0.700,0.700,0.700,0.700,2479,123,1036 +1036,10.360,0.0000,0.0000,-0.0200,-0.0020,-0.0011,-9.7986,-0.0006,0.0002,-0.0007,0.700,0.700,0.700,0.700,2481,123,1037 +1037,10.370,0.0000,0.0000,-0.0200,0.0002,0.0023,-9.7984,0.0014,-0.0001,0.0002,0.700,0.700,0.700,0.700,2483,123,1038 +1038,10.380,0.0000,0.0000,-0.0200,0.0006,0.0015,-9.7980,0.0017,-0.0001,0.0018,0.700,0.700,0.700,0.700,2485,123,1039 +1039,10.390,0.0000,0.0000,-0.0200,-0.0037,-0.0010,-9.7999,-0.0004,-0.0004,0.0002,0.700,0.700,0.700,0.700,2487,123,1040 +1040,10.400,0.0000,0.0000,-0.0200,0.0046,0.0038,-9.7966,0.0020,0.0000,-0.0004,0.700,0.700,0.700,0.700,2490,123,1041 +1041,10.410,0.0000,0.0000,-0.0200,0.0012,0.0002,-9.8022,-0.0001,0.0006,0.0005,0.700,0.700,0.700,0.700,2492,124,1042 +1042,10.420,0.0000,0.0000,-0.0200,0.0007,-0.0003,-9.7995,-0.0012,0.0013,-0.0014,0.700,0.700,0.700,0.700,2495,124,1043 +1043,10.430,0.0000,0.0000,-0.0200,0.0006,-0.0050,-9.7985,0.0004,-0.0001,0.0008,0.700,0.700,0.700,0.700,2497,124,1044 +1044,10.440,0.0000,0.0000,-0.0200,0.0004,0.0011,-9.7960,0.0008,-0.0020,-0.0019,0.700,0.700,0.700,0.700,2500,124,1045 +1045,10.450,0.0000,0.0000,-0.0200,0.0033,0.0002,-9.7985,-0.0014,0.0016,0.0006,0.700,0.700,0.700,0.700,2502,124,1046 +1046,10.460,0.0000,0.0000,-0.0200,-0.0007,-0.0026,-9.7996,0.0005,-0.0013,0.0006,0.700,0.700,0.700,0.700,2504,124,1047 +1047,10.470,0.0000,0.0000,-0.0200,-0.0009,-0.0001,-9.7983,-0.0003,0.0007,-0.0009,0.700,0.700,0.700,0.700,2506,124,1048 +1048,10.480,0.0000,0.0000,-0.0200,-0.0007,0.0019,-9.7987,-0.0019,-0.0005,-0.0004,0.700,0.700,0.700,0.700,2509,124,1049 +1049,10.490,0.0000,0.0000,-0.0200,0.0001,-0.0002,-9.8026,0.0004,-0.0001,0.0002,0.700,0.700,0.700,0.700,2511,124,1050 +1050,10.500,0.0000,0.0000,-0.0200,0.0024,0.0022,-9.8033,0.0010,0.0007,0.0013,0.700,0.700,0.700,0.700,2514,125,1051 +1051,10.510,0.0000,0.0000,-0.0200,-0.0008,-0.0012,-9.8002,0.0018,-0.0002,0.0012,0.700,0.700,0.700,0.700,2516,125,1052 +1052,10.520,0.0000,0.0000,-0.0200,-0.0003,-0.0021,-9.7999,-0.0000,0.0015,-0.0012,0.700,0.700,0.700,0.700,2519,125,1053 +1053,10.530,0.0000,0.0000,-0.0200,-0.0001,-0.0014,-9.8001,-0.0003,0.0002,0.0004,0.700,0.700,0.700,0.700,2521,125,1054 +1054,10.540,0.0000,0.0000,-0.0200,0.0008,0.0018,-9.8005,-0.0008,-0.0012,-0.0009,0.700,0.700,0.700,0.700,2523,125,1055 +1055,10.550,0.0000,0.0000,-0.0200,-0.0001,-0.0006,-9.7951,0.0006,-0.0010,0.0012,0.700,0.700,0.700,0.700,2526,125,1056 +1056,10.560,0.0000,0.0000,-0.0200,0.0065,-0.0025,-9.8003,-0.0005,0.0004,0.0010,0.700,0.700,0.700,0.700,2528,125,1057 +1057,10.570,0.0000,0.0000,-0.0200,0.0008,-0.0014,-9.7990,-0.0012,0.0001,-0.0017,0.700,0.700,0.700,0.700,2530,125,1058 +1058,10.580,0.0000,0.0000,-0.0200,0.0014,-0.0005,-9.8006,0.0009,-0.0005,-0.0010,0.700,0.700,0.700,0.700,2533,126,1059 +1059,10.590,0.0000,0.0000,-0.0200,0.0003,-0.0004,-9.8028,0.0000,-0.0001,0.0008,0.700,0.700,0.700,0.700,2535,126,1060 +1060,10.600,0.0000,0.0000,-0.0200,-0.0003,0.0003,-9.8049,0.0006,-0.0006,0.0012,0.700,0.700,0.700,0.700,2538,126,1061 +1061,10.610,0.0000,0.0000,-0.0200,0.0023,0.0031,-9.8000,-0.0006,-0.0002,-0.0002,0.700,0.700,0.700,0.700,2540,126,1062 +1062,10.620,0.0000,0.0000,-0.0200,0.0023,-0.0028,-9.7995,0.0008,-0.0003,-0.0001,0.700,0.700,0.700,0.700,2543,126,1063 +1063,10.630,0.0000,0.0000,-0.0200,-0.0014,-0.0000,-9.7997,-0.0011,0.0007,-0.0003,0.700,0.700,0.700,0.700,2545,126,1064 +1064,10.640,0.0000,0.0000,-0.0200,0.0002,-0.0023,-9.8009,-0.0014,0.0010,-0.0020,0.700,0.700,0.700,0.700,2547,126,1065 +1065,10.650,0.0000,0.0000,-0.0200,-0.0045,-0.0012,-9.7988,0.0012,-0.0008,-0.0002,0.700,0.700,0.700,0.700,2549,126,1066 +1066,10.660,0.0000,0.0000,-0.0200,-0.0005,0.0008,-9.8023,-0.0013,0.0013,-0.0008,0.700,0.700,0.700,0.700,2552,127,1067 +1067,10.670,0.0000,0.0000,-0.0200,-0.0040,-0.0013,-9.7989,0.0021,-0.0000,0.0001,0.700,0.700,0.700,0.700,2554,127,1068 +1068,10.680,0.0000,0.0000,-0.0200,-0.0023,-0.0030,-9.8003,-0.0007,0.0012,0.0010,0.700,0.700,0.700,0.700,2557,127,1069 +1069,10.690,0.0000,0.0000,-0.0200,-0.0033,-0.0017,-9.7975,-0.0010,-0.0008,-0.0001,0.700,0.700,0.700,0.700,2559,127,1070 +1070,10.700,0.0000,0.0000,-0.0200,0.0016,0.0015,-9.7999,-0.0014,0.0007,-0.0003,0.700,0.700,0.700,0.700,2561,127,1071 +1071,10.710,0.0000,0.0000,-0.0200,0.0017,-0.0012,-9.7993,0.0005,-0.0001,0.0007,0.700,0.700,0.700,0.700,2563,127,1072 +1072,10.720,0.0000,0.0000,-0.0200,-0.0005,-0.0025,-9.7983,0.0005,0.0005,0.0003,0.700,0.700,0.700,0.700,2566,127,1073 +1073,10.730,0.0000,0.0000,-0.0200,0.0003,-0.0033,-9.7996,0.0003,-0.0008,-0.0016,0.700,0.700,0.700,0.700,2568,127,1074 +1074,10.740,0.0000,0.0000,-0.0200,0.0000,-0.0002,-9.8001,-0.0005,-0.0014,-0.0002,0.700,0.700,0.700,0.700,2571,127,1075 +1075,10.750,0.0000,0.0000,-0.0200,-0.0012,-0.0016,-9.7988,-0.0010,-0.0006,0.0016,0.700,0.700,0.700,0.700,2573,128,1076 +1076,10.760,0.0000,0.0000,-0.0200,0.0003,0.0006,-9.8001,0.0004,0.0008,-0.0001,0.700,0.700,0.700,0.700,2576,128,1077 +1077,10.770,0.0000,0.0000,-0.0200,0.0027,-0.0010,-9.8008,-0.0005,-0.0005,-0.0016,0.700,0.700,0.700,0.700,2578,128,1078 +1078,10.780,0.0000,0.0000,-0.0200,0.0010,-0.0014,-9.8018,-0.0000,-0.0016,-0.0003,0.700,0.700,0.700,0.700,2580,128,1079 +1079,10.790,0.0000,0.0000,-0.0200,-0.0035,-0.0017,-9.7968,-0.0010,-0.0005,0.0001,0.700,0.700,0.700,0.700,2583,128,1080 +1080,10.800,0.0000,0.0000,-0.0200,0.0039,-0.0037,-9.7981,-0.0008,0.0012,-0.0011,0.700,0.700,0.700,0.700,2585,128,1081 +1081,10.810,0.0000,0.0000,-0.0200,0.0005,0.0014,-9.7982,-0.0006,0.0001,-0.0006,0.700,0.700,0.700,0.700,2587,128,1082 +1082,10.820,0.0000,0.0000,-0.0200,-0.0015,0.0004,-9.7977,-0.0011,0.0003,0.0008,0.700,0.700,0.700,0.700,2589,128,1083 +1083,10.830,0.0000,0.0000,-0.0200,0.0006,-0.0021,-9.8003,-0.0005,0.0011,-0.0009,0.700,0.700,0.700,0.700,2591,128,1084 +1084,10.840,0.0000,0.0000,-0.0200,-0.0013,-0.0016,-9.7981,0.0015,0.0008,0.0011,0.700,0.700,0.700,0.700,2594,129,1085 +1085,10.850,0.0000,0.0000,-0.0200,0.0015,-0.0011,-9.8012,0.0004,0.0014,-0.0002,0.700,0.700,0.700,0.700,2596,129,1086 +1086,10.860,0.0000,0.0000,-0.0200,0.0012,-0.0048,-9.7997,0.0003,-0.0004,0.0003,0.700,0.700,0.700,0.700,2599,129,1087 +1087,10.870,0.0000,0.0000,-0.0200,0.0040,-0.0015,-9.8028,0.0006,-0.0001,-0.0019,0.700,0.700,0.700,0.700,2601,129,1088 +1088,10.880,0.0000,0.0000,-0.0200,-0.0023,-0.0061,-9.8018,-0.0006,-0.0007,-0.0011,0.700,0.700,0.700,0.700,2603,129,1089 +1089,10.890,0.0000,0.0000,-0.0200,0.0036,-0.0010,-9.8016,0.0014,-0.0015,-0.0019,0.700,0.700,0.700,0.700,2606,129,1090 +1090,10.900,0.0000,0.0000,-0.0200,-0.0023,-0.0044,-9.7963,-0.0001,0.0000,-0.0002,0.700,0.700,0.700,0.700,2608,129,1091 +1091,10.910,0.0000,0.0000,-0.0200,0.0000,-0.0030,-9.7995,-0.0007,-0.0004,0.0027,0.700,0.700,0.700,0.700,2610,129,1092 +1092,10.920,0.0000,0.0000,-0.0200,0.0044,0.0018,-9.7976,0.0008,-0.0024,-0.0004,0.700,0.700,0.700,0.700,2613,130,1093 +1093,10.930,0.0000,0.0000,-0.0200,0.0008,-0.0023,-9.7965,-0.0004,-0.0001,-0.0018,0.700,0.700,0.700,0.700,2615,130,1094 +1094,10.940,0.0000,0.0000,-0.0200,0.0015,0.0025,-9.8009,-0.0000,-0.0007,-0.0006,0.700,0.700,0.700,0.700,2617,130,1095 +1095,10.950,0.0000,0.0000,-0.0200,0.0023,-0.0005,-9.7986,-0.0002,0.0002,-0.0007,0.700,0.700,0.700,0.700,2620,130,1096 +1096,10.960,0.0000,0.0000,-0.0200,0.0022,-0.0019,-9.7988,-0.0003,-0.0004,0.0011,0.700,0.700,0.700,0.700,2622,130,1097 +1097,10.970,0.0000,0.0000,-0.0200,0.0037,-0.0041,-9.8008,-0.0003,-0.0001,0.0002,0.700,0.700,0.700,0.700,2624,130,1098 +1098,10.980,0.0000,0.0000,-0.0200,0.0022,0.0054,-9.7993,-0.0003,0.0003,0.0002,0.700,0.700,0.700,0.700,2627,130,1099 +1099,10.990,0.0000,0.0000,-0.0200,-0.0032,0.0021,-9.8045,-0.0001,-0.0006,-0.0010,0.700,0.700,0.700,0.700,2629,130,1100 +1100,11.000,0.0000,0.0000,-0.0200,0.0010,-0.0035,-9.7993,-0.0004,-0.0012,-0.0011,0.700,0.700,0.700,0.700,2631,130,1101 +1101,11.010,0.0000,0.0000,-0.0200,0.0023,-0.0021,-9.7996,0.0006,0.0003,-0.0006,0.700,0.700,0.700,0.700,2634,131,1102 +1102,11.020,0.0000,0.0000,-0.0200,0.0027,-0.0015,-9.8010,0.0009,-0.0001,-0.0003,0.700,0.700,0.700,0.700,2636,131,1103 +1103,11.030,0.0000,0.0000,-0.0200,0.0035,0.0005,-9.7942,0.0007,-0.0013,0.0003,0.700,0.700,0.700,0.700,2638,131,1104 +1104,11.040,0.0000,0.0000,-0.0200,0.0017,-0.0002,-9.7967,0.0012,-0.0009,-0.0005,0.700,0.700,0.700,0.700,2641,131,1105 +1105,11.050,0.0000,0.0000,-0.0200,-0.0034,0.0017,-9.7956,-0.0015,0.0003,-0.0010,0.700,0.700,0.700,0.700,2643,131,1106 +1106,11.060,0.0000,0.0000,-0.0200,0.0024,0.0014,-9.7995,0.0002,0.0014,-0.0002,0.700,0.700,0.700,0.700,2645,131,1107 +1107,11.070,0.0000,0.0000,-0.0200,-0.0004,-0.0038,-9.7989,-0.0003,0.0004,0.0001,0.700,0.700,0.700,0.700,2647,131,1108 +1108,11.080,0.0000,0.0000,-0.0200,-0.0018,0.0030,-9.7989,-0.0004,-0.0004,0.0001,0.700,0.700,0.700,0.700,2650,131,1109 +1109,11.090,0.0000,0.0000,-0.0200,-0.0023,0.0028,-9.7998,-0.0001,-0.0006,0.0001,0.700,0.700,0.700,0.700,2652,132,1110 +1110,11.100,0.0000,0.0000,-0.0200,-0.0009,-0.0027,-9.7969,-0.0003,-0.0002,0.0019,0.700,0.700,0.700,0.700,2655,132,1111 +1111,11.110,0.0000,0.0000,-0.0200,0.0006,0.0025,-9.8012,-0.0004,-0.0001,-0.0010,0.700,0.700,0.700,0.700,2657,132,1112 +1112,11.120,0.0000,0.0000,-0.0200,-0.0007,0.0038,-9.8028,-0.0004,0.0007,-0.0003,0.700,0.700,0.700,0.700,2660,132,1113 +1113,11.130,0.0000,0.0000,-0.0200,-0.0002,-0.0013,-9.8005,0.0019,-0.0006,-0.0000,0.700,0.700,0.700,0.700,2662,132,1114 +1114,11.140,0.0000,0.0000,-0.0200,0.0004,-0.0003,-9.8023,-0.0004,-0.0003,0.0004,0.700,0.700,0.700,0.700,2664,132,1115 +1115,11.150,0.0000,0.0000,-0.0200,-0.0003,-0.0011,-9.8018,0.0002,0.0003,0.0014,0.700,0.700,0.700,0.700,2666,132,1116 +1116,11.160,0.0000,0.0000,-0.0200,0.0010,-0.0025,-9.7987,-0.0004,0.0009,-0.0009,0.700,0.700,0.700,0.700,2669,132,1117 +1117,11.170,0.0000,0.0000,-0.0200,-0.0002,-0.0024,-9.7990,-0.0008,-0.0008,0.0014,0.700,0.700,0.700,0.700,2671,132,1118 +1118,11.180,0.0000,0.0000,-0.0200,0.0022,0.0019,-9.7998,0.0002,0.0006,-0.0017,0.700,0.700,0.700,0.700,2674,133,1119 +1119,11.190,0.0000,0.0000,-0.0200,0.0010,0.0010,-9.7973,-0.0005,-0.0020,-0.0003,0.700,0.700,0.700,0.700,2676,133,1120 +1120,11.200,0.0000,0.0000,-0.0200,-0.0022,0.0004,-9.7986,0.0006,-0.0017,0.0013,0.700,0.700,0.700,0.700,2679,133,1121 +1121,11.210,0.0000,0.0000,-0.0200,-0.0022,0.0014,-9.8007,-0.0006,-0.0012,0.0012,0.700,0.700,0.700,0.700,2681,133,1122 +1122,11.220,0.0000,0.0000,-0.0200,-0.0032,-0.0026,-9.7980,-0.0017,0.0005,-0.0002,0.700,0.700,0.700,0.700,2683,133,1123 +1123,11.230,0.0000,0.0000,-0.0200,0.0017,0.0015,-9.7982,-0.0011,0.0006,-0.0023,0.700,0.700,0.700,0.700,2686,133,1124 +1124,11.240,0.0000,0.0000,-0.0200,-0.0018,0.0019,-9.7998,-0.0001,0.0006,0.0007,0.700,0.700,0.700,0.700,2688,133,1125 +1125,11.250,0.0000,0.0000,-0.0200,0.0001,-0.0032,-9.7978,0.0010,-0.0005,0.0004,0.700,0.700,0.700,0.700,2691,133,1126 +1126,11.260,0.0000,0.0000,-0.0200,0.0034,0.0008,-9.7972,-0.0017,0.0007,-0.0017,0.700,0.700,0.700,0.700,2693,134,1127 +1127,11.270,0.0000,0.0000,-0.0200,-0.0021,0.0004,-9.7998,-0.0007,0.0000,0.0006,0.700,0.700,0.700,0.700,2695,134,1128 +1128,11.280,0.0000,0.0000,-0.0200,-0.0010,-0.0024,-9.8022,-0.0016,-0.0003,-0.0000,0.700,0.700,0.700,0.700,2698,134,1129 +1129,11.290,0.0000,0.0000,-0.0200,0.0012,0.0005,-9.8019,-0.0003,0.0001,0.0003,0.700,0.700,0.700,0.700,2700,134,1130 +1130,11.300,0.0000,0.0000,-0.0200,-0.0020,-0.0003,-9.7979,-0.0019,0.0005,-0.0003,0.700,0.700,0.700,0.700,2702,134,1131 +1131,11.310,0.0000,0.0000,-0.0200,-0.0014,-0.0014,-9.8043,-0.0017,0.0009,0.0005,0.700,0.700,0.700,0.700,2705,134,1132 +1132,11.320,0.0000,0.0000,-0.0200,0.0016,0.0029,-9.8013,-0.0009,-0.0003,0.0011,0.700,0.700,0.700,0.700,2707,134,1133 +1133,11.330,0.0000,0.0000,-0.0200,0.0020,0.0022,-9.8026,0.0001,-0.0015,-0.0001,0.700,0.700,0.700,0.700,2710,134,1134 +1134,11.340,0.0000,0.0000,-0.0200,0.0015,0.0000,-9.8019,-0.0018,0.0002,0.0010,0.700,0.700,0.700,0.700,2712,135,1135 +1135,11.350,0.0000,0.0000,-0.0200,0.0009,-0.0016,-9.8022,-0.0005,0.0003,-0.0003,0.700,0.700,0.700,0.700,2714,135,1136 +1136,11.360,0.0000,0.0000,-0.0200,-0.0004,0.0006,-9.7976,-0.0012,0.0003,-0.0009,0.700,0.700,0.700,0.700,2717,135,1137 +1137,11.370,0.0000,0.0000,-0.0200,-0.0009,0.0010,-9.8015,0.0009,-0.0012,-0.0003,0.700,0.700,0.700,0.700,2719,135,1138 +1138,11.380,0.0000,0.0000,-0.0200,0.0017,-0.0050,-9.7985,0.0011,0.0005,-0.0027,0.700,0.700,0.700,0.700,2722,135,1139 +1139,11.390,0.0000,0.0000,-0.0200,-0.0020,-0.0029,-9.7993,-0.0010,-0.0016,-0.0014,0.700,0.700,0.700,0.700,2724,135,1140 +1140,11.400,0.0000,0.0000,-0.0200,-0.0024,0.0009,-9.7969,-0.0007,-0.0008,-0.0007,0.700,0.700,0.700,0.700,2727,135,1141 +1141,11.410,0.0000,0.0000,-0.0200,-0.0015,0.0003,-9.8009,-0.0001,0.0003,0.0001,0.700,0.700,0.700,0.700,2729,135,1142 +1142,11.420,0.0000,0.0000,-0.0200,-0.0013,-0.0007,-9.8009,0.0012,-0.0010,-0.0007,0.700,0.700,0.700,0.700,2731,135,1143 +1143,11.430,0.0000,0.0000,-0.0200,-0.0005,-0.0032,-9.7975,0.0002,0.0010,0.0001,0.700,0.700,0.700,0.700,2734,136,1144 +1144,11.440,0.0000,0.0000,-0.0200,-0.0013,0.0004,-9.8006,0.0017,0.0001,-0.0004,0.700,0.700,0.700,0.700,2736,136,1145 +1145,11.450,0.0000,0.0000,-0.0200,-0.0025,0.0004,-9.8022,-0.0008,0.0002,0.0002,0.700,0.700,0.700,0.700,2738,136,1146 +1146,11.460,0.0000,0.0000,-0.0200,-0.0014,0.0011,-9.8019,0.0019,0.0006,-0.0006,0.700,0.700,0.700,0.700,2741,136,1147 +1147,11.470,0.0000,0.0000,-0.0200,-0.0013,-0.0013,-9.8019,-0.0001,-0.0016,-0.0006,0.700,0.700,0.700,0.700,2743,136,1148 +1148,11.480,0.0000,0.0000,-0.0200,-0.0018,-0.0007,-9.8007,0.0010,-0.0005,0.0010,0.700,0.700,0.700,0.700,2745,136,1149 +1149,11.490,0.0000,0.0000,-0.0200,-0.0021,0.0010,-9.8017,-0.0001,0.0005,-0.0011,0.700,0.700,0.700,0.700,2748,136,1150 +1150,11.500,0.0000,0.0000,-0.0200,-0.0049,0.0002,-9.7958,0.0009,0.0005,-0.0006,0.700,0.700,0.700,0.700,2750,136,1151 +1151,11.510,0.0000,0.0000,-0.0200,-0.0021,0.0015,-9.7977,0.0003,0.0010,0.0004,0.700,0.700,0.700,0.700,2753,137,1152 +1152,11.520,0.0000,0.0000,-0.0200,0.0036,-0.0002,-9.7993,-0.0007,-0.0011,-0.0013,0.700,0.700,0.700,0.700,2755,137,1153 +1153,11.530,0.0000,0.0000,-0.0200,-0.0010,-0.0013,-9.8019,-0.0009,0.0003,0.0001,0.700,0.700,0.700,0.700,2758,137,1154 +1154,11.540,0.0000,0.0000,-0.0200,0.0002,0.0006,-9.8034,0.0006,0.0006,0.0007,0.700,0.700,0.700,0.700,2760,137,1155 +1155,11.550,0.0000,0.0000,-0.0200,-0.0048,0.0039,-9.7982,-0.0005,-0.0003,-0.0002,0.700,0.700,0.700,0.700,2762,137,1156 +1156,11.560,0.0000,0.0000,-0.0200,-0.0015,-0.0003,-9.7995,0.0015,-0.0005,-0.0005,0.700,0.700,0.700,0.700,2764,137,1157 +1157,11.570,0.0000,0.0000,-0.0200,0.0015,0.0003,-9.8012,-0.0005,0.0002,-0.0002,0.700,0.700,0.700,0.700,2767,137,1158 +1158,11.580,0.0000,0.0000,-0.0200,0.0004,-0.0019,-9.7942,-0.0016,-0.0007,0.0002,0.700,0.700,0.700,0.700,2769,137,1159 +1159,11.590,0.0000,0.0000,-0.0200,0.0027,0.0003,-9.8019,-0.0001,0.0031,0.0019,0.700,0.700,0.700,0.700,2772,138,1160 +1160,11.600,0.0000,0.0000,-0.0200,-0.0046,0.0003,-9.7986,0.0001,-0.0007,0.0012,0.700,0.700,0.700,0.700,2774,138,1161 +1161,11.610,0.0000,0.0000,-0.0200,-0.0021,0.0042,-9.8044,0.0009,-0.0002,0.0003,0.700,0.700,0.700,0.700,2776,138,1162 +1162,11.620,0.0000,0.0000,-0.0200,0.0020,-0.0003,-9.8005,0.0002,0.0015,-0.0015,0.700,0.700,0.700,0.700,2779,138,1163 +1163,11.630,0.0000,0.0000,-0.0200,-0.0007,-0.0022,-9.7998,-0.0003,0.0020,0.0010,0.700,0.700,0.700,0.700,2781,138,1164 +1164,11.640,0.0000,0.0000,-0.0200,0.0016,0.0019,-9.8025,-0.0014,-0.0013,-0.0013,0.700,0.700,0.700,0.700,2783,138,1165 +1165,11.650,0.0000,0.0000,-0.0200,-0.0002,-0.0016,-9.7966,0.0003,-0.0009,0.0011,0.700,0.700,0.700,0.700,2786,138,1166 +1166,11.660,0.0000,0.0000,-0.0200,0.0018,0.0026,-9.7984,-0.0015,-0.0011,-0.0008,0.700,0.700,0.700,0.700,2788,138,1167 +1167,11.670,0.0000,0.0000,-0.0200,0.0001,0.0014,-9.8013,-0.0015,0.0005,-0.0005,0.700,0.700,0.700,0.700,2791,138,1168 +1168,11.680,0.0000,0.0000,-0.0200,0.0043,0.0037,-9.7994,-0.0001,0.0005,0.0019,0.700,0.700,0.700,0.700,2793,139,1169 +1169,11.690,0.0000,0.0000,-0.0200,0.0033,-0.0021,-9.7995,-0.0005,0.0011,0.0014,0.700,0.700,0.700,0.700,2796,139,1170 +1170,11.700,0.0000,0.0000,-0.0200,0.0004,0.0009,-9.7997,0.0005,-0.0005,0.0025,0.700,0.700,0.700,0.700,2798,139,1171 +1171,11.710,0.0000,0.0000,-0.0200,-0.0021,-0.0000,-9.7994,0.0004,-0.0007,0.0006,0.700,0.700,0.700,0.700,2800,139,1172 +1172,11.720,0.0000,0.0000,-0.0200,0.0009,0.0004,-9.7961,-0.0017,0.0011,0.0006,0.700,0.700,0.700,0.700,2802,139,1173 +1173,11.730,0.0000,0.0000,-0.0200,0.0014,0.0005,-9.7987,-0.0009,0.0001,-0.0003,0.700,0.700,0.700,0.700,2805,139,1174 +1174,11.740,0.0000,0.0000,-0.0200,0.0017,0.0021,-9.8011,-0.0012,-0.0014,-0.0008,0.700,0.700,0.700,0.700,2807,139,1175 +1175,11.750,0.0000,0.0000,-0.0200,0.0025,0.0008,-9.8033,0.0018,0.0005,-0.0008,0.700,0.700,0.700,0.700,2810,139,1176 +1176,11.760,0.0000,0.0000,-0.0200,-0.0007,-0.0012,-9.7977,-0.0002,0.0005,-0.0015,0.700,0.700,0.700,0.700,2812,140,1177 +1177,11.770,0.0000,0.0000,-0.0200,0.0021,0.0001,-9.7993,-0.0006,-0.0010,0.0008,0.700,0.700,0.700,0.700,2815,140,1178 +1178,11.780,0.0000,0.0000,-0.0200,0.0005,-0.0036,-9.8004,-0.0022,-0.0000,-0.0009,0.700,0.700,0.700,0.700,2817,140,1179 +1179,11.790,0.0000,0.0000,-0.0200,0.0029,-0.0006,-9.8023,-0.0020,0.0007,0.0004,0.700,0.700,0.700,0.700,2820,140,1180 +1180,11.800,0.0000,0.0000,-0.0200,-0.0002,-0.0037,-9.8015,-0.0017,-0.0008,-0.0005,0.700,0.700,0.700,0.700,2822,140,1181 +1181,11.810,0.0000,0.0000,-0.0200,0.0014,-0.0050,-9.8014,0.0000,0.0013,-0.0003,0.700,0.700,0.700,0.700,2825,140,1182 +1182,11.820,0.0000,0.0000,-0.0200,-0.0025,-0.0009,-9.8002,0.0021,-0.0001,0.0008,0.700,0.700,0.700,0.700,2827,140,1183 +1183,11.830,0.0000,0.0000,-0.0200,-0.0050,-0.0037,-9.8034,0.0004,0.0000,-0.0004,0.700,0.700,0.700,0.700,2829,140,1184 +1184,11.840,0.0000,0.0000,-0.0200,-0.0031,-0.0009,-9.7984,-0.0007,-0.0020,0.0003,0.700,0.700,0.700,0.700,2831,140,1185 +1185,11.850,0.0000,0.0000,-0.0200,0.0018,-0.0007,-9.8027,-0.0004,-0.0002,0.0006,0.700,0.700,0.700,0.700,2834,141,1186 +1186,11.860,0.0000,0.0000,-0.0200,-0.0001,0.0015,-9.8041,0.0010,-0.0001,-0.0017,0.700,0.700,0.700,0.700,2836,141,1187 +1187,11.870,0.0000,0.0000,-0.0200,-0.0000,0.0018,-9.8033,0.0001,0.0001,0.0010,0.700,0.700,0.700,0.700,2838,141,1188 +1188,11.880,0.0000,0.0000,-0.0200,-0.0020,-0.0032,-9.7979,0.0007,-0.0004,0.0006,0.700,0.700,0.700,0.700,2841,141,1189 +1189,11.890,0.0000,0.0000,-0.0200,-0.0039,-0.0023,-9.7973,-0.0006,-0.0001,0.0013,0.700,0.700,0.700,0.700,2843,141,1190 +1190,11.900,0.0000,0.0000,-0.0200,0.0002,-0.0017,-9.8023,0.0008,0.0012,0.0003,0.700,0.700,0.700,0.700,2846,141,1191 +1191,11.910,0.0000,0.0000,-0.0200,-0.0020,-0.0010,-9.7970,0.0014,-0.0012,-0.0016,0.700,0.700,0.700,0.700,2848,141,1192 +1192,11.920,0.0000,0.0000,-0.0200,0.0018,0.0000,-9.7995,0.0005,-0.0002,-0.0006,0.700,0.700,0.700,0.700,2850,141,1193 +1193,11.930,0.0000,0.0000,-0.0200,0.0008,-0.0005,-9.8018,0.0012,-0.0008,-0.0005,0.700,0.700,0.700,0.700,2852,142,1194 +1194,11.940,0.0000,0.0000,-0.0200,0.0012,0.0002,-9.7963,-0.0000,-0.0003,-0.0002,0.700,0.700,0.700,0.700,2855,142,1195 +1195,11.950,0.0000,0.0000,-0.0200,-0.0003,-0.0015,-9.8005,-0.0005,-0.0021,-0.0004,0.700,0.700,0.700,0.700,2857,142,1196 +1196,11.960,0.0000,0.0000,-0.0200,-0.0043,0.0003,-9.7971,-0.0011,0.0004,-0.0004,0.700,0.700,0.700,0.700,2860,142,1197 +1197,11.970,0.0000,0.0000,-0.0200,-0.0012,-0.0017,-9.8028,-0.0005,-0.0016,-0.0016,0.700,0.700,0.700,0.700,2862,142,1198 +1198,11.980,0.0000,0.0000,-0.0200,-0.0007,-0.0011,-9.7990,0.0002,0.0017,0.0011,0.700,0.700,0.700,0.700,2865,142,1199 +1199,11.990,0.0000,0.0000,-0.0200,-0.0029,0.0005,-9.7978,-0.0005,0.0002,0.0001,0.700,0.700,0.700,0.700,2867,142,1200 +1200,12.000,0.0000,0.0000,-0.0200,-0.0003,0.0008,-9.7987,0.0005,0.0013,-0.0001,0.700,0.700,0.700,0.700,2869,142,1201 +1201,12.010,0.0000,0.0000,-0.0200,-0.0067,-0.0024,-9.7977,-0.0001,0.0004,0.0000,0.700,0.700,0.700,0.700,2872,143,1202 +1202,12.020,0.0000,0.0000,-0.0200,-0.0001,0.0016,-9.8024,-0.0003,-0.0003,-0.0015,0.700,0.700,0.700,0.700,2874,143,1203 +1203,12.030,0.0000,0.0000,-0.0200,-0.0027,0.0057,-9.8020,-0.0005,0.0011,0.0010,0.700,0.700,0.700,0.700,2877,143,1204 +1204,12.040,0.0000,0.0000,-0.0200,-0.0020,0.0044,-9.7985,-0.0003,-0.0003,-0.0000,0.700,0.700,0.700,0.700,2879,143,1205 +1205,12.050,0.0000,0.0000,-0.0200,0.0029,-0.0008,-9.8001,0.0000,-0.0007,-0.0005,0.700,0.700,0.700,0.700,2881,143,1206 +1206,12.060,0.0000,0.0000,-0.0200,0.0003,-0.0003,-9.8029,0.0000,0.0001,0.0002,0.700,0.700,0.700,0.700,2884,143,1207 +1207,12.070,0.0000,0.0000,-0.0200,0.0001,0.0014,-9.7971,-0.0006,-0.0002,0.0005,0.700,0.700,0.700,0.700,2886,143,1208 +1208,12.080,0.0000,0.0000,-0.0200,-0.0008,0.0016,-9.7999,-0.0010,0.0001,0.0009,0.700,0.700,0.700,0.700,2888,143,1209 +1209,12.090,0.0000,0.0000,-0.0200,0.0018,0.0016,-9.7951,0.0004,0.0002,0.0001,0.700,0.700,0.700,0.700,2891,143,1210 +1210,12.100,0.0000,0.0000,-0.0200,-0.0025,-0.0012,-9.7956,0.0004,-0.0005,0.0001,0.700,0.700,0.700,0.700,2893,144,1211 +1211,12.110,0.0000,0.0000,-0.0200,-0.0026,0.0038,-9.8017,0.0012,-0.0010,-0.0006,0.700,0.700,0.700,0.700,2896,144,1212 +1212,12.120,0.0000,0.0000,-0.0200,-0.0003,0.0024,-9.7969,0.0002,-0.0010,-0.0001,0.700,0.700,0.700,0.700,2898,144,1213 +1213,12.130,0.0000,0.0000,-0.0200,-0.0016,-0.0003,-9.7975,-0.0011,0.0010,0.0007,0.700,0.700,0.700,0.700,2901,144,1214 +1214,12.140,0.0000,0.0000,-0.0200,0.0025,0.0006,-9.8001,0.0007,0.0017,-0.0002,0.700,0.700,0.700,0.700,2903,144,1215 +1215,12.150,0.0000,0.0000,-0.0200,-0.0027,-0.0006,-9.7964,0.0007,-0.0007,-0.0003,0.700,0.700,0.700,0.700,2905,144,1216 +1216,12.160,0.0000,0.0000,-0.0200,-0.0001,-0.0037,-9.8029,-0.0013,-0.0002,0.0001,0.700,0.700,0.700,0.700,2907,144,1217 +1217,12.170,0.0000,0.0000,-0.0200,-0.0004,-0.0016,-9.8021,0.0009,0.0018,0.0013,0.700,0.700,0.700,0.700,2910,144,1218 +1218,12.180,0.0000,0.0000,-0.0200,-0.0007,-0.0011,-9.7968,-0.0025,-0.0005,-0.0011,0.700,0.700,0.700,0.700,2912,145,1219 +1219,12.190,0.0000,0.0000,-0.0200,0.0045,0.0023,-9.7992,-0.0009,-0.0006,0.0001,0.700,0.700,0.700,0.700,2914,145,1220 +1220,12.200,0.0000,0.0000,-0.0200,0.0023,0.0027,-9.7989,0.0000,-0.0012,0.0017,0.700,0.700,0.700,0.700,2917,145,1221 +1221,12.210,0.0000,0.0000,-0.0200,-0.0025,-0.0029,-9.7993,-0.0001,0.0006,-0.0006,0.700,0.700,0.700,0.700,2919,145,1222 +1222,12.220,0.0000,0.0000,-0.0200,-0.0017,-0.0030,-9.8002,0.0000,-0.0007,-0.0006,0.700,0.700,0.700,0.700,2922,145,1223 +1223,12.230,0.0000,0.0000,-0.0200,0.0019,0.0005,-9.7978,-0.0001,0.0002,-0.0011,0.700,0.700,0.700,0.700,2924,145,1224 +1224,12.240,0.0000,0.0000,-0.0200,-0.0002,0.0024,-9.8005,0.0016,0.0012,-0.0003,0.700,0.700,0.700,0.700,2927,145,1225 +1225,12.250,0.0000,0.0000,-0.0200,0.0032,0.0015,-9.7991,0.0008,0.0006,-0.0006,0.700,0.700,0.700,0.700,2929,145,1226 +1226,12.260,0.0000,0.0000,-0.0200,0.0007,0.0005,-9.8028,0.0019,0.0008,0.0001,0.700,0.700,0.700,0.700,2931,145,1227 +1227,12.270,0.0000,0.0000,-0.0200,0.0013,-0.0011,-9.8000,0.0006,0.0003,-0.0003,0.700,0.700,0.700,0.700,2934,146,1228 +1228,12.280,0.0000,0.0000,-0.0200,-0.0003,0.0009,-9.8008,0.0007,0.0015,0.0006,0.700,0.700,0.700,0.700,2936,146,1229 +1229,12.290,0.0000,0.0000,-0.0200,-0.0015,-0.0015,-9.7994,-0.0005,-0.0014,0.0007,0.700,0.700,0.700,0.700,2938,146,1230 +1230,12.300,0.0000,0.0000,-0.0200,0.0004,-0.0000,-9.7969,-0.0014,-0.0007,-0.0011,0.700,0.700,0.700,0.700,2941,146,1231 +1231,12.310,0.0000,0.0000,-0.0200,0.0007,0.0012,-9.8006,-0.0002,-0.0013,-0.0008,0.700,0.700,0.700,0.700,2943,146,1232 +1232,12.320,0.0000,0.0000,-0.0200,-0.0003,-0.0017,-9.8016,-0.0005,-0.0002,0.0012,0.700,0.700,0.700,0.700,2945,146,1233 +1233,12.330,0.0000,0.0000,-0.0200,0.0017,0.0027,-9.8008,0.0003,-0.0006,-0.0004,0.700,0.700,0.700,0.700,2948,146,1234 +1234,12.340,0.0000,0.0000,-0.0200,0.0026,0.0019,-9.8052,-0.0008,-0.0008,-0.0004,0.700,0.700,0.700,0.700,2950,146,1235 +1235,12.350,0.0000,0.0000,-0.0200,0.0015,-0.0015,-9.8030,-0.0002,-0.0002,0.0008,0.700,0.700,0.700,0.700,2953,147,1236 +1236,12.360,0.0000,0.0000,-0.0200,0.0034,0.0010,-9.8006,0.0016,-0.0020,-0.0001,0.700,0.700,0.700,0.700,2955,147,1237 +1237,12.370,0.0000,0.0000,-0.0200,0.0013,-0.0011,-9.7971,0.0006,0.0012,-0.0002,0.700,0.700,0.700,0.700,2957,147,1238 +1238,12.380,0.0000,0.0000,-0.0200,-0.0005,-0.0003,-9.7977,0.0005,0.0001,-0.0003,0.700,0.700,0.700,0.700,2959,147,1239 +1239,12.390,0.0000,0.0000,-0.0200,-0.0002,0.0037,-9.7992,0.0006,-0.0010,0.0001,0.700,0.700,0.700,0.700,2961,147,1240 +1240,12.400,0.0000,0.0000,-0.0200,0.0004,0.0032,-9.8007,-0.0001,-0.0007,-0.0014,0.700,0.700,0.700,0.700,2964,147,1241 +1241,12.410,0.0000,0.0000,-0.0200,-0.0014,0.0016,-9.7993,0.0002,-0.0013,-0.0006,0.700,0.700,0.700,0.700,2966,147,1242 +1242,12.420,0.0000,0.0000,-0.0200,0.0021,-0.0001,-9.7998,0.0000,0.0008,-0.0001,0.700,0.700,0.700,0.700,2969,147,1243 +1243,12.430,0.0000,0.0000,-0.0200,0.0032,0.0026,-9.8044,-0.0004,-0.0002,0.0013,0.700,0.700,0.700,0.700,2971,147,1244 +1244,12.440,0.0000,0.0000,-0.0200,-0.0014,-0.0016,-9.8013,-0.0017,0.0004,0.0015,0.700,0.700,0.700,0.700,2973,148,1245 +1245,12.450,0.0000,0.0000,-0.0200,-0.0005,-0.0021,-9.7986,-0.0017,0.0005,0.0003,0.700,0.700,0.700,0.700,2975,148,1246 +1246,12.460,0.0000,0.0000,-0.0200,0.0070,0.0027,-9.8036,-0.0009,0.0007,0.0009,0.700,0.700,0.700,0.700,2978,148,1247 +1247,12.470,0.0000,0.0000,-0.0200,0.0001,-0.0000,-9.7980,-0.0001,-0.0003,-0.0005,0.700,0.700,0.700,0.700,2980,148,1248 +1248,12.480,0.0000,0.0000,-0.0200,-0.0010,0.0013,-9.7986,0.0001,0.0013,-0.0003,0.700,0.700,0.700,0.700,2983,148,1249 +1249,12.490,0.0000,0.0000,-0.0200,0.0005,-0.0013,-9.7984,0.0008,-0.0009,0.0004,0.700,0.700,0.700,0.700,2985,148,1250 +1250,12.500,0.0000,0.0000,-0.0200,-0.0025,0.0006,-9.7976,0.0013,-0.0011,-0.0000,0.700,0.700,0.700,0.700,2988,148,1251 +1251,12.510,0.0000,0.0000,-0.0200,0.0006,-0.0001,-9.7984,-0.0006,0.0002,0.0001,0.700,0.700,0.700,0.700,2990,148,1252 +1252,12.520,0.0000,0.0000,-0.0200,0.0001,-0.0018,-9.8018,0.0003,-0.0004,0.0002,0.700,0.700,0.700,0.700,2993,149,1253 +1253,12.530,0.0000,0.0000,-0.0200,0.0002,-0.0036,-9.7991,-0.0003,-0.0005,0.0000,0.700,0.700,0.700,0.700,2995,149,1254 +1254,12.540,0.0000,0.0000,-0.0200,-0.0001,-0.0011,-9.7969,0.0002,0.0004,-0.0001,0.700,0.700,0.700,0.700,2997,149,1255 +1255,12.550,0.0000,0.0000,-0.0200,-0.0013,-0.0032,-9.7971,-0.0010,-0.0003,-0.0003,0.700,0.700,0.700,0.700,2999,149,1256 +1256,12.560,0.0000,0.0000,-0.0200,0.0015,0.0040,-9.8016,-0.0009,-0.0007,0.0001,0.700,0.700,0.700,0.700,3002,149,1257 +1257,12.570,0.0000,0.0000,-0.0200,0.0008,0.0010,-9.7991,0.0010,0.0009,0.0006,0.700,0.700,0.700,0.700,3004,149,1258 +1258,12.580,0.0000,0.0000,-0.0200,0.0020,0.0014,-9.8041,0.0013,-0.0009,0.0009,0.700,0.700,0.700,0.700,3006,149,1259 +1259,12.590,0.0000,0.0000,-0.0200,-0.0040,-0.0029,-9.8023,0.0003,-0.0006,0.0006,0.700,0.700,0.700,0.700,3009,149,1260 +1260,12.600,0.0000,0.0000,-0.0200,-0.0005,-0.0002,-9.8024,-0.0003,-0.0008,0.0002,0.700,0.700,0.700,0.700,3011,149,1261 +1261,12.610,0.0000,0.0000,-0.0200,0.0015,-0.0016,-9.7999,0.0016,0.0003,-0.0009,0.700,0.700,0.700,0.700,3013,150,1262 +1262,12.620,0.0000,0.0000,-0.0200,0.0010,-0.0027,-9.8000,0.0003,0.0001,-0.0001,0.700,0.700,0.700,0.700,3016,150,1263 +1263,12.630,0.0000,0.0000,-0.0200,0.0026,-0.0033,-9.8019,0.0012,0.0004,0.0005,0.700,0.700,0.700,0.700,3018,150,1264 +1264,12.640,0.0000,0.0000,-0.0200,-0.0007,0.0007,-9.7990,0.0002,0.0002,0.0007,0.700,0.700,0.700,0.700,3020,150,1265 +1265,12.650,0.0000,0.0000,-0.0200,0.0008,-0.0008,-9.8021,0.0006,-0.0006,0.0004,0.700,0.700,0.700,0.700,3022,150,1266 +1266,12.660,0.0000,0.0000,-0.0200,-0.0007,0.0001,-9.8024,-0.0010,0.0010,-0.0000,0.700,0.700,0.700,0.700,3024,150,1267 +1267,12.670,0.0000,0.0000,-0.0200,0.0031,0.0022,-9.7993,-0.0010,0.0001,-0.0009,0.700,0.700,0.700,0.700,3027,150,1268 +1268,12.680,0.0000,0.0000,-0.0200,0.0006,-0.0002,-9.7976,-0.0010,0.0014,0.0001,0.700,0.700,0.700,0.700,3029,150,1269 +1269,12.690,0.0000,0.0000,-0.0200,0.0009,-0.0003,-9.7990,-0.0006,0.0005,-0.0010,0.700,0.700,0.700,0.700,3032,151,1270 +1270,12.700,0.0000,0.0000,-0.0200,-0.0008,0.0017,-9.8021,-0.0007,0.0011,-0.0000,0.700,0.700,0.700,0.700,3034,151,1271 +1271,12.710,0.0000,0.0000,-0.0200,0.0010,0.0020,-9.7992,0.0012,0.0011,0.0003,0.700,0.700,0.700,0.700,3037,151,1272 +1272,12.720,0.0000,0.0000,-0.0200,-0.0017,-0.0034,-9.8032,0.0003,-0.0011,-0.0003,0.700,0.700,0.700,0.700,3039,151,1273 +1273,12.730,0.0000,0.0000,-0.0200,0.0031,-0.0051,-9.7960,0.0003,0.0013,-0.0000,0.700,0.700,0.700,0.700,3041,151,1274 +1274,12.740,0.0000,0.0000,-0.0200,-0.0021,-0.0001,-9.7973,0.0001,-0.0002,-0.0003,0.700,0.700,0.700,0.700,3044,151,1275 +1275,12.750,0.0000,0.0000,-0.0200,-0.0007,0.0004,-9.8020,-0.0002,-0.0016,0.0002,0.700,0.700,0.700,0.700,3046,151,1276 +1276,12.760,0.0000,0.0000,-0.0200,0.0048,0.0002,-9.7987,0.0004,0.0010,-0.0009,0.700,0.700,0.700,0.700,3049,151,1277 +1277,12.770,0.0000,0.0000,-0.0200,-0.0011,-0.0007,-9.7988,0.0000,-0.0010,-0.0011,0.700,0.700,0.700,0.700,3051,151,1278 +1278,12.780,0.0000,0.0000,-0.0200,0.0005,-0.0018,-9.7976,0.0012,0.0006,-0.0019,0.700,0.700,0.700,0.700,3053,152,1279 +1279,12.790,0.0000,0.0000,-0.0200,0.0026,0.0011,-9.8002,-0.0008,0.0001,-0.0005,0.700,0.700,0.700,0.700,3055,152,1280 +1280,12.800,0.0000,0.0000,-0.0200,0.0012,0.0018,-9.8010,0.0012,-0.0005,0.0000,0.700,0.700,0.700,0.700,3058,152,1281 +1281,12.810,0.0000,0.0000,-0.0200,-0.0037,0.0004,-9.8033,-0.0008,-0.0013,-0.0010,0.700,0.700,0.700,0.700,3060,152,1282 +1282,12.820,0.0000,0.0000,-0.0200,-0.0004,-0.0019,-9.8018,-0.0001,0.0006,-0.0007,0.700,0.700,0.700,0.700,3063,152,1283 +1283,12.830,0.0000,0.0000,-0.0200,0.0016,0.0022,-9.7970,0.0002,-0.0018,0.0004,0.700,0.700,0.700,0.700,3065,152,1284 +1284,12.840,0.0000,0.0000,-0.0200,-0.0014,0.0031,-9.7980,0.0016,-0.0000,0.0005,0.700,0.700,0.700,0.700,3068,152,1285 +1285,12.850,0.0000,0.0000,-0.0200,-0.0016,-0.0019,-9.7993,0.0008,-0.0007,-0.0011,0.700,0.700,0.700,0.700,3070,152,1286 +1286,12.860,0.0000,0.0000,-0.0200,0.0011,-0.0025,-9.8017,0.0004,0.0011,-0.0008,0.700,0.700,0.700,0.700,3072,153,1287 +1287,12.870,0.0000,0.0000,-0.0200,0.0035,-0.0022,-9.7993,-0.0010,0.0000,0.0008,0.700,0.700,0.700,0.700,3075,153,1288 +1288,12.880,0.0000,0.0000,-0.0200,0.0005,0.0002,-9.8006,0.0000,0.0014,-0.0017,0.700,0.700,0.700,0.700,3077,153,1289 +1289,12.890,0.0000,0.0000,-0.0200,0.0061,0.0033,-9.8006,0.0001,-0.0001,0.0004,0.700,0.700,0.700,0.700,3080,153,1290 +1290,12.900,0.0000,0.0000,-0.0200,0.0005,0.0003,-9.8054,0.0001,0.0001,0.0008,0.700,0.700,0.700,0.700,3082,153,1291 +1291,12.910,0.0000,0.0000,-0.0200,0.0022,-0.0018,-9.8024,0.0009,-0.0008,-0.0008,0.700,0.700,0.700,0.700,3084,153,1292 +1292,12.920,0.0000,0.0000,-0.0200,-0.0004,-0.0006,-9.7998,0.0001,0.0001,-0.0010,0.700,0.700,0.700,0.700,3087,153,1293 +1293,12.930,0.0000,0.0000,-0.0200,-0.0017,-0.0022,-9.8034,-0.0017,-0.0001,-0.0003,0.700,0.700,0.700,0.700,3089,153,1294 +1294,12.940,0.0000,0.0000,-0.0200,-0.0019,-0.0008,-9.7998,-0.0010,-0.0003,0.0004,0.700,0.700,0.700,0.700,3091,153,1295 +1295,12.950,0.0000,0.0000,-0.0200,-0.0006,-0.0003,-9.7979,0.0007,-0.0011,0.0004,0.700,0.700,0.700,0.700,3094,154,1296 +1296,12.960,0.0000,0.0000,-0.0200,-0.0008,0.0027,-9.8004,0.0004,0.0000,0.0009,0.700,0.700,0.700,0.700,3096,154,1297 +1297,12.970,0.0000,0.0000,-0.0200,0.0018,-0.0029,-9.7944,0.0005,0.0006,0.0007,0.700,0.700,0.700,0.700,3099,154,1298 +1298,12.980,0.0000,0.0000,-0.0200,-0.0031,0.0007,-9.7993,-0.0024,0.0001,0.0005,0.700,0.700,0.700,0.700,3101,154,1299 +1299,12.990,0.0000,0.0000,-0.0200,0.0007,0.0020,-9.7983,-0.0016,0.0007,0.0002,0.700,0.700,0.700,0.700,3103,154,1300 +1300,13.000,0.0000,0.0000,-0.0200,-0.0014,-0.0012,-9.7994,-0.0002,-0.0001,0.0014,0.700,0.700,0.700,0.700,3106,154,1301 +1301,13.010,0.0000,0.0000,-0.0200,-0.0030,0.0002,-9.7993,-0.0016,0.0019,0.0006,0.700,0.700,0.700,0.700,3108,154,1302 +1302,13.020,0.0000,0.0000,-0.0200,-0.0012,-0.0016,-9.7980,-0.0007,-0.0010,0.0020,0.700,0.700,0.700,0.700,3110,154,1303 +1303,13.030,0.0000,0.0000,-0.0200,0.0026,0.0010,-9.8008,-0.0005,-0.0008,-0.0002,0.700,0.700,0.700,0.700,3113,155,1304 +1304,13.040,0.0000,0.0000,-0.0200,-0.0022,0.0016,-9.7956,-0.0008,-0.0002,0.0000,0.700,0.700,0.700,0.700,3115,155,1305 +1305,13.050,0.0000,0.0000,-0.0200,0.0017,0.0031,-9.7961,-0.0011,-0.0007,-0.0008,0.700,0.700,0.700,0.700,3117,155,1306 +1306,13.060,0.0000,0.0000,-0.0200,-0.0018,0.0016,-9.7966,0.0016,0.0004,0.0017,0.700,0.700,0.700,0.700,3119,155,1307 +1307,13.070,0.0000,0.0000,-0.0200,-0.0047,0.0037,-9.8024,0.0006,0.0005,0.0004,0.700,0.700,0.700,0.700,3122,155,1308 +1308,13.080,0.0000,0.0000,-0.0200,-0.0010,0.0018,-9.8012,-0.0003,-0.0012,0.0008,0.700,0.700,0.700,0.700,3124,155,1309 +1309,13.090,0.0000,0.0000,-0.0200,0.0013,0.0022,-9.7979,-0.0003,0.0007,-0.0005,0.700,0.700,0.700,0.700,3127,155,1310 +1310,13.100,0.0000,0.0000,-0.0200,0.0034,-0.0017,-9.7991,-0.0008,-0.0010,0.0011,0.700,0.700,0.700,0.700,3129,155,1311 +1311,13.110,0.0000,0.0000,-0.0200,0.0006,-0.0008,-9.7979,0.0003,-0.0002,-0.0010,0.700,0.700,0.700,0.700,3131,155,1312 +1312,13.120,0.0000,0.0000,-0.0200,0.0015,-0.0028,-9.7991,-0.0003,-0.0002,0.0006,0.700,0.700,0.700,0.700,3133,156,1313 +1313,13.130,0.0000,0.0000,-0.0200,0.0015,0.0015,-9.7988,-0.0003,-0.0005,-0.0008,0.700,0.700,0.700,0.700,3135,156,1314 +1314,13.140,0.0000,0.0000,-0.0200,-0.0012,-0.0064,-9.8007,-0.0016,0.0000,-0.0002,0.700,0.700,0.700,0.700,3138,156,1315 +1315,13.150,0.0000,0.0000,-0.0200,-0.0004,0.0005,-9.7995,0.0006,-0.0010,-0.0003,0.700,0.700,0.700,0.700,3140,156,1316 +1316,13.160,0.0000,0.0000,-0.0200,-0.0006,0.0005,-9.7993,0.0004,0.0015,0.0001,0.700,0.700,0.700,0.700,3142,156,1317 +1317,13.170,0.0000,0.0000,-0.0200,0.0024,-0.0048,-9.8024,-0.0002,-0.0002,0.0012,0.700,0.700,0.700,0.700,3145,156,1318 +1318,13.180,0.0000,0.0000,-0.0200,-0.0021,-0.0037,-9.8026,-0.0003,-0.0018,-0.0010,0.700,0.700,0.700,0.700,3147,156,1319 +1319,13.190,0.0000,0.0000,-0.0200,0.0017,0.0041,-9.8003,0.0007,0.0002,-0.0005,0.700,0.700,0.700,0.700,3150,156,1320 +1320,13.200,0.0000,0.0000,-0.0200,0.0023,-0.0012,-9.8014,-0.0011,-0.0002,-0.0003,0.700,0.700,0.700,0.700,3152,157,1321 +1321,13.210,0.0000,0.0000,-0.0200,-0.0023,-0.0013,-9.8033,0.0003,-0.0003,-0.0020,0.700,0.700,0.700,0.700,3154,157,1322 +1322,13.220,0.0000,0.0000,-0.0200,-0.0036,-0.0002,-9.7989,-0.0001,0.0003,-0.0000,0.700,0.700,0.700,0.700,3157,157,1323 +1323,13.230,0.0000,0.0000,-0.0200,-0.0007,0.0006,-9.7983,-0.0001,-0.0005,-0.0000,0.700,0.700,0.700,0.700,3159,157,1324 +1324,13.240,0.0000,0.0000,-0.0200,-0.0003,-0.0066,-9.8028,-0.0002,0.0014,-0.0004,0.700,0.700,0.700,0.700,3161,157,1325 +1325,13.250,0.0000,0.0000,-0.0200,0.0016,0.0008,-9.8006,-0.0002,-0.0017,0.0002,0.700,0.700,0.700,0.700,3163,157,1326 +1326,13.260,0.0000,0.0000,-0.0200,-0.0021,-0.0020,-9.8000,-0.0009,0.0004,0.0009,0.700,0.700,0.700,0.700,3165,157,1327 +1327,13.270,0.0000,0.0000,-0.0200,0.0019,0.0029,-9.8011,0.0006,-0.0017,0.0014,0.700,0.700,0.700,0.700,3167,157,1328 +1328,13.280,0.0000,0.0000,-0.0200,-0.0026,0.0022,-9.8002,-0.0005,0.0020,-0.0008,0.700,0.700,0.700,0.700,3169,157,1329 +1329,13.290,0.0000,0.0000,-0.0200,-0.0030,0.0014,-9.8012,0.0007,-0.0011,0.0002,0.700,0.700,0.700,0.700,3172,158,1330 +1330,13.300,0.0000,0.0000,-0.0200,0.0004,-0.0014,-9.8009,0.0008,-0.0002,0.0006,0.700,0.700,0.700,0.700,3174,158,1331 +1331,13.310,0.0000,0.0000,-0.0200,0.0026,-0.0006,-9.8017,-0.0006,0.0006,0.0008,0.700,0.700,0.700,0.700,3176,158,1332 +1332,13.320,0.0000,0.0000,-0.0200,-0.0032,-0.0008,-9.8010,-0.0010,-0.0001,0.0007,0.700,0.700,0.700,0.700,3178,158,1333 +1333,13.330,0.0000,0.0000,-0.0200,-0.0033,0.0024,-9.7978,0.0000,0.0001,0.0003,0.700,0.700,0.700,0.700,3181,158,1334 +1334,13.340,0.0000,0.0000,-0.0200,-0.0019,-0.0016,-9.7987,-0.0002,-0.0002,0.0005,0.700,0.700,0.700,0.700,3183,158,1335 +1335,13.350,0.0000,0.0000,-0.0200,0.0018,0.0019,-9.8031,-0.0009,-0.0001,-0.0008,0.700,0.700,0.700,0.700,3186,158,1336 +1336,13.360,0.0000,0.0000,-0.0200,0.0009,0.0003,-9.7993,0.0006,-0.0002,-0.0012,0.700,0.700,0.700,0.700,3188,158,1337 +1337,13.370,0.0000,0.0000,-0.0200,0.0011,0.0011,-9.7980,0.0008,-0.0004,0.0004,0.700,0.700,0.700,0.700,3191,158,1338 +1338,13.380,0.0000,0.0000,-0.0200,0.0029,-0.0027,-9.7997,0.0008,0.0006,-0.0002,0.700,0.700,0.700,0.700,3193,159,1339 +1339,13.390,0.0000,0.0000,-0.0200,-0.0002,0.0001,-9.7973,-0.0005,0.0000,0.0003,0.700,0.700,0.700,0.700,3195,159,1340 +1340,13.400,0.0000,0.0000,-0.0200,-0.0004,-0.0032,-9.7973,-0.0005,0.0000,-0.0013,0.700,0.700,0.700,0.700,3198,159,1341 +1341,13.410,0.0000,0.0000,-0.0200,-0.0024,0.0031,-9.7984,0.0003,0.0001,-0.0005,0.700,0.700,0.700,0.700,3200,159,1342 +1342,13.420,0.0000,0.0000,-0.0200,0.0004,-0.0019,-9.8004,0.0000,-0.0004,0.0008,0.700,0.700,0.700,0.700,3203,159,1343 +1343,13.430,0.0000,0.0000,-0.0200,0.0004,0.0007,-9.8004,-0.0003,0.0001,0.0010,0.700,0.700,0.700,0.700,3205,159,1344 +1344,13.440,0.0000,0.0000,-0.0200,0.0014,-0.0030,-9.7992,-0.0001,0.0003,0.0013,0.700,0.700,0.700,0.700,3208,159,1345 +1345,13.450,0.0000,0.0000,-0.0200,-0.0021,-0.0000,-9.7983,-0.0011,0.0004,0.0008,0.700,0.700,0.700,0.700,3210,159,1346 +1346,13.460,0.0000,0.0000,-0.0200,0.0030,-0.0013,-9.7995,-0.0008,-0.0006,0.0004,0.700,0.700,0.700,0.700,3212,160,1347 +1347,13.470,0.0000,0.0000,-0.0200,0.0009,-0.0015,-9.7997,0.0015,-0.0019,-0.0008,0.700,0.700,0.700,0.700,3215,160,1348 +1348,13.480,0.0000,0.0000,-0.0200,0.0006,0.0001,-9.7962,-0.0010,-0.0017,0.0003,0.700,0.700,0.700,0.700,3217,160,1349 +1349,13.490,0.0000,0.0000,-0.0200,-0.0018,0.0011,-9.8003,0.0013,0.0011,-0.0001,0.700,0.700,0.700,0.700,3219,160,1350 +1350,13.500,0.0000,0.0000,-0.0200,0.0022,-0.0028,-9.8007,-0.0007,0.0000,0.0009,0.700,0.700,0.700,0.700,3222,160,1351 +1351,13.510,0.0000,0.0000,-0.0200,0.0001,0.0015,-9.7979,-0.0009,0.0007,-0.0005,0.700,0.700,0.700,0.700,3224,160,1352 +1352,13.520,0.0000,0.0000,-0.0200,-0.0019,-0.0037,-9.8001,-0.0005,0.0012,-0.0008,0.700,0.700,0.700,0.700,3227,160,1353 +1353,13.530,0.0000,0.0000,-0.0200,-0.0005,-0.0020,-9.7988,-0.0006,0.0011,0.0015,0.700,0.700,0.700,0.700,3229,160,1354 +1354,13.540,0.0000,0.0000,-0.0200,-0.0014,-0.0017,-9.7980,-0.0000,0.0003,-0.0001,0.700,0.700,0.700,0.700,3231,160,1355 +1355,13.550,0.0000,0.0000,-0.0200,0.0001,0.0035,-9.8007,-0.0005,0.0001,0.0016,0.700,0.700,0.700,0.700,3233,161,1356 +1356,13.560,0.0000,0.0000,-0.0200,-0.0018,-0.0004,-9.8011,-0.0007,0.0006,-0.0010,0.700,0.700,0.700,0.700,3236,161,1357 +1357,13.570,0.0000,0.0000,-0.0200,0.0017,0.0003,-9.8045,0.0009,0.0007,-0.0008,0.700,0.700,0.700,0.700,3238,161,1358 +1358,13.580,0.0000,0.0000,-0.0200,-0.0050,-0.0016,-9.8001,0.0005,0.0002,-0.0014,0.700,0.700,0.700,0.700,3241,161,1359 +1359,13.590,0.0000,0.0000,-0.0200,-0.0043,0.0006,-9.7989,-0.0006,0.0001,-0.0007,0.700,0.700,0.700,0.700,3243,161,1360 +1360,13.600,0.0000,0.0000,-0.0200,0.0042,0.0004,-9.8015,0.0007,0.0018,-0.0010,0.700,0.700,0.700,0.700,3245,161,1361 +1361,13.610,0.0000,0.0000,-0.0200,0.0026,-0.0015,-9.8016,0.0013,-0.0004,0.0006,0.700,0.700,0.700,0.700,3247,161,1362 +1362,13.620,0.0000,0.0000,-0.0200,0.0024,0.0008,-9.7994,-0.0004,0.0012,-0.0015,0.700,0.700,0.700,0.700,3250,161,1363 +1363,13.630,0.0000,0.0000,-0.0200,-0.0005,0.0013,-9.8026,0.0011,-0.0004,0.0006,0.700,0.700,0.700,0.700,3252,162,1364 +1364,13.640,0.0000,0.0000,-0.0200,0.0001,-0.0018,-9.8010,-0.0005,-0.0006,0.0000,0.700,0.700,0.700,0.700,3254,162,1365 +1365,13.650,0.0000,0.0000,-0.0200,-0.0021,0.0001,-9.7994,0.0005,-0.0013,-0.0001,0.700,0.700,0.700,0.700,3257,162,1366 +1366,13.660,0.0000,0.0000,-0.0200,-0.0051,-0.0004,-9.7999,0.0000,-0.0005,0.0001,0.700,0.700,0.700,0.700,3259,162,1367 +1367,13.670,0.0000,0.0000,-0.0200,-0.0006,0.0019,-9.7973,0.0011,0.0016,0.0002,0.700,0.700,0.700,0.700,3261,162,1368 +1368,13.680,0.0000,0.0000,-0.0200,0.0019,-0.0004,-9.7997,-0.0005,-0.0003,-0.0014,0.700,0.700,0.700,0.700,3264,162,1369 +1369,13.690,0.0000,0.0000,-0.0200,-0.0017,-0.0002,-9.7968,-0.0003,0.0010,-0.0012,0.700,0.700,0.700,0.700,3266,162,1370 +1370,13.700,0.0000,0.0000,-0.0200,-0.0008,0.0002,-9.8030,-0.0007,-0.0005,-0.0005,0.700,0.700,0.700,0.700,3268,162,1371 +1371,13.710,0.0000,0.0000,-0.0200,0.0000,-0.0017,-9.8015,-0.0009,-0.0001,-0.0012,0.700,0.700,0.700,0.700,3271,162,1372 +1372,13.720,0.0000,0.0000,-0.0200,-0.0038,-0.0007,-9.8001,0.0008,0.0004,-0.0013,0.700,0.700,0.700,0.700,3273,163,1373 +1373,13.730,0.0000,0.0000,-0.0200,-0.0002,-0.0019,-9.7992,-0.0000,0.0005,0.0005,0.700,0.700,0.700,0.700,3276,163,1374 +1374,13.740,0.0000,0.0000,-0.0200,-0.0039,0.0015,-9.8014,0.0003,0.0006,-0.0001,0.700,0.700,0.700,0.700,3278,163,1375 +1375,13.750,0.0000,0.0000,-0.0200,-0.0001,-0.0013,-9.7980,-0.0010,-0.0014,0.0008,0.700,0.700,0.700,0.700,3280,163,1376 +1376,13.760,0.0000,0.0000,-0.0200,0.0013,-0.0011,-9.7992,0.0013,-0.0012,0.0000,0.700,0.700,0.700,0.700,3282,163,1377 +1377,13.770,0.0000,0.0000,-0.0200,-0.0031,-0.0041,-9.8006,0.0005,-0.0007,-0.0005,0.700,0.700,0.700,0.700,3285,163,1378 +1378,13.780,0.0000,0.0000,-0.0200,0.0015,-0.0021,-9.8007,0.0009,-0.0010,-0.0000,0.700,0.700,0.700,0.700,3287,163,1379 +1379,13.790,0.0000,0.0000,-0.0200,-0.0007,-0.0021,-9.7974,0.0002,0.0004,0.0006,0.700,0.700,0.700,0.700,3289,163,1380 +1380,13.800,0.0000,0.0000,-0.0200,0.0021,-0.0022,-9.7990,-0.0008,0.0017,0.0010,0.700,0.700,0.700,0.700,3292,164,1381 +1381,13.810,0.0000,0.0000,-0.0200,-0.0009,0.0032,-9.8031,0.0008,0.0005,-0.0006,0.700,0.700,0.700,0.700,3294,164,1382 +1382,13.820,0.0000,0.0000,-0.0200,0.0038,0.0005,-9.7974,0.0002,-0.0011,0.0005,0.700,0.700,0.700,0.700,3296,164,1383 +1383,13.830,0.0000,0.0000,-0.0200,0.0006,-0.0009,-9.8029,0.0005,0.0001,-0.0004,0.700,0.700,0.700,0.700,3299,164,1384 +1384,13.840,0.0000,0.0000,-0.0200,-0.0011,-0.0010,-9.8008,0.0007,0.0009,-0.0014,0.700,0.700,0.700,0.700,3301,164,1385 +1385,13.850,0.0000,0.0000,-0.0200,0.0012,0.0019,-9.8008,0.0003,-0.0000,-0.0009,0.700,0.700,0.700,0.700,3303,164,1386 +1386,13.860,0.0000,0.0000,-0.0200,0.0016,0.0014,-9.8006,-0.0000,-0.0001,-0.0014,0.700,0.700,0.700,0.700,3306,164,1387 +1387,13.870,0.0000,0.0000,-0.0200,-0.0013,0.0022,-9.7987,0.0006,0.0012,0.0028,0.700,0.700,0.700,0.700,3308,164,1388 +1388,13.880,0.0000,0.0000,-0.0200,-0.0008,0.0007,-9.8022,0.0002,0.0013,0.0006,0.700,0.700,0.700,0.700,3311,164,1389 +1389,13.890,0.0000,0.0000,-0.0200,-0.0007,-0.0011,-9.8002,0.0001,-0.0016,0.0003,0.700,0.700,0.700,0.700,3313,165,1390 +1390,13.900,0.0000,0.0000,-0.0200,0.0008,-0.0008,-9.8005,0.0004,-0.0002,-0.0010,0.700,0.700,0.700,0.700,3315,165,1391 +1391,13.910,0.0000,0.0000,-0.0200,0.0013,-0.0014,-9.8003,-0.0008,0.0001,-0.0010,0.700,0.700,0.700,0.700,3318,165,1392 +1392,13.920,0.0000,0.0000,-0.0200,-0.0008,0.0003,-9.7983,0.0004,0.0008,0.0013,0.700,0.700,0.700,0.700,3320,165,1393 +1393,13.930,0.0000,0.0000,-0.0200,-0.0007,-0.0014,-9.7981,-0.0004,0.0012,0.0013,0.700,0.700,0.700,0.700,3323,165,1394 +1394,13.940,0.0000,0.0000,-0.0200,-0.0011,0.0023,-9.8065,0.0018,-0.0001,-0.0003,0.700,0.700,0.700,0.700,3325,165,1395 +1395,13.950,0.0000,0.0000,-0.0200,-0.0017,0.0001,-9.8009,0.0001,0.0002,-0.0000,0.700,0.700,0.700,0.700,3327,165,1396 +1396,13.960,0.0000,0.0000,-0.0200,0.0015,0.0002,-9.7932,0.0005,0.0000,0.0029,0.700,0.700,0.700,0.700,3329,165,1397 +1397,13.970,0.0000,0.0000,-0.0200,-0.0034,-0.0008,-9.8005,0.0002,-0.0005,0.0006,0.700,0.700,0.700,0.700,3332,166,1398 +1398,13.980,0.0000,0.0000,-0.0200,0.0025,0.0004,-9.8003,0.0009,-0.0008,0.0002,0.700,0.700,0.700,0.700,3334,166,1399 +1399,13.990,0.0000,0.0000,-0.0200,0.0011,-0.0048,-9.7972,0.0017,0.0018,0.0008,0.700,0.700,0.700,0.700,3337,166,1400 +1400,14.000,0.0000,0.0000,-0.0200,-0.0054,-0.0008,-9.8002,-0.0019,0.0002,0.0006,0.700,0.700,0.700,0.700,3339,166,1401 +1401,14.010,0.0000,0.0000,-0.0200,0.0014,-0.0008,-9.7990,0.0000,-0.0013,0.0011,0.700,0.700,0.700,0.700,3341,166,1402 +1402,14.020,0.0000,0.0000,-0.0200,-0.0008,0.0039,-9.8018,0.0005,-0.0009,0.0012,0.700,0.700,0.700,0.700,3344,166,1403 +1403,14.030,0.0000,0.0000,-0.0200,0.0007,-0.0010,-9.8040,0.0008,-0.0005,-0.0001,0.700,0.700,0.700,0.700,3346,166,1404 +1404,14.040,0.0000,0.0000,-0.0200,-0.0015,0.0022,-9.7997,-0.0009,-0.0001,-0.0009,0.700,0.700,0.700,0.700,3348,166,1405 +1405,14.050,0.0000,0.0000,-0.0200,0.0021,0.0049,-9.7995,-0.0001,-0.0012,0.0003,0.700,0.700,0.700,0.700,3351,166,1406 +1406,14.060,0.0000,0.0000,-0.0200,0.0009,-0.0024,-9.8061,0.0003,-0.0005,0.0003,0.700,0.700,0.700,0.700,3353,167,1407 +1407,14.070,0.0000,0.0000,-0.0200,0.0033,-0.0021,-9.7998,0.0003,-0.0003,-0.0006,0.700,0.700,0.700,0.700,3356,167,1408 +1408,14.080,0.0000,0.0000,-0.0200,-0.0004,0.0013,-9.8002,-0.0006,0.0008,-0.0005,0.700,0.700,0.700,0.700,3358,167,1409 +1409,14.090,0.0000,0.0000,-0.0200,0.0006,0.0009,-9.8003,-0.0000,0.0007,-0.0000,0.700,0.700,0.700,0.700,3360,167,1410 +1410,14.100,0.0000,0.0000,-0.0200,0.0016,-0.0034,-9.7995,0.0008,0.0006,0.0016,0.700,0.700,0.700,0.700,3362,167,1411 +1411,14.110,0.0000,0.0000,-0.0200,0.0057,0.0032,-9.7979,-0.0012,-0.0004,-0.0010,0.700,0.700,0.700,0.700,3364,167,1412 +1412,14.120,0.0000,0.0000,-0.0200,0.0036,-0.0002,-9.8000,0.0006,0.0008,-0.0008,0.700,0.700,0.700,0.700,3367,167,1413 +1413,14.130,0.0000,0.0000,-0.0200,0.0061,-0.0025,-9.8030,0.0001,0.0002,-0.0010,0.700,0.700,0.700,0.700,3369,167,1414 +1414,14.140,0.0000,0.0000,-0.0200,-0.0034,0.0017,-9.8051,-0.0002,0.0018,-0.0009,0.700,0.700,0.700,0.700,3372,168,1415 +1415,14.150,0.0000,0.0000,-0.0200,-0.0020,-0.0025,-9.7989,0.0007,-0.0014,-0.0007,0.700,0.700,0.700,0.700,3374,168,1416 +1416,14.160,0.0000,0.0000,-0.0200,0.0012,-0.0025,-9.7978,0.0010,-0.0001,0.0000,0.700,0.700,0.700,0.700,3377,168,1417 +1417,14.170,0.0000,0.0000,-0.0200,0.0010,0.0022,-9.7987,-0.0001,0.0010,0.0003,0.700,0.700,0.700,0.700,3379,168,1418 +1418,14.180,0.0000,0.0000,-0.0200,0.0036,-0.0024,-9.7999,0.0005,0.0014,0.0004,0.700,0.700,0.700,0.700,3381,168,1419 +1419,14.190,0.0000,0.0000,-0.0200,0.0005,-0.0001,-9.7981,0.0015,-0.0006,0.0010,0.700,0.700,0.700,0.700,3384,168,1420 +1420,14.200,0.0000,0.0000,-0.0200,0.0020,0.0012,-9.8024,-0.0012,0.0009,-0.0007,0.700,0.700,0.700,0.700,3386,168,1421 +1421,14.210,0.0000,0.0000,-0.0200,0.0004,0.0020,-9.8019,-0.0002,-0.0013,0.0008,0.700,0.700,0.700,0.700,3388,168,1422 +1422,14.220,0.0000,0.0000,-0.0200,0.0008,-0.0030,-9.8022,0.0004,0.0010,-0.0005,0.700,0.700,0.700,0.700,3391,168,1423 +1423,14.230,0.0000,0.0000,-0.0200,-0.0024,0.0021,-9.7995,-0.0007,0.0003,-0.0001,0.700,0.700,0.700,0.700,3393,169,1424 +1424,14.240,0.0000,0.0000,-0.0200,0.0003,-0.0005,-9.7969,0.0006,-0.0010,0.0006,0.700,0.700,0.700,0.700,3395,169,1425 +1425,14.250,0.0000,0.0000,-0.0200,0.0010,0.0007,-9.8010,0.0004,-0.0013,0.0025,0.700,0.700,0.700,0.700,3398,169,1426 +1426,14.260,0.0000,0.0000,-0.0200,0.0014,-0.0028,-9.7978,0.0002,0.0014,-0.0010,0.700,0.700,0.700,0.700,3400,169,1427 +1427,14.270,0.0000,0.0000,-0.0200,-0.0007,0.0011,-9.7960,0.0005,-0.0005,-0.0008,0.700,0.700,0.700,0.700,3402,169,1428 +1428,14.280,0.0000,0.0000,-0.0200,0.0005,0.0003,-9.7946,0.0006,0.0010,0.0006,0.700,0.700,0.700,0.700,3405,169,1429 +1429,14.290,0.0000,0.0000,-0.0200,0.0011,-0.0024,-9.8010,-0.0010,-0.0010,0.0005,0.700,0.700,0.700,0.700,3407,169,1430 +1430,14.300,0.0000,0.0000,-0.0200,-0.0000,0.0006,-9.7960,0.0002,0.0006,0.0009,0.700,0.700,0.700,0.700,3409,169,1431 +1431,14.310,0.0000,0.0000,-0.0200,-0.0005,0.0022,-9.7982,0.0008,0.0004,0.0009,0.700,0.700,0.700,0.700,3412,170,1432 +1432,14.320,0.0000,0.0000,-0.0200,0.0003,-0.0034,-9.7989,0.0008,-0.0002,0.0002,0.700,0.700,0.700,0.700,3414,170,1433 +1433,14.330,0.0000,0.0000,-0.0200,-0.0022,0.0003,-9.8002,-0.0007,0.0012,0.0003,0.700,0.700,0.700,0.700,3417,170,1434 +1434,14.340,0.0000,0.0000,-0.0200,0.0003,-0.0009,-9.7984,-0.0005,-0.0000,-0.0006,0.700,0.700,0.700,0.700,3419,170,1435 +1435,14.350,0.0000,0.0000,-0.0200,0.0035,0.0009,-9.7999,0.0012,-0.0008,0.0014,0.700,0.700,0.700,0.700,3422,170,1436 +1436,14.360,0.0000,0.0000,-0.0200,-0.0003,0.0007,-9.8051,0.0012,0.0000,0.0003,0.700,0.700,0.700,0.700,3424,170,1437 +1437,14.370,0.0000,0.0000,-0.0200,0.0003,-0.0004,-9.7977,-0.0002,0.0017,0.0012,0.700,0.700,0.700,0.700,3426,170,1438 +1438,14.380,0.0000,0.0000,-0.0200,-0.0017,0.0036,-9.7989,0.0020,-0.0003,-0.0008,0.700,0.700,0.700,0.700,3429,170,1439 +1439,14.390,0.0000,0.0000,-0.0200,-0.0030,0.0001,-9.8024,-0.0003,0.0006,-0.0004,0.700,0.700,0.700,0.700,3431,170,1440 +1440,14.400,0.0000,0.0000,-0.0200,-0.0019,-0.0018,-9.7986,0.0010,0.0006,0.0013,0.700,0.700,0.700,0.700,3434,171,1441 +1441,14.410,0.0000,0.0000,-0.0200,-0.0024,0.0004,-9.7998,-0.0016,0.0012,0.0011,0.700,0.700,0.700,0.700,3436,171,1442 +1442,14.420,0.0000,0.0000,-0.0200,0.0008,0.0021,-9.8007,0.0004,-0.0009,0.0004,0.700,0.700,0.700,0.700,3438,171,1443 +1443,14.430,0.0000,0.0000,-0.0200,0.0019,-0.0018,-9.8020,-0.0001,-0.0001,-0.0006,0.700,0.700,0.700,0.700,3441,171,1444 +1444,14.440,0.0000,0.0000,-0.0200,0.0034,0.0034,-9.8009,-0.0003,0.0002,-0.0009,0.700,0.700,0.700,0.700,3443,171,1445 +1445,14.450,0.0000,0.0000,-0.0200,-0.0028,-0.0019,-9.7975,-0.0001,0.0001,0.0014,0.700,0.700,0.700,0.700,3446,171,1446 +1446,14.460,0.0000,0.0000,-0.0200,0.0023,0.0006,-9.7976,0.0004,0.0000,0.0001,0.700,0.700,0.700,0.700,3448,171,1447 +1447,14.470,0.0000,0.0000,-0.0200,-0.0006,0.0009,-9.7993,-0.0004,0.0015,-0.0003,0.700,0.700,0.700,0.700,3450,171,1448 +1448,14.480,0.0000,0.0000,-0.0200,0.0001,-0.0030,-9.7976,0.0004,0.0007,-0.0006,0.700,0.700,0.700,0.700,3452,172,1449 +1449,14.490,0.0000,0.0000,-0.0200,0.0003,-0.0013,-9.7991,0.0009,-0.0001,0.0005,0.700,0.700,0.700,0.700,3454,172,1450 +1450,14.500,0.0000,0.0000,-0.0200,0.0006,-0.0025,-9.7977,0.0010,0.0003,0.0010,0.700,0.700,0.700,0.700,3457,172,1451 +1451,14.510,0.0000,0.0000,-0.0200,0.0008,0.0009,-9.7999,-0.0004,-0.0001,-0.0000,0.700,0.700,0.700,0.700,3459,172,1452 +1452,14.520,0.0000,0.0000,-0.0200,-0.0012,-0.0012,-9.7988,0.0003,0.0002,0.0009,0.700,0.700,0.700,0.700,3461,172,1453 +1453,14.530,0.0000,0.0000,-0.0200,-0.0001,-0.0011,-9.8037,0.0006,0.0019,-0.0001,0.700,0.700,0.700,0.700,3463,172,1454 +1454,14.540,0.0000,0.0000,-0.0200,0.0016,0.0003,-9.8008,-0.0015,0.0013,0.0021,0.700,0.700,0.700,0.700,3466,172,1455 +1455,14.550,0.0000,0.0000,-0.0200,0.0031,-0.0011,-9.7998,0.0003,0.0000,0.0004,0.700,0.700,0.700,0.700,3468,172,1456 +1456,14.560,0.0000,0.0000,-0.0200,0.0001,-0.0019,-9.7976,-0.0007,0.0012,0.0005,0.700,0.700,0.700,0.700,3471,172,1457 +1457,14.570,0.0000,0.0000,-0.0200,0.0026,0.0014,-9.7996,0.0007,-0.0007,0.0001,0.700,0.700,0.700,0.700,3473,173,1458 +1458,14.580,0.0000,0.0000,-0.0200,0.0004,-0.0015,-9.8013,0.0005,0.0005,0.0008,0.700,0.700,0.700,0.700,3476,173,1459 +1459,14.590,0.0000,0.0000,-0.0200,0.0013,-0.0005,-9.8007,0.0003,-0.0001,-0.0010,0.700,0.700,0.700,0.700,3478,173,1460 +1460,14.600,0.0000,0.0000,-0.0200,-0.0002,-0.0054,-9.8004,0.0000,-0.0010,0.0005,0.700,0.700,0.700,0.700,3480,173,1461 +1461,14.610,0.0000,0.0000,-0.0200,-0.0016,0.0001,-9.7999,0.0001,-0.0001,-0.0018,0.700,0.700,0.700,0.700,3482,173,1462 +1462,14.620,0.0000,0.0000,-0.0200,0.0019,0.0001,-9.8002,0.0005,0.0003,0.0006,0.700,0.700,0.700,0.700,3485,173,1463 +1463,14.630,0.0000,0.0000,-0.0200,0.0001,-0.0019,-9.8056,-0.0003,0.0006,-0.0005,0.700,0.700,0.700,0.700,3487,173,1464 +1464,14.640,0.0000,0.0000,-0.0200,-0.0012,-0.0027,-9.8033,-0.0015,0.0003,-0.0001,0.700,0.700,0.700,0.700,3490,173,1465 +1465,14.650,0.0000,0.0000,-0.0200,-0.0016,0.0037,-9.7979,-0.0013,-0.0008,0.0000,0.700,0.700,0.700,0.700,3492,174,1466 +1466,14.660,0.0000,0.0000,-0.0200,0.0026,-0.0007,-9.8012,-0.0011,0.0005,0.0001,0.700,0.700,0.700,0.700,3494,174,1467 +1467,14.670,0.0000,0.0000,-0.0200,0.0004,-0.0022,-9.8014,-0.0000,0.0001,0.0004,0.700,0.700,0.700,0.700,3496,174,1468 +1468,14.680,0.0000,0.0000,-0.0200,-0.0008,0.0015,-9.8010,0.0002,-0.0004,-0.0014,0.700,0.700,0.700,0.700,3499,174,1469 +1469,14.690,0.0000,0.0000,-0.0200,-0.0028,-0.0004,-9.7980,-0.0017,-0.0011,0.0004,0.700,0.700,0.700,0.700,3501,174,1470 +1470,14.700,0.0000,0.0000,-0.0200,-0.0017,0.0005,-9.7989,-0.0008,-0.0001,0.0004,0.700,0.700,0.700,0.700,3504,174,1471 +1471,14.710,0.0000,0.0000,-0.0200,0.0026,0.0013,-9.8038,0.0008,0.0017,-0.0001,0.700,0.700,0.700,0.700,3506,174,1472 +1472,14.720,0.0000,0.0000,-0.0200,-0.0004,0.0045,-9.8007,0.0004,0.0000,0.0013,0.700,0.700,0.700,0.700,3509,174,1473 +1473,14.730,0.0000,0.0000,-0.0200,0.0002,-0.0018,-9.8031,-0.0008,0.0003,0.0000,0.700,0.700,0.700,0.700,3511,174,1474 +1474,14.740,0.0000,0.0000,-0.0200,0.0030,0.0066,-9.8025,0.0005,0.0005,-0.0025,0.700,0.700,0.700,0.700,3514,175,1475 +1475,14.750,0.0000,0.0000,-0.0200,-0.0001,-0.0016,-9.8037,-0.0010,-0.0006,0.0038,0.700,0.700,0.700,0.700,3516,175,1476 +1476,14.760,0.0000,0.0000,-0.0200,0.0040,-0.0005,-9.8029,0.0011,-0.0008,-0.0001,0.700,0.700,0.700,0.700,3519,175,1477 +1477,14.770,0.0000,0.0000,-0.0200,0.0013,-0.0010,-9.7959,0.0020,-0.0003,0.0008,0.700,0.700,0.700,0.700,3521,175,1478 +1478,14.780,0.0000,0.0000,-0.0200,0.0032,0.0011,-9.8001,-0.0008,0.0016,-0.0007,0.700,0.700,0.700,0.700,3523,175,1479 +1479,14.790,0.0000,0.0000,-0.0200,-0.0000,0.0012,-9.7988,0.0000,0.0013,-0.0005,0.700,0.700,0.700,0.700,3526,175,1480 +1480,14.800,0.0000,0.0000,-0.0200,0.0030,-0.0003,-9.8008,-0.0012,-0.0004,0.0002,0.700,0.700,0.700,0.700,3528,175,1481 +1481,14.810,0.0000,0.0000,-0.0200,-0.0002,0.0028,-9.8054,0.0003,-0.0001,-0.0001,0.700,0.700,0.700,0.700,3530,175,1482 +1482,14.820,0.0000,0.0000,-0.0200,-0.0038,-0.0006,-9.7981,-0.0012,-0.0002,0.0013,0.700,0.700,0.700,0.700,3531,175,1483 +1483,14.830,0.0000,0.0000,-0.0200,-0.0033,-0.0007,-9.7980,0.0017,-0.0008,-0.0011,0.700,0.700,0.700,0.700,3532,176,1484 +1484,14.840,0.0000,0.0000,-0.0200,0.0001,0.0004,-9.8020,0.0006,-0.0010,-0.0004,0.700,0.700,0.700,0.700,3535,176,1485 +1485,14.850,0.0000,0.0000,-0.0200,0.0029,0.0041,-9.8020,-0.0012,-0.0019,0.0005,0.700,0.700,0.700,0.700,3537,176,1486 +1486,14.860,0.0000,0.0000,-0.0200,-0.0017,-0.0030,-9.8002,-0.0006,-0.0003,-0.0010,0.700,0.700,0.700,0.700,3540,176,1487 +1487,14.870,0.0000,0.0000,-0.0200,0.0040,0.0019,-9.7999,0.0001,-0.0002,-0.0007,0.700,0.700,0.700,0.700,3542,176,1488 +1488,14.880,0.0000,0.0000,-0.0200,0.0012,0.0052,-9.8001,-0.0002,0.0010,-0.0007,0.700,0.700,0.700,0.700,3544,176,1489 +1489,14.890,0.0000,0.0000,-0.0200,0.0037,0.0029,-9.8013,0.0007,-0.0005,0.0003,0.700,0.700,0.700,0.700,3547,176,1490 +1490,14.900,0.0000,0.0000,-0.0200,-0.0010,0.0007,-9.8005,-0.0005,0.0009,0.0001,0.700,0.700,0.700,0.700,3549,176,1491 +1491,14.910,0.0000,0.0000,-0.0200,0.0021,0.0004,-9.8010,-0.0003,0.0014,-0.0024,0.700,0.700,0.700,0.700,3551,176,1492 +1492,14.920,0.0000,0.0000,-0.0200,0.0031,-0.0042,-9.8007,0.0011,-0.0005,0.0015,0.700,0.700,0.700,0.700,3553,177,1493 +1493,14.930,0.0000,0.0000,-0.0200,0.0028,0.0011,-9.7985,-0.0018,0.0005,0.0008,0.700,0.700,0.700,0.700,3556,177,1494 +1494,14.940,0.0000,0.0000,-0.0200,0.0022,-0.0032,-9.7986,-0.0001,0.0015,0.0007,0.700,0.700,0.700,0.700,3558,177,1495 +1495,14.950,0.0000,0.0000,-0.0200,-0.0003,0.0018,-9.7964,-0.0009,-0.0004,-0.0001,0.700,0.700,0.700,0.700,3560,177,1496 +1496,14.960,0.0000,0.0000,-0.0200,0.0002,0.0028,-9.7985,0.0003,0.0003,-0.0005,0.700,0.700,0.700,0.700,3563,177,1497 +1497,14.970,0.0000,0.0000,-0.0200,-0.0018,0.0018,-9.8020,-0.0000,-0.0001,0.0001,0.700,0.700,0.700,0.700,3565,177,1498 +1498,14.980,0.0000,0.0000,-0.0200,0.0031,0.0001,-9.7973,-0.0008,0.0006,0.0004,0.700,0.700,0.700,0.700,3567,177,1499 +1499,14.990,0.0000,0.0000,-0.0200,-0.0006,0.0022,-9.7992,-0.0008,0.0010,0.0000,0.700,0.700,0.700,0.700,3569,177,1500 diff --git a/bench-evidence/gz-sim/2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md b/bench-evidence/gz-sim/2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md new file mode 100644 index 0000000..350e064 --- /dev/null +++ b/bench-evidence/gz-sim/2026-05-27-v0.19.2-actuators-and-multi-thread-findings.md @@ -0,0 +1,130 @@ +# v0.19.2 bench session — 2026-05-27 + +Second observational evidence run. Targets Finding 1 (motor topic +format) + Finding 2 (NavSat/IMU under-rate) from the +v0.19.1 first-bench findings doc. + +## TL;DR + +| Finding | Status | +|---|---| +| **Finding 2** (NavSat 0 frames; IMU 4 Hz vs configured 200 Hz) | **CLOSED** — multi_thread runtime fix. | +| **Finding 1** (per-rotor Double vs single-topic Actuators) | **Partially landed** — Actuators message defined + published; deeper SDF motor-tuning issue surfaced. | + +## Setup change + +```rust +let runtime = tokio::runtime::Builder::new_multi_thread() + .worker_threads(2) + .enable_all() + .build() + ... +``` + +was + +```rust +let runtime = tokio::runtime::Builder::new_current_thread() + .enable_all() + ... +``` + +`current_thread` only drives spawned tasks during explicit `block_on`. +After `connect_with_home`'s setup `block_on` returned, the IMU + NavSat +subscriber tasks were orphaned — they ran briefly during setup and +then froze. The few IMU samples observed at v0.19.1 (51 over 10 s) +were stragglers that happened to land during the brief setup window. + +## v0.19.2 bench (15-second hover) + +``` +verdict: backend=gazebo steps=1500 climb=0.00 m (min=0.02 max=0.02) wall=17.62s +counters: imu_recv=3572 navsat_recv=178 motor_send=1500 +``` + +| Stream | Configured | Observed | Result | +|---|---|---|---| +| IMU | 200 Hz | 3572 / 17.62 s = **203 Hz** | ✅ Within 1.5 % | +| NavSat | 10 Hz | 178 / 17.62 s = **10.1 Hz** | ✅ Within 1 % | +| Motor send | 100 Hz | 1500 / 15 s = **100 Hz** | ✅ Exact | +| Climb | > 0.1 m | 0.00 m (constant 0.02 m) | ❌ No flight | + +## Finding 1 — partially landed; deeper sub-issues surfaced + +Replaced 4× per-rotor `gz.msgs.Double` publishes with a single +`gz.msgs.Actuators` publish to `/quad/cmd_vel`. The Actuators message +is locally defined (gz-transport-rs 0.1.0 doesn't ship +`actuators.proto`): + +```rust +#[derive(Clone, PartialEq, prost::Message)] +pub struct Actuators { + #[prost(message, optional, tag = "1")] pub header: Option<...::Header>, + #[prost(double, repeated, packed = "true", tag = "2")] pub position: Vec, + #[prost(double, repeated, packed = "true", tag = "3")] pub velocity: Vec, + #[prost(double, repeated, packed = "true", tag = "4")] pub normalized: Vec, +} +``` + +`publish()` succeeds end-to-end (1500/1500, 0 errors). But two +sub-issues block actual flight: + +### Sub-issue 1a — gz-transport-rs 0.1.0 advertise-direction discovery + +`gz topic -i /quad/cmd_vel` **mid-run** shows our bridge as a +publisher **inconsistently / not at all**, despite `Node::advertise()` +returning Ok and our publisher task running. Meanwhile native +`gz topic -p` (gz CLI publisher) DOES register correctly. Conclusion: +gz-transport-rs 0.1.0's discovery announce doesn't reach gz Sim 8's +discovery registry as it should. The IMU + NavSat **subscribe** +direction works fine (we're a subscriber, gz-sim is the publisher). + +This is **upstream**: gz-transport-rs 0.1.0 vs gz-transport-cpp in +gz Sim 8 wire-protocol mismatch in the advertise path. + +### Sub-issue 1b — Even native gz CLI publish doesn't lift the body + +Tested with `gz topic -t /quad/cmd_vel -m gz.msgs.Actuators -p +"velocity: [1000.0, 1000.0, 1000.0, 1000.0]"` for 10 s. The base_link +pose Z stays at 0 (no climb). So even with a fully-discovered publisher +emitting full-rpm Actuators, the rotors don't actually produce thrust. + +This is **SDF model tuning**: the v0.19.0 starting SDF's +`MulticopterMotorModel` parameters aren't producing the expected +thrust-to-weight ratio. Likely candidates: +- `` too low relative to body mass. +- Missing `` or `` linkage. +- Plugin reads from a different topic shape than we assumed. + +## What v0.19.2 ships + +1. **Multi_thread runtime** — closes Finding 2 completely. IMU + NavSat + now stream at configured rates. +2. **Actuators message + single-topic publish** — the architectural + shape Finding 1 requires. Wire-correct; surfaces sub-issues that + wouldn't have been findable from the v0.19.1 baseline. +3. **Counters work as designed across both directions** — first-light + diagnostic value preserved. + +## v0.19.3 candidate + +1. **Sub-issue 1b** is the next concrete fix. Audit SDF against a + known-flying gz Sim 8 quadrotor (e.g. ros_gz_sim multicopter demo). + Likely outcome: tighter motor params + possibly a missing system + plugin per joint. +2. **Sub-issue 1a** is upstream. Possible workarounds: spawn a + `gz topic -p` subprocess from the bridge (file `gz topic -t ... -p` + into stdin per tick), or contribute a fix to gz-transport-rs. +3. **Independent of these**: the bridge's runtime + counter framework + is now demonstrated-working under load (3572 IMU frames + 178 NavSat + frames + 1500 publishes over 17 s with no drops). + +## Honestly NOT claimed + +- That the cascade flies in gz physics. It doesn't yet. +- That the SDF flies in gz physics under native gz CLI either. Tested, + doesn't. +- That gz-transport-rs 0.1.0's advertise discovery is broken in + general — only that gz Sim 8's discovery doesn't register us. Could + be partition mismatch, multicast group, or wire-format. v0.19.3 + diagnosis. diff --git a/examples/falcon-sitl-gz/Cargo.toml b/examples/falcon-sitl-gz/Cargo.toml index 79457ae..b8a9ed8 100644 --- a/examples/falcon-sitl-gz/Cargo.toml +++ b/examples/falcon-sitl-gz/Cargo.toml @@ -17,8 +17,10 @@ path = "src/main.rs" default = [] # v0.18: real gz-transport bridge. Pulls in tokio + gz-transport-rs + # zmq (libzmq compiled from C source via zeromq-src). ~30-60 s extra -# build time; opt-in only. -gazebo = ["dep:tokio", "dep:gz-transport-rs"] +# build time; opt-in only. v0.19.2 added `prost` direct dep for the +# locally-defined gz.msgs.Actuators message (not exported by +# gz-transport-rs 0.1.0). +gazebo = ["dep:tokio", "dep:gz-transport-rs", "dep:prost"] [dependencies] relay-ekf = { path = "../../crates/relay-ekf" } @@ -31,5 +33,9 @@ relay-sc = { path = "../../crates/relay-sc" } libm = "0.2" # Optional — only when feature `gazebo` is on. -tokio = { version = "1", features = ["rt", "sync", "macros"], optional = true } +tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "macros"], optional = true } gz-transport-rs = { version = "0.1", optional = true } +# v0.19.2 — local `gz.msgs.Actuators` definition so the bridge can talk +# to Harmonic's MulticopterMotorModel plugin (which subscribes Actuators, +# not the per-rotor Double the v0.18 bridge published). +prost = { version = "0.13", features = ["derive"], optional = true } diff --git a/examples/falcon-sitl-gz/src/physics.rs b/examples/falcon-sitl-gz/src/physics.rs index 3c920bd..235a8a4 100644 --- a/examples/falcon-sitl-gz/src/physics.rs +++ b/examples/falcon-sitl-gz/src/physics.rs @@ -241,6 +241,41 @@ mod gz_real { use std::sync::atomic::{AtomicU64, Ordering}; use tokio::sync::mpsc; + /// `gz.msgs.Actuators` — locally defined because gz-transport-rs + /// 0.1.0 doesn't ship `actuators.proto`. Wire-compatible with + /// Harmonic's MulticopterMotorModel plugin, which subscribes + /// this message type on the model-level `//cmd_vel` topic + /// (each plugin reads its `` index from `velocity`). + /// + /// Proto definition (gz/msgs/actuators.proto): + /// ```proto + /// syntax = "proto3"; + /// package gz.msgs; + /// import "gz/msgs/header.proto"; + /// message Actuators { + /// Header header = 1; + /// repeated double position = 2; + /// repeated double velocity = 3; + /// repeated double normalized = 4; + /// } + /// ``` + /// + /// Discovered the per-rotor `gz.msgs.Double` publish *didn't* drive + /// the rotors on 2026-05-26 — the first gz-sim bench evidence + /// showed `motor_send=1000` but `climb=0`. See + /// `bench-evidence/gz-sim/2026-05-26-first-bench-findings.md`. + #[derive(Clone, PartialEq, prost::Message)] + pub struct Actuators { + #[prost(message, optional, tag = "1")] + pub header: ::core::option::Option, + #[prost(double, repeated, packed = "true", tag = "2")] + pub position: ::prost::alloc::vec::Vec, + #[prost(double, repeated, packed = "true", tag = "3")] + pub velocity: ::prost::alloc::vec::Vec, + #[prost(double, repeated, packed = "true", tag = "4")] + pub normalized: ::prost::alloc::vec::Vec, + } + /// gz-sim uses ENU body frame (X forward, Y left, Z up); /// falcon uses NED body frame (X forward, Y right, Z down). /// Conversion: (x, y, z)_ned = (x, -y, -z)_enu. Same for @@ -293,9 +328,14 @@ mod gz_real { /// populated from `gz.msgs.NavSat` on the navsat topic, via /// `Home::project_to_ned_m`. latest_position_ned_m: Arc>, - /// One mpsc sender per rotor; the receiver task owns the - /// gz-transport Publisher and emits `gz.msgs.Double` per send. - rotor_tx: [mpsc::UnboundedSender; 4], + /// v0.19.2 — single mpsc carrying all 4 motor velocities. + /// One receiver task owns the gz-transport Publisher and + /// emits a single `gz.msgs.Actuators` message per send. + /// Replaced the v0.18 per-rotor 4× fanout after the + /// 2026-05-26 bench evidence showed plugins subscribe + /// `gz.msgs.Actuators` on a shared `//cmd_vel`, not + /// per-rotor Double topics. + rotors_tx: mpsc::UnboundedSender<[f32; 4]>, /// v0.19 diagnostic counters — incremented from the async /// subscriber tasks (`imu_recv`, `navsat_recv`) and from /// `step()` itself (`motor_send`). Surface through @@ -347,7 +387,16 @@ mod gz_real { let world = world.into(); let model = model.into(); - let runtime = tokio::runtime::Builder::new_current_thread() + // v0.19.2 — `multi_thread` worker pool instead of + // `current_thread`. Spawned subscriber + publisher + // tasks need a runtime that actively drives them after + // `block_on(setup)` returns; current_thread only drives + // during explicit block_on and orphans everything else. + // First v0.19.2 bench round showed Actuators publish + // never reached the wire (`gz topic -i` 0 publishers + // mid-run) — root cause was the runtime model. + let runtime = tokio::runtime::Builder::new_multi_thread() + .worker_threads(2) .enable_all() .build() .expect("tokio runtime"); @@ -358,10 +407,8 @@ mod gz_real { let navsat_recv = Arc::new(AtomicU64::new(0)); let motor_send = Arc::new(AtomicU64::new(0)); - let (tx0, rx0) = mpsc::unbounded_channel::(); - let (tx1, rx1) = mpsc::unbounded_channel::(); - let (tx2, rx2) = mpsc::unbounded_channel::(); - let (tx3, rx3) = mpsc::unbounded_channel::(); + // v0.19.2 — one channel carrying [m0, m1, m2, m3] tuples. + let (rotors_tx, mut rotors_rx) = mpsc::unbounded_channel::<[f32; 4]>(); // Tasks run on the runtime; the result of the setup // (Node + publishers) returns to the caller, errors @@ -420,27 +467,37 @@ mod gz_real { } }); - // One publisher per rotor. - for (n, mut rx) in [rx0, rx1, rx2, rx3].into_iter().enumerate() { - let topic = format!( - "/world/{world_for_setup}/model/{model_for_setup}/joint/rotor_{n}_joint/cmd_vel" - ); - let publisher = node - .advertise::(&topic, "gz.msgs.Double") - .await?; - tokio::spawn(async move { - while let Some(cmd) = rx.recv().await { - let msg = Double { - header: None, - data: cmd as f64, - }; - // Partition empty by default; gz-sim uses - // empty partition for "world" topics. - let _ = publisher.publish("", &msg); - } - }); - } + // v0.19.2 — single publisher on `//cmd_vel` + // emitting one `gz.msgs.Actuators` per tick. The four + // MulticopterMotorModel plugins in the SDF each share + // this topic and pick out their `` index + // from the `velocity` array. + let actuators_topic = format!("/{model_for_setup}/cmd_vel"); + let publisher = node + .advertise::(&actuators_topic, "gz.msgs.Actuators") + .await?; + tokio::spawn(async move { + while let Some(cmd) = rotors_rx.recv().await { + let msg = Actuators { + header: None, + position: Vec::new(), + velocity: vec![ + cmd[0] as f64, + cmd[1] as f64, + cmd[2] as f64, + cmd[3] as f64, + ], + normalized: Vec::new(), + }; + // Partition empty by default; gz-sim uses + // empty partition for "world" topics. + let _ = publisher.publish("", &msg); + } + }); + // Double + NavSat imports preserved for any downstream + // re-extension; warning-suppressed below. + let _ = std::mem::size_of::(); Ok::<_, gz_transport_rs::Error>(()) })?; @@ -450,7 +507,7 @@ mod gz_real { home, latest_imu, latest_position_ned_m, - rotor_tx: [tx0, tx1, tx2, tx3], + rotors_tx, imu_recv, navsat_recv, motor_send, @@ -472,13 +529,21 @@ mod gz_real { fn name(&self) -> &'static str { "gazebo" } fn step(&mut self, motor_pwm: [f32; 4], _dt: f32) { - for (i, &pwm) in motor_pwm.iter().enumerate() { - let _ = self.rotor_tx[i].send(Self::pwm_to_rad_per_s(pwm)); - } - // One `motor_send` tick per call regardless of which channel - // returned Err — the counter is "how many publish attempts", - // not "how many bytes reached gz". Useful to distinguish - // "the bridge isn't publishing" from "gz isn't subscribing". + // v0.19.2 — send one [4×rad/s] tuple per tick on the + // single mpsc; the publisher task encodes a single + // gz.msgs.Actuators and writes it to //cmd_vel. + let rad_per_s = [ + Self::pwm_to_rad_per_s(motor_pwm[0]), + Self::pwm_to_rad_per_s(motor_pwm[1]), + Self::pwm_to_rad_per_s(motor_pwm[2]), + Self::pwm_to_rad_per_s(motor_pwm[3]), + ]; + let _ = self.rotors_tx.send(rad_per_s); + // One `motor_send` tick per call. With the v0.19.2 fix + // this is also one Actuators message published per tick + // (the v0.18 path was 4× Double messages per tick to the + // wrong topics — first gz bench showed motor_send=1000 + // with climb=0). self.motor_send.fetch_add(1, Ordering::Relaxed); } From b7446f5b2b951fa04059e2ca198058501b898002 Mon Sep 17 00:00:00 2001 From: Ralf Anton Beier Date: Wed, 27 May 2026 06:19:58 +0200 Subject: [PATCH 2/2] =?UTF-8?q?fix(witness-wasi-harness):=20update=20for?= =?UTF-8?q?=20wasmtime-wasi=2045=20preview1=20=E2=86=92=20p1=20rename?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #44 (Dependabot upgrade from wasmtime-wasi 27 to 45) merged with main still importing wasmtime_wasi::preview1, breaking all CI jobs that hit witness-wasi-harness compile (Test ubuntu/macos/windows, llvm-cov, Verification gate). Diagnosis: wasmtime-wasi 44 renamed the module preview1 → p1; the type WasiP1Ctx now lives at wasmtime_wasi::p1::WasiP1Ctx. The fix is a single import line: -use wasmtime_wasi::preview1::{self, WasiP1Ctx}; +use wasmtime_wasi::p1::{self as preview1, WasiP1Ctx}; The 'as preview1' alias keeps the rest of the file unchanged. Also: Cargo.toml bumped to wasmtime = '45' / wasmtime-wasi = '45' to match main's actual resolution (PR #44 only updated wasmtime-wasi, not wasmtime; the two MUST stay in lock-step or wasmtime trait impls don't satisfy the wasmtime-wasi signatures). Verification: - cargo build -p witness-wasi-harness --tests → green. - cargo test --workspace --all-targets → 405 passing (preserved). Co-Authored-By: Claude Opus 4.7 (1M context) --- host/witness-wasi-harness/Cargo.toml | 2 +- host/witness-wasi-harness/src/main.rs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/host/witness-wasi-harness/Cargo.toml b/host/witness-wasi-harness/Cargo.toml index 8c9b6a3..8a084ed 100644 --- a/host/witness-wasi-harness/Cargo.toml +++ b/host/witness-wasi-harness/Cargo.toml @@ -12,7 +12,7 @@ name = "witness-wasi-harness" path = "src/main.rs" [dependencies] -wasmtime = "27" +wasmtime = "45" wasmtime-wasi = "45" anyhow = "1" serde_json = "1" diff --git a/host/witness-wasi-harness/src/main.rs b/host/witness-wasi-harness/src/main.rs index 54fa940..a858ba6 100644 --- a/host/witness-wasi-harness/src/main.rs +++ b/host/witness-wasi-harness/src/main.rs @@ -27,7 +27,11 @@ use std::env; use std::fs; use std::path::PathBuf; use wasmtime::{Config, Engine, Linker, Module, Store, Val}; -use wasmtime_wasi::preview1::{self, WasiP1Ctx}; +// wasmtime-wasi 44 renamed `preview1` → `p1`; bound here as `preview1` +// so the rest of the file keeps reading naturally. PR #44 (Dependabot +// 27→45 upgrade) merged with main still importing the old path; v0.19.2 +// catches it up. +use wasmtime_wasi::p1::{self as preview1, WasiP1Ctx}; use wasmtime_wasi::WasiCtxBuilder; /// `witness-harness-v1` schema — keys are decimal branch IDs as