From 6ac126e05c6d5968e34a4ad787256a7fe6e35546 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 11 May 2026 18:30:56 +0000 Subject: [PATCH] codec-re: crack Tran channel codec with high-amplitude May 11 bundle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User uploaded 3 high-amplitude events (PPV 6-7 in/s — shook the geophone hard) to decode-re/5-11-26/. These cracked the Tran codec: - Preamble bytes [3:5] and [5:7] = Tran[0] and Tran[1] as int16 BE in 16-count units (LSB = 0.005 in/s). Confirmed across all 7 fixtures. - First data block carries Tran deltas from sample 2 onward: * 10 NN block: NN/2 bytes of payload, each byte = two 4-bit signed nibble deltas (high nibble first) * 20 NN block: NN int8 signed deltas Verified 22+42+46 = 110 Tran samples across SP0/SS0/SV0 with 0 errors against BW's ASCII export. Why the earlier 96-combination brute force failed: the quiet 5-8 events all had T[0] = T[1] ≈ 0 so the preamble's per-channel encoding was undetectable. Loud events made the encoding obvious. What's solved: - minimateplus.waveform_codec.decode_tran_initial: returns first N Tran samples in 16-count units for any body. - Walker length formula for in-data 30 NN blocks (NN*2 instead of NN*4). - Walker now handles bodies that start with 20 NN (in addition to 10 NN). What's still open: - Tran past the first data block (multi-block channel switching). - Vert / Long / MicL channel encodings. - Walker correctness past offset ~427 in event-b. Tests: 36 pass. decode_waveform_v2 still returns None — the full multi-channel decoder is not wired up. decode_tran_initial is the new verified entry point. Files: minimateplus/waveform_codec.py, tests/test_waveform_codec.py (adds 5-11-26 fixtures + decode_tran_initial tests), and docs/instantel_protocol_reference.md §7.6.1 (Tran codec spec). --- analysis/inspect_5_11.py | 50 + analysis/test_tran_continue.py | 71 + analysis/verify_tran.py | 71 + analysis/walk_5_11.py | 20 + docs/instantel_protocol_reference.md | 113 +- minimateplus/waveform_codec.py | 112 +- tests/fixtures/5-11-26/BE11529.MLG | Bin 0 -> 1770 bytes tests/fixtures/5-11-26/M529LL1A.SP0 | Bin 0 -> 10780 bytes tests/fixtures/5-11-26/M529LL1A.SP0.TXT | 3386 +++++++++++++++++++++++ tests/fixtures/5-11-26/M529LL1A.SS0 | Bin 0 -> 9770 bytes tests/fixtures/5-11-26/M529LL1A.SS0.TXT | 3137 +++++++++++++++++++++ tests/fixtures/5-11-26/M529LL1A.SV0 | Bin 0 -> 9004 bytes tests/fixtures/5-11-26/M529LL1A.SV0.TXT | 3137 +++++++++++++++++++++ tests/test_waveform_codec.py | 66 +- 14 files changed, 10113 insertions(+), 50 deletions(-) create mode 100644 analysis/inspect_5_11.py create mode 100644 analysis/test_tran_continue.py create mode 100644 analysis/verify_tran.py create mode 100644 analysis/walk_5_11.py create mode 100644 tests/fixtures/5-11-26/BE11529.MLG create mode 100644 tests/fixtures/5-11-26/M529LL1A.SP0 create mode 100644 tests/fixtures/5-11-26/M529LL1A.SP0.TXT create mode 100644 tests/fixtures/5-11-26/M529LL1A.SS0 create mode 100644 tests/fixtures/5-11-26/M529LL1A.SS0.TXT create mode 100644 tests/fixtures/5-11-26/M529LL1A.SV0 create mode 100644 tests/fixtures/5-11-26/M529LL1A.SV0.TXT diff --git a/analysis/inspect_5_11.py b/analysis/inspect_5_11.py new file mode 100644 index 0000000..bf32c73 --- /dev/null +++ b/analysis/inspect_5_11.py @@ -0,0 +1,50 @@ +"""Quick inspection of the new high-amplitude events.""" +import os, re, sys +sys.path.insert(0, ".") +from analysis.load_bundle import _parse_txt +from minimateplus.waveform_codec import walk_body, find_data_start + +ROOT = "decode-re/5-11-26" + + +def main(): + for stem in ("M529LL1A.SP0", "M529LL1A.SS0", "M529LL1A.SV0"): + bin_path = os.path.join(ROOT, stem) + txt_path = bin_path + ".TXT" + with open(bin_path, "rb") as f: + raw = f.read() + body = raw[43:-26] + meta, samples = _parse_txt(txt_path) + n = len(samples["Tran"]) + + print(f"\n=== {stem} ===") + print(f" file={len(raw)}, body={len(body)}, N_samples={n}") + print(f" rectime={meta.get('Record Time')} pretrig={meta.get('Pre-trigger Length')}") + print(f" PPV(T,V,L)={meta.get('Tran PPV')} / {meta.get('Vert PPV')} / {meta.get('Long PPV')}") + # Show first few non-trivial samples + print(f" First 5 truth samples (in/s):") + for i in range(5): + print(f" T={samples['Tran'][i]:8.3f} V={samples['Vert'][i]:8.3f} " + f"L={samples['Long'][i]:8.3f} M={samples['MicL'][i]:8.3f}") + # Peak sample positions + for ch in ("Tran", "Vert", "Long"): + vals = samples[ch] + peak_i = max(range(n), key=lambda i: abs(vals[i])) + print(f" {ch}: peak {vals[peak_i]:.3f} at sample {peak_i} (t={peak_i/1024:.3f}s)") + # Body structure + start = find_data_start(body) + blocks = walk_body(body, start) + types = {} + for b in blocks: + types[b.tag_hi] = types.get(b.tag_hi, 0) + 1 + print(f" body start={start}, total blocks walked: {len(blocks)}") + print(f" block tag counts: {types}") + # How far the walker got + if blocks: + last = blocks[-1] + walked = last.offset + last.length + print(f" walker stopped at offset {walked}/{len(body)} ({100*walked/len(body):.0f}%)") + + +if __name__ == "__main__": + main() diff --git a/analysis/test_tran_continue.py b/analysis/test_tran_continue.py new file mode 100644 index 0000000..7997d20 --- /dev/null +++ b/analysis/test_tran_continue.py @@ -0,0 +1,71 @@ +"""Test: does the second '20 NN' block in SS0 continue Tran samples?""" +import sys +sys.path.insert(0, ".") +from analysis.load_bundle import _parse_txt +from minimateplus.waveform_codec import walk_body, find_data_start + + +def s4(n): + return n if n < 8 else n - 16 + + +def i8(b): + return b if b < 128 else b - 256 + + +def main(): + stem = "M529LL1A.SS0" + path = f"decode-re/5-11-26/{stem}" + with open(path, "rb") as f: + body = f.read()[43:-26] + _, samples = _parse_txt(path + ".TXT") + truth_T_16 = [round(v * 200) for v in samples["Tran"]] + + # Preamble + T0 = int.from_bytes(body[3:5], "big", signed=True) + T1 = int.from_bytes(body[5:7], "big", signed=True) + + # Walk blocks + start = find_data_start(body) + blocks = walk_body(body, start) + + print(f"=== {stem} === T[0]={T0} T[1]={T1}") + + # Hypothesis: Tran continues through ALL 10 NN and 20 NN blocks + # in order, until the next 40 02 segment header (which resets). + T = [T0, T1] + cur = T1 + decoded_count = 2 # T[0], T[1] from preamble + for bi, blk in enumerate(blocks): + if blk.tag_hi == 0x10: + for byte in blk.data: + for nib in ((byte >> 4) & 0xF, byte & 0xF): + cur += s4(nib) + T.append(cur) + decoded_count += 1 + elif blk.tag_hi == 0x20: + for byte in blk.data: + cur += i8(byte) + T.append(cur) + decoded_count += 1 + elif blk.tag_hi == 0x40: + # Segment header — stop here for this test + break + # 00 and 30 NN don't contribute to Tran (in this hypothesis) + + # Compare to truth + print(f" Decoded {len(T)} T samples up to first 40 02") + matches = sum(1 for i in range(min(len(T), len(truth_T_16))) if T[i] == truth_T_16[i]) + print(f" Matches in first {min(len(T), len(truth_T_16))}: {matches}") + # Print first divergence + for i in range(min(len(T), len(truth_T_16))): + if T[i] != truth_T_16[i]: + print(f" First divergence: sample {i}: pred={T[i]}, truth={truth_T_16[i]}") + # Show context + print(f" pred [{i-3}:{i+5}]: {T[max(0,i-3):i+5]}") + print(f" truth [{i-3}:{i+5}]: {truth_T_16[max(0,i-3):i+5]}") + break + + +if __name__ == "__main__": + main() diff --git a/analysis/verify_tran.py b/analysis/verify_tran.py new file mode 100644 index 0000000..3187145 --- /dev/null +++ b/analysis/verify_tran.py @@ -0,0 +1,71 @@ +"""Verify: preamble[3:7] = Tran[0], Tran[1] as int16 BE in 16-count units. +And first 20/10 NN block = Tran deltas starting at sample 2. +""" +import os, sys +sys.path.insert(0, ".") +from analysis.load_bundle import _parse_txt +from minimateplus.waveform_codec import walk_body, find_data_start + + +def s4(n): + return n if n < 8 else n - 16 + + +def i8(b): + return b if b < 128 else b - 256 + + +def main(): + for stem in ("M529LL1A.SP0", "M529LL1A.SS0", "M529LL1A.SV0"): + path = f"decode-re/5-11-26/{stem}" + with open(path, "rb") as f: + raw = f.read() + body = raw[43:-26] + _, samples = _parse_txt(path + ".TXT") + truth_T_16 = [round(v * 200) for v in samples["Tran"]] + + # Preamble parse + T0_pre = int.from_bytes(body[3:5], "big", signed=True) + T1_pre = int.from_bytes(body[5:7], "big", signed=True) + print(f"\n=== {stem} ===") + print(f" Preamble T[0]={T0_pre} (truth {truth_T_16[0]}) T[1]={T1_pre} (truth {truth_T_16[1]}) match={T0_pre==truth_T_16[0] and T1_pre==truth_T_16[1]}") + + # First block + start = find_data_start(body) + blocks = walk_body(body, start) + if not blocks: + print(f" no blocks found") + continue + + # Assume first block = Tran deltas from sample 2 + first = blocks[0] + T = [T0_pre, T1_pre] + cur_T = T1_pre + if first.tag_hi == 0x10: + # Nibble pairs + for byte in first.data: + for nib in ((byte >> 4) & 0xF, byte & 0xF): + cur_T += s4(nib) + T.append(cur_T) + elif first.tag_hi == 0x20: + # int8 per byte + for byte in first.data: + cur_T += i8(byte) + T.append(cur_T) + + # Compare against truth + n_check = min(len(T), len(truth_T_16)) + match_count = sum(1 for i in range(n_check) if T[i] == truth_T_16[i]) + print(f" First block type=0x{first.tag_hi:02x} NN=0x{first.tag_lo:02x} len={len(first.data)} → {len(T)} T samples decoded") + print(f" Tran predicted[0:10]: {T[:10]}") + print(f" Tran truth [0:10]: {truth_T_16[:10]}") + print(f" Matches in first {n_check}: {match_count} / {n_check}") + # Show where it diverges + for i in range(n_check): + if T[i] != truth_T_16[i]: + print(f" First divergence: sample {i}: pred={T[i]}, truth={truth_T_16[i]}") + break + + +if __name__ == "__main__": + main() diff --git a/analysis/walk_5_11.py b/analysis/walk_5_11.py new file mode 100644 index 0000000..e7018d9 --- /dev/null +++ b/analysis/walk_5_11.py @@ -0,0 +1,20 @@ +"""Walk blocks of the new 5-11-26 events and look at what comes after Tran block.""" +import sys +sys.path.insert(0, ".") +from minimateplus.waveform_codec import walk_body, find_data_start + + +def main(): + for stem in ("M529LL1A.SP0", "M529LL1A.SS0", "M529LL1A.SV0"): + with open(f"decode-re/5-11-26/{stem}", "rb") as f: + raw = f.read() + body = raw[43:-26] + start = find_data_start(body) + blocks = walk_body(body, start) + print(f"\n=== {stem} === body={len(body)} start={start} blocks walked={len(blocks)}") + for i, b in enumerate(blocks[:20]): + print(f" block[{i:>2}] @ {b.offset:>5} tag={b.tag_hi:02x} NN=0x{b.tag_lo:02x}({b.tag_lo}) len={b.length} data[:24]={b.data[:24].hex(' ')}") + + +if __name__ == "__main__": + main() diff --git a/docs/instantel_protocol_reference.md b/docs/instantel_protocol_reference.md index 05673e5..fba3ecc 100644 --- a/docs/instantel_protocol_reference.md +++ b/docs/instantel_protocol_reference.md @@ -860,13 +860,14 @@ MicL: 39 64 1D AA = 0.0000875 psi --- -#### 7.6.1 Blast / Waveform mode — 🟡 STRUCTURAL FRAMING DECODED (2026-05-08) +#### 7.6.1 Blast / Waveform mode — 🟡 STRUCTURAL FRAMING + TRAN CODEC DECODED (2026-05-11) -> **Status (2026-05-08):** Block-level framing is solved and verified -> against the 4-event May 8 2026 bundle (3 sec / 2 sec / 1 sec / 1 sec -> events captured live from BE11529). The per-byte mapping from block -> data to ADC samples is **still open** — the previous int16 LE claim -> is REFUTED (see history below). +> **Status (2026-05-11):** Block-level framing is solved. The Tran-channel +> encoding (preamble + first data block) is **fully verified** against the +> 3-event May 11 2026 high-amplitude bundle (PPV 6-7 in/s) and the 4-event +> May 8 bundle. Verts / Long / MicL channel encodings and multi-block +> Tran continuation are **still open**. The previous int16 LE claim +> remains REFUTED (see history below). > > The earlier "4-channel interleaved s16 LE, 8 bytes per sample-set" > claim was never validated and was wrong. No event in the project's @@ -886,13 +887,32 @@ the 21-byte STRT record and the 26-byte file footer) is composed of [trailer: per-channel summary blocks] ``` -**Preamble:** starts with the 4-byte magic ``00 02 00 00``. Single-shot -events have a 7-byte preamble; continuous events have a 9-byte preamble -(the 4 events in the May 8 2026 bundle split 2/2 between the two -lengths). Bytes [4:9] of the preamble appear to encode initial -per-channel state but the layout has not been pinned down — for some -events byte [4] equals truth Tran[0] in 16-count units (0.005 in/s -LSB), but other channel-byte assignments don't fit consistently. +**Preamble (CONFIRMED 2026-05-11 across 3+4 events):** + +``` +body[0:3] = 00 02 00 magic +body[3:5] = Tran[0] int16 BE first Tran sample (LSB = 0.005 in/s) +body[5:7] = Tran[1] int16 BE second Tran sample +``` + +The preamble is therefore 7 bytes long. Earlier observations of a +"9-byte preamble" on continuous-mode events were a misread — those +events still have a 7-byte preamble; the next 2 bytes are part of the +first ``10 NN`` or ``20 NN`` data block (its tag). + +Verified preamble decode for all 7 fixture events — Tran[0] and Tran[1] +from the preamble bytes exactly match the BW ASCII export (rounded to +0.005 in/s): + +| Event | Preamble [3:7] (hex) | T[0] decoded | T[0] truth | T[1] decoded | T[1] truth | +|---|---|---|---|---|---| +| event-a (May 8) | ``01 00 00 00`` | +1 | +1 (0.005) | 0 | 0 | +| event-b (May 8) | ``ff ff ff 00`` | -1 | -1 | -1 | -1 | +| event-c (May 8) | ``00 00 00 00`` | 0 | 0 | 0 | 0 | +| event-d (May 8) | ``00 00 00 00`` | 0 | 0 | 0 | 0 | +| SP0 (May 11) | ``00 04 00 04`` | +4 | +4 (0.020) | +4 | +4 | +| SS0 (May 11) | ``ff a7 ff a7`` | -89 | -89 (-0.445) | -89 | -89 | +| SV0 (May 11) | ``fd 17 fd 06`` | -745 | -745 (-3.725) | -762 | -762 | ##### Block tags (CONFIRMED 2026-05-08) @@ -951,40 +971,54 @@ in the form ``f3/f4/f5`` near ``20 10`` markers strongly resemble int8 channel-bias values around -12). Detailed decoding of the trailer is outside the path needed for sample reconstruction. +##### Tran channel codec — CONFIRMED 2026-05-11 + +The first data block (immediately after the 7-byte preamble) carries +Tran-channel deltas starting at sample 2. Two block types in alternation: + +- ``10 NN``: ``NN/2`` bytes of payload. Each byte = two 4-bit signed + nibbles (high nibble first; 0..7 → 0..+7, 8..F → -8..-1). Each + nibble is one Tran delta in 16-count units. + +- ``20 NN``: ``NN`` bytes of payload. Each byte = one int8 signed delta + in 16-count units. + +Verified against all 3 May-11 fixture events: + +| Event | First block | # T samples decoded | Matches truth | +|---|---|---|---| +| SP0 | ``10 14`` (10 bytes / 20 nibbles) | 22 (= 2 preamble + 20 deltas) | 22/22 ✓ | +| SS0 | ``10 28`` (20 bytes / 40 nibbles) | 42 | 42/42 ✓ | +| SV0 | ``20 2c`` (44 int8 bytes) | 46 | 46/46 ✓ | + +Implementation: :func:`minimateplus.waveform_codec.decode_tran_initial`. + ##### What's still open -- **The byte → sample mapping inside ``10 NN`` and ``20 NN`` blocks.** - Tested hypotheses that did not match BW's ASCII export to within ±1 - ADC count: +- **Tran past the first data block.** After the first block, the + body has more ``10 NN`` / ``20 NN`` blocks separated by ``00 NN`` + markers and occasionally ``30 NN`` blocks. Naive continuation + (treat all subsequent ``10/20 NN`` blocks as Tran) does NOT match + truth past the first block — the codec interleaves channels somehow. + ``30 04`` markers appearing in SS0 between blocks 1 and 5 look + like channel-switch tags, but the switching rule has not been + fully decoded. - 1. ``10 NN`` data = 4-bit signed nibble deltas, channel-interleaved, - all 24 channel permutations × 2 nibble orders × 2 sign conventions - × 2 init-from-header settings (= 96 combinations). All produce - values that diverge from truth after the first ~7 sample-sets. - 2. ``20 NN`` data = int8 absolute or delta samples for one channel. - Magnitudes in observed blocks (peak ±34 in event-c at offset 351) - do not match any channel's PPV at any plausible ADC quantization - (1-count, 4-count, 8-count, 16-count). - 3. ``00 NN`` marker = "skip N sample-sets with zero deltas". Sums - of NN/4 across markers do not consistently match the 80 - sample-sets-per-segment count. +- **Vert / Long / MicL channel encodings.** No verified decoder + exists for these yet. Hypotheses tested without success: + V_init stored as int16 BE in ``30 NN`` block payload; V/L/M + blocks encoded in order after Tran with ``30 NN`` separators; + V encoded as ``V - T`` differential. None match truth. - The codec is more elaborate than uniform 4-bit deltas. A hybrid - variable-bit-width scheme (4-bit deltas in ``10 NN``, 8-bit deltas - or absolutes in ``20 NN``, segment-header anchors after each - ``40 02``) is the most plausible remaining hypothesis. - -- **The role of byte [4:9] of the preamble.** Byte 4 == Tran[0] - truth value (in 16-count units) for events a/b/d, but doesn't - fit consistently for event-c. Bytes [5:9] don't match a simple - per-channel encoding. +- **``30 NN`` block length.** In the trailer, ``30 NN`` blocks + are NN×4 bytes long. In the data section, ``30 NN`` blocks are + NN×2 bytes long (= 8 bytes for NN=4 in SS0). The walker tries + NN×2 first and falls back to NN×4 if needed. - **Walker correctness past offset ~427 in event-b.** The walker bails out partway through event-b — there is at least one block whose length doesn't fit the lengths confirmed for the other - three events. Likely a ``20 NN`` with NN > 0xFC (currently - rejected by the walker), or a different length formula in some - context. + events. This is a separate (now lower-priority) issue. ##### Recommended next step @@ -1011,6 +1045,7 @@ output shape — keep the ``.h5`` sidecars marked as | Date | Note | |---|---| +| 2026-05-11 | Tran channel codec cracked using a high-amplitude (PPV 6-7 in/s) event bundle. Preamble[3:7] = Tran[0]/Tran[1] as int16 BE in 16-count units (LSB = 0.005 in/s). First data block (``10 NN`` nibble-deltas or ``20 NN`` int8-deltas) carries Tran deltas from sample 2. Verified 22+42+46 = 110 samples across SP0/SS0/SV0 with 0 errors. Earlier 96-combination brute-force search on the quiet 5-8 bundle failed because Tran[0] = Tran[1] = 0 in those events made initial-value-from-preamble undetectable. | | 2026-05-08 | Block tagging confirmed against the 4-event May 2026 bundle. All bodies parse cleanly through `walk_body` for events a/c/d. Event-b walks partway and stops at offset 427 (open issue). | | 2026-05-08 | Earlier "4-channel interleaved s16 LE" claim formally retracted — never validated, produced full-scale ±32K noise on every event because the bytes are encoded, not raw samples. | | 2026-04-02 | "Frame 7 metadata", "Frame 9 terminator", and `0x0400`-step chunk-counter claims documented as-was; later proved to be artifacts of an over-reading 5A walk (now superseded by §7.8.5–7.8.7). | diff --git a/minimateplus/waveform_codec.py b/minimateplus/waveform_codec.py index 453d945..8f05df5 100644 --- a/minimateplus/waveform_codec.py +++ b/minimateplus/waveform_codec.py @@ -137,9 +137,17 @@ class WaveformBlock: def find_data_start(body: bytes) -> int: - """Auto-detect the offset of the first ``10 NN`` block.""" + """Auto-detect the offset of the first data block (``10 NN`` or ``20 NN``). + + The preamble is always either 7 bytes (when sample 0 and 1 have small + values) or 9 bytes (when they don't, but only on continuous-mode events + in the small May-8 bundle). Returning the offset of the first ``10/20 NN`` + tag is the most robust heuristic. + """ for i in range(min(20, len(body) - 1)): - if body[i] == 0x10 and body[i + 1] % 4 == 0 and 0 < body[i + 1] <= 0xFC: + b = body[i] + nn = body[i + 1] + if b in (0x10, 0x20) and nn % 4 == 0 and 0 < nn <= 0xFC: return i return -1 @@ -167,7 +175,18 @@ def walk_body(body: bytes, start: Optional[int] = None) -> List[WaveformBlock]: elif t0 == 0x00 and t1 % 4 == 0: length = 2 elif t0 == 0x30 and t1 % 4 == 0 and 0 < t1 <= 0x10: - length = t1 * 4 + # Data-section ``30 NN`` blocks have length NN*2 (= 8 for NN=4, + # confirmed in M529LL1A.SS0 at body offset 29). Trailer-section + # ``30 NN`` blocks have length NN*4 (= 32 for NN=8, confirmed in + # event-d trailer at body offset 3941). We pick NN*2 if it lands + # on a recognized tag, otherwise fall through to NN*4. + cand2 = t1 * 2 + cand4 = t1 * 4 + if (i + cand2 < len(body) - 1 + and body[i + cand2] in (0x10, 0x20, 0x00, 0x30, 0x40)): + length = cand2 + else: + length = cand4 elif t0 == 0x40 and t1 == 0x02: length = 20 else: @@ -227,16 +246,91 @@ def parse_segment_header(block: WaveformBlock) -> Optional[dict]: } +def _s4(n: int) -> int: + """Sign-extend a 4-bit value to signed int (0..7 → 0..7; 8..F → -8..-1).""" + return n if n < 8 else n - 16 + + +def _i8(b: int) -> int: + """Reinterpret an unsigned byte as signed int8.""" + return b if b < 128 else b - 256 + + +def decode_tran_initial(body: bytes) -> Optional[List[int]]: + """ + Decode the initial Tran-channel samples from the body — VERIFIED 2026-05-11 + against M529LL1A.SP0 / .SS0 / .SV0 (22 + 42 + 46 samples, 0 errors). + + Returns a list of Tran sample values in **16-count units** (LSB = 0.005 in/s + at Normal range, the same quantization BW uses for its ASCII export). + Returns ``None`` if the body cannot be parsed. + + The decoded list extends from sample 0 (= ``Tran[0]`` from preamble bytes + [3:5]) through the end of the FIRST data block. Subsequent samples + require decoding additional blocks — that walk is not yet wired up here + because the multi-block channel-switching rule is still under + investigation (see waveform_codec module docstring). + + Codec details (CONFIRMED 2026-05-11): + + - Body bytes [0:3] are the magic ``00 02 00``. + - Body bytes [3:5] = ``Tran[0]`` as int16 BE in 16-count units. + - Body bytes [5:7] = ``Tran[1]`` as int16 BE in 16-count units. + - The first data block (``10 NN`` or ``20 NN``) carries Tran deltas + starting at sample 2: + + * ``10 NN``: NN nibbles = NN/2 bytes; each nibble is a 4-bit signed + delta (0..7 → 0..+7; 8..F → -8..-1). High nibble of each byte + comes first. + * ``20 NN``: NN int8 signed deltas (one delta per byte). + """ + if len(body) < 9: + return None + if body[0:3] != b"\x00\x02\x00": + return None + t0 = int.from_bytes(body[3:5], "big", signed=True) + t1 = int.from_bytes(body[5:7], "big", signed=True) + + start = find_data_start(body) + if start < 0: + return None + blocks = walk_body(body, start) + if not blocks: + return [t0, t1] + first = blocks[0] + + out = [t0, t1] + cur = t1 + if first.tag_hi == 0x10: + for byte in first.data: + for nib in ((byte >> 4) & 0xF, byte & 0xF): + cur += _s4(nib) + out.append(cur) + elif first.tag_hi == 0x20: + for byte in first.data: + cur += _i8(byte) + out.append(cur) + else: + # First block is something else — fall back to just the preamble. + return out + return out + + def decode_waveform_v2(body: bytes) -> Optional[dict]: """ Decode the body into per-channel sample arrays. - Returns a dict ``{"Tran": [...], "Vert": [...], "Long": [...], "MicL": [...]}`` - when a verified decoder is wired up; returns ``None`` otherwise. + Returns ``None`` because the full multi-channel decoder is not yet + wired up. Tran is partially solved — see :func:`decode_tran_initial` + for the initial portion (verified against ground-truth BW exports). - Currently returns ``None`` because the byte-to-sample mapping is OPEN. - The block framing in :func:`walk_body` is verified — callers can use - that to inspect block-level structure without claiming the per-byte - interpretation. + Status (2026-05-11): + - Tran[0:N] correctly decoded by ``decode_tran_initial`` for the + first N samples of every fixture (where N = 22 / 42 / 46 + depending on event). + - Subsequent Tran samples + all Vert / Long / MicL samples: open. + The block stream after the first data block likely interleaves + channels with ``30 NN`` channel-switch markers, but the exact + switching rule is still under investigation. """ return None diff --git a/tests/fixtures/5-11-26/BE11529.MLG b/tests/fixtures/5-11-26/BE11529.MLG new file mode 100644 index 0000000000000000000000000000000000000000..1936664a4eae31fa10f5fd1c9678c0bbf0f7ce4b GIT binary patch literal 1770 zcmWe&U~FJu@XRYNNz5xr&0%2IQDWpofxf&Xp8d+kI8EHau9e`ofz|H!Koq^ZV z3g-L&{}~t%VH8r7nVz0nq~McUmYQRw;GUXqrC^|EYG9y{nWtY2(=&YO)Feb0SusMw z%8G@NfdwgyIH1CeXraUFlb@G90)p#$2vQiaKm&uFk%0+I7_p#-QCMnG$p{Feh*+dB zVuywi7b62BmM~&R52KKx#Jmv@M)#j0g%KAtj0Bi~g$trQLJOMVTkzoUnS~etHe^tB literal 0 HcmV?d00001 diff --git a/tests/fixtures/5-11-26/M529LL1A.SP0 b/tests/fixtures/5-11-26/M529LL1A.SP0 new file mode 100644 index 0000000000000000000000000000000000000000..b7bf0852178a50301b15d61866a194969bb5ecbc GIT binary patch literal 10780 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 F{}-1Ij(`9F literal 0 HcmV?d00001 diff --git a/tests/fixtures/5-11-26/M529LL1A.SS0.TXT b/tests/fixtures/5-11-26/M529LL1A.SS0.TXT new file mode 100644 index 0000000..046a0a5 --- /dev/null +++ b/tests/fixtures/5-11-26/M529LL1A.SS0.TXT @@ -0,0 +1,3137 @@ +"Event Type : Full Waveform" +"Serial Number : BE11529" +"Version : V 10.72-8.17 MiniMate Plus" +"File Name : M529LL1A.SS0" +"Event Time : 13:58:04" +"Event Date : May 11, 2026" +"Trigger : Vert" +"Geo Trigger Level : 0.500 in/s" +"Pre-trigger Length : -0.007 sec" +"Record Time : 3.0 sec" +"Record Stop Mode : Fixed" +"Sample Rate : 1024 sps" +"Battery Level : 6.8 Volts" +"Calibration : April 29, 2025 by Instantel" +"Units : in/s and dB(L)" +"Project: : Test-5-8-26" +"Client: : New Client" +"User Name: : Terra-Mechanics - Harrison" +"Seis Loc: : Still Catbed." +"Geo Range : 10.000 in/s" +"Tran PPV : 7.030 in/s" +"Vert PPV : 7.205 in/s" +"Long PPV : 6.135 in/s" +"Tran ZC Freq : 4.7 Hz" +"Vert ZC Freq : 3.9 Hz" +"Long ZC Freq : 3.5 Hz" +"Tran Time of Peak : 0.093 sec" +"Vert Time of Peak : 0.172 sec" +"Long Time of Peak : 0.165 sec" +"Tran Peak Acceleration : 4.587 g" +"Vert Peak Acceleration : 9.691 g" +"Long Peak Acceleration : 3.513 g" +"Tran Peak Displacement : 0.259 in" +"Vert Peak Displacement : 0.382 in" +"Long Peak Displacement : 0.299 in" +"Peak Vector Sum : 9.704 in/s" +"Peak Vector Sum Time : 0.172 sec" +"Microphone : Linear Weighting" +"MicL PSPL : 109.5 dB(L)" +"MicL Time of Peak : 0.171 sec" +"MicL ZC Freq : 3.5 Hz" +"Tran Test Freq : 7.4 Hz" +"Tran Test Ratio : 3.8" +"Tran Test Results : Passed" +"Vert Test Freq : 7.6 Hz" +"Vert Test Ratio : 3.5" +"Vert Test Results : Passed" +"Long Test Freq : 7.4 Hz" +"Long Test Ratio : 3.9" +"Long Test Results : Passed" +"MicL Test Freq : 20.5 Hz" +"MicL Test Amplitude : 586 mv" +"MicL Test Results : Passed" +"Monitor Log(s)" +"May 11 /26 13:58:04 May 11 /26 13:58:07 Event recorded. " +"PC SW Version : V 10.74" + + Tran Vert Long MicL +-0.445 -3.890 1.075 93.98 +-0.445 -3.895 1.055 91.48 +-0.455 -3.905 1.035 93.98 +-0.455 -3.910 1.010 91.48 +-0.460 -3.920 0.985 91.48 +-0.465 -3.930 0.950 93.98 +-0.470 -3.940 0.920 91.48 +-0.470 -3.950 0.935 93.98 +-0.470 -3.925 0.995 91.48 +-0.470 -3.865 1.125 93.98 +-0.470 -3.840 1.250 95.92 +-0.475 -3.885 1.265 95.92 +-0.480 -3.920 1.215 93.98 +-0.490 -3.920 1.155 93.98 +-0.495 -3.880 1.135 93.98 +-0.495 -3.865 1.170 93.98 +-0.485 -3.875 1.200 93.98 +-0.475 -3.895 1.200 93.98 +-0.465 -3.885 1.180 93.98 +-0.460 -3.855 1.175 93.98 +-0.455 -3.845 1.185 95.92 +-0.445 -3.855 1.200 93.98 +-0.435 -3.860 1.195 95.92 +-0.415 -3.845 1.185 93.98 +-0.395 -3.820 1.185 95.92 +-0.370 -3.810 1.185 93.98 +-0.355 -3.820 1.190 95.92 +-0.330 -3.810 1.185 93.98 +-0.305 -3.790 1.185 93.98 +-0.270 -3.765 1.180 93.98 +-0.240 -3.765 1.185 95.92 +-0.205 -3.760 1.190 93.98 +-0.175 -3.745 1.195 95.92 +-0.140 -3.720 1.205 93.98 +-0.105 -3.705 1.210 95.92 +-0.070 -3.700 1.230 93.98 +-0.050 -3.685 1.245 95.92 +-0.020 -3.670 1.260 95.92 +0.000 -3.645 1.280 95.92 +0.015 -3.630 1.275 95.92 +0.020 -3.620 1.205 93.98 +0.015 -3.605 1.080 93.98 +-0.010 -3.585 1.030 93.98 +-0.795 -3.575 1.105 93.98 +-2.115 -3.565 1.190 93.98 +-2.485 -3.555 1.160 93.98 +-2.775 -3.535 1.065 93.98 +-3.025 -3.520 1.020 91.48 +-2.845 -3.500 1.065 93.98 +-2.570 -3.470 1.115 93.98 +-2.815 -3.450 1.105 93.98 +-3.200 -3.430 1.070 93.98 +-3.235 -3.410 1.070 93.98 +-3.090 -3.385 1.100 93.98 +-3.130 -3.365 1.140 93.98 +-3.365 -3.345 1.185 93.98 +-3.525 -3.335 1.235 95.92 +-3.515 -3.340 1.300 93.98 +-3.500 -3.340 1.380 95.92 +-3.595 -3.310 1.455 95.92 +-3.750 -3.285 1.545 97.50 +-3.810 -3.270 1.635 95.92 +-3.765 -3.260 1.735 97.50 +-3.765 -3.210 1.830 98.84 +-3.930 -3.090 1.930 98.84 +-4.010 -2.980 2.030 97.50 +-3.955 -2.995 2.120 100.0 +-4.010 -3.085 2.210 101.0 +-4.170 -3.130 2.290 100.0 +-4.280 -3.110 2.360 101.0 +-4.300 -3.100 2.420 101.0 +-4.320 -3.125 2.475 101.0 +-4.410 -3.175 2.520 101.0 +-4.540 -3.245 2.545 101.9 +-4.650 -3.345 2.555 101.0 +-4.705 -3.465 2.550 101.0 +-4.750 -3.605 2.525 101.0 +-4.755 -3.755 2.480 101.0 +-4.765 -3.915 2.430 101.0 +-4.830 -4.100 2.365 100.0 +-4.915 -4.295 2.285 100.0 +-5.010 -4.495 2.195 98.84 +-5.115 -4.680 2.090 98.84 +-5.200 -4.860 1.970 98.84 +-5.260 -5.025 1.835 98.84 +-5.350 -5.185 1.705 97.50 +-5.515 -5.350 1.565 97.50 +-5.675 -5.505 1.230 95.92 +-5.815 -5.640 -0.095 0.000 +-5.945 -5.750 -1.090 -91.48 +-6.065 -5.845 -1.360 -93.98 +-6.185 -5.910 -1.590 -95.92 +-6.310 -5.960 -1.655 -97.50 +-6.435 -5.980 -1.520 -97.50 +-6.555 -4.805 -1.410 -95.92 +-6.635 -1.150 -1.465 -97.50 +-6.715 0.885 -1.675 -97.50 +-6.800 -0.040 -1.905 -98.84 +-6.880 -1.205 -1.955 -98.84 +-6.940 -1.530 -1.925 -98.84 +-6.990 -1.565 -2.035 -98.84 +-7.015 -0.765 -2.260 -100.0 +-7.030 -0.340 -2.365 -101.0 +-7.030 -0.805 -2.330 -100.0 +-7.000 -0.360 -2.345 -101.0 +-6.970 0.250 -2.510 -101.0 +-6.935 0.100 -2.685 -101.9 +-6.895 -0.180 -2.735 -101.9 +-6.825 -0.225 -2.730 -101.9 +-6.730 0.290 -2.800 -102.8 +-6.570 0.670 -2.935 -101.9 +-5.260 0.735 -3.035 -102.8 +-3.530 0.825 -3.070 -103.5 +-3.200 0.985 -3.110 -103.5 +-2.860 1.115 -3.205 -102.8 +-2.305 1.235 -3.315 -103.5 +-2.380 1.335 -3.370 -104.2 +-2.775 1.440 -3.400 -104.2 +-3.010 1.545 -3.475 -104.9 +-3.120 1.645 -3.580 -104.2 +-3.240 1.745 -3.635 -104.2 +-3.215 1.845 -3.655 -104.9 +-2.695 1.955 -3.715 -104.9 +-2.405 2.050 -3.825 -104.9 +-2.425 2.145 -3.895 -104.9 +-2.085 2.245 -3.895 -105.5 +-1.875 2.340 -3.930 -105.5 +-2.035 2.435 -4.035 -105.5 +-2.140 2.515 -4.120 -105.5 +-2.075 2.610 -4.130 -106.0 +-1.860 2.695 -4.145 -106.0 +-1.570 2.785 -4.220 -106.0 +-1.410 2.870 -4.305 -106.0 +-1.395 2.955 -4.345 -106.0 +-1.405 3.035 -4.355 -106.5 +-1.350 3.115 -4.390 -106.5 +-1.225 3.195 -4.470 -106.5 +-1.090 3.270 -4.525 -106.5 +-0.990 3.350 -4.545 -106.5 +-0.935 3.425 -4.565 -106.5 +-0.890 3.495 -4.610 -106.5 +-0.815 3.565 -4.670 -107.0 +-0.710 3.640 -4.710 -107.0 +-0.610 3.710 -4.730 -107.0 +-0.535 3.775 -4.760 -107.0 +-0.470 3.845 -4.795 -107.0 +-0.415 3.915 -4.835 -107.0 +-0.335 3.995 -4.865 -107.5 +-0.255 4.060 -4.895 -107.0 +-0.170 4.120 -4.930 -107.0 +-0.095 4.175 -4.960 -107.5 +-0.030 4.225 -4.965 -107.5 +0.035 4.285 -4.985 -107.5 +0.100 4.345 -5.015 -107.5 +0.175 4.405 -5.050 -108.0 +0.245 4.460 -5.065 -108.0 +0.315 4.505 -5.085 -107.5 +0.380 4.555 -5.125 -107.5 +0.445 4.610 -5.165 -107.5 +0.510 4.680 -5.220 -107.5 +0.575 4.770 -5.285 -108.0 +0.630 4.880 -5.350 -108.0 +0.695 5.000 -5.420 -108.4 +0.755 5.120 -5.495 -108.0 +0.825 5.260 -5.575 -108.4 +0.885 5.405 -5.645 -108.4 +0.940 5.545 -5.715 -108.8 +0.995 5.695 -5.790 -108.8 +1.050 5.840 -5.855 -108.8 +1.110 5.985 -5.915 -108.8 +1.170 6.125 -5.970 -109.2 +1.225 6.260 -6.010 -109.2 +1.275 6.390 -6.050 -109.2 +1.330 6.515 -6.085 -109.2 +1.380 6.625 -6.105 -109.2 +1.465 6.735 -6.130 -109.2 +1.600 6.835 -6.135 -109.2 +1.760 6.925 -6.135 -109.2 +1.910 7.000 -6.130 -109.2 +2.045 7.070 -6.120 -109.2 +2.170 7.120 -6.095 -109.2 +2.300 7.160 -6.070 -108.8 +2.420 7.185 -6.035 -109.5 +2.525 7.205 -5.990 -109.2 +2.625 7.195 -5.945 -108.8 +2.710 7.175 -5.885 -108.8 +2.795 7.140 -5.825 -109.2 +2.865 7.085 -5.755 -108.8 +2.920 7.015 -5.680 -108.8 +2.975 6.930 -5.605 -108.4 +3.015 6.825 -5.520 -108.4 +3.050 6.710 -5.435 -108.0 +3.065 6.575 -5.340 -108.0 +3.080 5.870 -5.255 -108.0 +3.090 3.890 -5.170 -107.5 +3.080 2.695 -5.080 -108.0 +3.065 2.990 -4.980 -107.5 +3.045 3.415 -4.870 -107.0 +3.010 3.420 -4.760 -107.0 +2.970 3.380 -4.650 -106.5 +2.925 3.475 -4.535 -106.5 +2.875 3.560 -4.420 -107.0 +2.820 3.565 -4.300 -106.0 +2.750 3.545 -4.180 -105.5 +2.685 3.530 -4.060 -106.0 +2.610 3.490 -3.940 -105.5 +2.530 3.435 -3.820 -105.5 +2.445 3.365 -3.695 -104.9 +2.360 3.285 -3.570 -104.2 +2.270 3.125 -3.440 -104.9 +2.180 2.755 -3.310 -104.2 +2.090 2.420 -3.180 -104.2 +1.995 2.335 -3.045 -103.5 +1.905 2.320 -2.905 -102.8 +1.815 2.235 -2.770 -103.5 +1.725 2.120 -2.635 -101.9 +1.635 2.020 -2.495 -101.9 +1.550 1.930 -2.360 -101.9 +1.465 1.830 -2.220 -101.0 +1.385 1.720 -2.085 -100.0 +1.305 1.615 -1.950 -100.0 +1.230 1.505 -1.815 -100.0 +1.165 1.395 -1.685 -98.84 +1.100 1.285 -1.555 -97.50 +1.045 1.180 -1.420 -97.50 +0.990 1.070 -1.295 -95.92 +0.950 0.975 -1.160 -95.92 +0.905 0.875 -1.035 -93.98 +0.880 0.780 -0.905 -93.98 +0.850 0.685 -0.785 -93.98 +0.830 0.595 -0.665 -91.48 +0.810 0.510 -0.540 -91.48 +0.800 0.430 -0.425 -91.48 +0.790 0.355 -0.310 -87.96 +0.790 0.285 -0.195 -87.96 +0.790 0.220 -0.090 -81.94 +0.800 0.160 0.010 -81.94 +0.805 0.105 0.115 0.000 +0.825 0.055 0.210 0.000 +0.840 0.010 0.305 81.94 +0.865 -0.030 0.395 0.000 +0.885 -0.070 0.475 81.94 +0.910 -0.095 0.555 87.96 +0.940 -0.125 0.625 87.96 +0.970 -0.140 0.690 81.94 +1.000 -0.165 0.755 87.96 +1.040 -0.170 0.805 87.96 +1.070 -0.175 0.850 87.96 +1.110 -0.175 0.890 87.96 +1.140 -0.170 0.920 91.48 +1.180 -0.155 0.945 91.48 +1.220 -0.135 0.965 91.48 +1.255 -0.115 0.980 87.96 +1.295 -0.085 0.985 87.96 +1.330 -0.060 0.985 91.48 +1.370 -0.020 0.980 87.96 +1.405 0.020 0.970 91.48 +1.445 0.060 0.955 87.96 +1.480 0.105 0.940 91.48 +1.520 0.155 0.915 91.48 +1.550 0.210 0.890 91.48 +1.585 0.260 0.860 87.96 +1.615 0.305 0.830 87.96 +1.650 0.360 0.790 87.96 +1.680 0.410 0.755 87.96 +1.710 0.460 0.715 81.94 +1.735 0.515 0.670 81.94 +1.760 0.560 0.625 87.96 +1.790 0.610 0.580 81.94 +1.810 0.660 0.530 81.94 +1.830 0.705 0.480 0.000 +1.850 0.755 0.435 81.94 +1.870 0.800 0.380 0.000 +1.890 0.850 0.330 81.94 +1.900 0.890 0.280 81.94 +1.920 0.935 0.225 0.000 +1.935 0.975 0.175 0.000 +1.950 1.015 0.120 -81.94 +1.955 1.050 0.065 -81.94 +1.970 1.085 0.015 -81.94 +1.980 1.125 -0.040 -81.94 +1.985 1.155 -0.085 -81.94 +1.990 1.185 -0.135 -87.96 +1.995 1.215 -0.185 -87.96 +2.000 1.235 -0.230 -81.94 +2.000 1.260 -0.275 -87.96 +2.000 1.280 -0.315 -87.96 +2.000 1.295 -0.355 -87.96 +1.995 1.305 -0.400 -87.96 +1.990 1.315 -0.435 -87.96 +1.985 1.325 -0.470 -87.96 +1.980 1.330 -0.500 -91.48 +1.970 1.330 -0.530 -91.48 +1.960 1.330 -0.560 -91.48 +1.950 1.320 -0.585 -91.48 +1.940 1.315 -0.605 -93.98 +1.930 1.305 -0.630 -91.48 +1.915 1.290 -0.640 -91.48 +1.905 1.270 -0.655 -93.98 +1.890 1.250 -0.665 -91.48 +1.880 1.230 -0.675 -93.98 +1.870 1.205 -0.675 -91.48 +1.855 1.180 -0.680 -91.48 +1.850 1.155 -0.675 -91.48 +1.840 1.130 -0.670 -91.48 +1.830 1.100 -0.665 -91.48 +1.825 1.070 -0.655 -91.48 +1.815 1.040 -0.640 -91.48 +1.815 1.010 -0.625 -91.48 +1.810 0.980 -0.605 -93.98 +1.805 0.950 -0.580 -91.48 +1.805 0.920 -0.560 -91.48 +1.805 0.885 -0.535 -91.48 +1.805 0.855 -0.505 -91.48 +1.805 0.825 -0.480 -91.48 +1.805 0.800 -0.450 -87.96 +1.805 0.770 -0.420 -87.96 +1.810 0.740 -0.390 -87.96 +1.815 0.715 -0.355 -87.96 +1.820 0.690 -0.330 -87.96 +1.830 0.665 -0.295 -87.96 +1.830 0.645 -0.270 -87.96 +1.835 0.620 -0.235 -87.96 +1.840 0.605 -0.205 -81.94 +1.855 0.585 -0.180 -87.96 +1.860 0.575 -0.150 -87.96 +1.870 0.560 -0.130 -87.96 +1.880 0.550 -0.105 -81.94 +1.885 0.540 -0.085 -81.94 +1.895 0.540 -0.070 -81.94 +1.900 0.540 -0.055 -81.94 +1.905 0.540 -0.040 -81.94 +1.915 0.550 -0.025 -81.94 +1.915 0.555 -0.015 0.000 +1.915 0.570 -0.005 0.000 +1.925 0.580 0.000 -81.94 +1.925 0.595 0.005 -81.94 +1.925 0.610 0.005 0.000 +1.925 0.630 0.000 0.000 +1.920 0.645 0.000 0.000 +1.920 0.665 -0.010 -81.94 +1.915 0.685 -0.015 -81.94 +1.910 0.710 -0.025 -81.94 +1.900 0.735 -0.035 -81.94 +1.895 0.765 -0.045 -81.94 +1.885 0.785 -0.060 -81.94 +1.880 0.815 -0.075 -81.94 +1.870 0.845 -0.090 -81.94 +1.860 0.875 -0.105 -81.94 +1.850 0.905 -0.120 -81.94 +1.835 0.935 -0.140 -81.94 +1.825 0.965 -0.160 -87.96 +1.815 0.995 -0.180 -87.96 +1.800 1.025 -0.200 -87.96 +1.785 1.060 -0.215 -87.96 +1.770 1.085 -0.235 -81.94 +1.760 1.115 -0.250 -87.96 +1.745 1.140 -0.265 -87.96 +1.730 1.165 -0.285 -91.48 +1.705 1.190 -0.300 -87.96 +1.690 1.210 -0.320 -81.94 +1.675 1.235 -0.335 -87.96 +1.660 1.255 -0.355 -87.96 +1.640 1.275 -0.365 -87.96 +1.620 1.295 -0.380 -87.96 +1.600 1.320 -0.395 -87.96 +1.580 1.335 -0.410 -81.94 +1.565 1.350 -0.420 -87.96 +1.545 1.370 -0.425 -87.96 +1.530 1.385 -0.440 -87.96 +1.510 1.400 -0.450 -87.96 +1.490 1.415 -0.455 -91.48 +1.475 1.425 -0.460 -87.96 +1.460 1.430 -0.465 -87.96 +1.450 1.440 -0.460 -91.48 +1.435 1.445 -0.460 -87.96 +1.420 1.455 -0.460 -87.96 +1.405 1.455 -0.455 -87.96 +1.395 1.460 -0.450 -87.96 +1.380 1.460 -0.445 -87.96 +1.370 1.465 -0.440 -91.48 +1.350 1.465 -0.430 -87.96 +1.340 1.465 -0.420 -87.96 +1.325 1.465 -0.415 -87.96 +1.315 1.460 -0.405 -81.94 +1.305 1.460 -0.395 -87.96 +1.290 1.460 -0.380 -87.96 +1.280 1.455 -0.370 -87.96 +1.265 1.450 -0.360 -81.94 +1.255 1.445 -0.350 -87.96 +1.245 1.435 -0.340 -87.96 +1.230 1.425 -0.325 -81.94 +1.220 1.420 -0.315 -81.94 +1.210 1.410 -0.300 -87.96 +1.200 1.405 -0.290 -87.96 +1.185 1.390 -0.280 -87.96 +1.180 1.385 -0.270 -87.96 +1.170 1.375 -0.255 -87.96 +1.160 1.360 -0.245 -87.96 +1.145 1.355 -0.230 -81.94 +1.145 1.340 -0.215 -87.96 +1.135 1.325 -0.205 -81.94 +1.130 1.315 -0.190 -81.94 +1.120 1.305 -0.175 -81.94 +1.120 1.295 -0.155 -87.96 +1.115 1.285 -0.135 -81.94 +1.110 1.270 -0.120 -81.94 +1.115 1.265 -0.100 -81.94 +1.110 1.250 -0.080 -81.94 +1.110 1.245 -0.060 -81.94 +1.110 1.235 -0.040 0.000 +1.115 1.225 -0.015 0.000 +1.120 1.220 0.010 0.000 +1.135 1.210 0.035 -81.94 +1.210 1.205 0.060 -81.94 +1.310 1.195 0.085 -81.94 +1.350 1.195 0.115 0.000 +1.345 1.180 0.145 -81.94 +1.325 1.175 0.175 0.000 +1.295 1.170 0.205 0.000 +1.285 1.165 0.230 81.94 +1.305 1.155 0.265 0.000 +1.330 1.150 0.300 81.94 +1.320 1.145 0.330 0.000 +1.290 1.145 0.365 0.000 +1.270 1.135 0.395 81.94 +1.275 1.135 0.435 81.94 +1.295 1.135 0.465 81.94 +1.300 1.130 0.500 81.94 +1.280 1.130 0.535 87.96 +1.250 1.130 0.570 87.96 +1.245 1.130 0.605 87.96 +1.255 1.130 0.640 87.96 +1.270 1.125 0.675 87.96 +1.260 1.125 0.710 81.94 +1.230 1.120 0.745 87.96 +1.215 1.125 0.780 87.96 +1.220 1.120 0.810 91.48 +1.235 1.125 0.845 91.48 +1.230 1.120 0.875 91.48 +1.215 1.115 0.910 91.48 +1.190 1.115 0.940 91.48 +1.185 1.115 0.970 91.48 +1.190 1.110 1.005 91.48 +1.190 1.105 1.030 91.48 +1.180 1.100 1.060 91.48 +1.155 1.090 1.085 93.98 +1.145 1.085 1.115 91.48 +1.145 1.075 1.140 93.98 +1.150 1.070 1.160 93.98 +1.140 1.060 1.180 93.98 +1.125 1.050 1.200 93.98 +1.105 1.040 1.225 93.98 +1.100 1.030 1.240 93.98 +1.100 1.020 1.255 93.98 +1.095 1.005 1.270 93.98 +1.085 0.995 1.280 93.98 +1.065 0.980 1.295 93.98 +1.055 0.970 1.305 91.48 +1.050 0.955 1.315 93.98 +1.050 0.945 1.320 93.98 +1.040 0.930 1.325 93.98 +1.020 0.915 1.335 93.98 +1.005 0.900 1.335 93.98 +0.995 0.890 1.340 93.98 +1.000 0.870 1.345 93.98 +0.990 0.860 1.345 93.98 +0.975 0.850 1.345 93.98 +0.960 0.830 1.350 93.98 +0.950 0.815 1.350 93.98 +0.945 0.805 1.350 93.98 +0.935 0.790 1.350 93.98 +0.930 0.775 1.350 93.98 +0.910 0.760 1.350 93.98 +0.895 0.750 1.350 93.98 +0.885 0.735 1.350 93.98 +0.885 0.725 1.350 93.98 +0.875 0.710 1.350 93.98 +0.860 0.700 1.350 93.98 +0.840 0.690 1.350 93.98 +0.835 0.675 1.350 93.98 +0.825 0.660 1.350 93.98 +0.820 0.655 1.355 93.98 +0.805 0.645 1.355 93.98 +0.790 0.630 1.355 95.92 +0.780 0.615 1.360 93.98 +0.765 0.600 1.355 95.92 +0.760 0.590 1.355 93.98 +0.750 0.575 1.360 93.98 +0.740 0.565 1.360 93.98 +0.720 0.550 1.360 95.92 +0.710 0.535 1.365 93.98 +0.700 0.520 1.365 93.98 +0.690 0.505 1.370 93.98 +0.675 0.485 1.365 95.92 +0.665 0.475 1.370 93.98 +0.650 0.460 1.370 93.98 +0.640 0.445 1.375 93.98 +0.630 0.420 1.380 93.98 +0.620 0.405 1.385 93.98 +0.605 0.385 1.385 93.98 +0.590 0.360 1.395 93.98 +0.580 0.340 1.400 93.98 +0.570 0.320 1.410 93.98 +0.565 0.290 1.415 95.92 +0.550 0.265 1.420 95.92 +0.535 0.240 1.425 95.92 +0.520 0.215 1.430 95.92 +0.510 0.180 1.430 95.92 +0.500 0.155 1.440 93.98 +0.490 0.120 1.445 93.98 +0.475 0.090 1.445 93.98 +0.460 0.060 1.445 93.98 +0.450 0.030 1.450 95.92 +0.440 -0.005 1.460 95.92 +0.430 -0.035 1.455 95.92 +0.415 -0.075 1.460 95.92 +0.400 -0.105 1.460 95.92 +0.385 -0.135 1.465 95.92 +0.380 -0.170 1.465 95.92 +0.370 -0.200 1.470 95.92 +0.355 -0.240 1.470 95.92 +0.345 -0.270 1.475 95.92 +0.330 -0.300 1.475 95.92 +0.320 -0.335 1.480 95.92 +0.310 -0.365 1.490 95.92 +0.295 -0.400 1.490 95.92 +0.285 -0.435 1.495 95.92 +0.270 -0.470 1.505 95.92 +0.260 -0.505 1.515 95.92 +0.245 -0.540 1.520 95.92 +0.235 -0.575 1.530 97.50 +0.230 -0.610 1.540 95.92 +0.215 -0.655 1.555 95.92 +0.200 -0.690 1.565 95.92 +0.190 -0.730 1.585 97.50 +0.180 -0.765 1.595 95.92 +0.170 -0.805 1.610 97.50 +0.155 -0.845 1.620 95.92 +0.145 -0.885 1.635 95.92 +0.130 -0.930 1.655 97.50 +0.125 -0.975 1.670 95.92 +0.110 -1.015 1.685 95.92 +0.100 -1.055 1.700 97.50 +0.090 -1.100 1.715 95.92 +0.075 -1.145 1.730 97.50 +0.065 -1.185 1.740 97.50 +0.055 -1.225 1.755 97.50 +0.045 -1.265 1.770 97.50 +0.030 -1.305 1.790 97.50 +0.020 -1.345 1.800 97.50 +0.010 -1.380 1.815 97.50 +0.000 -1.420 1.830 97.50 +-0.010 -1.460 1.850 98.84 +-0.020 -1.500 1.860 98.84 +-0.030 -1.540 1.880 98.84 +-0.040 -1.580 1.890 98.84 +-0.055 -1.615 1.910 97.50 +-0.065 -1.660 1.920 98.84 +-0.070 -1.695 1.935 97.50 +-0.075 -1.740 1.955 97.50 +-0.065 -1.775 1.965 97.50 +-0.050 -1.815 1.980 97.50 +-0.035 -1.850 1.990 97.50 +-0.025 -1.885 2.005 97.50 +-0.010 -1.925 2.020 98.84 +0.000 -1.960 2.030 98.84 +0.005 -1.995 2.040 98.84 +0.010 -2.030 2.055 98.84 +0.010 -2.060 2.070 98.84 +0.015 -2.095 2.075 97.50 +0.010 -2.125 2.090 98.84 +0.010 -2.155 2.100 98.84 +0.000 -2.190 2.115 98.84 +0.000 -2.215 2.125 98.84 +-0.010 -2.245 2.140 100.0 +-0.015 -2.275 2.145 98.84 +-0.035 -2.305 2.160 98.84 +-0.045 -2.330 2.170 98.84 +-0.060 -2.355 2.180 98.84 +-0.075 -2.380 2.190 100.0 +-0.090 -2.405 2.200 100.0 +-0.110 -2.430 2.210 100.0 +-0.130 -2.450 2.220 100.0 +-0.150 -2.475 2.230 100.0 +-0.175 -2.500 2.235 100.0 +-0.195 -2.520 2.245 100.0 +-0.220 -2.540 2.255 98.84 +-0.245 -2.565 2.265 98.84 +-0.265 -2.585 2.270 98.84 +-0.295 -2.600 2.275 98.84 +-0.320 -2.620 2.280 98.84 +-0.350 -2.635 2.290 98.84 +-0.380 -2.655 2.300 98.84 +-0.405 -2.670 2.300 98.84 +-0.430 -2.685 2.305 98.84 +-0.460 -2.705 2.305 98.84 +-0.490 -2.720 2.315 98.84 +-0.520 -2.735 2.315 98.84 +-0.545 -2.745 2.320 98.84 +-0.575 -2.760 2.320 100.0 +-0.605 -2.775 2.330 98.84 +-0.630 -2.785 2.335 98.84 +-0.660 -2.800 2.335 98.84 +-0.685 -2.810 2.340 98.84 +-0.715 -2.825 2.345 100.0 +-0.740 -2.840 2.345 98.84 +-0.770 -2.850 2.355 100.0 +-0.795 -2.865 2.355 100.0 +-0.820 -2.880 2.360 98.84 +-0.850 -2.890 2.365 100.0 +-0.875 -2.910 2.365 100.0 +-0.905 -2.920 2.365 100.0 +-0.930 -2.940 2.370 100.0 +-0.955 -2.950 2.370 98.84 +-0.980 -2.960 2.375 100.0 +-1.005 -2.980 2.370 98.84 +-1.030 -2.995 2.375 100.0 +-1.055 -3.015 2.375 100.0 +-1.080 -3.030 2.375 100.0 +-1.105 -3.040 2.375 100.0 +-1.130 -3.060 2.370 100.0 +-1.155 -3.070 2.375 100.0 +-1.175 -3.090 2.370 98.84 +-1.200 -3.105 2.370 100.0 +-1.225 -3.125 2.375 100.0 +-1.245 -3.140 2.370 100.0 +-1.265 -3.160 2.365 100.0 +-1.290 -3.170 2.360 98.84 +-1.310 -3.185 2.360 100.0 +-1.335 -3.205 2.355 100.0 +-1.355 -3.220 2.350 98.84 +-1.380 -3.235 2.345 100.0 +-1.400 -3.250 2.335 100.0 +-1.420 -3.265 2.325 100.0 +-1.440 -3.280 2.320 98.84 +-1.465 -3.290 2.310 98.84 +-1.480 -3.310 2.300 98.84 +-1.500 -3.320 2.290 98.84 +-1.520 -3.335 2.280 97.50 +-1.545 -3.345 2.270 98.84 +-1.565 -3.360 2.260 98.84 +-1.580 -3.370 2.250 100.0 +-1.605 -3.385 2.240 98.84 +-1.620 -3.390 2.230 100.0 +-1.645 -3.400 2.220 98.84 +-1.660 -3.415 2.210 98.84 +-1.680 -3.420 2.200 100.0 +-1.700 -3.430 2.185 98.84 +-1.715 -3.440 2.175 98.84 +-1.735 -3.450 2.165 100.0 +-1.755 -3.455 2.150 98.84 +-1.775 -3.465 2.145 98.84 +-1.790 -3.470 2.130 98.84 +-1.810 -3.475 2.120 98.84 +-1.825 -3.480 2.105 98.84 +-1.840 -3.480 2.095 98.84 +-1.855 -3.485 2.080 97.50 +-1.870 -3.490 2.065 97.50 +-1.885 -3.490 2.055 98.84 +-1.895 -3.490 2.040 98.84 +-1.910 -3.485 2.025 98.84 +-1.920 -3.485 2.010 97.50 +-1.935 -3.480 2.005 97.50 +-1.940 -3.475 1.985 97.50 +-1.950 -3.470 1.975 97.50 +-1.960 -3.465 1.965 97.50 +-1.970 -3.455 1.950 97.50 +-1.975 -3.450 1.935 97.50 +-1.980 -3.440 1.930 98.84 +-1.990 -3.435 1.920 97.50 +-1.990 -3.420 1.905 97.50 +-1.995 -3.410 1.895 97.50 +-2.000 -3.405 1.885 98.84 +-2.000 -3.390 1.875 97.50 +-2.005 -3.380 1.865 97.50 +-2.005 -3.375 1.855 97.50 +-2.005 -3.360 1.845 97.50 +-2.010 -3.350 1.835 97.50 +-2.010 -3.340 1.820 97.50 +-2.010 -3.330 1.810 97.50 +-2.005 -3.320 1.795 97.50 +-2.005 -3.310 1.780 97.50 +-2.005 -3.300 1.770 97.50 +-2.005 -3.285 1.755 95.92 +-2.000 -3.270 1.745 97.50 +-2.000 -3.260 1.730 95.92 +-2.000 -3.250 1.720 95.92 +-1.995 -3.230 1.705 95.92 +-1.995 -3.220 1.695 95.92 +-1.990 -3.210 1.685 95.92 +-1.990 -3.190 1.675 95.92 +-1.990 -3.180 1.660 95.92 +-1.985 -3.165 1.645 95.92 +-1.985 -3.150 1.640 95.92 +-1.985 -3.140 1.630 95.92 +-1.980 -3.125 1.620 95.92 +-1.985 -3.115 1.610 97.50 +-1.980 -3.105 1.595 95.92 +-1.980 -3.090 1.585 95.92 +-1.980 -3.080 1.575 95.92 +-1.980 -3.065 1.565 95.92 +-1.985 -3.055 1.550 95.92 +-1.980 -3.045 1.535 95.92 +-1.980 -3.030 1.525 95.92 +-1.985 -3.020 1.510 95.92 +-1.985 -3.005 1.495 93.98 +-1.985 -2.995 1.480 95.92 +-1.985 -2.975 1.465 93.98 +-1.990 -2.960 1.450 93.98 +-1.990 -2.945 1.435 93.98 +-1.990 -2.925 1.415 93.98 +-1.995 -2.905 1.400 93.98 +-1.995 -2.885 1.380 93.98 +-2.000 -2.865 1.365 93.98 +-2.000 -2.840 1.340 93.98 +-2.000 -2.815 1.325 93.98 +-2.005 -2.795 1.300 91.48 +-2.005 -2.770 1.285 93.98 +-2.005 -2.745 1.260 93.98 +-2.010 -2.715 1.240 93.98 +-2.010 -2.690 1.215 91.48 +-2.010 -2.660 1.190 93.98 +-2.015 -2.635 1.170 93.98 +-2.015 -2.600 1.140 91.48 +-2.015 -2.570 1.120 91.48 +-2.015 -2.540 1.085 91.48 +-2.020 -2.510 1.055 87.96 +-2.020 -2.475 1.030 91.48 +-2.020 -2.445 1.000 91.48 +-2.020 -2.410 0.970 91.48 +-2.020 -2.375 0.935 87.96 +-2.020 -2.340 0.910 91.48 +-2.020 -2.305 0.875 91.48 +-2.015 -2.265 0.845 87.96 +-2.020 -2.230 0.810 87.96 +-2.015 -2.185 0.770 87.96 +-2.015 -2.145 0.740 87.96 +-2.015 -2.100 0.705 87.96 +-2.010 -2.055 0.665 81.94 +-2.010 -2.015 0.630 87.96 +-2.005 -1.965 0.595 81.94 +-2.005 -1.920 0.560 87.96 +-2.000 -1.870 0.520 81.94 +-1.995 -1.825 0.485 81.94 +-1.985 -1.775 0.445 81.94 +-1.985 -1.725 0.410 0.000 +-1.975 -1.675 0.370 0.000 +-1.975 -1.625 0.335 0.000 +-1.965 -1.575 0.295 81.94 +-1.955 -1.525 0.260 0.000 +-1.950 -1.475 0.220 0.000 +-1.935 -1.425 0.185 0.000 +-1.925 -1.370 0.150 0.000 +-1.915 -1.325 0.110 -81.94 +-1.905 -1.270 0.075 -81.94 +-1.895 -1.225 0.040 -81.94 +-1.880 -1.165 0.005 -81.94 +-1.870 -1.115 -0.030 0.000 +-1.850 -1.060 -0.065 -81.94 +-1.835 -1.005 -0.095 -81.94 +-1.815 -0.955 -0.130 -87.96 +-1.805 -0.900 -0.160 -81.94 +-1.785 -0.845 -0.195 -87.96 +-1.765 -0.790 -0.225 -87.96 +-1.745 -0.735 -0.250 -87.96 +-1.725 -0.680 -0.280 -87.96 +-1.705 -0.625 -0.305 -87.96 +-1.680 -0.570 -0.335 -87.96 +-1.660 -0.515 -0.355 -87.96 +-1.635 -0.460 -0.380 -87.96 +-1.610 -0.405 -0.400 -81.94 +-1.585 -0.350 -0.420 -87.96 +-1.560 -0.305 -0.440 -87.96 +-1.530 -0.250 -0.460 -91.48 +-1.510 -0.200 -0.475 -87.96 +-1.480 -0.150 -0.495 -91.48 +-1.450 -0.100 -0.510 -91.48 +-1.420 -0.050 -0.525 -91.48 +-1.395 0.000 -0.540 -91.48 +-1.365 0.045 -0.555 -91.48 +-1.335 0.090 -0.565 -91.48 +-1.310 0.135 -0.580 -91.48 +-1.280 0.175 -0.595 -91.48 +-1.250 0.215 -0.605 -91.48 +-1.220 0.255 -0.610 -91.48 +-1.190 0.295 -0.625 -91.48 +-1.165 0.335 -0.635 -87.96 +-1.135 0.375 -0.650 -91.48 +-1.110 0.410 -0.655 -91.48 +-1.080 0.450 -0.670 -91.48 +-1.055 0.485 -0.675 -91.48 +-1.025 0.525 -0.685 -91.48 +-1.000 0.555 -0.695 -91.48 +-0.975 0.595 -0.705 -91.48 +-0.955 0.630 -0.715 -91.48 +-0.925 0.660 -0.725 -91.48 +-0.905 0.700 -0.735 -91.48 +-0.880 0.730 -0.745 -91.48 +-0.860 0.765 -0.750 -93.98 +-0.835 0.795 -0.755 -91.48 +-0.815 0.825 -0.765 -91.48 +-0.800 0.855 -0.765 -91.48 +-0.775 0.885 -0.775 -93.98 +-0.760 0.910 -0.780 -91.48 +-0.735 0.940 -0.790 -93.98 +-0.720 0.970 -0.795 -93.98 +-0.700 0.990 -0.805 -91.48 +-0.685 1.015 -0.810 -93.98 +-0.670 1.035 -0.815 -93.98 +-0.650 1.055 -0.825 -93.98 +-0.635 1.080 -0.830 -93.98 +-0.620 1.095 -0.835 -93.98 +-0.605 1.115 -0.845 -91.48 +-0.595 1.130 -0.850 -93.98 +-0.585 1.145 -0.860 -93.98 +-0.570 1.160 -0.865 -93.98 +-0.565 1.175 -0.875 -93.98 +-0.550 1.185 -0.890 -93.98 +-0.540 1.205 -0.895 -93.98 +-0.535 1.210 -0.905 -93.98 +-0.530 1.225 -0.915 -95.92 +-0.525 1.235 -0.915 -93.98 +-0.515 1.250 -0.930 -93.98 +-0.510 1.255 -0.935 -93.98 +-0.505 1.270 -0.945 -95.92 +-0.500 1.280 -0.950 -91.48 +-0.495 1.290 -0.960 -91.48 +-0.485 1.300 -0.970 -93.98 +-0.485 1.300 -0.975 -93.98 +-0.475 1.310 -0.985 -93.98 +-0.470 1.315 -0.995 -91.48 +-0.465 1.320 -1.000 -93.98 +-0.460 1.325 -1.005 -91.48 +-0.455 1.330 -1.015 -93.98 +-0.450 1.330 -1.020 -93.98 +-0.445 1.330 -1.030 -93.98 +-0.440 1.330 -1.035 -93.98 +-0.430 1.330 -1.035 -93.98 +-0.425 1.330 -1.040 -93.98 +-0.420 1.330 -1.050 -93.98 +-0.410 1.330 -1.055 -95.92 +-0.410 1.330 -1.055 -93.98 +-0.395 1.335 -1.060 -93.98 +-0.385 1.330 -1.060 -93.98 +-0.380 1.330 -1.065 -93.98 +-0.365 1.330 -1.065 -93.98 +-0.360 1.325 -1.065 -93.98 +-0.345 1.330 -1.070 -93.98 +-0.335 1.330 -1.070 -93.98 +-0.320 1.330 -1.075 -93.98 +-0.305 1.325 -1.075 -93.98 +-0.290 1.320 -1.080 -93.98 +-0.280 1.325 -1.075 -93.98 +-0.265 1.325 -1.085 -93.98 +-0.250 1.325 -1.085 -93.98 +-0.240 1.325 -1.090 -93.98 +-0.225 1.325 -1.095 -93.98 +-0.210 1.330 -1.105 -93.98 +-0.200 1.330 -1.110 -93.98 +-0.190 1.335 -1.120 -93.98 +-0.170 1.335 -1.130 -93.98 +-0.160 1.345 -1.140 -95.92 +-0.145 1.345 -1.150 -93.98 +-0.130 1.350 -1.160 -95.92 +-0.115 1.355 -1.170 -95.92 +-0.105 1.365 -1.185 -93.98 +-0.095 1.370 -1.195 -95.92 +-0.075 1.380 -1.205 -97.50 +-0.065 1.390 -1.220 -95.92 +-0.050 1.405 -1.235 -95.92 +-0.040 1.410 -1.245 -95.92 +-0.020 1.425 -1.265 -97.50 +-0.010 1.445 -1.280 -95.92 +0.005 1.455 -1.290 -95.92 +0.015 1.470 -1.305 -95.92 +0.030 1.490 -1.325 -95.92 +0.045 1.510 -1.335 -95.92 +0.060 1.530 -1.355 -97.50 +0.075 1.550 -1.370 -95.92 +0.085 1.570 -1.385 -95.92 +0.100 1.600 -1.395 -95.92 +0.115 1.625 -1.420 -97.50 +0.130 1.650 -1.430 -97.50 +0.145 1.680 -1.450 -97.50 +0.160 1.710 -1.460 -95.92 +0.175 1.745 -1.480 -97.50 +0.185 1.780 -1.495 -97.50 +0.205 1.810 -1.510 -97.50 +0.225 1.850 -1.525 -97.50 +0.235 1.885 -1.535 -97.50 +0.255 1.925 -1.555 -98.84 +0.275 1.960 -1.570 -98.84 +0.290 2.005 -1.580 -98.84 +0.310 2.050 -1.595 -95.92 +0.325 2.085 -1.605 -97.50 +0.345 2.125 -1.615 -97.50 +0.360 2.165 -1.620 -97.50 +0.380 2.210 -1.635 -97.50 +0.400 2.250 -1.645 -97.50 +0.420 2.295 -1.645 -97.50 +0.440 2.330 -1.655 -97.50 +0.465 2.370 -1.660 -98.84 +0.485 2.410 -1.655 -98.84 +0.510 2.450 -1.660 -98.84 +0.530 2.490 -1.655 -97.50 +0.555 2.525 -1.650 -97.50 +0.570 2.560 -1.645 -97.50 +0.600 2.595 -1.640 -97.50 +0.625 2.635 -1.630 -97.50 +0.645 2.665 -1.620 -97.50 +0.670 2.695 -1.610 -97.50 +0.690 2.725 -1.595 -97.50 +0.710 2.755 -1.585 -98.84 +0.730 2.785 -1.565 -98.84 +0.755 2.805 -1.550 -97.50 +0.770 2.825 -1.530 -97.50 +0.790 2.850 -1.520 -98.84 +0.805 2.865 -1.495 -97.50 +0.825 2.880 -1.480 -97.50 +0.840 2.890 -1.455 -97.50 +0.855 2.905 -1.445 -97.50 +0.870 2.915 -1.425 -97.50 +0.880 2.920 -1.410 -97.50 +0.890 2.925 -1.385 -97.50 +0.900 2.925 -1.370 -97.50 +0.910 2.925 -1.350 -95.92 +0.915 2.920 -1.335 -95.92 +0.915 2.920 -1.320 -95.92 +0.920 2.905 -1.300 -95.92 +0.920 2.900 -1.290 -93.98 +0.920 2.890 -1.270 -95.92 +0.915 2.875 -1.255 -95.92 +0.915 2.860 -1.240 -95.92 +0.910 2.845 -1.225 -95.92 +0.905 2.825 -1.210 -95.92 +0.895 2.800 -1.200 -95.92 +0.890 2.780 -1.190 -95.92 +0.880 2.755 -1.175 -95.92 +0.870 2.730 -1.165 -95.92 +0.865 2.705 -1.155 -95.92 +0.855 2.675 -1.150 -95.92 +0.840 2.645 -1.145 -95.92 +0.830 2.610 -1.135 -93.98 +0.820 2.585 -1.135 -95.92 +0.810 2.555 -1.125 -93.98 +0.795 2.520 -1.120 -93.98 +0.785 2.490 -1.115 -95.92 +0.770 2.455 -1.115 -93.98 +0.760 2.425 -1.110 -95.92 +0.750 2.390 -1.110 -93.98 +0.740 2.360 -1.110 -93.98 +0.725 2.325 -1.110 -93.98 +0.715 2.295 -1.105 -93.98 +0.700 2.260 -1.105 -93.98 +0.695 2.230 -1.105 -93.98 +0.685 2.195 -1.105 -93.98 +0.675 2.165 -1.110 -95.92 +0.660 2.130 -1.115 -93.98 +0.655 2.100 -1.120 -93.98 +0.640 2.070 -1.125 -93.98 +0.635 2.035 -1.135 -95.92 +0.620 2.005 -1.140 -93.98 +0.615 1.970 -1.145 -93.98 +0.610 1.935 -1.145 -95.92 +0.600 1.905 -1.150 -93.98 +0.600 1.875 -1.160 -95.92 +0.590 1.840 -1.165 -95.92 +0.570 1.815 -1.180 -95.92 +0.550 1.790 -1.195 -95.92 +0.535 1.770 -1.210 -95.92 +0.520 1.740 -1.225 -95.92 +0.510 1.720 -1.235 -95.92 +0.495 1.695 -1.240 -95.92 +0.495 1.670 -1.250 -95.92 +0.495 1.645 -1.250 -97.50 +0.500 1.620 -1.260 -95.92 +0.505 1.590 -1.255 -95.92 +0.510 1.565 -1.260 -95.92 +0.520 1.540 -1.265 -97.50 +0.530 1.515 -1.265 -95.92 +0.540 1.495 -1.265 -95.92 +0.550 1.465 -1.270 -93.98 +0.560 1.445 -1.270 -93.98 +0.575 1.425 -1.270 -93.98 +0.580 1.405 -1.270 -93.98 +0.590 1.390 -1.265 -95.92 +0.605 1.375 -1.265 -97.50 +0.615 1.365 -1.260 -95.92 +0.625 1.355 -1.260 -95.92 +0.640 1.355 -1.250 -95.92 +0.650 1.350 -1.245 -93.98 +0.665 1.350 -1.240 -95.92 +0.675 1.350 -1.230 -93.98 +0.685 1.350 -1.225 -95.92 +0.700 1.360 -1.215 -95.92 +0.710 1.360 -1.210 -95.92 +0.720 1.365 -1.200 -95.92 +0.735 1.370 -1.195 -95.92 +0.740 1.370 -1.185 -95.92 +0.750 1.370 -1.175 -93.98 +0.765 1.375 -1.170 -95.92 +0.770 1.370 -1.155 -93.98 +0.785 1.375 -1.145 -95.92 +0.790 1.375 -1.140 -93.98 +0.800 1.375 -1.130 -93.98 +0.810 1.375 -1.120 -93.98 +0.820 1.370 -1.105 -93.98 +0.825 1.365 -1.090 -93.98 +0.835 1.370 -1.075 -93.98 +0.835 1.365 -1.065 -93.98 +0.845 1.365 -1.050 -93.98 +0.850 1.365 -1.035 -93.98 +0.850 1.360 -1.025 -93.98 +0.860 1.360 -1.010 -93.98 +0.865 1.360 -0.995 -93.98 +0.865 1.360 -0.985 -93.98 +0.865 1.360 -0.970 -91.48 +0.865 1.360 -0.960 -91.48 +0.870 1.360 -0.940 -93.98 +0.865 1.365 -0.935 -93.98 +0.860 1.365 -0.920 -93.98 +0.860 1.365 -0.905 -93.98 +0.855 1.370 -0.900 -93.98 +0.850 1.375 -0.890 -93.98 +0.840 1.380 -0.880 -93.98 +0.835 1.380 -0.870 -91.48 +0.825 1.385 -0.860 -95.92 +0.815 1.395 -0.855 -93.98 +0.805 1.395 -0.845 -91.48 +0.795 1.400 -0.835 -93.98 +0.785 1.405 -0.835 -91.48 +0.770 1.410 -0.825 -91.48 +0.755 1.410 -0.820 -91.48 +0.745 1.410 -0.815 -93.98 +0.730 1.410 -0.805 -93.98 +0.715 1.410 -0.800 -93.98 +0.705 1.415 -0.795 -91.48 +0.690 1.410 -0.790 -93.98 +0.675 1.410 -0.780 -91.48 +0.660 1.405 -0.775 -93.98 +0.645 1.400 -0.770 -91.48 +0.630 1.395 -0.765 -91.48 +0.615 1.385 -0.755 -91.48 +0.605 1.380 -0.750 -91.48 +0.585 1.375 -0.745 -91.48 +0.575 1.365 -0.740 -91.48 +0.565 1.355 -0.730 -91.48 +0.550 1.340 -0.725 -91.48 +0.535 1.335 -0.715 -91.48 +0.520 1.315 -0.705 -91.48 +0.510 1.305 -0.700 -91.48 +0.495 1.290 -0.690 -91.48 +0.485 1.275 -0.680 -87.96 +0.475 1.255 -0.675 -91.48 +0.460 1.240 -0.670 -87.96 +0.455 1.225 -0.660 -87.96 +0.435 1.200 -0.650 -87.96 +0.430 1.185 -0.640 -87.96 +0.415 1.165 -0.630 -87.96 +0.405 1.140 -0.625 -91.48 +0.400 1.120 -0.610 -91.48 +0.385 1.095 -0.600 -91.48 +0.375 1.075 -0.590 -91.48 +0.365 1.055 -0.575 -91.48 +0.355 1.030 -0.565 -87.96 +0.350 1.010 -0.550 -91.48 +0.340 0.985 -0.540 -87.96 +0.330 0.965 -0.525 -91.48 +0.320 0.940 -0.510 -87.96 +0.315 0.920 -0.495 -87.96 +0.300 0.895 -0.485 -87.96 +0.290 0.870 -0.465 -87.96 +0.285 0.845 -0.455 -87.96 +0.275 0.825 -0.440 -87.96 +0.265 0.795 -0.430 -87.96 +0.255 0.770 -0.415 -87.96 +0.240 0.745 -0.395 -87.96 +0.230 0.715 -0.385 -87.96 +0.225 0.690 -0.365 -81.94 +0.215 0.665 -0.355 -81.94 +0.205 0.635 -0.335 -81.94 +0.190 0.605 -0.320 -81.94 +0.185 0.580 -0.300 -87.96 +0.170 0.555 -0.285 -81.94 +0.160 0.520 -0.270 -81.94 +0.155 0.495 -0.250 -87.96 +0.140 0.460 -0.230 -87.96 +0.135 0.440 -0.215 -87.96 +0.120 0.410 -0.195 -81.94 +0.110 0.380 -0.170 -81.94 +0.105 0.350 -0.155 -81.94 +0.095 0.320 -0.135 0.000 +0.090 0.295 -0.110 -81.94 +0.075 0.265 -0.090 0.000 +0.070 0.235 -0.065 0.000 +0.060 0.210 -0.045 0.000 +0.055 0.180 -0.025 0.000 +0.045 0.150 0.000 0.000 +0.040 0.125 0.020 -81.94 +0.030 0.100 0.040 -81.94 +0.025 0.075 0.060 -81.94 +0.015 0.050 0.080 0.000 +0.010 0.030 0.105 0.000 +0.005 0.005 0.130 0.000 +0.000 -0.020 0.150 0.000 +-0.010 -0.040 0.175 0.000 +-0.020 -0.065 0.195 81.94 +-0.025 -0.090 0.210 81.94 +-0.030 -0.110 0.230 81.94 +-0.035 -0.130 0.250 81.94 +-0.045 -0.150 0.265 0.000 +-0.050 -0.170 0.285 81.94 +-0.055 -0.185 0.300 0.000 +-0.060 -0.200 0.320 81.94 +-0.065 -0.220 0.335 81.94 +-0.070 -0.235 0.355 81.94 +-0.075 -0.245 0.370 81.94 +-0.080 -0.265 0.385 81.94 +-0.080 -0.275 0.400 81.94 +-0.085 -0.285 0.420 81.94 +-0.090 -0.295 0.435 81.94 +-0.100 -0.300 0.455 81.94 +-0.100 -0.315 0.465 87.96 +-0.105 -0.320 0.485 81.94 +-0.110 -0.330 0.505 81.94 +-0.115 -0.335 0.515 81.94 +-0.125 -0.340 0.530 87.96 +-0.125 -0.350 0.545 81.94 +-0.135 -0.355 0.560 87.96 +-0.140 -0.360 0.570 87.96 +-0.145 -0.360 0.585 87.96 +-0.155 -0.365 0.595 91.48 +-0.155 -0.370 0.610 87.96 +-0.165 -0.370 0.620 87.96 +-0.170 -0.375 0.630 87.96 +-0.175 -0.380 0.645 87.96 +-0.185 -0.385 0.660 87.96 +-0.190 -0.385 0.670 81.94 +-0.195 -0.385 0.680 87.96 +-0.200 -0.390 0.690 87.96 +-0.205 -0.390 0.695 87.96 +-0.210 -0.395 0.705 81.94 +-0.220 -0.395 0.715 87.96 +-0.220 -0.400 0.715 87.96 +-0.225 -0.395 0.725 87.96 +-0.230 -0.395 0.725 87.96 +-0.235 -0.400 0.730 91.48 +-0.235 -0.395 0.735 87.96 +-0.240 -0.395 0.735 87.96 +-0.245 -0.400 0.735 87.96 +-0.245 -0.395 0.740 87.96 +-0.250 -0.395 0.740 87.96 +-0.250 -0.395 0.740 87.96 +-0.250 -0.395 0.735 87.96 +-0.255 -0.390 0.735 87.96 +-0.260 -0.390 0.735 87.96 +-0.260 -0.385 0.735 87.96 +-0.260 -0.390 0.740 87.96 +-0.260 -0.385 0.735 81.94 +-0.260 -0.380 0.735 87.96 +-0.260 -0.380 0.740 87.96 +-0.255 -0.375 0.740 87.96 +-0.260 -0.375 0.745 87.96 +-0.255 -0.375 0.740 87.96 +-0.255 -0.375 0.745 87.96 +-0.250 -0.375 0.745 87.96 +-0.250 -0.375 0.750 87.96 +-0.250 -0.380 0.755 87.96 +-0.245 -0.385 0.755 87.96 +-0.250 -0.385 0.760 91.48 +-0.245 -0.390 0.765 91.48 +-0.240 -0.395 0.770 87.96 +-0.245 -0.400 0.780 91.48 +-0.240 -0.405 0.780 87.96 +-0.240 -0.405 0.790 91.48 +-0.235 -0.415 0.795 87.96 +-0.235 -0.420 0.800 87.96 +-0.235 -0.425 0.805 91.48 +-0.230 -0.435 0.810 87.96 +-0.235 -0.440 0.820 91.48 +-0.230 -0.450 0.820 91.48 +-0.225 -0.460 0.825 87.96 +-0.230 -0.465 0.830 91.48 +-0.230 -0.475 0.830 91.48 +-0.230 -0.485 0.835 91.48 +-0.230 -0.495 0.830 91.48 +-0.230 -0.505 0.835 91.48 +-0.230 -0.515 0.835 91.48 +-0.230 -0.525 0.835 91.48 +-0.235 -0.535 0.830 91.48 +-0.230 -0.540 0.825 91.48 +-0.235 -0.550 0.825 91.48 +-0.235 -0.560 0.815 87.96 +-0.230 -0.565 0.810 91.48 +-0.230 -0.575 0.800 91.48 +-0.230 -0.580 0.790 87.96 +-0.230 -0.585 0.780 87.96 +-0.230 -0.590 0.770 91.48 +-0.230 -0.595 0.755 87.96 +-0.230 -0.600 0.745 91.48 +-0.230 -0.600 0.730 87.96 +-0.225 -0.600 0.720 87.96 +-0.225 -0.605 0.705 87.96 +-0.225 -0.605 0.690 87.96 +-0.220 -0.605 0.670 81.94 +-0.215 -0.600 0.655 87.96 +-0.215 -0.600 0.635 91.48 +-0.210 -0.600 0.620 87.96 +-0.210 -0.600 0.605 87.96 +-0.205 -0.590 0.590 87.96 +-0.200 -0.590 0.565 87.96 +-0.195 -0.580 0.550 87.96 +-0.190 -0.575 0.535 87.96 +-0.180 -0.565 0.515 87.96 +-0.170 -0.550 0.495 81.94 +-0.165 -0.545 0.480 87.96 +-0.155 -0.525 0.460 81.94 +-0.150 -0.510 0.445 81.94 +-0.135 -0.495 0.430 81.94 +-0.130 -0.480 0.415 81.94 +-0.115 -0.460 0.400 0.000 +-0.105 -0.440 0.385 81.94 +-0.095 -0.420 0.375 81.94 +-0.080 -0.400 0.365 81.94 +-0.070 -0.380 0.350 81.94 +-0.055 -0.360 0.345 0.000 +-0.040 -0.335 0.335 81.94 +-0.025 -0.320 0.325 81.94 +-0.010 -0.300 0.320 81.94 +0.005 -0.275 0.310 81.94 +0.020 -0.260 0.310 81.94 +0.035 -0.245 0.305 81.94 +0.055 -0.220 0.305 81.94 +0.070 -0.205 0.305 81.94 +0.090 -0.185 0.305 81.94 +0.100 -0.165 0.305 81.94 +0.120 -0.150 0.305 81.94 +0.135 -0.135 0.310 81.94 +0.150 -0.115 0.310 81.94 +0.165 -0.100 0.310 81.94 +0.185 -0.085 0.310 81.94 +0.195 -0.070 0.310 81.94 +0.210 -0.055 0.315 81.94 +0.220 -0.040 0.315 81.94 +0.235 -0.030 0.315 81.94 +0.245 -0.020 0.320 81.94 +0.255 -0.010 0.315 81.94 +0.260 0.005 0.315 81.94 +0.275 0.010 0.320 81.94 +0.280 0.020 0.310 0.000 +0.290 0.025 0.305 81.94 +0.295 0.035 0.300 81.94 +0.300 0.045 0.295 81.94 +0.305 0.050 0.290 81.94 +0.310 0.060 0.275 0.000 +0.310 0.070 0.270 81.94 +0.315 0.075 0.255 81.94 +0.320 0.080 0.245 0.000 +0.315 0.085 0.235 0.000 +0.315 0.095 0.215 0.000 +0.315 0.100 0.200 0.000 +0.315 0.110 0.180 0.000 +0.310 0.120 0.165 0.000 +0.305 0.130 0.140 0.000 +0.305 0.140 0.125 0.000 +0.295 0.150 0.100 0.000 +0.295 0.165 0.075 0.000 +0.290 0.180 0.055 -81.94 +0.285 0.190 0.035 0.000 +0.285 0.205 0.010 0.000 +0.275 0.215 -0.015 0.000 +0.275 0.230 -0.040 0.000 +0.270 0.245 -0.065 0.000 +0.265 0.255 -0.090 0.000 +0.260 0.270 -0.120 -81.94 +0.260 0.285 -0.150 -81.94 +0.255 0.305 -0.170 -81.94 +0.250 0.315 -0.195 -81.94 +0.250 0.335 -0.220 -81.94 +0.245 0.350 -0.245 -81.94 +0.250 0.360 -0.270 -81.94 +0.250 0.380 -0.290 -87.96 +0.250 0.390 -0.310 -81.94 +0.250 0.405 -0.335 -81.94 +0.250 0.420 -0.355 -81.94 +0.260 0.430 -0.370 -87.96 +0.260 0.440 -0.385 -87.96 +0.265 0.450 -0.405 -87.96 +0.270 0.460 -0.415 -87.96 +0.275 0.465 -0.425 -87.96 +0.280 0.470 -0.435 -81.94 +0.295 0.480 -0.445 -87.96 +0.300 0.480 -0.450 -87.96 +0.310 0.480 -0.450 -87.96 +0.315 0.485 -0.450 -87.96 +0.325 0.485 -0.450 -81.94 +0.335 0.485 -0.445 -87.96 +0.345 0.480 -0.440 -87.96 +0.350 0.475 -0.440 -81.94 +0.365 0.470 -0.430 -87.96 +0.370 0.465 -0.420 -87.96 +0.375 0.460 -0.410 -87.96 +0.380 0.450 -0.400 -81.94 +0.385 0.440 -0.390 -87.96 +0.395 0.430 -0.375 -87.96 +0.395 0.415 -0.365 -81.94 +0.400 0.405 -0.350 -87.96 +0.400 0.390 -0.335 -81.94 +0.400 0.375 -0.325 -87.96 +0.395 0.360 -0.310 -81.94 +0.395 0.340 -0.300 -87.96 +0.390 0.325 -0.285 -87.96 +0.385 0.300 -0.280 -87.96 +0.380 0.285 -0.265 -87.96 +0.365 0.260 -0.260 -87.96 +0.355 0.240 -0.255 -81.94 +0.345 0.220 -0.250 -87.96 +0.325 0.200 -0.250 -81.94 +0.310 0.180 -0.245 -81.94 +0.290 0.155 -0.245 -81.94 +0.275 0.135 -0.245 -87.96 +0.255 0.110 -0.250 -87.96 +0.235 0.090 -0.255 -81.94 +0.215 0.065 -0.260 -87.96 +0.195 0.040 -0.265 -87.96 +0.175 0.020 -0.275 -87.96 +0.155 -0.005 -0.280 -81.94 +0.135 -0.020 -0.290 -87.96 +0.115 -0.040 -0.300 -91.48 +0.085 -0.060 -0.315 -81.94 +0.070 -0.080 -0.330 -81.94 +0.050 -0.095 -0.340 -81.94 +0.030 -0.110 -0.355 -87.96 +0.010 -0.120 -0.365 -87.96 +-0.005 -0.135 -0.385 -87.96 +-0.025 -0.150 -0.405 -81.94 +-0.040 -0.160 -0.420 -87.96 +-0.060 -0.165 -0.435 -87.96 +-0.070 -0.175 -0.460 -87.96 +-0.085 -0.180 -0.475 -87.96 +-0.100 -0.185 -0.495 -87.96 +-0.110 -0.190 -0.515 -87.96 +-0.120 -0.195 -0.535 -87.96 +-0.130 -0.195 -0.560 -91.48 +-0.140 -0.195 -0.580 -91.48 +-0.150 -0.195 -0.600 -91.48 +-0.155 -0.190 -0.625 -91.48 +-0.160 -0.190 -0.645 -91.48 +-0.165 -0.190 -0.665 -87.96 +-0.165 -0.185 -0.690 -91.48 +-0.165 -0.180 -0.705 -91.48 +-0.170 -0.175 -0.725 -91.48 +-0.165 -0.170 -0.745 -91.48 +-0.165 -0.160 -0.760 -91.48 +-0.160 -0.150 -0.780 -91.48 +-0.155 -0.140 -0.795 -91.48 +-0.145 -0.135 -0.810 -93.98 +-0.140 -0.120 -0.825 -93.98 +-0.130 -0.115 -0.840 -91.48 +-0.120 -0.100 -0.855 -93.98 +-0.110 -0.085 -0.865 -93.98 +-0.095 -0.080 -0.875 -93.98 +-0.080 -0.060 -0.885 -93.98 +-0.070 -0.055 -0.895 -93.98 +-0.050 -0.040 -0.905 -95.92 +-0.035 -0.025 -0.910 -93.98 +-0.020 -0.010 -0.920 -93.98 +0.005 0.000 -0.920 -93.98 +0.020 0.010 -0.925 -93.98 +0.040 0.025 -0.930 -93.98 +0.060 0.040 -0.930 -93.98 +0.080 0.055 -0.925 -93.98 +0.100 0.065 -0.925 -93.98 +0.125 0.080 -0.920 -93.98 +0.145 0.085 -0.915 -93.98 +0.165 0.100 -0.910 -93.98 +0.185 0.110 -0.895 -93.98 +0.215 0.125 -0.885 -93.98 +0.230 0.130 -0.875 -91.48 +0.255 0.140 -0.860 -93.98 +0.275 0.150 -0.845 -93.98 +0.295 0.160 -0.835 -93.98 +0.315 0.165 -0.815 -91.48 +0.330 0.170 -0.800 -91.48 +0.355 0.175 -0.785 -91.48 +0.365 0.180 -0.765 -91.48 +0.385 0.180 -0.750 -87.96 +0.400 0.185 -0.730 -91.48 +0.410 0.185 -0.710 -91.48 +0.425 0.190 -0.695 -91.48 +0.435 0.190 -0.675 -87.96 +0.445 0.195 -0.665 -91.48 +0.450 0.200 -0.645 -87.96 +0.460 0.200 -0.635 -87.96 +0.460 0.200 -0.620 -91.48 +0.465 0.205 -0.610 -91.48 +0.465 0.205 -0.595 -91.48 +0.465 0.200 -0.585 -91.48 +0.465 0.205 -0.575 -91.48 +0.465 0.205 -0.570 -87.96 +0.460 0.205 -0.565 -87.96 +0.455 0.210 -0.555 -87.96 +0.450 0.210 -0.550 -87.96 +0.445 0.210 -0.550 -87.96 +0.435 0.205 -0.540 -87.96 +0.430 0.200 -0.540 -91.48 +0.420 0.200 -0.540 -87.96 +0.410 0.200 -0.535 -87.96 +0.400 0.195 -0.540 -91.48 +0.385 0.190 -0.540 -91.48 +0.375 0.185 -0.545 -87.96 +0.365 0.180 -0.545 -87.96 +0.350 0.175 -0.555 -87.96 +0.335 0.175 -0.555 -91.48 +0.320 0.170 -0.565 -87.96 +0.305 0.165 -0.570 -91.48 +0.285 0.155 -0.585 -87.96 +0.270 0.155 -0.590 -91.48 +0.245 0.145 -0.600 -87.96 +0.225 0.145 -0.615 -91.48 +0.210 0.140 -0.630 -87.96 +0.185 0.135 -0.645 -91.48 +0.160 0.135 -0.660 -91.48 +0.140 0.125 -0.675 -87.96 +0.115 0.120 -0.690 -91.48 +0.090 0.115 -0.705 -91.48 +0.070 0.110 -0.720 -91.48 +0.045 0.105 -0.735 -91.48 +0.020 0.095 -0.755 -91.48 +0.000 0.090 -0.770 -91.48 +-0.025 0.080 -0.785 -91.48 +-0.050 0.070 -0.805 -91.48 +-0.065 0.055 -0.820 -91.48 +-0.090 0.040 -0.835 -93.98 +-0.110 0.030 -0.850 -91.48 +-0.135 0.015 -0.865 -93.98 +-0.150 -0.005 -0.880 -93.98 +-0.175 -0.025 -0.885 -93.98 +-0.190 -0.035 -0.905 -93.98 +-0.210 -0.055 -0.915 -93.98 +-0.230 -0.070 -0.920 -93.98 +-0.245 -0.090 -0.930 -93.98 +-0.260 -0.110 -0.940 -93.98 +-0.275 -0.130 -0.945 -93.98 +-0.285 -0.145 -0.950 -93.98 +-0.300 -0.165 -0.950 -91.48 +-0.310 -0.180 -0.955 -93.98 +-0.325 -0.205 -0.955 -91.48 +-0.330 -0.220 -0.955 -93.98 +-0.340 -0.240 -0.950 -93.98 +-0.350 -0.260 -0.950 -93.98 +-0.355 -0.280 -0.945 -93.98 +-0.365 -0.300 -0.940 -93.98 +-0.365 -0.320 -0.930 -93.98 +-0.375 -0.340 -0.920 -93.98 +-0.375 -0.360 -0.910 -93.98 +-0.375 -0.375 -0.900 -93.98 +-0.380 -0.400 -0.890 -93.98 +-0.380 -0.415 -0.875 -93.98 +-0.380 -0.430 -0.870 -91.48 +-0.380 -0.445 -0.850 -93.98 +-0.380 -0.465 -0.840 -91.48 +-0.380 -0.475 -0.825 -91.48 +-0.385 -0.490 -0.805 -91.48 +-0.380 -0.505 -0.795 -93.98 +-0.380 -0.515 -0.780 -91.48 +-0.380 -0.530 -0.765 -91.48 +-0.380 -0.535 -0.745 -91.48 +-0.375 -0.550 -0.735 -91.48 +-0.375 -0.560 -0.715 -91.48 +-0.375 -0.565 -0.705 -87.96 +-0.370 -0.570 -0.685 -87.96 +-0.370 -0.580 -0.675 -91.48 +-0.365 -0.585 -0.660 -91.48 +-0.365 -0.590 -0.650 -87.96 +-0.365 -0.590 -0.630 -87.96 +-0.365 -0.595 -0.615 -91.48 +-0.365 -0.590 -0.600 -91.48 +-0.360 -0.595 -0.590 -91.48 +-0.365 -0.595 -0.575 -91.48 +-0.360 -0.595 -0.560 -91.48 +-0.365 -0.590 -0.550 -91.48 +-0.365 -0.595 -0.540 -87.96 +-0.360 -0.590 -0.525 -87.96 +-0.365 -0.585 -0.510 -87.96 +-0.365 -0.585 -0.500 -91.48 +-0.365 -0.580 -0.490 -87.96 +-0.365 -0.570 -0.480 -87.96 +-0.370 -0.565 -0.465 -87.96 +-0.365 -0.565 -0.460 -91.48 +-0.365 -0.555 -0.450 -87.96 +-0.370 -0.550 -0.440 -87.96 +-0.365 -0.545 -0.435 -91.48 +-0.365 -0.535 -0.430 -87.96 +-0.365 -0.530 -0.420 -87.96 +-0.365 -0.520 -0.415 -87.96 +-0.365 -0.515 -0.415 -87.96 +-0.365 -0.505 -0.410 -87.96 +-0.365 -0.500 -0.405 -87.96 +-0.360 -0.485 -0.400 -87.96 +-0.360 -0.480 -0.400 -87.96 +-0.360 -0.465 -0.400 -87.96 +-0.360 -0.455 -0.395 -87.96 +-0.355 -0.445 -0.400 -87.96 +-0.355 -0.435 -0.395 -87.96 +-0.350 -0.415 -0.400 -87.96 +-0.350 -0.405 -0.405 -87.96 +-0.345 -0.390 -0.405 -87.96 +-0.340 -0.375 -0.405 -87.96 +-0.340 -0.365 -0.410 -87.96 +-0.335 -0.345 -0.415 -91.48 +-0.335 -0.330 -0.420 -87.96 +-0.330 -0.315 -0.420 -91.48 +-0.325 -0.300 -0.430 -87.96 +-0.325 -0.280 -0.435 -87.96 +-0.320 -0.260 -0.445 -87.96 +-0.320 -0.245 -0.445 -87.96 +-0.315 -0.225 -0.455 -87.96 +-0.310 -0.205 -0.460 -91.48 +-0.310 -0.185 -0.465 -87.96 +-0.305 -0.165 -0.475 -87.96 +-0.305 -0.145 -0.480 -87.96 +-0.300 -0.130 -0.490 -87.96 +-0.295 -0.105 -0.495 -91.48 +-0.295 -0.085 -0.505 -87.96 +-0.290 -0.065 -0.510 -87.96 +-0.290 -0.045 -0.520 -91.48 +-0.285 -0.025 -0.525 -91.48 +-0.285 0.000 -0.535 -91.48 +-0.285 0.015 -0.540 -91.48 +-0.280 0.040 -0.550 -91.48 +-0.280 0.060 -0.560 -87.96 +-0.275 0.075 -0.565 -91.48 +-0.275 0.095 -0.570 -91.48 +-0.275 0.110 -0.575 -91.48 +-0.270 0.130 -0.580 -91.48 +-0.275 0.150 -0.585 -91.48 +-0.270 0.160 -0.590 -91.48 +-0.270 0.175 -0.590 -91.48 +-0.270 0.190 -0.595 -91.48 +-0.270 0.195 -0.595 -91.48 +-0.265 0.210 -0.590 -91.48 +-0.265 0.215 -0.590 -91.48 +-0.270 0.225 -0.590 -91.48 +-0.270 0.230 -0.585 -91.48 +-0.270 0.235 -0.585 -93.98 +-0.270 0.240 -0.580 -93.98 +-0.275 0.240 -0.575 -91.48 +-0.275 0.245 -0.575 -91.48 +-0.275 0.245 -0.565 -91.48 +-0.275 0.245 -0.560 -91.48 +-0.280 0.250 -0.555 -91.48 +-0.275 0.245 -0.550 -91.48 +-0.275 0.245 -0.540 -91.48 +-0.275 0.245 -0.535 -87.96 +-0.275 0.240 -0.530 -91.48 +-0.275 0.235 -0.520 -87.96 +-0.275 0.230 -0.515 -91.48 +-0.275 0.220 -0.505 -91.48 +-0.280 0.215 -0.495 -87.96 +-0.275 0.205 -0.490 -87.96 +-0.280 0.200 -0.480 -91.48 +-0.280 0.190 -0.470 -87.96 +-0.280 0.185 -0.460 -87.96 +-0.285 0.180 -0.450 -87.96 +-0.280 0.170 -0.440 -87.96 +-0.280 0.165 -0.425 -87.96 +-0.285 0.155 -0.420 -81.94 +-0.285 0.145 -0.405 -87.96 +-0.285 0.135 -0.395 -81.94 +-0.285 0.130 -0.380 -87.96 +-0.290 0.120 -0.365 -81.94 +-0.290 0.115 -0.355 -87.96 +-0.295 0.105 -0.345 -87.96 +-0.295 0.095 -0.330 -81.94 +-0.300 0.085 -0.315 -81.94 +-0.305 0.075 -0.305 -87.96 +-0.305 0.065 -0.290 -87.96 +-0.310 0.055 -0.280 -87.96 +-0.315 0.050 -0.265 -87.96 +-0.320 0.040 -0.250 -81.94 +-0.320 0.025 -0.240 -87.96 +-0.325 0.020 -0.230 -81.94 +-0.330 0.005 -0.220 -81.94 +-0.335 -0.005 -0.205 -81.94 +-0.340 -0.020 -0.195 -81.94 +-0.340 -0.025 -0.185 -87.96 +-0.350 -0.040 -0.175 -81.94 +-0.355 -0.050 -0.170 -81.94 +-0.360 -0.055 -0.160 -81.94 +-0.370 -0.065 -0.150 -81.94 +-0.370 -0.070 -0.145 -81.94 +-0.380 -0.080 -0.140 0.000 +-0.385 -0.085 -0.130 -81.94 +-0.390 -0.090 -0.125 -81.94 +-0.395 -0.095 -0.120 -81.94 +-0.400 -0.095 -0.115 0.000 +-0.410 -0.100 -0.115 0.000 +-0.415 -0.105 -0.105 -81.94 +-0.420 -0.105 -0.100 0.000 +-0.425 -0.105 -0.100 -81.94 +-0.430 -0.110 -0.095 0.000 +-0.435 -0.110 -0.090 -81.94 +-0.440 -0.110 -0.085 -81.94 +-0.445 -0.110 -0.080 0.000 +-0.450 -0.110 -0.075 0.000 +-0.450 -0.110 -0.075 0.000 +-0.455 -0.105 -0.070 -81.94 +-0.455 -0.105 -0.065 0.000 +-0.460 -0.100 -0.060 0.000 +-0.460 -0.100 -0.055 -81.94 +-0.465 -0.095 -0.050 0.000 +-0.465 -0.090 -0.045 0.000 +-0.465 -0.090 -0.035 0.000 +-0.465 -0.085 -0.030 -81.94 +-0.465 -0.085 -0.025 0.000 +-0.460 -0.080 -0.015 0.000 +-0.460 -0.085 -0.010 0.000 +-0.455 -0.080 0.000 0.000 +-0.450 -0.080 0.010 0.000 +-0.445 -0.080 0.020 0.000 +-0.440 -0.085 0.030 0.000 +-0.435 -0.085 0.040 -81.94 +-0.430 -0.090 0.050 0.000 +-0.420 -0.095 0.060 -81.94 +-0.415 -0.095 0.070 0.000 +-0.405 -0.100 0.080 -81.94 +-0.395 -0.105 0.090 -81.94 +-0.390 -0.110 0.100 0.000 +-0.380 -0.115 0.115 0.000 +-0.370 -0.120 0.125 0.000 +-0.365 -0.125 0.135 0.000 +-0.355 -0.130 0.140 0.000 +-0.350 -0.130 0.155 0.000 +-0.335 -0.140 0.160 0.000 +-0.325 -0.140 0.170 0.000 +-0.320 -0.150 0.180 0.000 +-0.310 -0.145 0.185 0.000 +-0.305 -0.150 0.195 0.000 +-0.295 -0.160 0.195 81.94 +-0.285 -0.160 0.205 0.000 +-0.280 -0.160 0.210 81.94 +-0.270 -0.165 0.215 81.94 +-0.265 -0.165 0.215 0.000 +-0.260 -0.170 0.225 81.94 +-0.250 -0.170 0.220 81.94 +-0.245 -0.165 0.225 81.94 +-0.235 -0.170 0.225 81.94 +-0.230 -0.170 0.230 81.94 +-0.225 -0.170 0.230 0.000 +-0.220 -0.165 0.230 81.94 +-0.210 -0.165 0.230 81.94 +-0.200 -0.160 0.235 0.000 +-0.200 -0.155 0.235 81.94 +-0.190 -0.150 0.230 81.94 +-0.185 -0.145 0.230 81.94 +-0.175 -0.140 0.230 81.94 +-0.175 -0.135 0.235 0.000 +-0.165 -0.125 0.230 81.94 +-0.160 -0.120 0.230 0.000 +-0.155 -0.115 0.230 81.94 +-0.145 -0.105 0.230 81.94 +-0.145 -0.100 0.225 81.94 +-0.140 -0.095 0.225 81.94 +-0.135 -0.090 0.230 81.94 +-0.125 -0.080 0.230 81.94 +-0.125 -0.075 0.230 81.94 +-0.115 -0.065 0.230 81.94 +-0.115 -0.060 0.230 81.94 +-0.105 -0.055 0.230 81.94 +-0.105 -0.050 0.235 81.94 +-0.100 -0.045 0.235 81.94 +-0.095 -0.040 0.235 81.94 +-0.090 -0.035 0.240 81.94 +-0.085 -0.025 0.245 81.94 +-0.080 -0.025 0.250 81.94 +-0.075 -0.020 0.245 0.000 +-0.070 -0.015 0.250 81.94 +-0.065 -0.010 0.250 81.94 +-0.060 -0.010 0.255 81.94 +-0.055 -0.010 0.255 81.94 +-0.055 -0.005 0.260 81.94 +-0.045 -0.005 0.260 81.94 +-0.045 -0.005 0.265 81.94 +-0.035 -0.005 0.265 0.000 +-0.030 -0.005 0.265 81.94 +-0.030 -0.005 0.270 81.94 +-0.025 -0.005 0.270 81.94 +-0.025 -0.010 0.270 81.94 +-0.025 -0.005 0.270 81.94 +-0.020 -0.005 0.275 81.94 +-0.015 -0.005 0.275 81.94 +-0.015 -0.005 0.280 81.94 +-0.015 -0.005 0.280 81.94 +-0.010 -0.005 0.280 81.94 +-0.005 -0.010 0.280 0.000 +0.000 -0.010 0.285 81.94 +0.000 -0.015 0.285 81.94 +0.005 -0.020 0.285 81.94 +0.010 -0.020 0.290 81.94 +0.015 -0.030 0.295 81.94 +0.020 -0.035 0.295 81.94 +0.020 -0.045 0.300 81.94 +0.025 -0.050 0.300 81.94 +0.030 -0.055 0.300 81.94 +0.035 -0.060 0.305 81.94 +0.040 -0.075 0.305 81.94 +0.040 -0.085 0.305 81.94 +0.050 -0.090 0.305 81.94 +0.055 -0.100 0.305 81.94 +0.060 -0.110 0.305 81.94 +0.065 -0.115 0.310 81.94 +0.070 -0.125 0.310 81.94 +0.070 -0.135 0.310 81.94 +0.075 -0.140 0.310 81.94 +0.085 -0.150 0.310 81.94 +0.085 -0.165 0.310 81.94 +0.090 -0.170 0.310 81.94 +0.090 -0.180 0.315 81.94 +0.095 -0.190 0.310 81.94 +0.100 -0.195 0.310 81.94 +0.100 -0.200 0.310 87.96 +0.105 -0.215 0.310 81.94 +0.110 -0.220 0.310 81.94 +0.110 -0.230 0.315 87.96 +0.115 -0.240 0.315 81.94 +0.120 -0.245 0.320 81.94 +0.125 -0.260 0.320 87.96 +0.135 -0.265 0.325 81.94 +0.135 -0.275 0.325 81.94 +0.140 -0.285 0.325 81.94 +0.145 -0.295 0.330 87.96 +0.150 -0.300 0.335 0.000 +0.155 -0.310 0.340 81.94 +0.155 -0.315 0.345 81.94 +0.160 -0.325 0.350 81.94 +0.160 -0.330 0.355 81.94 +0.170 -0.340 0.355 81.94 +0.175 -0.345 0.365 81.94 +0.180 -0.350 0.370 0.000 +0.185 -0.355 0.380 81.94 +0.190 -0.360 0.390 81.94 +0.200 -0.365 0.400 81.94 +0.200 -0.370 0.410 81.94 +0.210 -0.375 0.415 81.94 +0.215 -0.380 0.430 81.94 +0.220 -0.385 0.445 81.94 +0.225 -0.390 0.455 81.94 +0.230 -0.400 0.465 81.94 +0.230 -0.400 0.480 81.94 +0.235 -0.410 0.490 81.94 +0.240 -0.415 0.505 87.96 +0.245 -0.420 0.515 81.94 +0.245 -0.420 0.530 87.96 +0.250 -0.430 0.540 87.96 +0.245 -0.430 0.550 87.96 +0.250 -0.440 0.560 87.96 +0.250 -0.440 0.570 87.96 +0.250 -0.445 0.585 87.96 +0.250 -0.450 0.595 87.96 +0.250 -0.455 0.605 87.96 +0.250 -0.455 0.620 87.96 +0.245 -0.460 0.630 87.96 +0.250 -0.460 0.640 87.96 +0.245 -0.465 0.655 87.96 +0.245 -0.465 0.665 87.96 +0.240 -0.470 0.675 87.96 +0.240 -0.475 0.685 87.96 +0.235 -0.475 0.700 87.96 +0.230 -0.480 0.710 91.48 +0.230 -0.480 0.720 87.96 +0.220 -0.485 0.735 91.48 +0.220 -0.490 0.745 87.96 +0.215 -0.495 0.755 91.48 +0.210 -0.495 0.765 87.96 +0.205 -0.495 0.780 87.96 +0.200 -0.505 0.790 91.48 +0.195 -0.505 0.800 91.48 +0.190 -0.505 0.810 91.48 +0.185 -0.515 0.820 91.48 +0.180 -0.515 0.830 91.48 +0.170 -0.520 0.835 91.48 +0.165 -0.525 0.845 91.48 +0.160 -0.530 0.860 91.48 +0.155 -0.530 0.865 91.48 +0.145 -0.535 0.870 91.48 +0.135 -0.545 0.880 91.48 +0.130 -0.550 0.885 91.48 +0.125 -0.550 0.890 91.48 +0.115 -0.560 0.895 93.98 +0.110 -0.560 0.900 91.48 +0.105 -0.565 0.905 91.48 +0.095 -0.575 0.905 93.98 +0.090 -0.575 0.910 91.48 +0.080 -0.580 0.910 91.48 +0.070 -0.590 0.915 91.48 +0.060 -0.590 0.915 91.48 +0.055 -0.595 0.920 91.48 +0.045 -0.600 0.920 91.48 +0.040 -0.605 0.920 93.98 +0.035 -0.610 0.925 91.48 +0.025 -0.610 0.930 91.48 +0.015 -0.610 0.930 91.48 +0.005 -0.615 0.930 91.48 +0.000 -0.620 0.935 91.48 +-0.005 -0.630 0.935 93.98 +-0.015 -0.635 0.945 93.98 +-0.025 -0.640 0.940 91.48 +-0.035 -0.645 0.945 91.48 +-0.045 -0.650 0.945 93.98 +-0.050 -0.655 0.945 93.98 +-0.060 -0.665 0.945 91.48 +-0.070 -0.670 0.950 91.48 +-0.085 -0.680 0.950 93.98 +-0.090 -0.690 0.950 93.98 +-0.095 -0.695 0.945 91.48 +-0.105 -0.705 0.950 93.98 +-0.110 -0.710 0.945 93.98 +-0.120 -0.720 0.945 91.48 +-0.125 -0.725 0.945 93.98 +-0.130 -0.730 0.945 93.98 +-0.140 -0.740 0.945 91.48 +-0.145 -0.745 0.940 93.98 +-0.145 -0.750 0.940 91.48 +-0.150 -0.760 0.940 93.98 +-0.155 -0.765 0.940 93.98 +-0.155 -0.775 0.940 93.98 +-0.155 -0.780 0.940 91.48 +-0.160 -0.785 0.945 93.98 +-0.155 -0.790 0.940 91.48 +-0.160 -0.795 0.945 93.98 +-0.155 -0.800 0.945 91.48 +-0.155 -0.805 0.945 91.48 +-0.155 -0.810 0.945 93.98 +-0.150 -0.815 0.945 91.48 +-0.150 -0.815 0.950 93.98 +-0.140 -0.815 0.945 91.48 +-0.140 -0.820 0.945 93.98 +-0.135 -0.820 0.940 91.48 +-0.135 -0.820 0.935 91.48 +-0.130 -0.825 0.935 91.48 +-0.125 -0.820 0.930 91.48 +-0.120 -0.820 0.925 93.98 +-0.115 -0.820 0.920 91.48 +-0.115 -0.820 0.910 93.98 +-0.110 -0.815 0.905 91.48 +-0.105 -0.810 0.895 91.48 +-0.105 -0.810 0.890 91.48 +-0.100 -0.810 0.880 91.48 +-0.095 -0.805 0.870 91.48 +-0.095 -0.800 0.860 91.48 +-0.095 -0.800 0.850 91.48 +-0.090 -0.795 0.840 87.96 +-0.085 -0.790 0.830 87.96 +-0.085 -0.785 0.815 91.48 +-0.085 -0.785 0.805 87.96 +-0.080 -0.780 0.795 91.48 +-0.080 -0.775 0.775 87.96 +-0.080 -0.770 0.765 87.96 +-0.075 -0.765 0.750 87.96 +-0.075 -0.760 0.740 87.96 +-0.075 -0.755 0.725 87.96 +-0.075 -0.745 0.710 87.96 +-0.075 -0.740 0.700 87.96 +-0.075 -0.735 0.685 81.94 +-0.080 -0.730 0.675 87.96 +-0.075 -0.725 0.660 87.96 +-0.075 -0.720 0.650 87.96 +-0.080 -0.710 0.645 91.48 +-0.075 -0.705 0.630 91.48 +-0.080 -0.700 0.620 87.96 +-0.080 -0.695 0.615 87.96 +-0.085 -0.690 0.605 87.96 +-0.085 -0.685 0.595 81.94 +-0.090 -0.675 0.585 87.96 +-0.090 -0.675 0.580 87.96 +-0.090 -0.670 0.570 87.96 +-0.095 -0.665 0.560 87.96 +-0.095 -0.660 0.560 87.96 +-0.100 -0.660 0.550 87.96 +-0.105 -0.660 0.545 87.96 +-0.105 -0.655 0.535 81.94 +-0.105 -0.650 0.530 87.96 +-0.115 -0.650 0.525 87.96 +-0.115 -0.645 0.520 81.94 +-0.120 -0.645 0.510 87.96 +-0.120 -0.640 0.510 81.94 +-0.125 -0.640 0.505 81.94 +-0.130 -0.635 0.500 81.94 +-0.130 -0.635 0.495 81.94 +-0.135 -0.630 0.495 81.94 +-0.135 -0.630 0.490 87.96 +-0.140 -0.625 0.490 81.94 +-0.135 -0.625 0.480 87.96 +-0.140 -0.620 0.475 81.94 +-0.140 -0.620 0.475 81.94 +-0.140 -0.620 0.475 87.96 +-0.140 -0.615 0.470 87.96 +-0.135 -0.610 0.470 81.94 +-0.135 -0.610 0.475 81.94 +-0.130 -0.605 0.470 81.94 +-0.135 -0.595 0.475 87.96 +-0.125 -0.595 0.470 81.94 +-0.125 -0.590 0.475 81.94 +-0.115 -0.590 0.475 81.94 +-0.110 -0.585 0.475 81.94 +-0.105 -0.580 0.475 81.94 +-0.100 -0.575 0.475 81.94 +-0.090 -0.575 0.475 81.94 +-0.085 -0.565 0.480 81.94 +-0.075 -0.570 0.480 81.94 +-0.065 -0.565 0.480 81.94 +-0.060 -0.560 0.485 87.96 +-0.050 -0.555 0.485 81.94 +-0.040 -0.545 0.490 81.94 +-0.030 -0.545 0.490 81.94 +-0.020 -0.540 0.490 87.96 +-0.015 -0.530 0.490 81.94 +-0.005 -0.530 0.490 81.94 +0.010 -0.525 0.490 81.94 +0.020 -0.525 0.490 81.94 +0.025 -0.520 0.490 87.96 +0.035 -0.515 0.490 81.94 +0.045 -0.510 0.485 87.96 +0.050 -0.505 0.485 81.94 +0.055 -0.505 0.485 87.96 +0.065 -0.505 0.480 81.94 +0.070 -0.500 0.480 87.96 +0.075 -0.495 0.475 81.94 +0.075 -0.490 0.475 81.94 +0.080 -0.490 0.470 87.96 +0.085 -0.485 0.470 81.94 +0.085 -0.485 0.465 87.96 +0.085 -0.480 0.460 81.94 +0.080 -0.480 0.460 81.94 +0.085 -0.475 0.455 81.94 +0.080 -0.475 0.450 87.96 +0.080 -0.465 0.445 81.94 +0.080 -0.460 0.445 81.94 +0.080 -0.455 0.435 81.94 +0.080 -0.445 0.435 81.94 +0.075 -0.435 0.425 81.94 +0.075 -0.430 0.420 81.94 +0.075 -0.420 0.415 0.000 +0.070 -0.410 0.405 81.94 +0.065 -0.400 0.395 81.94 +0.065 -0.385 0.385 0.000 +0.060 -0.370 0.375 0.000 +0.055 -0.355 0.365 81.94 +0.060 -0.340 0.355 0.000 +0.055 -0.325 0.340 81.94 +0.060 -0.305 0.330 81.94 +0.060 -0.285 0.315 81.94 +0.060 -0.260 0.305 81.94 +0.065 -0.240 0.285 0.000 +0.065 -0.210 0.275 81.94 +0.070 -0.185 0.255 81.94 +0.075 -0.160 0.245 81.94 +0.070 -0.125 0.230 0.000 +0.080 -0.100 0.215 0.000 +0.080 -0.065 0.200 0.000 +0.090 -0.035 0.180 81.94 +0.095 -0.005 0.165 0.000 +0.095 0.030 0.150 0.000 +0.100 0.070 0.130 0.000 +0.105 0.110 0.115 0.000 +0.110 0.150 0.100 0.000 +0.120 0.190 0.085 -81.94 +0.125 0.230 0.070 0.000 +0.130 0.275 0.050 0.000 +0.140 0.320 0.035 -81.94 +0.140 0.365 0.015 -81.94 +0.150 0.410 0.005 0.000 +0.150 0.455 -0.015 0.000 +0.155 0.505 -0.025 0.000 +0.160 0.545 -0.045 0.000 +0.165 0.595 -0.060 0.000 +0.165 0.640 -0.075 0.000 +0.170 0.685 -0.090 -81.94 +0.170 0.730 -0.110 0.000 +0.175 0.780 -0.125 -81.94 +0.180 0.825 -0.135 -81.94 +0.180 0.935 -0.150 -81.94 +0.185 1.145 -0.165 -87.96 +0.185 1.265 -0.175 -81.94 +0.185 1.320 -0.195 -81.94 +0.185 1.380 -0.215 -81.94 +0.190 1.440 -0.225 -87.96 +0.190 1.460 -0.245 -87.96 +0.190 1.465 -0.260 -87.96 +0.190 1.500 -0.280 -87.96 +0.190 1.550 -0.290 -87.96 +0.190 1.595 -0.305 -87.96 +0.190 1.620 -0.330 -81.94 +0.190 1.645 -0.345 -81.94 +0.190 1.665 -0.365 -87.96 +0.190 1.700 -0.375 -87.96 +0.190 1.740 -0.395 -87.96 +0.185 1.770 -0.410 -87.96 +0.190 1.790 -0.430 -87.96 +0.185 1.810 -0.445 -91.48 +0.185 1.835 -0.460 -87.96 +0.180 1.870 -0.475 -87.96 +0.185 1.900 -0.495 -91.48 +0.180 1.925 -0.505 -87.96 +0.180 1.940 -0.525 -91.48 +0.180 1.960 -0.540 -91.48 +0.180 1.990 -0.555 -91.48 +0.180 2.015 -0.570 -91.48 +0.180 2.035 -0.585 -91.48 +0.185 2.050 -0.600 -93.98 +0.185 2.070 -0.610 -91.48 +0.185 2.090 -0.625 -91.48 +0.185 2.115 -0.640 -91.48 +0.185 2.135 -0.655 -91.48 +0.190 2.150 -0.670 -91.48 +0.190 2.165 -0.680 -87.96 +0.195 2.180 -0.700 -91.48 +0.200 2.200 -0.710 -91.48 +0.200 2.220 -0.725 -91.48 +0.205 2.230 -0.740 -93.98 +0.210 2.240 -0.750 -91.48 +0.210 2.250 -0.770 -91.48 +0.220 2.275 -0.785 -93.98 +0.220 2.285 -0.800 -91.48 +0.230 2.300 -0.815 -93.98 +0.230 2.305 -0.820 -93.98 +0.235 2.320 -0.840 -93.98 +0.245 2.330 -0.850 -93.98 +0.255 2.345 -0.860 -93.98 +0.255 2.350 -0.870 -93.98 +0.265 2.360 -0.885 -93.98 +0.270 2.365 -0.895 -93.98 +0.285 2.380 -0.905 -95.92 +0.290 2.385 -0.910 -93.98 +0.300 2.395 -0.925 -93.98 +0.310 2.400 -0.935 -95.92 +0.320 2.405 -0.940 -93.98 +0.330 2.410 -0.950 -93.98 +0.345 2.415 -0.955 -93.98 +0.355 2.420 -0.965 -95.92 +0.365 2.430 -0.970 -93.98 +0.380 2.430 -0.975 -93.98 +0.390 2.430 -0.980 -93.98 +0.405 2.435 -0.990 -93.98 +0.420 2.440 -0.995 -93.98 +0.435 2.440 -1.000 -93.98 +0.455 2.445 -1.010 -93.98 +0.465 2.445 -1.010 -95.92 +0.485 2.445 -1.020 -93.98 +0.500 2.445 -1.020 -95.92 +0.515 2.445 -1.025 -95.92 +0.530 2.450 -1.030 -93.98 +0.550 2.445 -1.035 -95.92 +0.570 2.450 -1.035 -93.98 +0.590 2.450 -1.035 -95.92 +0.605 2.450 -1.035 -93.98 +0.625 2.455 -1.045 -95.92 +0.640 2.455 -1.045 -93.98 +0.660 2.460 -1.050 -95.92 +0.670 2.465 -1.055 -93.98 +0.690 2.470 -1.050 -93.98 +0.705 2.470 -1.055 -93.98 +0.720 2.475 -1.060 -95.92 +0.735 2.480 -1.060 -95.92 +0.750 2.480 -1.065 -93.98 +0.765 2.485 -1.070 -95.92 +0.775 2.490 -1.070 -93.98 +0.790 2.495 -1.080 -95.92 +0.805 2.500 -1.080 -95.92 +0.815 2.500 -1.080 -95.92 +0.825 2.505 -1.085 -95.92 +0.835 2.510 -1.090 -95.92 +0.845 2.510 -1.095 -95.92 +0.860 2.510 -1.095 -95.92 +0.865 2.510 -1.100 -95.92 +0.870 2.510 -1.100 -95.92 +0.885 2.505 -1.105 -95.92 +0.890 2.505 -1.105 -95.92 +0.895 2.500 -1.110 -95.92 +0.905 2.495 -1.110 -95.92 +0.910 2.490 -1.110 -95.92 +0.915 2.495 -1.115 -95.92 +0.925 2.490 -1.110 -95.92 +0.925 2.480 -1.110 -95.92 +0.930 2.475 -1.115 -93.98 +0.940 2.470 -1.110 -95.92 +0.940 2.460 -1.105 -95.92 +0.945 2.450 -1.105 -95.92 +0.950 2.435 -1.100 -95.92 +0.955 2.425 -1.100 -93.98 +0.960 2.405 -1.095 -95.92 +0.965 2.390 -1.085 -95.92 +0.970 2.370 -1.080 -95.92 +0.970 2.350 -1.075 -95.92 +0.975 2.325 -1.065 -95.92 +0.980 2.300 -1.055 -95.92 +0.985 2.270 -1.045 -93.98 +0.985 2.245 -1.030 -93.98 +0.990 2.215 -1.015 -95.92 +0.995 2.180 -1.000 -93.98 +0.995 2.145 -0.985 -93.98 +0.995 2.110 -0.970 -93.98 +0.995 2.075 -0.955 -93.98 +0.995 2.035 -0.935 -95.92 +0.995 2.000 -0.915 -95.92 +1.000 1.955 -0.895 -95.92 +0.995 1.910 -0.870 -93.98 +1.000 1.870 -0.855 -93.98 +0.995 1.825 -0.835 -93.98 +0.995 1.780 -0.815 -93.98 +0.995 1.735 -0.790 -93.98 +0.995 1.690 -0.770 -93.98 +0.995 1.645 -0.750 -93.98 +0.990 1.590 -0.730 -91.48 +0.990 1.545 -0.705 -91.48 +0.990 1.495 -0.680 -91.48 +0.985 1.445 -0.660 -91.48 +0.985 1.390 -0.640 -91.48 +0.985 1.340 -0.615 -91.48 +0.980 1.280 -0.585 -91.48 +0.980 1.230 -0.565 -91.48 +0.975 1.175 -0.540 -91.48 +0.970 1.120 -0.520 -91.48 +0.965 1.065 -0.495 -91.48 +0.960 1.005 -0.475 -87.96 +0.950 0.945 -0.445 -91.48 +0.950 0.885 -0.420 -87.96 +0.940 0.825 -0.395 -87.96 +0.930 0.765 -0.370 -87.96 +0.925 0.700 -0.345 -87.96 +0.910 0.640 -0.315 -81.94 +0.905 0.575 -0.295 -87.96 +0.895 0.515 -0.270 -87.96 +0.880 0.445 -0.245 -81.94 +0.870 0.380 -0.220 -87.96 +0.860 0.315 -0.190 -81.94 +0.850 0.250 -0.170 -81.94 +0.835 0.190 -0.140 -81.94 +0.825 0.120 -0.120 -81.94 +0.810 0.055 -0.090 -81.94 +0.800 -0.010 -0.060 -81.94 +0.785 -0.075 -0.035 0.000 +0.770 -0.140 -0.010 0.000 +0.755 -0.205 0.015 -81.94 +0.740 -0.270 0.045 -81.94 +0.730 -0.335 0.075 -81.94 +0.710 -0.395 0.105 0.000 +0.700 -0.465 0.130 0.000 +0.685 -0.530 0.155 -81.94 +0.670 -0.590 0.190 0.000 +0.655 -0.650 0.220 0.000 +0.640 -0.720 0.245 0.000 +0.625 -0.780 0.275 81.94 +0.610 -0.845 0.305 0.000 +0.595 -0.910 0.335 0.000 +0.580 -0.970 0.365 81.94 +0.575 -1.040 0.395 0.000 +0.560 -1.105 0.425 81.94 +0.545 -1.170 0.450 81.94 +0.535 -1.235 0.485 81.94 +0.525 -1.295 0.515 81.94 +0.515 -1.360 0.550 81.94 +0.500 -1.425 0.580 87.96 +0.490 -1.485 0.610 81.94 +0.480 -1.545 0.640 87.96 +0.475 -1.610 0.670 81.94 +0.465 -1.670 0.700 87.96 +0.450 -1.730 0.730 87.96 +0.440 -1.795 0.755 91.48 +0.435 -1.855 0.785 87.96 +0.420 -1.910 0.815 87.96 +0.410 -1.970 0.840 91.48 +0.400 -2.025 0.870 91.48 +0.390 -2.085 0.890 91.48 +0.375 -2.135 0.915 91.48 +0.370 -2.190 0.945 91.48 +0.360 -2.240 0.965 91.48 +0.345 -2.295 0.990 91.48 +0.335 -2.345 1.010 87.96 +0.325 -2.395 1.035 91.48 +0.315 -2.445 1.055 91.48 +0.300 -2.490 1.075 91.48 +0.290 -2.545 1.095 91.48 +0.275 -2.590 1.110 91.48 +0.265 -2.635 1.130 93.98 +0.250 -2.685 1.145 93.98 +0.240 -2.725 1.165 93.98 +0.230 -2.770 1.175 93.98 +0.215 -2.810 1.190 93.98 +0.205 -2.850 1.200 93.98 +0.195 -2.895 1.215 93.98 +0.185 -2.930 1.225 93.98 +0.170 -2.965 1.240 93.98 +0.160 -3.005 1.245 95.92 +0.150 -3.040 1.255 93.98 +0.135 -3.075 1.260 95.92 +0.130 -3.105 1.270 93.98 +0.115 -3.135 1.275 95.92 +0.105 -3.165 1.275 93.98 +0.090 -3.195 1.285 95.92 +0.085 -3.220 1.285 93.98 +0.070 -3.245 1.290 95.92 +0.065 -3.270 1.290 95.92 +0.055 -3.295 1.285 93.98 +0.040 -3.320 1.290 95.92 +0.035 -3.335 1.285 93.98 +0.025 -3.355 1.285 95.92 +0.015 -3.370 1.280 95.92 +0.010 -3.385 1.280 93.98 +-0.005 -3.400 1.270 95.92 +-0.015 -3.410 1.270 93.98 +-0.020 -3.425 1.265 93.98 +-0.025 -3.435 1.255 93.98 +-0.035 -3.445 1.250 95.92 +-0.045 -3.450 1.240 93.98 +-0.055 -3.465 1.230 95.92 +-0.060 -3.470 1.220 93.98 +-0.065 -3.480 1.210 93.98 +-0.075 -3.485 1.205 95.92 +-0.080 -3.495 1.195 93.98 +-0.085 -3.505 1.185 93.98 +-0.090 -3.510 1.170 93.98 +-0.095 -3.515 1.165 93.98 +-0.100 -3.525 1.150 93.98 +-0.105 -3.535 1.140 93.98 +-0.110 -3.540 1.135 93.98 +-0.110 -3.550 1.125 93.98 +-0.110 -3.560 1.110 93.98 +-0.115 -3.570 1.100 91.48 +-0.120 -3.575 1.090 91.48 +-0.125 -3.585 1.080 93.98 +-0.120 -3.595 1.070 91.48 +-0.125 -3.600 1.060 91.48 +-0.125 -3.610 1.050 91.48 +-0.130 -3.615 1.045 91.48 +-0.130 -3.630 1.035 93.98 +-0.130 -3.630 1.025 91.48 +-0.125 -3.640 1.015 91.48 +-0.125 -3.645 1.010 91.48 +-0.125 -3.655 0.995 91.48 +-0.125 -3.655 0.985 91.48 +-0.125 -3.660 0.980 91.48 +-0.125 -3.670 0.970 93.98 +-0.125 -3.675 0.960 93.98 +-0.120 -3.680 0.955 91.48 +-0.125 -3.685 0.950 93.98 +-0.120 -3.690 0.945 91.48 +-0.120 -3.695 0.940 91.48 +-0.115 -3.700 0.940 91.48 +-0.115 -3.705 0.935 91.48 +-0.115 -3.705 0.940 93.98 +-0.110 -3.715 0.940 91.48 +-0.105 -3.715 0.940 91.48 +-0.100 -3.720 0.950 91.48 +-0.100 -3.725 0.955 93.98 +-0.095 -3.730 0.960 91.48 +-0.090 -3.735 0.970 93.98 +-0.085 -3.740 0.980 91.48 +-0.085 -3.745 0.990 91.48 +-0.075 -3.750 1.000 91.48 +-0.075 -3.755 1.015 91.48 +-0.065 -3.775 1.030 93.98 +-0.060 -3.940 1.040 91.48 +-0.055 -4.140 1.050 93.98 +-0.045 -4.135 1.065 91.48 +-0.040 -4.075 1.080 93.98 +-0.030 -4.135 1.100 93.98 +-0.020 -4.235 1.120 93.98 +-0.010 -4.245 1.135 95.92 +-0.005 -4.205 1.155 93.98 +0.005 -4.220 1.175 95.92 +0.015 -4.240 1.200 93.98 +0.020 -4.245 1.220 93.98 +0.035 -4.240 1.235 93.98 +0.040 -4.245 1.445 95.92 +0.055 -4.250 1.905 97.50 +0.060 -4.245 2.090 98.84 +0.065 -4.240 2.140 100.0 +0.075 -4.245 2.155 98.84 +0.080 -4.245 2.125 98.84 +0.085 -4.245 2.210 100.0 +0.090 -4.245 2.285 100.0 +0.090 -4.245 2.290 100.0 +0.100 -4.240 2.300 98.84 +0.100 -4.240 2.335 100.0 +0.105 -4.240 2.360 100.0 +0.110 -4.235 2.375 100.0 +0.115 -4.225 2.390 100.0 +0.115 -4.215 2.420 100.0 +0.115 -4.185 2.445 101.0 +0.115 -4.150 2.470 101.0 +0.115 -4.130 2.480 100.0 +0.115 -4.145 2.500 101.0 +0.110 -4.150 2.520 100.0 +0.100 -4.135 2.535 101.0 +0.095 -4.110 2.550 101.0 +0.090 -4.085 2.565 101.0 +0.085 -4.080 2.580 101.0 +0.075 -4.080 2.590 101.0 +0.065 -4.060 2.605 101.0 +0.060 -4.040 2.615 101.0 +0.050 -4.015 2.625 101.0 +0.035 -4.010 2.640 101.0 +0.025 -4.000 2.645 101.0 +0.010 -3.980 2.655 101.0 +0.000 -3.950 2.665 101.0 +-0.020 -3.935 2.670 101.9 +-0.035 -3.920 2.680 101.0 +-0.055 -3.900 2.690 101.0 +-0.070 -3.880 2.700 101.9 +-0.085 -3.855 2.720 101.0 +-0.110 -3.840 2.735 101.0 +-0.125 -3.825 2.750 101.0 +-0.145 -3.800 2.760 101.9 +-0.170 -3.780 2.775 101.9 +-0.190 -3.750 2.785 101.0 +-0.215 -3.735 2.790 101.9 +-0.235 -3.715 2.790 101.0 +-0.265 -3.690 2.795 101.9 +-0.285 -3.660 2.800 101.9 +-0.315 -3.635 2.805 101.9 +-0.340 -3.615 2.805 101.0 +-0.370 -3.590 2.810 101.9 +-0.400 -3.565 2.805 101.0 +-0.435 -3.535 2.810 101.9 +-0.465 -3.515 2.805 101.9 +-0.495 -3.490 2.810 101.0 +-0.535 -3.465 2.815 101.9 +-0.570 -3.435 2.820 101.0 +-0.615 -3.410 2.825 101.9 +-0.655 -3.385 2.830 101.9 +-0.705 -3.355 2.845 101.9 +-0.745 -3.325 2.855 101.0 +-0.800 -3.300 2.865 101.9 +-0.850 -3.270 2.860 101.9 +-0.905 -3.245 2.850 101.9 +-0.965 -3.215 2.840 101.9 +-1.020 -3.185 2.820 101.9 +-1.080 -3.155 2.790 101.0 +-1.145 -3.130 2.755 101.9 +-1.215 -3.100 2.740 101.9 +-1.285 -3.070 2.740 101.0 +-1.360 -3.035 2.750 101.0 +-1.440 -3.010 2.760 101.9 +-1.540 -2.980 2.780 101.9 +-1.895 -2.960 2.800 101.9 +-2.315 -2.930 2.830 101.9 +-2.525 -2.910 2.870 101.9 +-2.635 -2.880 2.900 101.0 +-2.675 -2.860 2.930 101.0 +-2.685 -2.850 2.970 101.0 +-2.710 -2.840 3.010 101.9 +-2.740 -2.845 3.050 101.9 +-2.770 -2.860 3.080 101.9 +-2.805 -2.885 3.120 101.9 +-2.840 -2.915 3.150 101.9 +-2.895 -2.945 3.180 102.8 +-2.955 -2.980 3.210 101.9 +-3.015 -3.020 3.245 101.9 +-3.080 -3.070 3.265 102.8 +-3.145 -3.125 3.285 101.9 +-3.215 -3.180 3.305 102.8 +-3.285 -3.235 3.325 102.8 +-3.365 -3.295 3.330 102.8 +-3.450 -3.350 3.335 102.8 +-3.535 -3.405 3.335 102.8 +-3.615 -3.460 3.325 101.9 +-3.690 -3.525 3.315 102.8 +-3.775 -3.580 3.290 102.8 +-3.860 -3.625 3.260 101.9 +-3.950 -3.675 3.225 102.8 +-4.030 -3.720 3.180 102.8 +-4.110 -3.760 3.130 102.8 +-4.185 -3.790 3.075 101.9 +-4.265 -3.815 3.010 101.9 +-4.340 -3.830 2.935 101.0 +-4.410 -3.835 2.855 101.0 +-4.480 -3.835 2.770 101.0 +-4.540 -3.820 2.675 101.0 +-4.595 -3.795 2.575 100.0 +-4.650 -3.755 2.480 100.0 +-4.700 -3.710 2.375 100.0 +-4.735 -3.640 2.260 98.84 +-4.770 -3.565 2.155 98.84 +-4.800 -3.385 2.035 97.50 +-4.815 -1.950 1.930 97.50 +-4.825 -0.175 1.825 97.50 +-4.830 0.770 1.715 95.92 +-4.835 0.825 1.595 95.92 +-4.830 0.480 1.470 93.98 +-4.820 0.220 1.340 91.48 +-4.800 0.065 1.210 91.48 +-4.775 -0.100 1.080 87.96 +-4.740 -0.200 0.945 91.48 +-4.700 0.195 0.820 87.96 +-4.650 0.865 0.700 81.94 +-4.595 1.445 0.290 0.000 +-4.535 1.385 -0.405 -87.96 +-4.465 1.040 -0.905 -95.92 +-4.395 1.115 -1.125 -95.92 +-4.310 1.590 -1.115 -95.92 +-4.225 1.640 -1.080 -95.92 +-4.130 1.630 -1.105 -97.50 +-4.035 1.815 -1.125 -95.92 +-3.930 1.965 -1.135 -97.50 +-3.820 2.085 -1.140 -95.92 +-3.700 2.210 -1.230 -97.50 +-3.585 2.310 -1.445 -97.50 +-3.460 2.420 -1.585 -98.84 +-3.330 2.540 -1.720 -100.0 +-3.200 2.645 -1.800 -100.0 +-3.065 2.740 -1.825 -100.0 +-2.930 2.835 -1.890 -100.0 +-2.785 2.935 -2.020 -101.0 +-2.645 3.035 -2.140 -101.0 +-2.345 3.130 -2.200 -101.9 +-1.635 3.225 -2.245 -101.0 +-1.170 3.315 -2.335 -101.0 +-0.910 3.410 -2.440 -101.9 +-0.675 3.495 -2.515 -101.9 +-0.595 3.580 -2.565 -101.9 +-0.605 3.665 -2.630 -101.9 +-0.585 3.740 -2.720 -103.5 +-0.545 3.825 -2.795 -102.8 +-0.495 3.905 -2.855 -103.5 +-0.450 3.980 -2.910 -102.8 +-0.395 4.060 -2.990 -103.5 +-0.355 4.135 -3.060 -103.5 +-0.300 4.205 -3.115 -104.2 +-0.235 4.275 -3.170 -104.2 +-0.160 4.340 -3.245 -104.2 +-0.090 4.415 -3.310 -104.2 +-0.030 4.485 -3.355 -104.2 +0.040 4.550 -3.405 -104.9 +0.115 4.610 -3.475 -104.9 +0.200 4.675 -3.540 -104.9 +0.270 4.735 -3.585 -104.9 +0.345 4.795 -3.625 -105.5 +0.425 4.860 -3.680 -105.5 +0.505 4.910 -3.745 -106.0 +0.585 4.970 -3.795 -105.5 +0.665 5.020 -3.835 -105.5 +0.740 5.075 -3.870 -105.5 +0.810 5.130 -3.925 -105.5 +0.885 5.180 -3.980 -106.0 +0.960 5.230 -4.020 -106.0 +1.035 5.285 -4.055 -106.0 +1.100 5.335 -4.095 -106.0 +1.170 5.385 -4.145 -106.5 +1.235 5.435 -4.185 -106.0 +1.300 5.480 -4.220 -106.0 +1.370 5.525 -4.250 -106.5 +1.425 5.575 -4.290 -106.0 +1.490 5.615 -4.325 -106.5 +1.550 5.655 -4.355 -106.5 +1.605 5.705 -4.390 -106.5 +1.655 5.760 -4.420 -106.5 +1.705 5.810 -4.455 -106.5 +1.755 5.875 -4.485 -106.5 +1.805 5.935 -4.510 -107.0 +1.850 5.990 -4.540 -106.5 +1.890 6.060 -4.570 -107.0 +1.935 6.120 -4.605 -107.0 +1.975 6.180 -4.635 -107.0 +2.010 6.240 -4.670 -107.5 +2.040 6.295 -4.705 -107.5 +2.080 6.355 -4.750 -107.5 +2.105 6.410 -4.790 -107.0 +2.140 6.460 -4.835 -107.5 +2.160 6.510 -4.875 -107.5 +2.190 6.555 -4.925 -108.0 +2.215 6.595 -4.965 -107.5 +2.240 6.640 -5.015 -108.0 +2.260 6.670 -5.060 -108.0 +2.285 6.705 -5.100 -108.0 +2.300 6.725 -5.140 -108.0 +2.325 6.750 -5.185 -108.0 +2.340 6.770 -5.225 -108.0 +2.360 6.780 -5.260 -108.0 +2.375 6.785 -5.290 -108.4 +2.395 6.790 -5.320 -108.4 +2.410 6.790 -5.350 -108.4 +2.425 6.780 -5.370 -108.4 +2.440 6.770 -5.385 -108.4 +2.455 6.755 -5.400 -108.4 +2.465 6.735 -5.410 -108.4 +2.480 6.705 -5.415 -108.4 +2.495 6.675 -5.415 -108.8 +2.510 6.640 -5.410 -108.4 +2.525 6.595 -5.405 -108.4 +2.535 6.550 -5.390 -108.4 +2.545 6.495 -5.370 -108.4 +2.560 6.435 -5.350 -108.4 +2.570 6.375 -5.325 -108.4 +2.580 6.310 -5.295 -108.4 +2.590 6.235 -5.260 -108.4 +2.595 6.160 -5.220 -108.0 +2.605 6.080 -5.180 -108.0 +2.610 5.995 -5.135 -107.5 +2.615 5.905 -5.085 -108.0 +2.620 5.815 -5.035 -108.0 +2.620 5.720 -4.980 -107.5 +2.620 5.625 -4.920 -107.5 +2.620 5.520 -4.860 -107.0 +2.620 5.415 -4.790 -107.5 +2.615 5.315 -4.725 -107.5 +2.610 5.205 -4.655 -107.0 +2.605 5.095 -4.580 -107.0 +2.600 4.990 -4.505 -106.5 +2.590 4.880 -4.430 -106.5 +2.580 4.765 -4.350 -106.5 +2.565 4.650 -4.270 -106.5 +2.555 4.535 -4.190 -106.0 +2.545 4.425 -4.100 -106.0 +2.525 4.305 -4.010 -106.0 +2.515 4.190 -3.930 -105.5 +2.495 4.075 -3.840 -105.5 +2.480 3.955 -3.755 -104.9 +2.460 3.840 -3.660 -104.9 +2.435 3.720 -3.565 -104.2 +2.415 3.600 -3.475 -104.2 +2.395 3.485 -3.380 -104.2 +2.375 3.370 -3.290 -103.5 +2.350 3.255 -3.195 -103.5 +2.325 3.140 -3.100 -103.5 +2.300 3.025 -3.005 -102.8 +2.270 2.910 -2.910 -102.8 +2.245 2.795 -2.815 -102.8 +2.220 2.685 -2.720 -102.8 +2.190 2.565 -2.625 -101.9 +2.165 2.455 -2.540 -101.9 +2.135 2.350 -2.445 -101.9 +2.100 2.235 -2.355 -100.0 +2.070 2.130 -2.265 -100.0 +2.040 2.020 -2.180 -100.0 +2.005 1.915 -2.100 -100.0 +1.975 1.815 -2.015 -100.0 +1.940 1.710 -1.940 -98.84 +1.905 1.610 -1.860 -100.0 +1.870 1.515 -1.785 -98.84 +1.840 1.420 -1.715 -98.84 +1.800 1.325 -1.650 -97.50 +1.770 1.235 -1.585 -97.50 +1.730 1.150 -1.520 -97.50 +1.700 1.055 -1.465 -97.50 +1.670 0.975 -1.405 -95.92 +1.635 0.890 -1.355 -95.92 +1.605 0.815 -1.300 -95.92 +1.575 0.740 -1.260 -95.92 +1.545 0.665 -1.215 -95.92 +1.510 0.595 -1.170 -93.98 +1.485 0.530 -1.135 -95.92 +1.455 0.465 -1.095 -93.98 +1.425 0.400 -1.065 -93.98 +1.395 0.345 -1.035 -93.98 +1.375 0.285 -1.005 -91.48 +1.350 0.235 -0.975 -91.48 +1.320 0.185 -0.955 -91.48 +1.300 0.140 -0.930 -93.98 +1.275 0.095 -0.910 -91.48 +1.250 0.060 -0.895 -93.98 +1.230 0.020 -0.885 -91.48 +1.205 -0.015 -0.870 -91.48 +1.185 -0.050 -0.860 -91.48 +1.165 -0.080 -0.850 -91.48 +1.145 -0.110 -0.845 -91.48 +1.125 -0.130 -0.840 -91.48 +1.105 -0.155 -0.835 -91.48 +1.090 -0.175 -0.835 -93.98 +1.070 -0.195 -0.835 -91.48 +1.055 -0.205 -0.830 -91.48 +1.035 -0.220 -0.835 -91.48 +1.020 -0.230 -0.830 -91.48 +1.005 -0.240 -0.835 -91.48 +0.990 -0.250 -0.840 -91.48 +0.970 -0.250 -0.840 -91.48 +0.955 -0.255 -0.845 -91.48 +0.940 -0.255 -0.845 -91.48 +0.925 -0.260 -0.850 -91.48 +0.905 -0.255 -0.850 -91.48 +0.890 -0.255 -0.850 -91.48 +0.875 -0.250 -0.855 -91.48 +0.850 -0.245 -0.860 -91.48 +0.840 -0.240 -0.865 -91.48 +0.820 -0.235 -0.865 -91.48 +0.805 -0.230 -0.865 -91.48 +0.785 -0.215 -0.870 -91.48 +0.765 -0.205 -0.870 -91.48 +0.750 -0.195 -0.875 -91.48 +0.730 -0.180 -0.875 -93.98 +0.715 -0.165 -0.875 -91.48 +0.695 -0.155 -0.880 -87.96 +0.680 -0.140 -0.880 -91.48 +0.660 -0.125 -0.875 -91.48 +0.645 -0.105 -0.880 -91.48 +0.625 -0.090 -0.875 -91.48 +0.610 -0.065 -0.875 -93.98 +0.595 -0.050 -0.870 -91.48 +0.580 -0.030 -0.870 -91.48 +0.560 -0.010 -0.865 -91.48 +0.550 0.005 -0.860 -91.48 +0.535 0.025 -0.855 -91.48 +0.520 0.045 -0.845 -91.48 +0.500 0.065 -0.835 -91.48 +0.495 0.085 -0.825 -91.48 +0.475 0.105 -0.815 -91.48 +0.465 0.120 -0.805 -91.48 +0.450 0.145 -0.795 -87.96 +0.445 0.160 -0.780 -87.96 +0.430 0.180 -0.770 -91.48 +0.415 0.195 -0.755 -87.96 +0.410 0.215 -0.740 -87.96 +0.395 0.225 -0.730 -87.96 +0.385 0.245 -0.715 -87.96 +0.375 0.260 -0.705 -87.96 +0.365 0.275 -0.690 -87.96 +0.355 0.290 -0.670 -87.96 +0.345 0.310 -0.655 -87.96 +0.335 0.325 -0.640 -87.96 +0.325 0.340 -0.630 -81.94 +0.315 0.355 -0.610 -87.96 +0.305 0.365 -0.595 -87.96 +0.300 0.380 -0.570 -87.96 +0.285 0.390 -0.555 -87.96 +0.275 0.405 -0.535 -87.96 +0.260 0.415 -0.515 -87.96 +0.255 0.415 -0.495 -87.96 +0.245 0.425 -0.480 -87.96 +0.230 0.430 -0.455 -81.94 +0.220 0.435 -0.440 -81.94 +0.210 0.435 -0.420 -87.96 +0.195 0.440 -0.400 -81.94 +0.180 0.440 -0.380 -81.94 +0.170 0.445 -0.360 -81.94 +0.155 0.445 -0.345 0.000 +0.140 0.445 -0.320 -81.94 +0.130 0.445 -0.305 -87.96 +0.110 0.445 -0.285 -81.94 +0.100 0.450 -0.270 -81.94 +0.090 0.450 -0.255 -81.94 +0.075 0.455 -0.235 -81.94 +0.060 0.460 -0.225 -81.94 +0.045 0.465 -0.210 -81.94 +0.030 0.465 -0.190 -81.94 +0.020 0.465 -0.175 -81.94 +0.005 0.470 -0.160 -81.94 +-0.005 0.475 -0.145 -81.94 +-0.015 0.480 -0.130 -81.94 +-0.030 0.475 -0.115 0.000 +-0.040 0.480 -0.105 -81.94 +-0.050 0.480 -0.090 0.000 +-0.060 0.475 -0.075 -81.94 +-0.070 0.475 -0.060 0.000 +-0.080 0.470 -0.045 0.000 +-0.090 0.470 -0.030 0.000 +-0.095 0.465 -0.015 81.94 +-0.100 0.460 0.000 0.000 +-0.110 0.455 0.020 0.000 +-0.115 0.450 0.035 0.000 +-0.120 0.440 0.045 0.000 +-0.120 0.435 0.065 0.000 +-0.125 0.425 0.080 0.000 +-0.125 0.420 0.095 0.000 +-0.125 0.410 0.115 0.000 +-0.130 0.400 0.135 81.94 +-0.130 0.390 0.150 0.000 +-0.130 0.385 0.170 0.000 +-0.130 0.370 0.195 0.000 +-0.125 0.360 0.215 81.94 +-0.130 0.345 0.240 81.94 +-0.125 0.335 0.265 81.94 +-0.120 0.325 0.285 81.94 +-0.120 0.315 0.310 81.94 +-0.115 0.300 0.335 81.94 +-0.110 0.290 0.360 81.94 +-0.105 0.280 0.385 81.94 +-0.100 0.265 0.405 81.94 +-0.095 0.255 0.430 81.94 +-0.085 0.240 0.455 81.94 +-0.080 0.230 0.480 81.94 +-0.075 0.215 0.505 87.96 +-0.065 0.200 0.530 81.94 +-0.055 0.180 0.555 87.96 +-0.050 0.170 0.575 81.94 +-0.045 0.160 0.600 87.96 +-0.035 0.145 0.625 87.96 +-0.020 0.135 0.650 87.96 +-0.015 0.120 0.670 81.94 +-0.005 0.105 0.690 87.96 +0.005 0.085 0.710 87.96 +0.015 0.080 0.740 87.96 +0.020 0.060 0.755 87.96 +0.030 0.045 0.780 87.96 +0.035 0.030 0.800 91.48 +0.050 0.020 0.820 87.96 +0.055 0.010 0.845 91.48 +0.065 0.000 0.860 91.48 +0.070 -0.010 0.885 91.48 +0.080 -0.015 0.900 91.48 +0.085 -0.025 0.920 91.48 +0.090 -0.030 0.935 91.48 +0.095 -0.035 0.955 91.48 +0.100 -0.035 0.975 87.96 +0.105 -0.035 0.990 91.48 +0.105 -0.035 1.005 91.48 +0.105 -0.030 1.025 91.48 +0.105 -0.025 1.050 91.48 +0.110 -0.020 1.070 93.98 +0.115 -0.005 1.090 91.48 +0.120 0.005 1.120 91.48 +0.125 0.025 1.145 93.98 +0.140 0.035 1.170 93.98 +0.150 0.060 1.205 93.98 +0.165 0.070 1.235 93.98 +0.180 0.090 1.270 93.98 +0.195 0.110 1.310 93.98 +0.215 0.120 1.340 93.98 +0.235 0.140 1.375 93.98 +0.255 0.150 1.410 93.98 +0.280 0.160 1.445 93.98 +0.300 0.170 1.480 95.92 +0.330 0.175 1.510 95.92 +0.355 0.175 1.540 95.92 +0.380 0.175 1.570 95.92 +0.410 0.180 1.595 97.50 +0.435 0.180 1.620 95.92 +0.465 0.175 1.640 95.92 +0.500 0.175 1.665 95.92 +0.525 0.170 1.680 95.92 +0.560 0.160 1.695 95.92 +0.595 0.155 1.710 95.92 +0.620 0.140 1.720 95.92 +0.655 0.125 1.720 93.98 +0.685 0.110 1.725 95.92 +0.720 0.085 1.720 93.98 +0.745 0.065 1.715 95.92 +0.775 0.035 1.705 95.92 +0.800 0.005 1.695 95.92 +0.820 -0.020 1.675 97.50 +0.845 -0.055 1.655 95.92 +0.865 -0.090 1.630 93.98 +0.885 -0.130 1.600 97.50 +0.910 -0.165 1.575 95.92 +0.920 -0.205 1.550 95.92 +0.935 -0.245 1.515 93.98 +0.945 -0.285 1.485 95.92 +0.955 -0.330 1.460 95.92 +0.965 -0.370 1.425 93.98 +0.965 -0.410 1.395 93.98 +0.970 -0.455 1.365 93.98 +0.970 -0.495 1.335 93.98 +0.970 -0.535 1.305 93.98 +0.965 -0.575 1.280 93.98 +0.960 -0.615 1.255 95.92 +0.950 -0.650 1.235 93.98 +0.940 -0.690 1.215 93.98 +0.935 -0.725 1.195 93.98 +0.925 -0.755 1.180 93.98 +0.910 -0.785 1.165 93.98 +0.900 -0.815 1.155 93.98 +0.890 -0.845 1.140 91.48 +0.875 -0.870 1.135 93.98 +0.870 -0.900 1.130 93.98 +0.860 -0.920 1.125 91.48 +0.855 -0.950 1.120 93.98 +0.845 -0.970 1.125 91.48 +0.840 -1.000 1.120 93.98 +0.835 -1.030 1.125 91.48 +0.825 -1.060 1.120 93.98 +0.820 -1.090 1.125 91.48 +0.810 -1.120 1.130 93.98 +0.800 -1.155 1.130 91.48 +0.785 -1.190 1.135 93.98 +0.775 -1.225 1.135 91.48 +0.760 -1.260 1.135 93.98 +0.755 -1.295 1.150 91.48 +0.740 -1.325 1.155 91.48 +0.730 -1.355 1.165 93.98 +0.720 -1.390 1.175 93.98 +0.715 -1.420 1.190 93.98 +0.710 -1.450 1.210 93.98 +0.700 -1.480 1.225 93.98 +0.695 -1.515 1.245 93.98 +0.685 -1.545 1.265 93.98 +0.680 -1.580 1.285 93.98 +0.670 -1.610 1.310 93.98 +0.670 -1.645 1.330 93.98 +0.660 -1.685 1.350 93.98 +0.655 -1.720 1.370 93.98 +0.645 -1.760 1.395 93.98 +0.635 -1.800 1.410 93.98 +0.630 -1.835 1.435 93.98 +0.615 -1.875 1.455 95.92 +0.605 -1.915 1.480 93.98 +0.590 -1.960 1.500 95.92 +0.585 -1.990 1.525 95.92 +0.570 -2.030 1.555 95.92 +0.555 -2.065 1.585 95.92 +0.540 -2.100 1.610 95.92 +0.530 -2.135 1.640 93.98 +0.515 -2.165 1.675 95.92 +0.500 -2.195 1.710 95.92 +0.485 -2.220 1.750 97.50 +0.475 -2.250 1.790 97.50 +0.465 -2.275 1.830 97.50 +0.455 -2.295 1.870 97.50 +0.445 -2.320 1.915 97.50 +0.435 -2.340 1.955 95.92 +0.425 -2.360 1.995 95.92 +0.415 -2.380 2.035 97.50 +0.405 -2.400 2.075 97.50 +0.395 -2.410 2.115 97.50 +0.380 -2.430 2.155 98.84 +0.370 -2.445 2.195 98.84 +0.365 -2.455 2.230 100.0 +0.350 -2.475 2.265 98.84 +0.340 -2.485 2.305 97.50 +0.325 -2.495 2.340 98.84 +0.315 -2.505 2.375 98.84 +0.300 -2.515 2.410 100.0 +0.290 -2.525 2.440 100.0 +0.280 -2.535 2.470 100.0 +0.260 -2.540 2.505 100.0 +0.255 -2.550 2.535 101.0 +0.240 -2.560 2.560 100.0 +0.230 -2.565 2.585 100.0 +0.215 -2.570 2.610 100.0 +0.205 -2.580 2.635 100.0 +0.195 -2.585 2.655 100.0 +0.180 -2.590 2.675 100.0 +0.175 -2.590 2.690 100.0 +0.160 -2.590 2.710 100.0 +0.150 -2.590 2.725 100.0 +0.140 -2.590 2.740 101.0 +0.135 -2.585 2.745 101.0 +0.125 -2.575 2.755 101.0 +0.120 -2.570 2.765 101.0 +0.110 -2.560 2.770 101.0 +0.100 -2.550 2.775 100.0 +0.095 -2.535 2.775 101.0 +0.090 -2.520 2.780 101.0 +0.085 -2.500 2.780 101.0 +0.080 -2.485 2.775 101.0 +0.075 -2.460 2.775 101.0 +0.070 -2.445 2.775 101.0 +0.070 -2.420 2.770 100.0 +0.065 -2.395 2.770 101.0 +0.065 -2.370 2.760 101.0 +0.065 -2.345 2.755 100.0 +0.060 -2.315 2.750 101.0 +0.060 -2.290 2.745 101.0 +0.060 -2.255 2.735 101.0 +0.060 -2.225 2.725 100.0 +0.060 -2.195 2.715 100.0 +0.060 -2.165 2.705 101.0 +0.060 -2.135 2.690 100.0 +0.060 -2.100 2.680 100.0 +0.060 -2.070 2.665 100.0 +0.060 -2.035 2.655 100.0 +0.060 -2.005 2.640 100.0 +0.060 -1.970 2.630 100.0 +0.065 -1.935 2.615 100.0 +0.060 -1.900 2.595 100.0 +0.065 -1.865 2.580 98.84 +0.065 -1.830 2.565 101.0 +0.065 -1.800 2.550 100.0 +0.065 -1.760 2.530 100.0 +0.065 -1.720 2.515 100.0 +0.065 -1.685 2.495 100.0 +0.065 -1.645 2.475 100.0 +0.065 -1.610 2.460 100.0 +0.070 -1.570 2.435 100.0 +0.065 -1.525 2.420 100.0 +0.070 -1.490 2.405 100.0 +0.070 -1.445 2.385 98.84 +0.070 -1.405 2.370 98.84 +0.075 -1.365 2.350 98.84 +0.080 -1.325 2.340 100.0 +0.080 -1.285 2.320 98.84 +0.080 -1.245 2.305 98.84 +0.080 -1.210 2.285 98.84 +0.085 -1.170 2.270 97.50 +0.085 -1.130 2.260 98.84 +0.095 -1.095 2.250 98.84 +0.095 -1.055 2.240 100.0 +0.100 -1.020 2.225 98.84 +0.110 -0.985 2.220 98.84 +0.115 -0.955 2.210 98.84 +0.120 -0.915 2.200 98.84 +0.130 -0.890 2.195 98.84 +0.140 -0.855 2.195 98.84 +0.145 -0.825 2.190 98.84 +0.155 -0.795 2.185 98.84 +0.160 -0.765 2.190 98.84 +0.175 -0.740 2.185 98.84 +0.180 -0.720 2.185 98.84 +0.195 -0.690 2.190 98.84 +0.200 -0.670 2.195 98.84 +0.215 -0.645 2.190 98.84 +0.225 -0.620 2.190 100.0 +0.235 -0.600 2.195 98.84 +0.245 -0.580 2.205 98.84 +0.255 -0.560 2.205 98.84 +0.260 -0.540 2.210 98.84 +0.275 -0.525 2.215 98.84 +0.285 -0.505 2.225 98.84 +0.295 -0.490 2.230 98.84 +0.305 -0.475 2.240 98.84 +0.310 -0.460 2.245 100.0 +0.315 -0.450 2.255 98.84 +0.320 -0.435 2.265 98.84 +0.325 -0.430 2.270 98.84 +0.330 -0.420 2.285 98.84 +0.335 -0.410 2.290 98.84 +0.335 -0.410 2.300 98.84 +0.335 -0.400 2.305 97.50 +0.340 -0.400 2.310 98.84 +0.335 -0.395 2.320 98.84 +0.335 -0.390 2.320 98.84 +0.335 -0.390 2.330 98.84 +0.330 -0.385 2.330 100.0 +0.325 -0.385 2.335 98.84 +0.320 -0.385 2.335 98.84 +0.310 -0.380 2.335 98.84 +0.305 -0.380 2.335 98.84 +0.295 -0.380 2.335 98.84 +0.285 -0.380 2.335 98.84 +0.275 -0.380 2.335 100.0 +0.265 -0.375 2.330 98.84 +0.250 -0.370 2.330 100.0 +0.245 -0.370 2.375 100.0 +0.230 -0.365 2.495 100.0 +0.220 -0.360 2.585 101.0 +0.210 -0.355 2.595 100.0 +0.195 -0.355 2.540 100.0 +0.185 -0.345 2.515 100.0 +0.170 -0.345 2.545 101.0 +0.160 -0.340 2.570 101.0 +0.145 -0.330 2.550 101.0 +0.140 -0.325 2.515 101.0 +0.125 -0.315 2.520 101.0 +0.115 -0.305 2.545 101.0 +0.105 -0.295 2.535 101.0 +0.100 -0.290 2.500 100.0 +0.085 -0.275 2.500 100.0 +0.080 -0.265 2.510 101.0 +0.070 -0.255 2.505 100.0 +0.060 -0.240 2.485 100.0 +0.055 -0.230 2.475 100.0 +0.050 -0.220 2.475 100.0 +0.045 -0.205 2.470 100.0 +0.035 -0.190 2.455 100.0 +0.030 -0.180 2.450 100.0 +0.030 -0.165 2.440 100.0 +0.020 -0.150 2.435 100.0 +0.020 -0.135 2.420 100.0 +0.015 -0.120 2.405 100.0 +0.010 -0.100 2.400 100.0 +0.005 -0.090 2.390 100.0 +0.005 -0.070 2.370 100.0 +0.005 -0.055 2.360 98.84 +0.000 -0.040 2.355 98.84 +0.000 -0.025 2.340 98.84 +-0.010 -0.005 2.325 100.0 +-0.010 0.010 2.310 100.0 +-0.010 0.025 2.300 98.84 +-0.010 0.045 2.290 98.84 +-0.010 0.060 2.265 98.84 +-0.010 0.075 2.255 98.84 +-0.010 0.095 2.245 100.0 +-0.005 0.110 2.230 98.84 +-0.010 0.130 2.210 100.0 +-0.010 0.150 2.190 100.0 +-0.010 0.160 2.180 100.0 +-0.010 0.180 2.175 100.0 +-0.010 0.200 2.150 98.84 +-0.010 0.215 2.130 100.0 +-0.010 0.230 2.115 98.84 +-0.010 0.250 2.105 98.84 +-0.015 0.260 2.085 98.84 +-0.015 0.280 2.060 97.50 +-0.020 0.295 2.045 98.84 +-0.020 0.310 2.035 98.84 +-0.020 0.325 2.015 98.84 +-0.025 0.340 1.985 98.84 +-0.025 0.355 1.970 97.50 +-0.030 0.365 1.950 97.50 +-0.035 0.380 1.935 97.50 +-0.040 0.390 1.915 98.84 +-0.040 0.405 1.895 97.50 +-0.045 0.410 1.875 98.84 +-0.050 0.425 1.860 97.50 +-0.055 0.430 1.840 97.50 +-0.055 0.435 1.815 97.50 +-0.060 0.440 1.795 97.50 +-0.065 0.450 1.775 97.50 +-0.070 0.450 1.755 97.50 +-0.070 0.460 1.735 95.92 +-0.080 0.460 1.720 97.50 +-0.080 0.470 1.695 95.92 +-0.090 0.470 1.670 95.92 +-0.090 0.470 1.645 95.92 +-0.100 0.475 1.630 95.92 +-0.105 0.470 1.605 97.50 +-0.110 0.475 1.585 95.92 +-0.115 0.475 1.560 95.92 +-0.120 0.480 1.545 95.92 +-0.130 0.480 1.515 95.92 +-0.130 0.485 1.500 95.92 +-0.140 0.480 1.475 93.98 +-0.150 0.480 1.455 95.92 +-0.150 0.475 1.430 95.92 +-0.160 0.470 1.405 93.98 +-0.165 0.450 1.380 93.98 +-0.175 0.125 1.360 93.98 +-0.180 -0.395 1.325 95.92 +-0.190 -0.485 1.305 93.98 +-0.195 -0.445 1.275 95.92 +-0.205 -0.555 1.245 93.98 +-0.210 -0.720 1.220 93.98 +-0.225 -0.735 1.195 93.98 +-0.230 -0.720 1.170 93.98 +-0.240 -0.770 1.145 93.98 +-0.250 -0.825 1.110 93.98 +-0.265 -0.860 1.080 91.48 +-0.285 -0.880 1.050 91.48 +-0.295 -0.905 1.020 91.48 +-0.315 -0.930 0.995 91.48 +-0.335 -0.965 0.985 91.48 +-0.350 -0.990 0.970 93.98 +-0.375 -1.015 0.950 93.98 +-0.400 -1.040 0.930 91.48 +-0.430 -1.065 0.905 93.98 +-0.455 -1.090 0.885 91.48 +-0.485 -1.120 0.870 93.98 +-0.515 -1.140 0.860 91.48 +-0.555 -1.160 0.845 93.98 +-0.590 -1.185 0.820 91.48 +-0.625 -1.205 0.790 87.96 +-0.670 -1.225 0.770 87.96 +-0.710 -1.250 0.750 91.48 +-0.755 -1.265 0.735 87.96 +-0.810 -1.290 0.705 87.96 +-0.860 -1.310 0.675 87.96 +-0.910 -1.325 0.660 87.96 +-0.970 -1.345 0.645 91.48 +-1.030 -1.365 0.615 87.96 +-1.090 -1.380 0.595 87.96 +-1.155 -1.400 0.570 87.96 +-1.220 -1.415 0.550 87.96 +-1.285 -1.430 0.530 87.96 +-1.350 -1.445 0.505 87.96 +-1.425 -1.460 0.480 87.96 +-1.630 -1.475 0.460 87.96 +-2.285 -1.500 0.435 81.94 +-2.770 -1.520 0.410 81.94 +-3.065 -1.540 0.390 81.94 +-3.175 -1.550 0.370 81.94 +-3.125 -1.560 0.345 81.94 +-3.050 -1.570 0.325 87.96 +-3.020 -1.580 0.305 87.96 +-3.080 -1.590 0.285 81.94 +-3.170 -1.605 0.265 81.94 +-3.210 -1.610 0.245 81.94 +-3.315 -1.620 0.225 81.94 +-3.390 -1.635 0.200 81.94 +-3.455 -1.640 0.180 81.94 +-3.540 -1.650 0.165 81.94 +-3.615 -1.655 0.145 81.94 +-3.645 -1.660 0.135 81.94 +-3.665 -1.670 0.125 81.94 +-3.725 -1.675 0.115 0.000 +-3.810 -1.685 0.110 81.94 +-3.855 -1.685 0.110 0.000 +-3.870 -1.690 0.105 0.000 +-3.895 -1.695 0.090 0.000 +-3.970 -1.700 0.070 0.000 diff --git a/tests/fixtures/5-11-26/M529LL1A.SV0 b/tests/fixtures/5-11-26/M529LL1A.SV0 new file mode 100644 index 0000000000000000000000000000000000000000..8e4963dea428fca07608b78ec259f08f58ece81f GIT binary patch literal 9004 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 Hd+zxkD7Esm literal 0 HcmV?d00001 diff --git a/tests/fixtures/5-11-26/M529LL1A.SV0.TXT b/tests/fixtures/5-11-26/M529LL1A.SV0.TXT new file mode 100644 index 0000000..9490216 --- /dev/null +++ b/tests/fixtures/5-11-26/M529LL1A.SV0.TXT @@ -0,0 +1,3137 @@ +"Event Type : Full Waveform" +"Serial Number : BE11529" +"Version : V 10.72-8.17 MiniMate Plus" +"File Name : M529LL1A.SV0" +"Event Time : 13:58:07" +"Event Date : May 11, 2026" +"Trigger : Tran" +"Geo Trigger Level : 0.500 in/s" +"Pre-trigger Length : -0.007 sec" +"Record Time : 3.0 sec" +"Record Stop Mode : Fixed" +"Sample Rate : 1024 sps" +"Battery Level : 6.8 Volts" +"Calibration : April 29, 2025 by Instantel" +"Units : in/s and dB(L)" +"Project: : Test-5-8-26" +"Client: : New Client" +"User Name: : Terra-Mechanics - Harrison" +"Seis Loc: : Still Catbed." +"Geo Range : 10.000 in/s" +"Tran PPV : 6.440 in/s" +"Vert PPV : 5.515 in/s" +"Long PPV : 6.430 in/s" +"Tran ZC Freq : N/A" +"Vert ZC Freq : 2.6 Hz" +"Long ZC Freq : 2.2 Hz" +"Tran Time of Peak : 0.039 sec" +"Vert Time of Peak : 0.117 sec" +"Long Time of Peak : 0.127 sec" +"Tran Peak Acceleration : 4.043 g" +"Vert Peak Acceleration : 4.401 g" +"Long Peak Acceleration : 2.718 g" +"Tran Peak Displacement : 0.221 in" +"Vert Peak Displacement : 0.245 in" +"Long Peak Displacement : 0.447 in" +"Peak Vector Sum : 8.773 in/s" +"Peak Vector Sum Time : 0.121 sec" +"Microphone : Linear Weighting" +"MicL PSPL : 109.9 dB(L)" +"MicL Time of Peak : 0.138 sec" +"MicL ZC Freq : 2.3 Hz" +"Tran Test Freq : 7.4 Hz" +"Tran Test Ratio : 3.8" +"Tran Test Results : Passed" +"Vert Test Freq : 7.6 Hz" +"Vert Test Ratio : 3.5" +"Vert Test Results : Passed" +"Long Test Freq : 7.4 Hz" +"Long Test Ratio : 3.9" +"Long Test Results : Passed" +"MicL Test Freq : 20.5 Hz" +"MicL Test Amplitude : 586 mv" +"MicL Test Results : Passed" +"Monitor Log(s)" +"May 11 /26 13:58:07 May 11 /26 13:58:10 Event recorded. " +"PC SW Version : V 10.74" + + Tran Vert Long MicL +-3.725 -1.675 0.115 0.000 +-3.810 -1.685 0.110 81.94 +-3.855 -1.685 0.110 0.000 +-3.870 -1.690 0.105 0.000 +-3.895 -1.695 0.090 0.000 +-3.970 -1.700 0.070 0.000 +-4.040 -1.710 0.055 81.94 +-4.055 -1.710 0.055 0.000 +-4.055 -1.715 0.075 0.000 +-4.095 -1.720 0.095 0.000 +-4.165 -1.720 0.125 0.000 +-4.205 -1.725 0.170 81.94 +-4.190 -1.725 0.205 81.94 +-4.175 -1.725 0.255 81.94 +-4.205 -1.730 0.310 87.96 +-4.245 -1.730 0.360 81.94 +-4.260 -1.740 0.420 87.96 +-4.265 -1.760 0.470 81.94 +-4.280 -1.785 0.525 87.96 +-4.310 -1.825 0.575 87.96 +-4.355 -1.880 0.620 91.48 +-4.415 -1.950 0.665 87.96 +-4.635 -2.025 0.705 91.48 +-4.875 -2.110 0.735 91.48 +-4.945 -2.200 0.760 87.96 +-4.955 -2.295 0.790 91.48 +-5.000 -2.405 0.805 91.48 +-5.090 -2.510 0.810 91.48 +-5.170 -2.620 0.805 91.48 +-5.245 -2.725 0.790 93.98 +-5.315 -2.830 0.775 91.48 +-5.405 -2.945 0.740 91.48 +-5.495 -3.045 0.700 87.96 +-5.580 -3.150 0.650 91.48 +-5.670 -3.245 0.595 91.48 +-5.760 -3.330 0.515 87.96 +-5.845 -3.410 0.435 81.94 +-5.925 -3.480 0.345 81.94 +-6.000 -3.545 0.245 81.94 +-6.080 -3.595 0.140 81.94 +-6.150 -3.635 0.025 -81.94 +-6.215 -3.665 -0.100 0.000 +-6.275 -3.690 -0.235 -81.94 +-6.320 -3.700 -0.375 -87.96 +-6.360 -3.695 -0.520 -87.96 +-6.395 -3.680 -0.780 -91.48 +-6.425 -3.650 -1.805 -98.84 +-6.440 -3.605 -2.725 -101.0 +-6.435 -3.545 -3.140 -103.5 +-6.435 -3.300 -3.360 -103.5 +-6.410 -1.655 -3.350 -103.5 +-6.370 0.005 -3.250 -103.5 +-6.320 0.485 -3.210 -103.5 +-6.275 0.230 -3.190 -102.8 +-6.215 -0.060 -3.165 -103.5 +-6.135 -0.180 -3.150 -103.5 +-6.045 0.060 -3.240 -103.5 +-5.940 0.550 -3.450 -104.2 +-5.825 0.605 -3.710 -104.9 +-5.700 0.510 -3.905 -104.9 +-5.545 0.610 -3.920 -105.5 +-4.710 0.915 -3.885 -104.9 +-3.185 1.260 -3.980 -104.9 +-2.595 1.340 -4.160 -105.5 +-2.235 1.245 -4.245 -106.0 +-1.810 1.255 -4.255 -106.0 +-1.805 1.420 -4.315 -106.0 +-2.020 1.560 -4.435 -106.5 +-2.130 1.650 -4.530 -106.0 +-2.155 1.745 -4.570 -106.5 +-2.190 1.835 -4.620 -106.5 +-2.240 1.905 -4.710 -107.0 +-2.255 1.970 -4.800 -107.0 +-2.265 2.065 -4.840 -107.0 +-2.255 2.160 -4.880 -107.0 +-2.200 2.250 -4.965 -107.0 +-1.815 2.310 -5.055 -107.5 +-1.285 2.390 -5.095 -107.5 +-1.190 2.470 -5.115 -107.5 +-1.275 2.560 -5.180 -107.5 +-1.165 2.635 -5.280 -108.0 +-1.040 2.700 -5.340 -108.0 +-1.020 2.760 -5.345 -108.0 +-0.930 2.830 -5.375 -108.4 +-0.700 2.910 -5.465 -108.0 +-0.590 2.985 -5.540 -108.4 +-0.605 3.050 -5.555 -108.4 +-0.590 3.105 -5.565 -108.0 +-0.525 3.170 -5.630 -108.4 +-0.430 3.235 -5.700 -108.4 +-0.255 3.300 -5.740 -108.8 +-0.100 3.365 -5.745 -108.4 +-0.020 3.425 -5.780 -108.4 +0.010 3.480 -5.845 -108.4 +0.060 3.535 -5.885 -108.8 +0.150 3.590 -5.905 -108.8 +0.260 3.645 -5.925 -108.8 +0.360 3.710 -5.965 -109.2 +0.420 3.760 -6.005 -109.2 +0.465 3.810 -6.035 -109.2 +0.535 3.865 -6.050 -109.2 +0.620 3.920 -6.075 -108.8 +0.715 3.970 -6.110 -109.2 +0.790 4.020 -6.135 -109.2 +0.845 4.075 -6.145 -109.2 +0.900 4.145 -6.165 -109.5 +0.975 4.220 -6.195 -109.2 +1.060 4.295 -6.220 -109.5 +1.130 4.370 -6.225 -109.2 +1.185 4.460 -6.235 -109.5 +1.240 4.545 -6.265 -109.2 +1.300 4.630 -6.285 -109.5 +1.375 4.715 -6.290 -109.5 +1.450 4.800 -6.290 -109.5 +1.510 4.880 -6.305 -109.5 +1.560 4.955 -6.325 -109.5 +1.615 5.035 -6.330 -109.5 +1.675 5.105 -6.325 -109.5 +1.740 5.170 -6.335 -109.5 +1.800 5.240 -6.350 -109.5 +1.855 5.295 -6.360 -109.5 +1.900 5.350 -6.360 -109.5 +1.950 5.390 -6.360 -109.5 +2.010 5.425 -6.360 -109.5 +2.065 5.455 -6.365 -109.5 +2.115 5.480 -6.370 -109.5 +2.160 5.500 -6.375 -109.5 +2.210 5.515 -6.380 -109.5 +2.265 5.510 -6.390 -109.5 +2.310 5.510 -6.400 -109.5 +2.360 5.500 -6.405 -109.5 +2.405 5.485 -6.410 -109.5 +2.450 5.455 -6.415 -109.5 +2.500 5.420 -6.420 -109.5 +2.555 5.380 -6.420 -109.5 +2.635 5.325 -6.425 -109.5 +2.715 5.270 -6.425 -109.5 +2.785 5.205 -6.430 -109.5 +2.855 5.130 -6.430 -109.5 +2.915 5.055 -6.425 -109.5 +2.975 4.965 -6.420 -109.5 +3.025 4.875 -6.415 -109.2 +3.070 4.785 -6.415 -109.5 +3.110 4.685 -6.405 -109.5 +3.145 4.580 -6.395 -109.2 +3.180 4.475 -6.385 -109.5 +3.205 4.360 -6.370 -109.5 +3.235 4.250 -6.360 -109.5 +3.250 4.140 -6.340 -109.9 +3.270 4.025 -6.320 -109.5 +3.285 3.910 -6.305 -109.5 +3.300 3.800 -6.280 -109.5 +3.310 3.690 -6.260 -109.2 +3.320 3.580 -6.230 -109.2 +3.325 3.460 -6.195 -109.2 +3.330 3.350 -6.165 -109.2 +3.335 3.245 -6.130 -109.2 +3.335 3.135 -6.090 -108.8 +3.340 3.025 -6.055 -109.2 +3.340 2.920 -6.015 -109.2 +3.340 2.815 -5.975 -109.2 +3.335 2.715 -5.930 -108.8 +3.330 2.615 -5.880 -108.8 +3.330 2.515 -5.835 -108.8 +3.325 2.415 -5.785 -108.4 +3.325 2.325 -5.740 -108.8 +3.325 2.240 -5.685 -108.4 +3.325 2.155 -5.630 -108.4 +3.325 2.070 -5.575 -108.4 +3.320 1.995 -5.515 -108.0 +3.325 1.920 -5.455 -108.0 +3.325 1.855 -5.390 -108.0 +3.330 1.790 -5.330 -108.0 +3.340 1.735 -5.265 -107.5 +3.340 1.680 -5.200 -107.0 +3.350 1.635 -5.135 -107.0 +3.360 1.590 -5.065 -107.5 +3.370 1.550 -4.995 -107.5 +3.375 1.515 -4.920 -107.0 +3.390 1.485 -4.855 -106.5 +3.400 1.460 -4.780 -107.0 +3.410 1.430 -4.705 -106.5 +3.425 1.415 -4.635 -106.5 +3.435 1.400 -4.555 -106.0 +3.450 1.390 -4.480 -106.5 +3.455 1.380 -4.405 -106.0 +3.470 1.375 -4.330 -106.0 +3.480 1.375 -4.250 -105.5 +3.495 1.375 -4.175 -105.5 +3.500 1.375 -4.095 -106.0 +3.515 1.380 -4.015 -105.5 +3.525 1.385 -3.935 -104.9 +3.535 1.395 -3.855 -104.2 +3.540 1.400 -3.775 -104.9 +3.545 1.410 -3.695 -104.2 +3.550 1.420 -3.615 -104.2 +3.555 1.430 -3.540 -103.5 +3.560 1.445 -3.455 -104.2 +3.560 1.455 -3.380 -103.5 +3.565 1.465 -3.295 -103.5 +3.560 1.475 -3.215 -102.8 +3.560 1.485 -3.135 -103.5 +3.550 1.495 -3.055 -102.8 +3.545 1.500 -2.975 -102.8 +3.535 1.510 -2.895 -102.8 +3.525 1.510 -2.815 -101.9 +3.520 1.515 -2.740 -101.9 +3.510 1.515 -2.660 -101.9 +3.495 1.510 -2.585 -101.0 +3.475 1.510 -2.510 -101.9 +3.460 1.505 -2.435 -101.0 +3.435 1.500 -2.360 -101.0 +3.415 1.490 -2.290 -100.0 +3.395 1.480 -2.220 -101.0 +3.370 1.470 -2.150 -100.0 +3.340 1.445 -2.080 -100.0 +3.315 1.430 -2.020 -98.84 +3.285 1.415 -1.955 -98.84 +3.250 1.395 -1.890 -98.84 +3.215 1.370 -1.825 -98.84 +3.180 1.345 -1.770 -98.84 +3.145 1.325 -1.710 -97.50 +3.100 1.295 -1.655 -97.50 +3.065 1.265 -1.605 -95.92 +3.025 1.235 -1.555 -98.84 +2.980 1.200 -1.510 -97.50 +2.935 1.165 -1.465 -95.92 +2.895 1.135 -1.420 -95.92 +2.840 1.095 -1.380 -95.92 +2.795 1.060 -1.340 -95.92 +2.740 1.020 -1.305 -93.98 +2.685 0.975 -1.270 -93.98 +2.635 0.940 -1.230 -95.92 +2.575 0.900 -1.200 -93.98 +2.515 0.860 -1.175 -93.98 +2.460 0.820 -1.145 -95.92 +2.395 0.780 -1.120 -93.98 +2.335 0.740 -1.095 -93.98 +2.270 0.695 -1.070 -93.98 +2.205 0.655 -1.040 -93.98 +2.140 0.610 -1.020 -91.48 +2.080 0.565 -1.000 -93.98 +2.010 0.515 -0.975 -91.48 +1.950 0.460 -0.955 -91.48 +1.885 0.420 -0.935 -93.98 +1.815 0.365 -0.910 -91.48 +1.755 0.315 -0.885 -93.98 +1.690 0.265 -0.865 -91.48 +1.625 0.220 -0.845 -93.98 +1.560 0.175 -0.820 -91.48 +1.500 0.125 -0.800 -91.48 +1.440 0.080 -0.775 -91.48 +1.380 0.040 -0.750 -87.96 +1.320 -0.005 -0.720 -87.96 +1.265 -0.040 -0.690 -87.96 +1.210 -0.080 -0.660 -87.96 +1.160 -0.110 -0.635 -87.96 +1.105 -0.145 -0.600 -87.96 +1.050 -0.180 -0.570 -87.96 +1.005 -0.210 -0.540 -87.96 +0.955 -0.230 -0.500 -87.96 +0.910 -0.255 -0.460 -87.96 +0.870 -0.280 -0.420 -87.96 +0.825 -0.300 -0.380 -81.94 +0.785 -0.320 -0.335 -81.94 +0.750 -0.335 -0.295 -81.94 +0.715 -0.350 -0.250 -81.94 +0.675 -0.365 -0.205 -81.94 +0.645 -0.370 -0.160 -81.94 +0.615 -0.380 -0.115 -81.94 +0.585 -0.390 -0.065 0.000 +0.560 -0.395 -0.015 0.000 +0.535 -0.400 0.030 0.000 +0.510 -0.405 0.085 0.000 +0.485 -0.405 0.140 0.000 +0.470 -0.405 0.190 81.94 +0.450 -0.405 0.245 81.94 +0.430 -0.400 0.300 81.94 +0.420 -0.400 0.355 81.94 +0.405 -0.390 0.410 81.94 +0.395 -0.385 0.470 87.96 +0.385 -0.375 0.530 87.96 +0.380 -0.365 0.585 87.96 +0.375 -0.355 0.645 87.96 +0.365 -0.345 0.700 87.96 +0.360 -0.335 0.760 91.48 +0.360 -0.315 0.820 91.48 +0.360 -0.305 0.880 91.48 +0.360 -0.285 0.930 91.48 +0.355 -0.270 0.990 91.48 +0.360 -0.255 1.045 91.48 +0.360 -0.235 1.105 93.98 +0.360 -0.220 1.160 95.92 +0.360 -0.200 1.215 95.92 +0.365 -0.180 1.280 95.92 +0.360 -0.165 1.330 93.98 +0.360 -0.150 1.385 95.92 +0.360 -0.130 1.445 95.92 +0.360 -0.115 1.495 95.92 +0.355 -0.100 1.545 95.92 +0.350 -0.085 1.600 97.50 +0.345 -0.070 1.650 95.92 +0.340 -0.060 1.695 97.50 +0.335 -0.045 1.745 97.50 +0.325 -0.035 1.790 97.50 +0.320 -0.025 1.835 97.50 +0.310 -0.020 1.880 98.84 +0.300 -0.015 1.920 97.50 +0.290 -0.005 1.960 97.50 +0.275 -0.005 1.995 98.84 +0.260 -0.010 2.035 97.50 +0.240 -0.005 2.070 97.50 +0.225 -0.010 2.105 100.0 +0.205 -0.015 2.140 98.84 +0.185 -0.020 2.175 98.84 +0.165 -0.025 2.210 98.84 +0.145 -0.030 2.240 100.0 +0.115 -0.040 2.270 98.84 +0.090 -0.045 2.300 98.84 +0.060 -0.060 2.325 100.0 +0.025 -0.070 2.350 98.84 +-0.005 -0.085 2.370 100.0 +-0.035 -0.100 2.395 98.84 +-0.075 -0.110 2.420 100.0 +-0.105 -0.125 2.435 98.84 +-0.145 -0.140 2.455 100.0 +-0.185 -0.155 2.470 100.0 +-0.225 -0.175 2.490 100.0 +-0.260 -0.195 2.500 100.0 +-0.305 -0.210 2.515 100.0 +-0.345 -0.225 2.525 100.0 +-0.395 -0.240 2.540 101.0 +-0.435 -0.260 2.550 100.0 +-0.480 -0.275 2.560 101.0 +-0.525 -0.295 2.565 101.0 +-0.570 -0.310 2.575 100.0 +-0.615 -0.330 2.585 101.0 +-0.660 -0.345 2.590 100.0 +-0.700 -0.360 2.600 100.0 +-0.745 -0.375 2.605 100.0 +-0.790 -0.385 2.615 100.0 +-0.830 -0.400 2.620 100.0 +-0.875 -0.410 2.625 100.0 +-0.915 -0.420 2.630 100.0 +-0.955 -0.430 2.640 100.0 +-0.990 -0.440 2.650 100.0 +-1.025 -0.450 2.655 100.0 +-1.065 -0.460 2.665 100.0 +-1.095 -0.465 2.675 101.0 +-1.130 -0.465 2.685 101.0 +-1.160 -0.480 2.695 101.0 +-1.190 -0.480 2.705 100.0 +-1.215 -0.485 2.715 101.0 +-1.240 -0.485 2.725 100.0 +-1.265 -0.480 2.740 101.0 +-1.285 -0.480 2.750 101.0 +-1.310 -0.480 2.765 101.0 +-1.325 -0.480 2.780 101.0 +-1.345 -0.475 2.790 101.0 +-1.360 -0.475 2.805 101.0 +-1.370 -0.465 2.820 101.0 +-1.390 -0.465 2.840 101.9 +-1.400 -0.455 2.855 101.0 +-1.410 -0.455 2.870 101.0 +-1.415 -0.445 2.885 101.9 +-1.430 -0.440 2.905 101.9 +-1.435 -0.435 2.915 101.0 +-1.440 -0.430 2.940 101.9 +-1.450 -0.420 2.950 101.0 +-1.455 -0.420 2.970 101.9 +-1.460 -0.415 2.980 101.9 +-1.470 -0.405 2.995 101.9 +-1.465 -0.400 3.010 101.0 +-1.470 -0.395 3.025 101.9 +-1.470 -0.390 3.035 101.9 +-1.470 -0.380 3.045 101.9 +-1.470 -0.380 3.060 101.9 +-1.475 -0.370 3.070 101.9 +-1.470 -0.360 3.080 101.9 +-1.465 -0.355 3.090 101.9 +-1.465 -0.345 3.105 101.9 +-1.465 -0.340 3.120 101.9 +-1.460 -0.325 3.130 101.9 +-1.460 -0.320 3.140 101.9 +-1.450 -0.310 3.155 101.9 +-1.445 -0.295 3.165 102.8 +-1.445 -0.285 3.175 102.8 +-1.440 -0.270 3.185 102.8 +-1.440 -0.260 3.200 102.8 +-1.430 -0.250 3.210 102.8 +-1.425 -0.240 3.220 101.9 +-1.420 -0.225 3.230 101.9 +-1.420 -0.210 3.240 101.9 +-1.410 -0.205 3.245 101.9 +-1.405 -0.190 3.250 101.9 +-1.405 -0.180 3.255 101.9 +-1.395 -0.170 3.260 101.9 +-1.390 -0.160 3.270 102.8 +-1.385 -0.150 3.275 101.9 +-1.380 -0.140 3.275 101.9 +-1.375 -0.135 3.275 101.9 +-1.370 -0.130 3.275 101.9 +-1.365 -0.125 3.275 101.9 +-1.360 -0.120 3.270 101.9 +-1.360 -0.115 3.265 101.9 +-1.355 -0.115 3.265 101.9 +-1.355 -0.110 3.260 101.9 +-1.350 -0.105 3.255 101.9 +-1.345 -0.100 3.240 101.9 +-1.345 -0.095 3.235 101.9 +-1.345 -0.095 3.220 101.9 +-1.345 -0.090 3.210 101.9 +-1.340 -0.085 3.195 101.9 +-1.345 -0.085 3.180 102.8 +-1.340 -0.080 3.165 101.9 +-1.345 -0.075 3.150 101.9 +-1.345 -0.075 3.130 101.9 +-1.345 -0.070 3.110 101.9 +-1.345 -0.075 3.090 101.0 +-1.350 -0.075 3.065 101.0 +-1.355 -0.075 3.040 101.9 +-1.355 -0.080 3.015 101.0 +-1.360 -0.085 2.990 101.0 +-1.360 -0.090 2.965 101.0 +-1.370 -0.100 2.935 101.0 +-1.375 -0.105 2.905 100.0 +-1.380 -0.110 2.875 101.0 +-1.385 -0.125 2.845 101.9 +-1.390 -0.130 2.815 101.0 +-1.395 -0.145 2.785 101.0 +-1.400 -0.155 2.755 100.0 +-1.410 -0.170 2.720 100.0 +-1.410 -0.185 2.685 100.0 +-1.415 -0.200 2.660 100.0 +-1.420 -0.225 2.625 100.0 +-1.425 -0.240 2.595 100.0 +-1.425 -0.260 2.560 100.0 +-1.430 -0.285 2.525 100.0 +-1.435 -0.310 2.500 100.0 +-1.435 -0.330 2.465 98.84 +-1.435 -0.350 2.440 100.0 +-1.435 -0.380 2.410 100.0 +-1.435 -0.400 2.380 98.84 +-1.435 -0.425 2.345 98.84 +-1.430 -0.445 2.320 98.84 +-1.430 -0.475 2.290 98.84 +-1.425 -0.495 2.265 97.50 +-1.420 -0.515 2.235 98.84 +-1.410 -0.535 2.210 98.84 +-1.400 -0.555 2.180 98.84 +-1.395 -0.575 2.160 98.84 +-1.385 -0.595 2.135 98.84 +-1.370 -0.615 2.110 97.50 +-1.360 -0.640 2.090 97.50 +-1.345 -0.655 2.065 97.50 +-1.330 -0.670 2.045 97.50 +-1.310 -0.690 2.025 97.50 +-1.295 -0.705 2.000 97.50 +-1.275 -0.725 1.985 97.50 +-1.255 -0.745 1.965 95.92 +-1.240 -0.760 1.945 97.50 +-1.215 -0.775 1.930 97.50 +-1.190 -0.790 1.910 97.50 +-1.175 -0.805 1.895 97.50 +-1.150 -0.815 1.875 95.92 +-1.130 -0.830 1.860 97.50 +-1.110 -0.840 1.845 97.50 +-1.085 -0.850 1.825 97.50 +-1.065 -0.865 1.810 97.50 +-1.040 -0.875 1.795 95.92 +-1.020 -0.890 1.780 95.92 +-0.995 -0.900 1.765 95.92 +-0.980 -0.910 1.750 95.92 +-0.955 -0.920 1.735 95.92 +-0.935 -0.935 1.720 95.92 +-0.915 -0.950 1.710 95.92 +-0.895 -0.960 1.700 95.92 +-0.875 -0.975 1.685 95.92 +-0.855 -0.985 1.665 95.92 +-0.840 -1.005 1.655 95.92 +-0.820 -1.015 1.640 95.92 +-0.810 -1.035 1.625 93.98 +-0.790 -1.055 1.610 95.92 +-0.775 -1.070 1.600 95.92 +-0.765 -1.090 1.585 95.92 +-0.750 -1.110 1.575 95.92 +-0.740 -1.125 1.560 95.92 +-0.725 -1.150 1.545 95.92 +-0.715 -1.170 1.535 95.92 +-0.710 -1.190 1.520 95.92 +-0.700 -1.210 1.505 93.98 +-0.695 -1.230 1.495 95.92 +-0.685 -1.255 1.480 93.98 +-0.680 -1.275 1.470 93.98 +-0.675 -1.300 1.455 95.92 +-0.665 -1.325 1.445 93.98 +-0.665 -1.350 1.435 93.98 +-0.660 -1.370 1.420 93.98 +-0.650 -1.395 1.410 93.98 +-0.650 -1.415 1.395 93.98 +-0.645 -1.440 1.385 93.98 +-0.640 -1.465 1.370 93.98 +-0.635 -1.490 1.360 93.98 +-0.635 -1.510 1.345 93.98 +-0.630 -1.540 1.330 93.98 +-0.630 -1.560 1.315 93.98 +-0.625 -1.585 1.305 93.98 +-0.625 -1.610 1.295 93.98 +-0.620 -1.635 1.280 93.98 +-0.615 -1.660 1.265 93.98 +-0.615 -1.680 1.245 93.98 +-0.615 -1.705 1.230 93.98 +-0.615 -1.735 1.215 93.98 +-0.610 -1.755 1.195 91.48 +-0.605 -1.775 1.180 93.98 +-0.610 -1.800 1.155 93.98 +-0.600 -1.820 1.140 91.48 +-0.600 -1.845 1.115 91.48 +-0.600 -1.860 1.095 91.48 +-0.600 -1.880 1.070 91.48 +-0.595 -1.900 1.045 91.48 +-0.590 -1.915 1.025 91.48 +-0.585 -1.940 1.000 91.48 +-0.580 -1.955 0.975 87.96 +-0.575 -1.965 0.950 91.48 +-0.570 -1.985 0.925 91.48 +-0.565 -2.000 0.895 91.48 +-0.555 -2.010 0.870 87.96 +-0.550 -2.020 0.845 87.96 +-0.545 -2.030 0.815 91.48 +-0.530 -2.035 0.790 87.96 +-0.525 -2.045 0.765 87.96 +-0.515 -2.050 0.730 87.96 +-0.505 -2.055 0.705 87.96 +-0.490 -2.055 0.675 81.94 +-0.480 -2.055 0.645 87.96 +-0.470 -2.050 0.615 87.96 +-0.450 -2.050 0.585 81.94 +-0.440 -2.040 0.555 87.96 +-0.425 -2.035 0.525 81.94 +-0.410 -2.030 0.495 81.94 +-0.395 -2.020 0.460 81.94 +-0.380 -2.010 0.430 81.94 +-0.365 -2.000 0.395 81.94 +-0.345 -1.985 0.365 0.000 +-0.330 -1.970 0.335 0.000 +-0.310 -1.955 0.295 81.94 +-0.295 -1.940 0.265 0.000 +-0.280 -1.915 0.230 0.000 +-0.255 -1.900 0.195 0.000 +-0.235 -1.880 0.165 0.000 +-0.215 -1.855 0.130 0.000 +-0.195 -1.830 0.100 0.000 +-0.175 -1.805 0.065 -81.94 +-0.150 -1.775 0.035 -81.94 +-0.130 -1.745 0.005 0.000 +-0.110 -1.720 -0.030 0.000 +-0.085 -1.685 -0.055 0.000 +-0.065 -1.660 -0.085 -81.94 +-0.045 -1.620 -0.120 -81.94 +-0.025 -1.585 -0.145 -81.94 +0.000 -1.550 -0.180 -87.96 +0.020 -1.510 -0.205 -81.94 +0.040 -1.475 -0.235 -87.96 +0.060 -1.435 -0.260 -87.96 +0.080 -1.395 -0.285 -87.96 +0.100 -1.355 -0.310 -87.96 +0.120 -1.320 -0.335 -87.96 +0.140 -1.280 -0.360 -81.94 +0.155 -1.240 -0.385 -87.96 +0.170 -1.205 -0.405 -81.94 +0.185 -1.165 -0.430 -87.96 +0.200 -1.125 -0.450 -87.96 +0.220 -1.090 -0.470 -91.48 +0.230 -1.050 -0.485 -87.96 +0.245 -1.020 -0.505 -87.96 +0.255 -0.985 -0.520 -91.48 +0.265 -0.950 -0.540 -87.96 +0.280 -0.920 -0.555 -91.48 +0.290 -0.890 -0.565 -91.48 +0.295 -0.855 -0.575 -91.48 +0.305 -0.830 -0.590 -91.48 +0.310 -0.800 -0.595 -91.48 +0.320 -0.775 -0.605 -91.48 +0.325 -0.745 -0.610 -91.48 +0.325 -0.725 -0.615 -91.48 +0.330 -0.700 -0.625 -91.48 +0.335 -0.685 -0.625 -91.48 +0.340 -0.665 -0.625 -91.48 +0.345 -0.645 -0.630 -91.48 +0.345 -0.625 -0.625 -91.48 +0.350 -0.610 -0.630 -87.96 +0.355 -0.595 -0.620 -93.98 +0.350 -0.580 -0.620 -91.48 +0.355 -0.560 -0.620 -93.98 +0.355 -0.545 -0.610 -91.48 +0.355 -0.535 -0.615 -91.48 +0.355 -0.520 -0.605 -91.48 +0.355 -0.515 -0.600 -91.48 +0.355 -0.500 -0.595 -91.48 +0.355 -0.495 -0.590 -91.48 +0.350 -0.490 -0.585 -91.48 +0.350 -0.480 -0.580 -91.48 +0.350 -0.480 -0.575 -91.48 +0.345 -0.480 -0.570 -91.48 +0.345 -0.475 -0.565 -91.48 +0.340 -0.475 -0.555 -91.48 +0.340 -0.475 -0.550 -91.48 +0.335 -0.475 -0.540 -91.48 +0.335 -0.480 -0.530 -91.48 +0.330 -0.480 -0.520 -87.96 +0.330 -0.485 -0.515 -87.96 +0.330 -0.485 -0.505 -91.48 +0.325 -0.495 -0.500 -87.96 +0.325 -0.495 -0.495 -91.48 +0.320 -0.500 -0.490 -91.48 +0.320 -0.500 -0.485 -87.96 +0.310 -0.505 -0.485 -87.96 +0.310 -0.510 -0.480 -87.96 +0.305 -0.510 -0.480 -87.96 +0.300 -0.510 -0.475 -87.96 +0.295 -0.515 -0.475 -91.48 +0.295 -0.510 -0.475 -87.96 +0.295 -0.510 -0.475 -91.48 +0.290 -0.505 -0.475 -87.96 +0.290 -0.510 -0.475 -87.96 +0.290 -0.500 -0.475 -87.96 +0.290 -0.495 -0.475 -87.96 +0.290 -0.485 -0.475 -87.96 +0.295 -0.480 -0.480 -87.96 +0.295 -0.475 -0.475 -91.48 +0.295 -0.465 -0.475 -87.96 +0.295 -0.455 -0.480 -87.96 +0.300 -0.440 -0.485 -87.96 +0.295 -0.430 -0.480 -87.96 +0.300 -0.415 -0.480 -87.96 +0.305 -0.400 -0.490 -91.48 +0.305 -0.385 -0.490 -87.96 +0.310 -0.370 -0.490 -87.96 +0.315 -0.355 -0.495 -91.48 +0.315 -0.340 -0.495 -87.96 +0.320 -0.325 -0.500 -91.48 +0.325 -0.305 -0.500 -87.96 +0.330 -0.295 -0.505 -87.96 +0.335 -0.275 -0.510 -87.96 +0.335 -0.255 -0.515 -87.96 +0.335 -0.240 -0.515 -87.96 +0.340 -0.225 -0.515 -91.48 +0.340 -0.205 -0.515 -87.96 +0.345 -0.190 -0.520 -91.48 +0.345 -0.175 -0.520 -87.96 +0.345 -0.155 -0.525 -91.48 +0.350 -0.140 -0.525 -91.48 +0.345 -0.125 -0.530 -87.96 +0.345 -0.105 -0.525 -87.96 +0.345 -0.095 -0.530 -87.96 +0.345 -0.075 -0.530 -87.96 +0.345 -0.060 -0.530 -91.48 +0.345 -0.040 -0.530 -91.48 +0.340 -0.025 -0.530 -87.96 +0.335 0.000 -0.530 -87.96 +0.335 0.010 -0.530 -91.48 +0.330 0.030 -0.530 -87.96 +0.330 0.040 -0.535 -87.96 +0.330 0.055 -0.530 -91.48 +0.325 0.060 -0.525 -87.96 +0.320 0.080 -0.525 -87.96 +0.315 0.085 -0.520 -91.48 +0.310 0.095 -0.520 -91.48 +0.305 0.105 -0.515 -91.48 +0.300 0.110 -0.515 -87.96 +0.295 0.120 -0.510 -91.48 +0.290 0.125 -0.500 -87.96 +0.285 0.135 -0.500 -91.48 +0.280 0.145 -0.495 -87.96 +0.275 0.150 -0.490 -87.96 +0.265 0.155 -0.485 -87.96 +0.265 0.160 -0.485 -87.96 +0.255 0.165 -0.480 -87.96 +0.245 0.175 -0.475 -87.96 +0.240 0.180 -0.470 -87.96 +0.235 0.185 -0.470 -87.96 +0.225 0.190 -0.470 -87.96 +0.220 0.195 -0.465 -87.96 +0.210 0.200 -0.465 -87.96 +0.200 0.205 -0.460 -87.96 +0.195 0.210 -0.460 -87.96 +0.180 0.215 -0.460 -87.96 +0.175 0.220 -0.460 -87.96 +0.170 0.225 -0.460 -91.48 +0.160 0.230 -0.460 -87.96 +0.150 0.235 -0.460 -87.96 +0.140 0.240 -0.460 -87.96 +0.130 0.240 -0.460 -87.96 +0.120 0.250 -0.465 -91.48 +0.110 0.260 -0.465 -87.96 +0.100 0.260 -0.465 -87.96 +0.090 0.270 -0.470 -87.96 +0.080 0.280 -0.470 -87.96 +0.070 0.285 -0.480 -87.96 +0.060 0.295 -0.475 -87.96 +0.050 0.300 -0.475 -87.96 +0.045 0.310 -0.480 -87.96 +0.030 0.315 -0.480 -87.96 +0.020 0.330 -0.485 -91.48 +0.010 0.340 -0.485 -87.96 +0.005 0.350 -0.490 -87.96 +-0.010 0.360 -0.490 -87.96 +-0.015 0.365 -0.490 -87.96 +-0.020 0.375 -0.485 -87.96 +-0.030 0.385 -0.480 -87.96 +-0.035 0.395 -0.480 -87.96 +-0.045 0.400 -0.475 -87.96 +-0.050 0.410 -0.470 -87.96 +-0.055 0.415 -0.465 -87.96 +-0.060 0.425 -0.460 -87.96 +-0.065 0.430 -0.450 -87.96 +-0.070 0.435 -0.445 -81.94 +-0.070 0.440 -0.430 -87.96 +-0.075 0.440 -0.420 -87.96 +-0.070 0.445 -0.410 -87.96 +-0.070 0.450 -0.400 -87.96 +-0.075 0.455 -0.380 -87.96 +-0.070 0.455 -0.370 -87.96 +-0.070 0.460 -0.355 -81.94 +-0.065 0.465 -0.340 -81.94 +-0.065 0.465 -0.320 -81.94 +-0.060 0.475 -0.305 -87.96 +-0.060 0.480 -0.285 -87.96 +-0.055 0.475 -0.270 -81.94 +-0.050 0.480 -0.250 -87.96 +-0.050 0.475 -0.230 -81.94 +-0.045 0.470 -0.210 -87.96 +-0.045 0.465 -0.190 -81.94 +-0.040 0.460 -0.170 -87.96 +-0.035 0.455 -0.150 -81.94 +-0.030 0.445 -0.130 -81.94 +-0.030 0.435 -0.105 -81.94 +-0.025 0.425 -0.090 -81.94 +-0.025 0.420 -0.070 -81.94 +-0.025 0.405 -0.045 0.000 +-0.020 0.390 -0.030 -81.94 +-0.025 0.380 -0.015 -81.94 +-0.020 0.365 0.000 -81.94 +-0.020 0.350 0.020 -81.94 +-0.020 0.340 0.035 -81.94 +-0.025 0.330 0.055 -81.94 +-0.030 0.320 0.065 -81.94 +-0.035 0.305 0.080 0.000 +-0.035 0.290 0.090 0.000 +-0.040 0.285 0.100 0.000 +-0.050 0.270 0.110 0.000 +-0.050 0.260 0.120 0.000 +-0.055 0.250 0.120 0.000 +-0.060 0.240 0.130 -81.94 +-0.070 0.230 0.135 0.000 +-0.075 0.220 0.140 0.000 +-0.085 0.215 0.140 0.000 +-0.095 0.205 0.140 -81.94 +-0.100 0.200 0.140 0.000 +-0.115 0.190 0.140 0.000 +-0.120 0.185 0.140 0.000 +-0.130 0.180 0.140 0.000 +-0.140 0.175 0.135 0.000 +-0.150 0.170 0.130 0.000 +-0.155 0.165 0.130 0.000 +-0.165 0.165 0.125 0.000 +-0.175 0.160 0.115 0.000 +-0.185 0.160 0.110 0.000 +-0.190 0.160 0.105 -81.94 +-0.195 0.160 0.095 -81.94 +-0.205 0.160 0.090 -81.94 +-0.210 0.160 0.080 0.000 +-0.215 0.165 0.075 -81.94 +-0.220 0.170 0.070 -81.94 +-0.225 0.170 0.060 -81.94 +-0.230 0.180 0.050 -81.94 +-0.235 0.180 0.040 0.000 +-0.235 0.190 0.035 -81.94 +-0.235 0.195 0.030 -81.94 +-0.240 0.200 0.020 -81.94 +-0.235 0.205 0.015 0.000 +-0.235 0.215 0.010 0.000 +-0.235 0.220 0.005 0.000 +-0.230 0.235 0.000 0.000 +-0.225 0.245 -0.005 -81.94 +-0.220 0.250 -0.005 0.000 +-0.215 0.260 -0.010 0.000 +-0.210 0.270 -0.010 0.000 +-0.200 0.280 -0.015 0.000 +-0.190 0.290 -0.010 0.000 +-0.185 0.305 -0.015 0.000 +-0.170 0.310 -0.015 0.000 +-0.160 0.315 -0.015 -81.94 +-0.150 0.330 -0.015 -81.94 +-0.140 0.335 -0.010 0.000 +-0.125 0.350 -0.015 0.000 +-0.115 0.360 -0.015 0.000 +-0.105 0.360 -0.010 0.000 +-0.090 0.375 -0.015 0.000 +-0.080 0.380 -0.015 0.000 +-0.065 0.390 -0.015 -81.94 +-0.055 0.395 -0.015 0.000 +-0.040 0.405 -0.015 0.000 +-0.030 0.410 -0.015 -81.94 +-0.020 0.415 -0.020 -81.94 +-0.010 0.420 -0.020 0.000 +0.005 0.430 -0.020 -81.94 +0.010 0.435 -0.020 0.000 +0.025 0.435 -0.025 0.000 +0.035 0.440 -0.025 0.000 +0.045 0.445 -0.030 -81.94 +0.050 0.450 -0.030 0.000 +0.055 0.455 -0.035 0.000 +0.065 0.460 -0.040 -81.94 +0.070 0.460 -0.045 0.000 +0.075 0.470 -0.050 -81.94 +0.080 0.475 -0.055 -81.94 +0.085 0.480 -0.055 -81.94 +0.090 0.485 -0.060 0.000 +0.095 0.490 -0.065 -81.94 +0.095 0.500 -0.070 -81.94 +0.105 0.500 -0.075 -81.94 +0.105 0.510 -0.080 -81.94 +0.110 0.505 -0.085 -81.94 +0.110 0.510 -0.085 -81.94 +0.115 0.505 -0.095 -81.94 +0.115 0.510 -0.095 -81.94 +0.120 0.505 -0.100 -81.94 +0.125 0.505 -0.100 -81.94 +0.125 0.505 -0.105 0.000 +0.125 0.500 -0.105 -81.94 +0.130 0.495 -0.110 0.000 +0.130 0.495 -0.110 -81.94 +0.130 0.490 -0.110 -81.94 +0.135 0.485 -0.115 -81.94 +0.135 0.485 -0.115 -81.94 +0.135 0.475 -0.115 -81.94 +0.140 0.470 -0.120 -81.94 +0.140 0.470 -0.120 -81.94 +0.140 0.460 -0.120 -81.94 +0.145 0.460 -0.120 -81.94 +0.140 0.450 -0.120 -81.94 +0.145 0.450 -0.120 -81.94 +0.145 0.440 -0.120 -81.94 +0.150 0.435 -0.120 -81.94 +0.145 0.430 -0.115 -81.94 +0.150 0.425 -0.115 -81.94 +0.150 0.420 -0.115 -81.94 +0.155 0.415 -0.115 -81.94 +0.160 0.410 -0.110 -81.94 +0.160 0.405 -0.110 -81.94 +0.165 0.400 -0.105 -81.94 +0.165 0.395 -0.105 -81.94 +0.170 0.390 -0.105 -81.94 +0.170 0.385 -0.100 0.000 +0.170 0.385 -0.100 -81.94 +0.175 0.375 -0.100 -81.94 +0.180 0.375 -0.100 -81.94 +0.180 0.365 -0.095 -81.94 +0.185 0.360 -0.095 -81.94 +0.180 0.360 -0.095 -81.94 +0.185 0.350 -0.095 0.000 +0.195 0.345 -0.095 -81.94 +0.195 0.340 -0.095 -81.94 +0.200 0.335 -0.090 -81.94 +0.205 0.335 -0.090 0.000 +0.205 0.325 -0.090 0.000 +0.215 0.320 -0.085 -81.94 +0.215 0.315 -0.085 0.000 +0.220 0.310 -0.080 -81.94 +0.220 0.305 -0.080 -81.94 +0.230 0.300 -0.080 -81.94 +0.230 0.290 -0.075 -81.94 +0.235 0.285 -0.075 -81.94 +0.235 0.280 -0.065 0.000 +0.245 0.280 -0.065 -81.94 +0.245 0.275 -0.060 0.000 +0.250 0.265 -0.055 0.000 +0.250 0.255 -0.050 -81.94 +0.255 0.250 -0.045 -81.94 +0.260 0.245 -0.040 0.000 +0.260 0.235 -0.040 -81.94 +0.265 0.230 -0.030 -81.94 +0.265 0.225 -0.030 -81.94 +0.265 0.215 -0.020 0.000 +0.270 0.210 -0.020 -81.94 +0.270 0.200 -0.015 0.000 +0.270 0.195 -0.010 -81.94 +0.270 0.185 -0.010 0.000 +0.270 0.180 0.000 0.000 +0.270 0.170 0.000 0.000 +0.270 0.165 0.005 0.000 +0.265 0.155 0.005 0.000 +0.265 0.150 0.010 -81.94 +0.265 0.140 0.015 -81.94 +0.265 0.135 0.015 -81.94 +0.260 0.130 0.015 -87.96 +0.260 0.120 0.015 -81.94 +0.260 0.110 0.020 -81.94 +0.260 0.105 0.020 -81.94 +0.260 0.095 0.020 -81.94 +0.255 0.090 0.020 -81.94 +0.255 0.080 0.020 -81.94 +0.250 0.075 0.020 -81.94 +0.250 0.070 0.020 -81.94 +0.245 0.055 0.015 -81.94 +0.245 0.050 0.020 -81.94 +0.240 0.040 0.015 -81.94 +0.240 0.035 0.015 -81.94 +0.230 0.025 0.015 -81.94 +0.230 0.015 0.015 -87.96 +0.225 0.010 0.015 -81.94 +0.220 0.000 0.005 0.000 +0.215 -0.005 0.000 0.000 +0.210 -0.015 -0.005 -81.94 +0.205 -0.020 -0.010 0.000 +0.200 -0.030 -0.015 0.000 +0.195 -0.030 -0.025 -81.94 +0.185 -0.040 -0.035 0.000 +0.180 -0.040 -0.040 0.000 +0.175 -0.045 -0.050 -81.94 +0.165 -0.045 -0.065 -81.94 +0.155 -0.045 -0.075 0.000 +0.150 -0.045 -0.080 0.000 +0.140 -0.045 -0.090 -81.94 +0.135 -0.050 -0.105 -81.94 +0.125 -0.050 -0.110 -81.94 +0.115 -0.050 -0.120 -81.94 +0.110 -0.045 -0.130 -81.94 +0.100 -0.045 -0.135 -81.94 +0.090 -0.050 -0.145 -81.94 +0.085 -0.045 -0.155 -81.94 +0.075 -0.050 -0.165 -81.94 +0.070 -0.050 -0.170 -81.94 +0.060 -0.050 -0.180 -81.94 +0.050 -0.050 -0.185 -81.94 +0.040 -0.055 -0.190 -81.94 +0.030 -0.055 -0.195 -81.94 +0.020 -0.055 -0.205 -87.96 +0.010 -0.055 -0.210 -81.94 +0.005 -0.055 -0.210 -87.96 +-0.010 -0.060 -0.215 -81.94 +-0.015 -0.065 -0.220 -81.94 +-0.025 -0.065 -0.220 -81.94 +-0.035 -0.075 -0.220 -81.94 +-0.040 -0.080 -0.225 -87.96 +-0.050 -0.085 -0.220 -81.94 +-0.055 -0.090 -0.220 -87.96 +-0.060 -0.100 -0.215 -81.94 +-0.060 -0.110 -0.215 -87.96 +-0.075 -0.120 -0.210 -81.94 +-0.070 -0.130 -0.210 -81.94 +-0.070 -0.140 -0.205 -81.94 +-0.075 -0.155 -0.200 -81.94 +-0.075 -0.160 -0.195 -87.96 +-0.075 -0.170 -0.190 -81.94 +-0.075 -0.185 -0.185 -81.94 +-0.075 -0.195 -0.175 -81.94 +-0.075 -0.200 -0.170 -87.96 +-0.070 -0.215 -0.165 -81.94 +-0.070 -0.225 -0.155 -81.94 +-0.065 -0.230 -0.150 -81.94 +-0.060 -0.240 -0.140 -81.94 +-0.060 -0.250 -0.135 -81.94 +-0.055 -0.255 -0.125 -81.94 +-0.050 -0.270 -0.115 -81.94 +-0.045 -0.275 -0.110 0.000 +-0.045 -0.285 -0.100 0.000 +-0.030 -0.295 -0.090 -81.94 +-0.025 -0.300 -0.080 -81.94 +-0.020 -0.310 -0.070 0.000 +-0.010 -0.315 -0.065 0.000 +0.000 -0.325 -0.055 0.000 +0.005 -0.335 -0.050 0.000 +0.010 -0.340 -0.045 0.000 +0.020 -0.350 -0.040 -81.94 +0.025 -0.355 -0.035 0.000 +0.035 -0.365 -0.030 0.000 +0.045 -0.365 -0.025 0.000 +0.050 -0.375 -0.020 0.000 +0.055 -0.375 -0.025 -81.94 +0.060 -0.380 -0.020 0.000 +0.070 -0.380 -0.020 0.000 +0.070 -0.380 -0.020 0.000 +0.080 -0.380 -0.020 0.000 +0.080 -0.380 -0.020 0.000 +0.085 -0.380 -0.025 0.000 +0.090 -0.375 -0.030 0.000 +0.090 -0.370 -0.030 81.94 +0.095 -0.365 -0.035 0.000 +0.100 -0.360 -0.045 0.000 +0.100 -0.355 -0.050 0.000 +0.100 -0.345 -0.055 0.000 +0.105 -0.340 -0.065 0.000 +0.105 -0.325 -0.075 0.000 +0.110 -0.315 -0.085 0.000 +0.110 -0.305 -0.090 0.000 +0.115 -0.295 -0.105 0.000 +0.115 -0.285 -0.110 0.000 +0.115 -0.275 -0.125 0.000 +0.120 -0.260 -0.135 -81.94 +0.120 -0.250 -0.145 -81.94 +0.125 -0.240 -0.155 -81.94 +0.125 -0.225 -0.165 -81.94 +0.130 -0.220 -0.175 -81.94 +0.135 -0.210 -0.185 -81.94 +0.135 -0.200 -0.190 -81.94 +0.135 -0.190 -0.200 -81.94 +0.145 -0.180 -0.205 -81.94 +0.145 -0.175 -0.220 -81.94 +0.150 -0.165 -0.225 -81.94 +0.155 -0.160 -0.230 -81.94 +0.160 -0.150 -0.235 -81.94 +0.165 -0.145 -0.240 -81.94 +0.175 -0.130 -0.250 -81.94 +0.180 -0.130 -0.250 -81.94 +0.185 -0.120 -0.255 -81.94 +0.190 -0.115 -0.260 -81.94 +0.200 -0.110 -0.265 -87.96 +0.205 -0.105 -0.265 -81.94 +0.210 -0.100 -0.270 -81.94 +0.220 -0.095 -0.270 -81.94 +0.230 -0.090 -0.265 -81.94 +0.240 -0.085 -0.270 -81.94 +0.245 -0.085 -0.270 -81.94 +0.255 -0.080 -0.265 -87.96 +0.255 -0.075 -0.260 -81.94 +0.265 -0.075 -0.265 -87.96 +0.275 -0.065 -0.255 -81.94 +0.280 -0.065 -0.255 -81.94 +0.285 -0.060 -0.250 -81.94 +0.290 -0.055 -0.245 -81.94 +0.300 -0.055 -0.245 -87.96 +0.305 -0.050 -0.240 -81.94 +0.310 -0.050 -0.235 -87.96 +0.315 -0.045 -0.235 -81.94 +0.315 -0.045 -0.225 -81.94 +0.325 -0.040 -0.225 -81.94 +0.325 -0.040 -0.225 -81.94 +0.325 -0.035 -0.220 -81.94 +0.325 -0.040 -0.220 -81.94 +0.325 -0.035 -0.220 -87.96 +0.325 -0.030 -0.215 -81.94 +0.325 -0.035 -0.215 -81.94 +0.325 -0.030 -0.215 -81.94 +0.320 -0.030 -0.210 -81.94 +0.320 -0.035 -0.215 -81.94 +0.315 -0.030 -0.215 -81.94 +0.310 -0.030 -0.215 -81.94 +0.305 -0.030 -0.215 -81.94 +0.300 -0.030 -0.215 -81.94 +0.290 -0.030 -0.220 -87.96 +0.285 -0.030 -0.220 -81.94 +0.275 -0.030 -0.220 -81.94 +0.270 -0.030 -0.225 -87.96 +0.265 -0.025 -0.225 -87.96 +0.255 -0.025 -0.230 -87.96 +0.245 -0.025 -0.235 -81.94 +0.235 -0.025 -0.235 -81.94 +0.225 -0.020 -0.240 -81.94 +0.220 -0.020 -0.245 -87.96 +0.205 -0.020 -0.250 -81.94 +0.200 -0.015 -0.250 -87.96 +0.190 -0.015 -0.255 -81.94 +0.180 -0.020 -0.260 -87.96 +0.175 -0.020 -0.265 -87.96 +0.160 -0.020 -0.270 -87.96 +0.150 -0.015 -0.270 -87.96 +0.140 -0.015 -0.275 -87.96 +0.130 -0.020 -0.280 -81.94 +0.125 -0.020 -0.280 -87.96 +0.115 -0.020 -0.280 -81.94 +0.110 -0.020 -0.280 -87.96 +0.095 -0.020 -0.285 -87.96 +0.090 -0.025 -0.285 -87.96 +0.080 -0.025 -0.290 -87.96 +0.075 -0.030 -0.285 -87.96 +0.065 -0.030 -0.290 -87.96 +0.060 -0.030 -0.290 -87.96 +0.055 -0.035 -0.295 -87.96 +0.045 -0.040 -0.290 -87.96 +0.040 -0.045 -0.295 -87.96 +0.030 -0.050 -0.290 -87.96 +0.025 -0.050 -0.290 -87.96 +0.020 -0.055 -0.295 -87.96 +0.015 -0.060 -0.290 -87.96 +0.010 -0.060 -0.285 -87.96 +0.000 -0.070 -0.290 -87.96 +0.000 -0.075 -0.285 -87.96 +-0.010 -0.080 -0.275 -81.94 +-0.010 -0.085 -0.275 -87.96 +-0.015 -0.090 -0.270 -87.96 +-0.020 -0.100 -0.265 -81.94 +-0.025 -0.110 -0.260 -87.96 +-0.025 -0.115 -0.255 -87.96 +-0.030 -0.120 -0.250 -87.96 +-0.030 -0.130 -0.245 -87.96 +-0.035 -0.135 -0.235 -87.96 +-0.035 -0.145 -0.230 -81.94 +-0.035 -0.150 -0.220 -87.96 +-0.040 -0.160 -0.215 -87.96 +-0.040 -0.170 -0.205 -81.94 +-0.040 -0.175 -0.195 -87.96 +-0.045 -0.185 -0.190 -81.94 +-0.045 -0.190 -0.180 -87.96 +-0.045 -0.190 -0.175 -81.94 +-0.045 -0.195 -0.170 -81.94 +-0.045 -0.200 -0.160 -81.94 +-0.050 -0.200 -0.155 -81.94 +-0.055 -0.205 -0.150 -81.94 +-0.050 -0.205 -0.145 -81.94 +-0.055 -0.205 -0.140 -81.94 +-0.055 -0.210 -0.135 -81.94 +-0.055 -0.205 -0.130 -81.94 +-0.060 -0.205 -0.125 -81.94 +-0.060 -0.205 -0.125 -81.94 +-0.065 -0.205 -0.120 -81.94 +-0.060 -0.205 -0.115 -81.94 +-0.060 -0.200 -0.115 -81.94 +-0.065 -0.195 -0.115 -81.94 +-0.065 -0.200 -0.125 -81.94 +-0.070 -0.200 -0.165 -81.94 +-0.095 -0.215 -0.280 -87.96 +-0.140 -0.265 -0.450 -87.96 +-0.170 -0.340 -0.560 -91.48 +-0.170 -0.425 -0.550 -91.48 +-0.150 -0.485 -0.490 -87.96 +-0.140 -0.510 -0.465 -91.48 +-0.135 -0.495 -0.455 -87.96 +-0.125 -0.470 -0.445 -87.96 +-0.105 -0.435 -0.430 -87.96 +-0.080 -0.400 -0.420 -87.96 +-0.060 -0.380 -0.405 -87.96 +-0.045 -0.365 -0.385 -87.96 +-0.035 -0.345 -0.355 -87.96 +-0.025 -0.325 -0.325 -81.94 +-0.005 -0.300 -0.290 -87.96 +0.010 -0.280 -0.245 -87.96 +0.010 -0.270 -0.200 -81.94 +0.005 -0.270 -0.155 -81.94 +-0.010 -0.275 -0.115 -81.94 +-0.020 -0.275 -0.075 -81.94 +-0.040 -0.260 -0.045 -81.94 +-0.045 -0.230 -0.015 -81.94 +-0.045 -0.190 0.010 0.000 +-0.040 -0.150 0.040 -81.94 +-0.035 -0.120 0.065 -81.94 +-0.040 -0.105 0.090 0.000 +-0.045 -0.090 0.110 -81.94 +-0.045 -0.070 0.135 0.000 +-0.045 -0.055 0.160 0.000 +-0.045 -0.030 0.185 0.000 +-0.045 0.000 0.200 -81.94 +-0.050 0.040 0.215 0.000 +-0.045 0.075 0.230 81.94 +-0.035 0.115 0.245 0.000 +-0.035 0.150 0.245 81.94 +-0.035 0.185 0.250 81.94 +-0.030 0.215 0.255 0.000 +-0.020 0.250 0.265 81.94 +-0.015 0.280 0.275 81.94 +-0.010 0.315 0.275 0.000 +-0.010 0.345 0.280 81.94 +-0.005 0.375 0.280 81.94 +0.005 0.400 0.285 81.94 +0.005 0.425 0.285 0.000 +0.005 0.445 0.285 81.94 +0.005 0.470 0.285 81.94 +0.010 0.495 0.295 81.94 +0.010 0.515 0.305 81.94 +0.010 0.540 0.310 87.96 +0.010 0.565 0.320 81.94 +0.005 0.585 0.325 81.94 +0.005 0.605 0.325 81.94 +0.000 0.620 0.330 81.94 +-0.005 0.630 0.330 81.94 +-0.010 0.640 0.335 0.000 +-0.015 0.650 0.340 81.94 +-0.010 0.665 0.345 0.000 +-0.010 0.675 0.360 81.94 +-0.015 0.690 0.360 81.94 +-0.015 0.710 0.360 0.000 +-0.020 0.725 0.355 81.94 +-0.020 0.750 0.345 0.000 +-0.020 0.765 0.340 81.94 +-0.020 0.785 0.330 81.94 +-0.015 0.810 0.330 81.94 +-0.010 0.830 0.325 81.94 +0.000 0.855 0.330 81.94 +0.000 0.875 0.330 81.94 +-0.005 0.895 0.330 81.94 +0.000 0.915 0.335 0.000 +-0.005 0.930 0.335 0.000 +-0.005 0.945 0.335 0.000 +-0.005 0.960 0.340 0.000 +-0.005 0.980 0.335 0.000 +-0.005 0.995 0.340 0.000 +-0.005 1.005 0.340 0.000 +-0.005 1.020 0.345 81.94 +0.000 1.035 0.350 0.000 +-0.005 1.045 0.355 0.000 +-0.005 1.060 0.350 0.000 +-0.010 1.075 0.350 0.000 +-0.015 1.085 0.350 0.000 +-0.015 1.095 0.350 0.000 +-0.025 1.100 0.350 0.000 +-0.025 1.105 0.350 0.000 +-0.035 1.110 0.355 81.94 +-0.035 1.115 0.355 0.000 +-0.045 1.115 0.355 0.000 +-0.050 1.120 0.360 0.000 +-0.055 1.125 0.360 0.000 +-0.060 1.125 0.360 0.000 +-0.065 1.125 0.360 0.000 +-0.065 1.125 0.360 0.000 +-0.075 1.125 0.360 81.94 +-0.075 1.130 0.360 81.94 +-0.075 1.125 0.360 0.000 +-0.075 1.125 0.360 81.94 +-0.075 1.125 0.360 0.000 +-0.075 1.125 0.355 0.000 +-0.080 1.125 0.355 81.94 +-0.080 1.120 0.350 81.94 +-0.075 1.120 0.350 0.000 +-0.075 1.110 0.350 0.000 +-0.075 1.105 0.350 0.000 +-0.075 1.100 0.355 81.94 +-0.070 1.090 0.355 0.000 +-0.070 1.085 0.355 81.94 +-0.070 1.075 0.360 81.94 +-0.070 1.065 0.355 0.000 +-0.075 1.055 0.355 81.94 +-0.070 1.045 0.355 81.94 +-0.075 1.030 0.355 81.94 +-0.075 1.020 0.355 0.000 +-0.075 1.010 0.355 0.000 +-0.075 1.000 0.355 0.000 +-0.075 0.985 0.355 0.000 +-0.080 0.970 0.360 81.94 +-0.080 0.955 0.355 0.000 +-0.085 0.945 0.355 81.94 +-0.085 0.925 0.345 81.94 +-0.085 0.910 0.345 0.000 +-0.090 0.890 0.340 81.94 +-0.085 0.880 0.340 81.94 +-0.085 0.860 0.335 0.000 +-0.085 0.840 0.335 0.000 +-0.085 0.820 0.330 81.94 +-0.085 0.800 0.330 81.94 +-0.080 0.775 0.325 81.94 +-0.080 0.755 0.325 81.94 +-0.080 0.725 0.320 81.94 +-0.075 0.700 0.320 81.94 +-0.075 0.670 0.315 87.96 +-0.070 0.645 0.320 81.94 +-0.070 0.610 0.315 81.94 +-0.070 0.585 0.315 81.94 +-0.070 0.555 0.310 81.94 +-0.060 0.525 0.305 81.94 +-0.060 0.490 0.305 87.96 +-0.055 0.460 0.295 81.94 +-0.050 0.425 0.290 81.94 +-0.050 0.385 0.285 81.94 +-0.050 0.350 0.280 81.94 +-0.050 0.315 0.280 81.94 +-0.045 0.280 0.270 81.94 +-0.045 0.245 0.265 81.94 +-0.040 0.210 0.255 81.94 +-0.040 0.180 0.250 81.94 +-0.040 0.140 0.245 81.94 +-0.035 0.105 0.235 81.94 +-0.030 0.075 0.235 81.94 +-0.030 0.040 0.225 81.94 +-0.030 0.010 0.225 81.94 +-0.030 -0.025 0.225 81.94 +-0.030 -0.055 0.215 0.000 +-0.025 -0.085 0.215 81.94 +-0.025 -0.120 0.210 81.94 +-0.025 -0.155 0.210 81.94 +-0.020 -0.185 0.205 0.000 +-0.025 -0.215 0.205 81.94 +-0.020 -0.250 0.205 81.94 +-0.020 -0.280 0.205 81.94 +-0.015 -0.310 0.205 81.94 +-0.020 -0.335 0.205 0.000 +-0.015 -0.365 0.200 81.94 +-0.015 -0.390 0.200 0.000 +-0.015 -0.420 0.195 81.94 +-0.015 -0.445 0.195 0.000 +-0.020 -0.470 0.195 81.94 +-0.015 -0.495 0.195 0.000 +-0.020 -0.520 0.190 81.94 +-0.020 -0.540 0.185 81.94 +-0.020 -0.565 0.180 0.000 +-0.015 -0.585 0.180 81.94 +-0.020 -0.605 0.170 0.000 +-0.020 -0.620 0.170 81.94 +-0.020 -0.640 0.165 81.94 +-0.020 -0.655 0.160 0.000 +-0.025 -0.670 0.160 0.000 +-0.020 -0.690 0.155 0.000 +-0.020 -0.710 0.150 81.94 +-0.020 -0.725 0.150 0.000 +-0.020 -0.740 0.150 0.000 +-0.020 -0.750 0.145 0.000 +-0.020 -0.765 0.145 81.94 +-0.015 -0.780 0.145 0.000 +-0.020 -0.795 0.145 81.94 +-0.020 -0.810 0.140 81.94 +-0.020 -0.820 0.140 0.000 +-0.015 -0.835 0.140 0.000 +-0.015 -0.845 0.140 0.000 +-0.015 -0.860 0.135 81.94 +-0.015 -0.865 0.135 0.000 +-0.015 -0.885 0.135 0.000 +-0.015 -0.890 0.130 0.000 +-0.020 -0.905 0.130 0.000 +-0.015 -0.915 0.125 0.000 +-0.015 -0.930 0.125 81.94 +-0.015 -0.940 0.120 0.000 +-0.020 -0.965 0.125 0.000 +-0.015 -0.990 0.120 81.94 +-0.015 -1.025 0.125 0.000 +-0.015 -1.080 0.125 0.000 +-0.025 -1.180 0.130 0.000 +-0.045 -1.370 0.165 81.94 +-0.065 -1.575 0.200 81.94 +-0.065 -1.660 0.210 81.94 +-0.045 -1.610 0.160 81.94 +-0.035 -1.525 0.080 81.94 +-0.030 -1.430 0.020 0.000 +-0.030 -1.390 0.000 0.000 +-0.040 -1.410 0.025 0.000 +-0.040 -1.430 0.065 0.000 +-0.035 -1.400 0.075 81.94 +-0.015 -1.350 0.055 0.000 +0.005 -1.360 0.020 0.000 +0.010 -1.410 -0.005 81.94 +0.025 -1.445 -0.020 0.000 +0.030 -1.435 -0.035 81.94 +0.045 -1.395 -0.045 0.000 +0.045 -1.320 -0.045 81.94 +0.035 -1.230 -0.040 0.000 +0.015 -1.140 -0.010 0.000 +0.005 -1.050 0.020 -81.94 +0.005 -0.955 0.050 0.000 +0.000 -0.875 0.060 0.000 +0.000 -0.810 0.060 0.000 +-0.005 -0.760 0.060 0.000 +-0.005 -0.720 0.080 0.000 +-0.015 -0.665 0.105 81.94 +-0.015 -0.595 0.120 81.94 +-0.020 -0.500 0.135 0.000 +-0.035 -0.395 0.155 81.94 +-0.050 -0.295 0.165 81.94 +-0.065 -0.210 0.190 81.94 +-0.075 -0.145 0.215 81.94 +-0.090 -0.100 0.230 81.94 +-0.095 -0.070 0.235 81.94 +-0.105 -0.055 0.240 87.96 +-0.110 -0.035 0.245 81.94 +-0.115 -0.015 0.250 81.94 +-0.115 0.025 0.245 87.96 +-0.115 0.065 0.245 81.94 +-0.120 0.105 0.250 87.96 +-0.120 0.135 0.255 81.94 +-0.125 0.155 0.265 87.96 +-0.120 0.155 0.260 81.94 +-0.115 0.150 0.255 81.94 +-0.105 0.135 0.250 81.94 +-0.100 0.115 0.240 81.94 +-0.090 0.095 0.230 81.94 +-0.080 0.090 0.225 81.94 +-0.075 0.095 0.230 87.96 +-0.070 0.105 0.230 87.96 +-0.070 0.120 0.235 81.94 +-0.060 0.125 0.235 81.94 +-0.055 0.135 0.240 81.94 +-0.055 0.125 0.235 87.96 +-0.055 0.125 0.235 81.94 +-0.055 0.115 0.230 0.000 +-0.055 0.115 0.235 81.94 +-0.055 0.120 0.235 81.94 +-0.060 0.145 0.245 81.94 +-0.070 0.175 0.255 81.94 +-0.075 0.210 0.255 81.94 +-0.085 0.250 0.265 81.94 +-0.090 0.280 0.275 81.94 +-0.105 0.310 0.285 81.94 +-0.105 0.325 0.295 81.94 +-0.115 0.345 0.300 81.94 +-0.125 0.355 0.305 87.96 +-0.125 0.375 0.320 81.94 +-0.135 0.395 0.325 81.94 +-0.135 0.420 0.340 81.94 +-0.140 0.445 0.350 81.94 +-0.140 0.465 0.360 0.000 +-0.140 0.475 0.375 81.94 +-0.145 0.480 0.385 81.94 +-0.140 0.475 0.395 81.94 +-0.135 0.455 0.405 81.94 +-0.125 0.435 0.405 81.94 +-0.115 0.405 0.410 81.94 +-0.105 0.385 0.410 81.94 +-0.095 0.355 0.410 81.94 +-0.085 0.325 0.415 87.96 +-0.075 0.305 0.420 81.94 +-0.060 0.270 0.420 87.96 +-0.055 0.240 0.420 81.94 +-0.045 0.200 0.420 81.94 +-0.035 0.160 0.415 81.94 +-0.025 0.115 0.410 81.94 +-0.015 0.075 0.405 81.94 +-0.005 0.030 0.400 81.94 +0.000 0.000 0.400 81.94 +0.005 -0.025 0.400 81.94 +0.010 -0.045 0.395 81.94 +0.010 -0.060 0.395 81.94 +0.015 -0.075 0.390 81.94 +0.015 -0.085 0.390 87.96 +0.020 -0.100 0.385 0.000 +0.025 -0.110 0.390 81.94 +0.020 -0.120 0.385 81.94 +0.020 -0.120 0.390 81.94 +0.025 -0.120 0.390 81.94 +0.030 -0.110 0.400 81.94 +0.025 -0.100 0.405 81.94 +0.030 -0.080 0.410 81.94 +0.030 -0.065 0.415 87.96 +0.035 -0.050 0.425 81.94 +0.040 -0.030 0.435 87.96 +0.050 -0.015 0.440 81.94 +0.050 -0.005 0.455 81.94 +0.055 0.010 0.460 81.94 +0.060 0.025 0.470 81.94 +0.065 0.040 0.475 87.96 +0.075 0.055 0.485 81.94 +0.080 0.070 0.495 87.96 +0.090 0.085 0.500 81.94 +0.090 0.095 0.510 87.96 +0.100 0.105 0.515 87.96 +0.105 0.110 0.520 87.96 +0.115 0.110 0.520 81.94 +0.115 0.110 0.525 87.96 +0.125 0.105 0.530 87.96 +0.130 0.105 0.525 87.96 +0.135 0.105 0.530 87.96 +0.140 0.100 0.525 81.94 +0.145 0.100 0.525 87.96 +0.150 0.090 0.525 87.96 +0.155 0.085 0.525 81.94 +0.160 0.080 0.525 87.96 +0.170 0.070 0.520 87.96 +0.175 0.055 0.515 81.94 +0.180 0.045 0.515 87.96 +0.185 0.040 0.510 87.96 +0.185 0.030 0.505 87.96 +0.190 0.020 0.500 87.96 +0.195 0.020 0.495 81.94 +0.205 0.010 0.495 81.94 +0.205 0.015 0.490 81.94 +0.205 0.005 0.485 87.96 +0.210 0.005 0.480 81.94 +0.215 0.000 0.475 81.94 +0.215 0.000 0.475 81.94 +0.215 -0.005 0.465 87.96 +0.220 -0.005 0.465 81.94 +0.220 -0.010 0.460 81.94 +0.215 -0.005 0.455 81.94 +0.215 -0.010 0.450 81.94 +0.215 -0.005 0.445 81.94 +0.210 -0.005 0.440 81.94 +0.215 0.000 0.435 81.94 +0.215 0.000 0.430 81.94 +0.210 -0.005 0.420 81.94 +0.210 -0.010 0.415 81.94 +0.210 -0.015 0.415 81.94 +0.210 -0.020 0.405 0.000 +0.210 -0.025 0.400 81.94 +0.210 -0.030 0.390 81.94 +0.215 -0.035 0.390 81.94 +0.215 -0.045 0.380 81.94 +0.215 -0.050 0.370 0.000 +0.220 -0.060 0.365 0.000 +0.220 -0.070 0.350 0.000 +0.220 -0.080 0.345 81.94 +0.225 -0.095 0.335 81.94 +0.230 -0.105 0.325 81.94 +0.225 -0.120 0.320 81.94 +0.230 -0.125 0.305 81.94 +0.230 -0.135 0.300 81.94 +0.230 -0.145 0.285 81.94 +0.230 -0.155 0.280 81.94 +0.230 -0.160 0.265 0.000 +0.225 -0.170 0.255 81.94 +0.225 -0.180 0.240 0.000 +0.225 -0.190 0.235 0.000 +0.225 -0.195 0.220 81.94 +0.215 -0.195 0.215 0.000 +0.215 -0.200 0.200 0.000 +0.215 -0.200 0.190 0.000 +0.205 -0.205 0.180 0.000 +0.205 -0.205 0.170 0.000 +0.200 -0.200 0.165 0.000 +0.200 -0.200 0.155 0.000 +0.195 -0.195 0.145 0.000 +0.190 -0.195 0.135 0.000 +0.185 -0.195 0.130 0.000 +0.180 -0.190 0.125 0.000 +0.175 -0.190 0.115 0.000 +0.175 -0.180 0.110 0.000 +0.170 -0.175 0.100 0.000 +0.165 -0.170 0.100 -81.94 +0.165 -0.165 0.095 0.000 +0.160 -0.160 0.085 -81.94 +0.155 -0.155 0.085 0.000 +0.155 -0.150 0.080 -81.94 +0.155 -0.145 0.075 -81.94 +0.150 -0.145 0.065 0.000 +0.145 -0.140 0.065 -81.94 +0.145 -0.135 0.060 -81.94 +0.140 -0.135 0.055 0.000 +0.140 -0.125 0.050 -81.94 +0.135 -0.125 0.040 0.000 +0.135 -0.125 0.040 -81.94 +0.130 -0.125 0.035 -81.94 +0.125 -0.125 0.025 0.000 +0.125 -0.125 0.025 -81.94 +0.120 -0.125 0.020 -81.94 +0.120 -0.125 0.010 0.000 +0.110 -0.130 0.005 0.000 +0.105 -0.125 -0.005 0.000 +0.105 -0.130 -0.010 -81.94 +0.105 -0.130 -0.015 -81.94 +0.095 -0.135 -0.020 0.000 +0.095 -0.135 -0.030 0.000 +0.090 -0.135 -0.035 0.000 +0.085 -0.140 -0.040 0.000 +0.080 -0.140 -0.050 -81.94 +0.075 -0.145 -0.055 0.000 +0.070 -0.145 -0.060 -81.94 +0.065 -0.140 -0.065 0.000 +0.065 -0.140 -0.070 -81.94 +0.060 -0.140 -0.075 -81.94 +0.055 -0.140 -0.080 0.000 +0.050 -0.140 -0.080 0.000 +0.045 -0.140 -0.085 -81.94 +0.045 -0.135 -0.090 -81.94 +0.040 -0.135 -0.090 -81.94 +0.035 -0.135 -0.095 -81.94 +0.030 -0.130 -0.095 0.000 +0.025 -0.130 -0.100 -81.94 +0.020 -0.130 -0.105 0.000 +0.020 -0.130 -0.105 -81.94 +0.020 -0.125 -0.105 -81.94 +0.010 -0.115 -0.110 -81.94 +0.010 -0.120 -0.110 -81.94 +0.005 -0.115 -0.110 -81.94 +0.000 -0.115 -0.110 0.000 +0.000 -0.115 -0.115 0.000 +-0.005 -0.115 -0.115 0.000 +-0.010 -0.120 -0.115 -81.94 +-0.010 -0.115 -0.115 -81.94 +-0.015 -0.115 -0.115 0.000 +-0.020 -0.115 -0.115 -81.94 +-0.020 -0.115 -0.120 -81.94 +-0.020 -0.120 -0.115 -81.94 +-0.025 -0.115 -0.115 0.000 +-0.030 -0.115 -0.120 -81.94 +-0.030 -0.120 -0.120 -81.94 +-0.035 -0.120 -0.115 -81.94 +-0.035 -0.120 -0.120 0.000 +-0.035 -0.125 -0.120 -81.94 +-0.040 -0.120 -0.120 0.000 +-0.040 -0.120 -0.115 -81.94 +-0.045 -0.125 -0.120 -81.94 +-0.045 -0.125 -0.120 0.000 +-0.050 -0.120 -0.120 -81.94 +-0.050 -0.125 -0.115 0.000 +-0.055 -0.120 -0.115 -81.94 +-0.055 -0.120 -0.115 -81.94 +-0.060 -0.120 -0.120 -81.94 +-0.060 -0.120 -0.115 -81.94 +-0.065 -0.120 -0.115 0.000 +-0.065 -0.115 -0.115 -81.94 +-0.065 -0.115 -0.110 0.000 +-0.065 -0.115 -0.110 -81.94 +-0.070 -0.115 -0.110 0.000 +-0.070 -0.110 -0.110 -81.94 +-0.075 -0.110 -0.105 -81.94 +-0.075 -0.110 -0.110 -81.94 +-0.080 -0.105 -0.105 -81.94 +-0.080 -0.105 -0.105 -81.94 +-0.085 -0.100 -0.105 -81.94 +-0.085 -0.100 -0.105 -81.94 +-0.090 -0.095 -0.105 -81.94 +-0.090 -0.095 -0.105 -81.94 +-0.095 -0.090 -0.100 -81.94 +-0.095 -0.085 -0.100 -81.94 +-0.100 -0.085 -0.100 -81.94 +-0.105 -0.085 -0.100 0.000 +-0.105 -0.080 -0.100 -81.94 +-0.110 -0.080 -0.100 -81.94 +-0.105 -0.075 -0.105 -81.94 +-0.115 -0.070 -0.100 0.000 +-0.115 -0.070 -0.100 -81.94 +-0.120 -0.070 -0.100 -81.94 +-0.120 -0.070 -0.100 0.000 +-0.120 -0.075 -0.105 0.000 +-0.125 -0.070 -0.110 -81.94 +-0.130 -0.075 -0.105 0.000 +-0.125 -0.075 -0.110 -81.94 +-0.135 -0.075 -0.110 -81.94 +-0.135 -0.075 -0.115 -81.94 +-0.140 -0.075 -0.115 0.000 +-0.140 -0.075 -0.120 -81.94 +-0.140 -0.080 -0.125 -81.94 +-0.145 -0.080 -0.130 -81.94 +-0.150 -0.080 -0.130 -81.94 +-0.150 -0.080 -0.130 -81.94 +-0.155 -0.085 -0.135 -81.94 +-0.155 -0.085 -0.140 -81.94 +-0.155 -0.085 -0.140 -81.94 +-0.160 -0.090 -0.145 -81.94 +-0.160 -0.090 -0.150 -81.94 +-0.160 -0.090 -0.150 -81.94 +-0.165 -0.090 -0.155 -81.94 +-0.165 -0.090 -0.160 -81.94 +-0.165 -0.090 -0.160 -81.94 +-0.170 -0.090 -0.165 -81.94 +-0.165 -0.085 -0.165 -81.94 +-0.170 -0.085 -0.170 -87.96 +-0.170 -0.085 -0.170 -81.94 +-0.170 -0.085 -0.175 -81.94 +-0.175 -0.080 -0.175 -81.94 +-0.175 -0.080 -0.180 -87.96 +-0.180 -0.075 -0.180 -81.94 +-0.175 -0.075 -0.185 -81.94 +-0.175 -0.070 -0.185 -87.96 +-0.180 -0.065 -0.185 -87.96 +-0.175 -0.065 -0.190 -87.96 +-0.180 -0.060 -0.195 -81.94 +-0.175 -0.060 -0.195 -87.96 +-0.175 -0.055 -0.200 -87.96 +-0.180 -0.050 -0.200 -81.94 +-0.175 -0.045 -0.205 -87.96 +-0.175 -0.045 -0.210 -87.96 +-0.175 -0.040 -0.215 -87.96 +-0.175 -0.040 -0.215 -87.96 +-0.175 -0.040 -0.215 -87.96 +-0.175 -0.035 -0.220 -87.96 +-0.175 -0.040 -0.225 -81.94 +-0.170 -0.035 -0.230 -87.96 +-0.175 -0.035 -0.230 -87.96 +-0.170 -0.030 -0.235 -87.96 +-0.170 -0.030 -0.240 -87.96 +-0.170 -0.030 -0.245 -87.96 +-0.170 -0.035 -0.245 -87.96 +-0.165 -0.030 -0.250 -87.96 +-0.165 -0.035 -0.255 -87.96 +-0.165 -0.035 -0.260 -87.96 +-0.160 -0.035 -0.265 -87.96 +-0.165 -0.040 -0.270 -87.96 +-0.160 -0.035 -0.275 -87.96 +-0.160 -0.040 -0.275 -87.96 +-0.160 -0.040 -0.280 -87.96 +-0.160 -0.040 -0.285 -87.96 +-0.160 -0.040 -0.290 -87.96 +-0.160 -0.040 -0.295 -87.96 +-0.155 -0.040 -0.300 -87.96 +-0.155 -0.040 -0.305 -91.48 +-0.155 -0.045 -0.305 -87.96 +-0.155 -0.045 -0.305 -91.48 +-0.160 -0.045 -0.310 -87.96 +-0.155 -0.045 -0.315 -87.96 +-0.155 -0.050 -0.320 -81.94 +-0.150 -0.045 -0.330 -87.96 +-0.150 -0.045 -0.330 -87.96 +-0.150 -0.050 -0.330 -87.96 +-0.150 -0.050 -0.330 -87.96 +-0.150 -0.050 -0.335 -87.96 +-0.145 -0.050 -0.340 -87.96 +-0.145 -0.050 -0.340 -87.96 +-0.145 -0.055 -0.345 -87.96 +-0.140 -0.055 -0.345 -87.96 +-0.140 -0.055 -0.350 -87.96 +-0.140 -0.055 -0.350 -87.96 +-0.135 -0.055 -0.350 -87.96 +-0.135 -0.055 -0.350 -91.48 +-0.135 -0.060 -0.355 -87.96 +-0.130 -0.055 -0.355 -87.96 +-0.130 -0.060 -0.360 -87.96 +-0.125 -0.055 -0.365 -87.96 +-0.125 -0.055 -0.360 -87.96 +-0.125 -0.055 -0.360 -87.96 +-0.125 -0.055 -0.360 -87.96 +-0.120 -0.055 -0.360 -87.96 +-0.120 -0.050 -0.360 -87.96 +-0.115 -0.050 -0.360 -87.96 +-0.115 -0.050 -0.360 -87.96 +-0.110 -0.050 -0.360 -87.96 +-0.110 -0.050 -0.360 -87.96 +-0.110 -0.050 -0.360 -87.96 +-0.105 -0.045 -0.360 -87.96 +-0.105 -0.045 -0.355 -87.96 +-0.105 -0.045 -0.355 -87.96 +-0.100 -0.040 -0.355 -87.96 +-0.100 -0.040 -0.355 -87.96 +-0.100 -0.035 -0.355 -87.96 +-0.095 -0.035 -0.355 -87.96 +-0.095 -0.030 -0.350 -87.96 +-0.090 -0.030 -0.345 -87.96 +-0.085 -0.030 -0.345 -87.96 +-0.085 -0.025 -0.350 -87.96 +-0.085 -0.025 -0.345 -87.96 +-0.080 -0.020 -0.340 -87.96 +-0.080 -0.020 -0.340 -87.96 +-0.080 -0.020 -0.335 -87.96 +-0.075 -0.015 -0.330 -87.96 +-0.075 -0.010 -0.330 -87.96 +-0.070 -0.010 -0.325 -87.96 +-0.070 -0.005 -0.325 -87.96 +-0.065 -0.005 -0.320 -87.96 +-0.065 0.000 -0.315 -87.96 +-0.060 0.000 -0.315 -87.96 +-0.060 0.005 -0.310 -87.96 +-0.055 0.005 -0.305 -87.96 +-0.055 0.010 -0.305 -91.48 +-0.055 0.010 -0.300 -91.48 +-0.050 0.015 -0.295 -91.48 +-0.050 0.015 -0.290 -87.96 +-0.045 0.020 -0.290 -87.96 +-0.045 0.020 -0.290 -91.48 +-0.040 0.020 -0.285 -87.96 +-0.040 0.020 -0.280 -87.96 +-0.035 0.020 -0.275 -87.96 +-0.035 0.020 -0.270 -87.96 +-0.030 0.020 -0.270 -87.96 +-0.030 0.020 -0.270 -87.96 +-0.025 0.025 -0.265 -87.96 +-0.025 0.025 -0.265 -87.96 +-0.020 0.025 -0.260 -87.96 +-0.020 0.020 -0.255 -87.96 +-0.015 0.020 -0.250 -87.96 +-0.010 0.020 -0.250 -87.96 +-0.010 0.020 -0.245 -87.96 +-0.010 0.015 -0.240 -87.96 +-0.005 0.015 -0.235 -87.96 +0.000 0.015 -0.230 -87.96 +0.005 0.010 -0.230 -87.96 +0.005 0.010 -0.225 -87.96 +0.010 0.010 -0.225 -87.96 +0.015 0.010 -0.220 -87.96 +0.015 0.005 -0.215 -87.96 +0.015 0.005 -0.215 -87.96 +0.020 0.000 -0.210 -81.94 +0.025 0.000 -0.210 -87.96 +0.025 0.000 -0.205 -87.96 +0.030 0.000 -0.200 -87.96 +0.030 0.000 -0.200 -87.96 +0.035 -0.005 -0.195 -81.94 +0.040 -0.005 -0.190 -81.94 +0.045 -0.005 -0.190 -87.96 +0.045 -0.005 -0.185 -87.96 +0.050 0.000 -0.180 -87.96 +0.050 0.000 -0.180 -81.94 +0.055 0.000 -0.175 -87.96 +0.060 0.000 -0.175 -81.94 +0.065 0.005 -0.170 -87.96 +0.065 0.005 -0.170 -81.94 +0.065 0.010 -0.165 -81.94 +0.070 0.010 -0.160 -87.96 +0.070 0.010 -0.155 -81.94 +0.075 0.015 -0.155 -81.94 +0.080 0.015 -0.150 -81.94 +0.085 0.020 -0.150 -87.96 +0.085 0.020 -0.150 -81.94 +0.090 0.025 -0.145 -81.94 +0.090 0.025 -0.145 -81.94 +0.095 0.030 -0.140 -81.94 +0.095 0.030 -0.140 -81.94 +0.100 0.030 -0.140 -81.94 +0.105 0.035 -0.140 -81.94 +0.105 0.035 -0.135 -81.94 +0.110 0.040 -0.135 -81.94 +0.110 0.040 -0.130 -81.94 +0.115 0.040 -0.130 -81.94 +0.115 0.040 -0.125 -81.94 +0.120 0.040 -0.130 -81.94 +0.125 0.045 -0.125 -81.94 +0.125 0.045 -0.125 -81.94 +0.130 0.045 -0.125 -81.94 +0.135 0.045 -0.125 -81.94 +0.135 0.050 -0.125 -81.94 +0.135 0.050 -0.125 -81.94 +0.145 0.045 -0.125 -81.94 +0.145 0.050 -0.125 -81.94 +0.145 0.045 -0.125 -81.94 +0.150 0.050 -0.125 -81.94 +0.150 0.050 -0.125 -81.94 +0.150 0.045 -0.125 -81.94 +0.155 0.050 -0.125 -81.94 +0.160 0.045 -0.125 -81.94 +0.160 0.050 -0.125 -81.94 +0.165 0.050 -0.125 -81.94 +0.165 0.050 -0.130 -81.94 +0.165 0.050 -0.130 -81.94 +0.165 0.045 -0.130 -81.94 +0.170 0.050 -0.130 -81.94 +0.170 0.050 -0.130 -81.94 +0.170 0.045 -0.130 -81.94 +0.175 0.045 -0.130 -81.94 +0.175 0.045 -0.130 -81.94 +0.175 0.045 -0.135 -81.94 +0.180 0.045 -0.135 -81.94 +0.175 0.045 -0.130 -81.94 +0.180 0.045 -0.135 -81.94 +0.180 0.045 -0.135 -81.94 +0.180 0.045 -0.140 -81.94 +0.180 0.045 -0.140 -81.94 +0.180 0.040 -0.140 -81.94 +0.180 0.040 -0.140 -81.94 +0.185 0.040 -0.140 -81.94 +0.180 0.040 -0.140 -81.94 +0.185 0.040 -0.145 -81.94 +0.185 0.035 -0.145 -81.94 +0.185 0.035 -0.145 -81.94 +0.185 0.035 -0.145 -81.94 +0.185 0.030 -0.145 -81.94 +0.185 0.035 -0.145 -81.94 +0.185 0.030 -0.150 -81.94 +0.185 0.030 -0.150 -81.94 +0.185 0.030 -0.150 -81.94 +0.185 0.025 -0.150 -81.94 +0.185 0.030 -0.150 -81.94 +0.185 0.025 -0.150 -81.94 +0.185 0.025 -0.155 -81.94 +0.185 0.025 -0.155 -81.94 +0.185 0.025 -0.155 -81.94 +0.180 0.025 -0.155 -81.94 +0.180 0.025 -0.155 -81.94 +0.180 0.025 -0.155 -81.94 +0.180 0.025 -0.155 -81.94 +0.175 0.025 -0.155 -81.94 +0.175 0.025 -0.160 -81.94 +0.175 0.025 -0.155 -81.94 +0.175 0.030 -0.155 -81.94 +0.170 0.030 -0.155 -81.94 +0.170 0.030 -0.155 -81.94 +0.170 0.035 -0.155 -81.94 +0.165 0.035 -0.150 -81.94 +0.165 0.035 -0.155 -81.94 +0.165 0.040 -0.150 -81.94 +0.165 0.040 -0.150 -81.94 +0.160 0.040 -0.150 -81.94 +0.160 0.045 -0.150 -81.94 +0.155 0.040 -0.150 -81.94 +0.155 0.045 -0.150 -81.94 +0.155 0.045 -0.145 -81.94 +0.150 0.050 -0.145 -81.94 +0.150 0.050 -0.145 -81.94 +0.150 0.050 -0.145 -81.94 +0.145 0.050 -0.145 -81.94 +0.145 0.055 -0.140 -81.94 +0.140 0.055 -0.140 -81.94 +0.140 0.055 -0.140 -81.94 +0.140 0.055 -0.140 -81.94 +0.140 0.055 -0.135 -81.94 +0.135 0.055 -0.140 -81.94 +0.135 0.055 -0.135 -81.94 +0.130 0.055 -0.135 -81.94 +0.130 0.055 -0.135 -81.94 +0.130 0.055 -0.130 -81.94 +0.125 0.055 -0.130 -81.94 +0.125 0.055 -0.130 -81.94 +0.125 0.055 -0.130 -81.94 +0.120 0.055 -0.130 -81.94 +0.120 0.050 -0.125 -81.94 +0.120 0.055 -0.120 -81.94 +0.115 0.055 -0.120 -81.94 +0.115 0.050 -0.120 -81.94 +0.115 0.050 -0.120 -81.94 +0.115 0.050 -0.115 -81.94 +0.110 0.050 -0.115 -81.94 +0.110 0.050 -0.110 -81.94 +0.110 0.050 -0.110 -81.94 +0.110 0.045 -0.110 0.000 +0.110 0.045 -0.105 -81.94 +0.110 0.045 -0.105 -81.94 +0.110 0.045 -0.105 -81.94 +0.110 0.045 -0.100 -81.94 +0.105 0.045 -0.095 0.000 +0.110 0.045 -0.095 -81.94 +0.110 0.045 -0.090 0.000 +0.110 0.040 -0.090 -81.94 +0.110 0.045 -0.085 -81.94 +0.110 0.040 -0.080 0.000 +0.110 0.040 -0.080 0.000 +0.110 0.040 -0.075 0.000 +0.115 0.040 -0.075 0.000 +0.110 0.040 -0.075 0.000 +0.115 0.040 -0.070 0.000 +0.115 0.040 -0.065 0.000 +0.115 0.040 -0.065 0.000 +0.115 0.040 -0.060 0.000 +0.115 0.040 -0.060 -81.94 +0.120 0.040 -0.055 0.000 +0.120 0.040 -0.050 0.000 +0.120 0.040 -0.050 0.000 +0.125 0.040 -0.045 0.000 +0.125 0.040 -0.045 0.000 +0.130 0.045 -0.040 0.000 +0.130 0.045 -0.040 0.000 +0.130 0.045 -0.040 0.000 +0.130 0.045 -0.035 0.000 +0.135 0.045 -0.030 0.000 +0.135 0.045 -0.025 0.000 +0.135 0.045 -0.025 0.000 +0.140 0.045 -0.025 0.000 +0.140 0.050 -0.020 0.000 +0.145 0.050 -0.020 0.000 +0.145 0.050 -0.015 0.000 +0.145 0.055 -0.015 81.94 +0.145 0.055 -0.010 0.000 +0.145 0.055 -0.010 0.000 +0.150 0.055 -0.010 0.000 +0.150 0.055 -0.005 0.000 +0.155 0.055 -0.005 0.000 +0.155 0.055 -0.005 0.000 +0.155 0.055 0.000 0.000 +0.155 0.060 0.000 0.000 +0.155 0.060 0.000 81.94 +0.160 0.060 0.000 0.000 +0.160 0.060 0.005 0.000 +0.160 0.060 0.005 0.000 +0.160 0.060 0.005 0.000 +0.165 0.060 0.005 0.000 +0.165 0.060 0.010 0.000 +0.165 0.060 0.010 81.94 +0.165 0.060 0.015 0.000 +0.170 0.060 0.010 0.000 +0.170 0.060 0.015 0.000 +0.170 0.055 0.015 0.000 +0.170 0.060 0.015 0.000 +0.175 0.055 0.015 0.000 +0.175 0.055 0.015 0.000 +0.170 0.055 0.015 0.000 +0.175 0.055 0.015 0.000 +0.175 0.050 0.020 0.000 +0.175 0.050 0.015 0.000 +0.180 0.050 0.020 0.000 +0.180 0.050 0.015 0.000 +0.180 0.050 0.015 0.000 +0.180 0.045 0.020 0.000 +0.180 0.045 0.015 0.000 +0.180 0.045 0.015 0.000 +0.180 0.040 0.020 0.000 +0.180 0.045 0.015 0.000 +0.185 0.040 0.015 -81.94 +0.185 0.040 0.020 0.000 +0.180 0.040 0.015 0.000 +0.185 0.040 0.015 0.000 +0.185 0.040 0.015 0.000 +0.185 0.035 0.015 0.000 +0.185 0.035 0.015 0.000 +0.185 0.035 0.015 0.000 +0.180 0.035 0.015 0.000 +0.180 0.035 0.015 0.000 +0.180 0.035 0.015 0.000 +0.180 0.035 0.010 0.000 +0.180 0.035 0.015 0.000 +0.180 0.035 0.015 0.000 +0.175 0.030 0.010 0.000 +0.175 0.030 0.015 0.000 +0.175 0.035 0.015 0.000 +0.175 0.030 0.010 81.94 +0.175 0.030 0.010 81.94 +0.175 0.030 0.010 81.94 +0.170 0.030 0.010 81.94 +0.170 0.030 0.010 0.000 +0.170 0.035 0.010 0.000 +0.165 0.035 0.005 81.94 +0.165 0.030 0.005 81.94 +0.165 0.035 0.005 0.000 +0.165 0.035 0.005 0.000 +0.160 0.030 0.005 81.94 +0.160 0.030 0.005 0.000 +0.155 0.030 0.000 0.000 +0.155 0.030 0.000 0.000 +0.150 0.030 0.000 0.000 +0.145 0.030 0.000 81.94 +0.145 0.035 0.000 0.000 +0.145 0.035 0.000 81.94 +0.140 0.035 0.000 0.000 +0.135 0.035 -0.005 0.000 +0.135 0.035 -0.005 81.94 +0.135 0.035 -0.005 0.000 +0.130 0.035 -0.005 81.94 +0.125 0.035 -0.010 0.000 +0.120 0.035 -0.010 81.94 +0.120 0.030 -0.010 0.000 +0.120 0.035 -0.010 81.94 +0.115 0.035 -0.010 81.94 +0.110 0.035 -0.015 81.94 +0.105 0.035 -0.015 81.94 +0.105 0.035 -0.015 0.000 +0.100 0.035 -0.015 0.000 +0.100 0.035 -0.015 81.94 +0.095 0.035 -0.015 81.94 +0.090 0.030 -0.020 81.94 +0.090 0.030 -0.020 81.94 +0.085 0.030 -0.020 0.000 +0.080 0.035 -0.020 0.000 +0.080 0.030 -0.020 0.000 +0.075 0.030 -0.025 81.94 +0.075 0.030 -0.025 0.000 +0.070 0.030 -0.025 0.000 +0.065 0.030 -0.025 0.000 +0.065 0.030 -0.025 0.000 +0.060 0.030 -0.025 0.000 +0.060 0.025 -0.025 81.94 +0.055 0.025 -0.025 81.94 +0.050 0.030 -0.025 81.94 +0.050 0.025 -0.030 81.94 +0.050 0.025 -0.025 0.000 +0.045 0.025 -0.025 0.000 +0.040 0.025 -0.025 81.94 +0.040 0.025 -0.030 0.000 +0.035 0.020 -0.030 0.000 +0.035 0.020 -0.030 0.000 +0.035 0.020 -0.025 0.000 +0.030 0.020 -0.030 0.000 +0.030 0.020 -0.025 81.94 +0.030 0.020 -0.025 0.000 +0.025 0.020 -0.025 0.000 +0.025 0.020 -0.025 81.94 +0.020 0.020 -0.025 81.94 +0.020 0.020 -0.025 81.94 +0.020 0.020 -0.025 81.94 +0.015 0.020 -0.025 0.000 +0.015 0.020 -0.025 0.000 +0.015 0.020 -0.025 81.94 +0.015 0.020 -0.025 0.000 +0.015 0.020 -0.020 0.000 +0.015 0.020 -0.020 0.000 +0.010 0.020 -0.020 0.000 +0.010 0.020 -0.020 0.000 +0.010 0.020 -0.020 0.000 +0.010 0.020 -0.020 81.94 +0.010 0.020 -0.020 81.94 +0.010 0.020 -0.020 81.94 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.020 0.000 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.015 81.94 +0.005 0.020 -0.015 0.000 +0.005 0.020 -0.010 0.000 +0.005 0.025 -0.015 0.000 +0.005 0.025 -0.010 0.000 +0.005 0.020 -0.005 81.94 +0.010 0.025 -0.010 0.000 +0.005 0.025 -0.010 0.000 +0.010 0.020 -0.010 0.000 +0.005 0.025 -0.010 81.94 +0.010 0.025 -0.005 0.000 +0.010 0.025 -0.005 0.000 +0.010 0.025 -0.005 0.000 +0.005 0.025 -0.005 81.94 +0.010 0.025 -0.005 81.94 +0.015 0.020 0.000 0.000 +0.010 0.020 0.000 81.94 +0.010 0.025 -0.005 81.94 +0.015 0.025 0.005 0.000 +0.015 0.025 0.000 81.94 +0.015 0.025 0.005 81.94 +0.015 0.025 0.000 81.94 +0.020 0.020 0.005 0.000 +0.015 0.020 0.005 81.94 +0.020 0.020 0.005 81.94 +0.020 0.020 0.010 0.000 +0.025 0.020 0.010 0.000 +0.020 0.020 0.010 0.000 +0.025 0.015 0.010 81.94 +0.025 0.020 0.010 0.000 +0.025 0.015 0.015 0.000 +0.030 0.015 0.010 0.000 +0.025 0.020 0.010 81.94 +0.030 0.015 0.015 0.000 +0.030 0.015 0.015 -81.94 +0.030 0.015 0.015 0.000 +0.035 0.015 0.015 -81.94 +0.035 0.015 0.015 0.000 +0.035 0.015 0.015 -81.94 +0.040 0.010 0.015 0.000 +0.035 0.015 0.020 0.000 +0.035 0.010 0.020 0.000 +0.040 0.010 0.020 0.000 +0.040 0.010 0.020 0.000 +0.040 0.010 0.020 0.000 +0.040 0.010 0.020 -81.94 +0.045 0.005 0.020 0.000 +0.045 0.010 0.020 0.000 +0.045 0.005 0.020 -81.94 +0.045 0.005 0.020 0.000 +0.045 0.005 0.020 0.000 +0.045 0.005 0.020 0.000 +0.050 0.005 0.020 0.000 +0.045 0.010 0.020 0.000 +0.050 0.005 0.020 -81.94 +0.050 0.005 0.025 0.000 +0.050 0.005 0.025 -81.94 +0.050 0.005 0.020 -81.94 +0.050 0.010 0.020 0.000 +0.045 0.010 0.020 0.000 +0.045 0.005 0.020 0.000 +0.050 0.005 0.020 -81.94 +0.045 0.005 0.020 0.000 +0.050 0.005 0.020 -81.94 +0.045 0.005 0.020 0.000 +0.045 0.005 0.020 -81.94 +0.050 0.010 0.020 -81.94 +0.045 0.005 0.020 0.000 +0.050 0.010 0.020 0.000 +0.045 0.010 0.020 -81.94 +0.040 0.005 0.015 -81.94 +0.040 0.010 0.015 0.000 +0.040 0.005 0.020 0.000 +0.040 0.010 0.015 -81.94 +0.035 0.005 0.015 -81.94 +0.035 0.010 0.015 -81.94 +0.035 0.010 0.015 -81.94 +0.035 0.010 0.015 -81.94 +0.030 0.010 0.015 0.000 +0.030 0.010 0.015 -81.94 +0.035 0.010 0.015 -81.94 +0.025 0.010 0.015 0.000 +0.025 0.010 0.010 0.000 +0.025 0.010 0.010 0.000 +0.025 0.010 0.010 0.000 +0.020 0.010 0.010 81.94 +0.020 0.010 0.010 0.000 +0.020 0.010 0.010 0.000 +0.015 0.015 0.005 0.000 +0.015 0.015 0.005 0.000 +0.010 0.010 0.005 0.000 +0.010 0.010 0.005 0.000 +0.010 0.010 0.005 0.000 +0.005 0.010 0.000 0.000 +0.000 0.010 0.000 0.000 +0.005 0.005 0.000 -81.94 +0.000 0.005 0.000 0.000 +-0.005 0.010 0.000 0.000 +-0.005 0.010 0.000 0.000 +-0.005 0.005 -0.005 0.000 +-0.010 0.010 -0.005 0.000 +-0.010 0.005 -0.005 0.000 +-0.010 0.005 -0.005 0.000 +-0.015 0.005 -0.005 0.000 +-0.015 0.005 -0.005 0.000 +-0.020 0.005 -0.010 0.000 +-0.020 0.005 -0.010 0.000 +-0.020 0.005 -0.010 0.000 +-0.025 0.000 -0.010 0.000 +-0.030 0.005 -0.015 0.000 +-0.030 0.000 -0.015 0.000 +-0.030 0.005 -0.015 0.000 +-0.035 0.005 -0.015 0.000 +-0.035 0.000 -0.015 0.000 +-0.035 0.000 -0.015 0.000 +-0.040 0.000 -0.015 0.000 +-0.040 0.000 -0.020 0.000 +-0.040 0.000 -0.020 0.000 +-0.045 0.000 -0.020 0.000 +-0.045 0.000 -0.020 0.000 +-0.045 0.000 -0.020 0.000 +-0.050 0.000 -0.025 0.000 +-0.050 0.000 -0.025 0.000 +-0.050 0.000 -0.020 0.000 +-0.050 0.000 -0.025 0.000 +-0.055 0.000 -0.025 -81.94 +-0.055 0.000 -0.025 -81.94 +-0.055 0.000 -0.025 0.000 +-0.055 0.000 -0.025 0.000 +-0.055 0.000 -0.025 -81.94 +-0.060 0.005 -0.030 -81.94 +-0.060 0.000 -0.025 -81.94 +-0.060 0.000 -0.030 0.000 +-0.060 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 0.000 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 0.000 +-0.065 0.005 -0.030 0.000 +-0.065 0.005 -0.030 -81.94 +-0.070 0.005 -0.035 -81.94 +-0.070 0.005 -0.035 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.030 -81.94 +-0.065 0.000 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.005 -0.035 -81.94 +-0.065 0.000 -0.035 -81.94 +-0.065 0.000 -0.035 0.000 +-0.060 0.000 -0.035 -81.94 +-0.060 0.005 -0.035 -81.94 +-0.060 0.000 -0.035 -81.94 +-0.055 0.000 -0.035 0.000 +-0.055 0.000 -0.035 -81.94 +-0.060 0.000 -0.035 -81.94 +-0.055 -0.005 -0.035 -81.94 +-0.055 -0.005 -0.035 -81.94 +-0.050 -0.005 -0.035 -81.94 +-0.050 0.000 -0.035 -81.94 +-0.050 -0.005 -0.030 -81.94 +-0.050 -0.005 -0.035 -81.94 +-0.045 -0.005 -0.035 -81.94 +-0.045 0.000 -0.030 -81.94 +-0.045 0.000 -0.030 -81.94 +-0.045 -0.005 -0.030 0.000 +-0.040 0.000 -0.030 -81.94 +-0.040 0.000 -0.030 -81.94 +-0.040 0.000 -0.030 -81.94 +-0.035 0.000 -0.030 -81.94 +-0.035 -0.005 -0.025 -81.94 +-0.030 -0.005 -0.025 -81.94 +-0.030 0.000 -0.025 -81.94 +-0.030 0.000 -0.025 -81.94 +-0.025 0.000 -0.025 -81.94 +-0.025 -0.005 -0.025 -81.94 +-0.025 -0.005 -0.025 -81.94 +-0.020 0.000 -0.020 -81.94 +-0.020 0.000 -0.020 -81.94 +-0.020 0.000 -0.025 -81.94 +-0.020 0.000 -0.020 -81.94 +-0.015 0.000 -0.020 0.000 +-0.015 0.000 -0.020 -81.94 +-0.015 0.000 -0.020 -81.94 +-0.010 0.000 -0.020 -81.94 +-0.010 0.000 -0.020 -81.94 +-0.010 -0.005 -0.015 -81.94 +-0.010 0.000 -0.020 -81.94 +-0.005 0.000 -0.015 -81.94 +-0.005 0.000 -0.015 -81.94 +0.000 0.000 -0.015 -81.94 +-0.005 0.000 -0.015 -81.94 +0.000 0.000 -0.015 -81.94 +0.000 0.000 -0.015 -81.94 +0.000 0.000 -0.010 -81.94 +0.000 0.000 -0.010 -81.94 +0.005 0.000 -0.010 0.000 +0.005 0.000 -0.010 -81.94 +0.000 0.000 -0.010 -81.94 +0.005 0.000 -0.005 -81.94 +0.005 0.000 -0.005 -81.94 +0.005 0.000 -0.005 -81.94 +0.005 0.005 -0.005 0.000 +0.005 0.005 -0.005 -81.94 +0.005 0.005 -0.005 -81.94 +0.005 0.005 -0.005 -81.94 +0.005 0.000 -0.005 -81.94 +0.010 0.005 0.000 0.000 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.000 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 -81.94 +0.010 0.005 0.000 0.000 +0.010 0.000 0.000 -81.94 +0.010 0.005 0.000 0.000 +0.005 0.000 0.000 -81.94 +0.010 0.000 0.000 -81.94 +0.010 0.000 0.000 -81.94 +0.005 0.000 0.000 -81.94 +0.005 0.000 0.000 -81.94 +0.005 0.000 0.000 -81.94 +0.005 0.000 0.000 -81.94 +0.000 0.000 0.000 -81.94 +0.005 0.000 0.000 -81.94 +0.000 0.000 0.005 -81.94 +0.000 0.000 0.000 -81.94 +0.000 0.000 0.000 -81.94 +0.000 0.000 0.000 -81.94 +0.000 0.000 0.000 -81.94 +0.000 0.000 0.000 -81.94 +-0.005 0.000 0.000 -81.94 +-0.005 0.000 0.000 -81.94 +-0.005 0.000 0.000 -81.94 +-0.005 0.000 0.000 -81.94 +-0.005 0.000 0.000 -81.94 +-0.010 0.000 0.000 -81.94 +-0.010 0.000 0.000 -81.94 +-0.010 0.000 -0.005 0.000 +-0.010 0.000 -0.005 -81.94 +-0.015 0.000 -0.005 -81.94 +-0.015 0.000 -0.005 -81.94 +-0.015 0.000 -0.005 -81.94 +-0.015 0.000 -0.005 -81.94 +-0.015 0.000 -0.005 0.000 +-0.020 0.000 -0.005 -81.94 +-0.020 0.000 -0.005 -81.94 +-0.020 0.000 -0.005 -81.94 +-0.020 0.000 -0.010 -81.94 +-0.025 0.005 -0.010 -81.94 +-0.025 0.000 -0.010 -81.94 +-0.025 0.005 -0.010 -81.94 +-0.025 0.000 -0.010 -81.94 +-0.025 0.005 -0.010 -81.94 +-0.030 0.000 -0.010 -81.94 +-0.030 0.000 -0.015 -81.94 +-0.030 0.000 -0.010 -81.94 +-0.030 0.000 -0.015 -81.94 +-0.030 0.005 -0.015 -81.94 +-0.035 0.000 -0.015 0.000 +-0.035 0.000 -0.015 -81.94 +-0.035 0.000 -0.015 -81.94 +-0.035 0.000 -0.020 -81.94 +-0.040 0.000 -0.020 -81.94 +-0.040 0.000 -0.020 -81.94 +-0.040 0.000 -0.020 -81.94 +-0.040 0.000 -0.020 -81.94 +-0.040 0.000 -0.020 -81.94 +-0.040 0.000 -0.025 -81.94 +-0.040 0.000 -0.025 -81.94 +-0.040 0.005 -0.025 -81.94 +-0.040 0.000 -0.025 -81.94 +-0.040 0.005 -0.025 0.000 +-0.045 0.005 -0.025 -81.94 +-0.045 0.005 -0.025 0.000 +-0.045 0.005 -0.025 -81.94 +-0.045 0.000 -0.030 0.000 +-0.045 0.000 -0.030 -81.94 +-0.045 0.005 -0.030 -81.94 +-0.045 0.005 -0.030 -81.94 +-0.045 0.005 -0.030 0.000 +-0.045 0.005 -0.030 -81.94 +-0.045 0.000 -0.030 -81.94 +-0.045 0.005 -0.035 -81.94 +-0.045 0.000 -0.035 0.000 +-0.040 0.005 -0.035 0.000 +-0.040 0.005 -0.035 0.000 +-0.040 0.005 -0.035 -81.94 +-0.040 0.000 -0.035 -81.94 +-0.045 0.000 -0.035 -81.94 +-0.040 0.000 -0.035 -81.94 +-0.040 0.000 -0.035 -81.94 +-0.040 0.000 -0.035 -81.94 +-0.040 0.000 -0.040 -81.94 +-0.035 0.000 -0.035 -81.94 +-0.035 0.000 -0.035 -81.94 +-0.035 0.000 -0.040 -81.94 +-0.035 0.000 -0.040 -81.94 +-0.035 0.000 -0.035 0.000 +-0.035 0.000 -0.035 -81.94 +-0.035 -0.005 -0.040 -81.94 +-0.030 0.000 -0.040 -81.94 +-0.030 -0.005 -0.040 -81.94 +-0.030 -0.005 -0.040 -81.94 +-0.030 -0.005 -0.040 -81.94 +-0.030 -0.010 -0.040 -81.94 +-0.025 -0.010 -0.040 -81.94 +-0.025 -0.005 -0.040 -81.94 +-0.025 -0.005 -0.040 -81.94 +-0.025 -0.005 -0.040 -81.94 +-0.020 -0.010 -0.040 0.000 +-0.020 -0.010 -0.040 0.000 +-0.020 -0.005 -0.040 -81.94 +-0.015 -0.005 -0.040 -81.94 +-0.015 -0.005 -0.040 -81.94 +-0.015 -0.005 -0.035 -81.94 +-0.015 -0.005 -0.040 0.000 +-0.015 -0.005 -0.035 -81.94 +-0.010 -0.005 -0.035 0.000 +-0.010 -0.005 -0.040 0.000 +-0.010 -0.005 -0.035 -81.94 +-0.010 0.000 -0.035 0.000 +-0.010 0.000 -0.035 0.000 +-0.005 0.000 -0.030 0.000 +-0.005 0.000 -0.030 -81.94 +-0.005 0.000 -0.030 0.000 +0.000 0.000 -0.030 0.000 +0.000 0.000 -0.030 -81.94 +0.000 0.000 -0.030 0.000 +0.000 0.000 -0.025 0.000 +0.000 0.005 -0.030 0.000 +0.005 0.005 -0.025 0.000 +0.005 0.005 -0.025 0.000 +0.005 0.005 -0.025 0.000 +0.005 0.005 -0.025 -81.94 +0.005 0.005 -0.020 -81.94 +0.010 0.005 -0.020 0.000 +0.010 0.005 -0.020 0.000 +0.010 0.005 -0.020 0.000 +0.010 0.005 -0.020 0.000 +0.015 0.005 -0.020 0.000 +0.015 0.005 -0.015 0.000 +0.015 0.005 -0.015 -81.94 +0.015 0.005 -0.015 0.000 +0.015 0.010 -0.015 0.000 +0.015 0.005 -0.015 0.000 +0.015 0.005 -0.010 0.000 +0.020 0.005 -0.010 0.000 +0.020 0.005 -0.010 0.000 +0.020 0.005 -0.010 0.000 +0.015 0.010 -0.005 0.000 +0.020 0.005 -0.010 0.000 +0.020 0.005 -0.010 0.000 +0.020 0.000 -0.005 0.000 +0.020 0.005 -0.005 0.000 +0.025 0.005 -0.005 0.000 +0.020 0.005 0.000 0.000 +0.020 0.000 0.000 0.000 +0.020 0.000 0.000 0.000 +0.020 0.000 0.000 0.000 +0.020 0.005 0.005 0.000 +0.025 0.000 0.000 0.000 +0.020 0.000 0.000 0.000 +0.020 0.005 0.005 0.000 +0.025 0.000 0.005 0.000 +0.025 0.000 0.005 0.000 +0.020 0.000 0.005 0.000 +0.020 -0.005 0.005 0.000 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 -81.94 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 -81.94 +0.020 -0.005 0.010 0.000 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 0.000 +0.015 0.000 0.010 0.000 +0.015 0.005 0.015 -81.94 +0.020 0.000 0.015 -81.94 +0.015 0.000 0.010 0.000 +0.015 0.000 0.015 -81.94 +0.015 0.000 0.010 0.000 +0.015 0.000 0.010 0.000 +0.010 0.005 0.015 -81.94 +0.015 0.005 0.010 0.000 +0.010 0.005 0.015 -81.94 +0.010 0.000 0.015 -81.94 +0.010 0.005 0.015 -81.94 +0.010 0.005 0.015 -81.94 +0.010 0.005 0.015 -81.94 +0.010 0.005 0.015 -81.94 +0.010 0.005 0.015 -81.94 +0.005 0.005 0.015 -81.94 +0.005 0.005 0.010 0.000 +0.005 0.010 0.015 -81.94 +0.005 0.010 0.015 -81.94 +0.005 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +0.000 0.010 0.010 0.000 +0.000 0.015 0.015 -81.94 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.010 0.000 +-0.005 0.015 0.005 0.000 +-0.010 0.015 0.010 0.000 +-0.010 0.015 0.005 0.000 +-0.010 0.015 0.010 0.000 +-0.010 0.015 0.005 0.000 +-0.010 0.010 0.005 0.000 +-0.010 0.015 0.005 0.000 +-0.010 0.015 0.000 0.000 +-0.010 0.010 0.000 0.000 +-0.015 0.015 0.000 0.000 +-0.010 0.010 0.000 0.000 +-0.010 0.005 0.000 0.000 +-0.015 0.005 -0.005 0.000 +-0.010 0.010 0.000 0.000 +-0.010 0.005 -0.005 0.000 +-0.015 0.005 -0.005 0.000 +-0.010 0.005 -0.005 -81.94 +-0.010 0.005 -0.005 0.000 +-0.015 0.005 -0.010 0.000 +-0.015 0.005 -0.010 0.000 +-0.015 0.005 -0.010 0.000 +-0.015 0.005 -0.010 0.000 +-0.015 0.000 -0.010 -81.94 +-0.015 0.000 -0.015 -81.94 +-0.015 0.000 -0.015 0.000 +-0.015 0.000 -0.015 0.000 +-0.015 0.000 -0.015 0.000 +-0.015 0.000 -0.015 0.000 +-0.015 0.000 -0.020 0.000 +-0.010 0.000 -0.020 -81.94 +-0.015 0.000 -0.020 -81.94 +-0.015 0.000 -0.020 -81.94 +-0.015 -0.005 -0.020 0.000 +-0.015 -0.005 -0.020 -81.94 +-0.010 -0.005 -0.025 0.000 +-0.010 -0.005 -0.025 -81.94 +-0.010 0.000 -0.020 -81.94 +-0.010 0.000 -0.025 -81.94 +-0.010 0.000 -0.025 0.000 +-0.010 -0.005 -0.025 0.000 +-0.010 -0.005 -0.025 -81.94 +-0.010 0.000 -0.025 -81.94 +-0.010 0.000 -0.025 -81.94 +-0.010 -0.005 -0.025 -81.94 +-0.010 -0.005 -0.025 0.000 +-0.005 0.000 -0.030 0.000 +-0.005 0.000 -0.030 0.000 +-0.005 0.000 -0.030 -81.94 +-0.005 0.000 -0.030 -81.94 +-0.005 0.000 -0.030 -81.94 +-0.005 0.000 -0.030 0.000 +-0.005 -0.005 -0.030 -81.94 +0.000 0.000 -0.025 -81.94 +0.000 0.000 -0.030 -81.94 +0.000 0.000 -0.030 0.000 +0.000 0.000 -0.030 -81.94 +0.000 0.000 -0.030 -81.94 +0.000 0.000 -0.030 -81.94 +0.005 0.000 -0.030 -81.94 +0.005 0.000 -0.030 -81.94 +0.005 0.000 -0.030 -81.94 +0.005 0.005 -0.030 -81.94 +0.005 0.005 -0.030 -81.94 +0.005 0.005 -0.025 0.000 +0.005 0.005 -0.030 0.000 +0.005 0.005 -0.025 -81.94 +0.010 0.005 -0.030 -81.94 +0.010 0.005 -0.025 -81.94 +0.010 0.005 -0.025 -81.94 +0.010 0.005 -0.025 -81.94 +0.010 0.005 -0.020 -81.94 +0.010 0.005 -0.025 0.000 +0.010 0.005 -0.025 -81.94 +0.015 0.005 -0.025 -81.94 +0.010 0.005 -0.020 0.000 +0.015 0.005 -0.020 0.000 +0.015 0.005 -0.020 -81.94 +0.015 0.005 -0.020 -81.94 +0.015 0.005 -0.020 0.000 +0.015 0.005 -0.020 0.000 +0.015 0.005 -0.015 0.000 +0.020 0.000 -0.015 0.000 +0.020 0.000 -0.015 -81.94 +0.020 0.000 -0.015 0.000 +0.020 0.000 -0.015 0.000 +0.020 -0.005 -0.015 -81.94 +0.020 0.000 -0.010 -81.94 +0.020 0.000 -0.010 0.000 +0.020 -0.005 -0.010 0.000 +0.020 0.000 -0.010 0.000 +0.020 -0.005 -0.010 0.000 +0.025 0.000 -0.005 -81.94 +0.020 -0.005 -0.005 0.000 +0.025 0.000 -0.005 -81.94 +0.020 -0.005 -0.005 0.000 +0.025 0.000 -0.005 0.000 +0.025 0.000 -0.005 -81.94 +0.020 -0.005 -0.005 0.000 +0.025 0.000 0.000 0.000 +0.020 -0.005 -0.005 0.000 +0.025 -0.005 0.000 -81.94 +0.020 0.000 0.000 -81.94 +0.020 -0.005 0.000 0.000 +0.025 0.000 0.005 -81.94 +0.020 0.000 0.005 0.000 +0.025 -0.005 0.005 -81.94 +0.020 0.000 0.010 0.000 +0.025 0.000 0.005 0.000 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 0.000 +0.020 0.000 0.010 0.000 +0.020 0.005 0.010 0.000 +0.020 0.000 0.010 0.000 +0.015 0.005 0.015 -81.94 +0.020 0.000 0.015 -87.96 +0.020 0.005 0.015 0.000 +0.015 0.005 0.015 -81.94 +0.015 0.005 0.015 -81.94 +0.015 0.005 0.015 -81.94 +0.015 0.005 0.015 -81.94 +0.015 0.010 0.020 -81.94 +0.015 0.005 0.020 -81.94 +0.015 0.010 0.020 -81.94 +0.015 0.005 0.025 0.000 +0.015 0.005 0.020 -87.96 +0.010 0.010 0.020 -81.94 +0.015 0.005 0.020 -81.94 +0.015 0.010 0.020 -81.94 +0.010 0.005 0.025 -81.94 +0.010 0.010 0.020 -81.94 +0.010 0.010 0.020 -81.94 +0.010 0.010 0.020 -81.94 +0.010 0.010 0.025 -81.94 +0.010 0.010 0.020 -81.94 +0.010 0.010 0.025 -81.94 +0.010 0.010 0.025 -81.94 +0.005 0.010 0.025 -87.96 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.020 -81.94 +0.010 0.010 0.025 -81.94 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.020 -81.94 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.025 -81.94 +0.005 0.010 0.025 -81.94 +0.000 0.015 0.025 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.025 0.000 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -87.96 +0.000 0.015 0.020 -81.94 +0.000 0.010 0.015 -81.94 +-0.005 0.015 0.020 -81.94 +0.000 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +-0.005 0.005 0.020 -81.94 +-0.005 0.010 0.015 -87.96 +-0.005 0.015 0.015 -81.94 +-0.005 0.010 0.015 -81.94 +-0.005 0.010 0.015 -81.94 +0.000 0.010 0.015 -81.94 +-0.005 0.010 0.010 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.010 0.000 +-0.005 0.010 0.010 0.000 +-0.005 0.010 0.005 0.000 +-0.005 0.005 0.005 -81.94 +-0.005 0.005 0.005 0.000 +-0.010 0.005 0.005 0.000 +-0.005 0.005 0.005 0.000 +-0.005 0.005 0.000 -81.94 +-0.010 0.005 0.005 0.000 +-0.010 0.005 0.000 0.000 +-0.010 0.005 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.005 -0.005 0.000 +-0.005 0.005 -0.005 0.000 +-0.010 0.000 -0.005 0.000 +-0.010 0.000 -0.005 0.000 +-0.010 0.005 -0.005 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.005 0.000 +-0.010 0.005 -0.010 0.000 +-0.005 0.000 -0.010 -81.94 +-0.010 0.000 -0.010 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.010 0.000 -0.015 0.000 +-0.005 0.000 -0.020 0.000 +-0.005 0.000 -0.015 -81.94 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.020 0.000 +-0.005 0.000 -0.020 0.000 +-0.005 0.000 -0.020 0.000 +-0.005 0.000 -0.020 0.000 +-0.005 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.005 -0.020 0.000 +0.000 0.000 -0.025 0.000 +0.000 0.005 -0.020 0.000 +0.000 0.000 -0.025 0.000 +0.000 0.000 -0.020 0.000 +0.005 0.000 -0.025 0.000 +0.000 0.000 -0.020 0.000 +0.005 0.005 -0.025 0.000 +0.000 0.005 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.000 0.005 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.005 0.005 -0.020 -81.94 +0.005 0.000 -0.020 0.000 +0.005 0.000 -0.020 -81.94 +0.005 0.005 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.005 0.005 -0.020 0.000 +0.005 0.000 -0.020 0.000 +0.010 0.005 -0.020 0.000 +0.005 0.005 -0.015 0.000 +0.005 0.005 -0.015 0.000 +0.010 0.000 -0.015 0.000 +0.005 0.005 -0.015 0.000 +0.005 0.005 -0.015 0.000 +0.005 0.005 -0.010 0.000 +0.005 0.005 -0.015 0.000 +0.010 0.005 -0.010 0.000 +0.005 0.005 -0.015 0.000 +0.010 0.005 -0.010 0.000 +0.010 0.005 -0.010 0.000 +0.005 0.005 -0.010 0.000 +0.005 0.000 -0.010 0.000 +0.010 0.005 -0.010 0.000 +0.010 0.005 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.010 0.005 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.005 0.005 -0.005 0.000 +0.005 0.000 0.000 0.000 +0.005 0.000 0.000 0.000 +0.005 0.000 0.000 0.000 +0.005 0.005 0.000 0.000 +0.005 0.000 0.000 0.000 +0.005 0.000 0.000 0.000 +0.005 0.005 0.005 0.000 +0.005 0.000 0.005 0.000 +0.005 0.000 0.005 0.000 +0.005 0.005 0.005 0.000 +0.005 0.005 0.005 0.000 +0.005 0.005 0.010 0.000 +0.005 0.000 0.010 0.000 +0.005 0.005 0.010 0.000 +0.005 0.000 0.005 81.94 +0.005 0.005 0.010 0.000 +0.005 0.005 0.010 0.000 +0.005 0.005 0.015 0.000 +0.005 0.005 0.010 0.000 +0.005 0.005 0.015 0.000 +0.005 0.000 0.010 0.000 +0.000 0.005 0.015 -81.94 +0.005 0.005 0.015 0.000 +0.005 0.005 0.015 -81.94 +0.005 0.005 0.015 0.000 +0.005 0.005 0.020 -81.94 +0.005 0.005 0.020 0.000 +0.005 0.005 0.020 -81.94 +0.005 0.000 0.020 0.000 +0.000 0.005 0.020 0.000 +0.005 0.005 0.020 -81.94 +0.005 0.005 0.020 -81.94 +0.000 0.005 0.020 0.000 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 0.000 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.005 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 0.000 +0.000 0.010 0.020 0.000 +0.000 0.010 0.020 0.000 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 0.000 +0.000 0.010 0.020 -81.94 +-0.005 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +0.000 0.010 0.020 -81.94 +-0.005 0.010 0.020 -81.94 +-0.005 0.010 0.020 -81.94 +-0.005 0.010 0.015 -81.94 +-0.005 0.010 0.015 -81.94 +-0.005 0.010 0.015 -81.94 +-0.005 0.010 0.015 0.000 +-0.005 0.010 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +0.000 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.005 0.000 +0.000 0.005 0.005 0.000 +-0.005 0.005 0.005 0.000 +0.000 0.005 0.005 0.000 +-0.005 0.000 0.000 0.000 +0.000 0.000 0.005 0.000 +0.000 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 -0.005 0.000 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 0.000 0.000 +0.000 -0.005 -0.005 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +-0.005 -0.005 -0.005 0.000 +0.000 -0.005 -0.005 0.000 +-0.005 -0.005 -0.005 0.000 +0.000 0.000 -0.010 0.000 +0.000 -0.005 -0.010 0.000 +0.000 -0.005 -0.010 0.000 +0.000 -0.005 -0.010 0.000 +0.000 -0.005 -0.010 -81.94 +-0.005 -0.005 -0.010 0.000 +0.000 -0.005 -0.010 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 -81.94 +0.000 -0.005 -0.020 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.020 0.000 +0.000 -0.005 -0.020 0.000 +0.000 -0.005 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 -81.94 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 -81.94 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 -81.94 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.015 0.000 +0.000 0.000 -0.010 0.000 +0.000 -0.005 -0.015 0.000 +0.000 -0.005 -0.010 0.000 +0.000 0.000 -0.010 0.000 +0.000 0.000 -0.010 0.000 +-0.005 0.000 -0.010 0.000 +0.000 -0.005 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.000 -0.005 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 0.000 0.000 +0.000 -0.005 -0.005 0.000 +0.000 0.000 -0.005 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 -0.005 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 81.94 +-0.005 0.000 0.000 0.000 +0.000 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +0.000 0.005 0.005 0.000 +-0.005 0.000 0.010 0.000 +-0.005 0.000 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +0.000 0.005 0.010 0.000 +-0.005 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.020 -81.94 +-0.005 0.005 0.020 0.000 +0.000 0.005 0.015 -81.94 +-0.005 0.005 0.015 -81.94 +-0.005 0.005 0.020 0.000 +-0.005 0.005 0.020 -81.94 +-0.005 0.005 0.015 -81.94 +0.000 0.005 0.020 -81.94 +-0.005 0.005 0.020 -81.94 +-0.005 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.010 0.020 0.000 +0.000 0.005 0.020 -81.94 +-0.005 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.020 0.000 +-0.005 0.005 0.020 -81.94 +0.000 0.005 0.020 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 0.000 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.005 0.010 0.000 +0.000 0.005 0.010 0.000 +0.000 0.005 0.010 0.000 +0.000 0.005 0.010 0.000 +0.000 0.000 0.010 0.000 +0.000 0.005 0.010 0.000 +0.000 0.000 0.010 0.000 +0.000 0.000 0.005 0.000 +0.000 0.000 0.005 0.000 +0.000 0.000 0.010 0.000 +0.000 0.000 0.005 0.000 +0.005 0.000 0.005 0.000 +0.005 0.000 0.005 0.000 +0.000 0.000 0.005 0.000 +0.005 0.000 0.000 0.000 +0.000 0.000 0.000 0.000 +0.005 0.005 0.000 0.000 +0.005 0.000 0.000 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 0.000 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.000 0.000 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.005 0.000 -0.005 0.000 +0.005 0.000 -0.010 0.000 +0.000 0.000 -0.010 0.000 +0.005 0.000 -0.010 0.000 +0.000 0.000 -0.010 0.000 +0.005 0.000 -0.010 0.000 +0.005 0.000 -0.015 0.000 +0.005 0.000 -0.010 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.005 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.020 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +0.000 0.005 -0.015 0.000 +0.000 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +0.000 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +0.000 0.005 -0.015 0.000 +0.000 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.005 -0.015 0.000 +0.000 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 0.000 +0.000 0.000 -0.010 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.015 0.000 +-0.005 0.000 -0.015 -81.94 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.010 -81.94 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.010 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 -0.005 -0.010 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.010 0.000 0.000 0.000 +-0.005 0.000 -0.005 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.000 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.005 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.000 0.005 0.000 +-0.005 0.005 0.005 0.000 +-0.005 0.005 0.005 0.000 +-0.005 0.000 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +-0.005 0.005 0.010 0.000 +0.000 0.000 0.010 -81.94 +-0.005 0.000 0.015 -81.94 +0.000 0.005 0.015 -81.94 +0.000 0.000 0.015 -81.94 +0.000 0.005 0.015 -81.94 +-0.005 0.005 0.015 0.000 diff --git a/tests/test_waveform_codec.py b/tests/test_waveform_codec.py index e800cfc..ea34acb 100644 --- a/tests/test_waveform_codec.py +++ b/tests/test_waveform_codec.py @@ -14,11 +14,12 @@ import pytest from minimateplus.waveform_codec import ( WaveformBlock, + decode_tran_initial, + decode_waveform_v2, find_data_start, parse_segment_header, split_segments, walk_body, - decode_waveform_v2, ) @@ -238,7 +239,7 @@ def test_segment_counter_increments(): @pytest.mark.parametrize("event_name", list(FIXTURES_INFO.keys())) def test_decode_waveform_v2_returns_none_until_verified(event_name): """ - The verified per-byte sample decoder is not yet wired up. + The full per-channel decoder is not yet wired up. This test ensures decode_waveform_v2 returns ``None`` so callers know to keep using the legacy decoder. When a verified decoder lands, @@ -250,3 +251,64 @@ def test_decode_waveform_v2_returns_none_until_verified(event_name): pytest.skip(f"fixture missing: {path}") body = _bw_body(path) assert decode_waveform_v2(body) is None + + +# ── decode_tran_initial: confirmed correct against ground truth ────────────── + +# Bundled fixtures for the high-amplitude 5-11-26 events (PPV ~6-7 in/s). +# These cracked the Tran codec — see waveform_codec module docstring. +TRAN_INITIAL_FIXTURES = [ + # (path, expected first N Tran samples in 16-count units, # of samples to verify) + ( + os.path.join(os.path.dirname(__file__), "fixtures", "5-11-26", "M529LL1A.SP0"), + [4, 4, 3, 3, 3, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 2, 1, 1, 1, 0, 1, 0], + 22, + ), + ( + os.path.join(os.path.dirname(__file__), "fixtures", "5-11-26", "M529LL1A.SS0"), + [-89, -89, -91, -91, -92, -93, -94, -94, -94, -94], + 42, + ), + ( + os.path.join(os.path.dirname(__file__), "fixtures", "5-11-26", "M529LL1A.SV0"), + [-745, -762, -771, -774, -779, -794, -808, -811, -811, -819], + 46, + ), +] + + +@pytest.mark.parametrize("path,expected,n_required", TRAN_INITIAL_FIXTURES) +def test_decode_tran_initial_matches_ground_truth(path, expected, n_required): + """The Tran initial decoder produces values matching the BW ASCII export exactly.""" + if not os.path.exists(path): + pytest.skip(f"fixture missing: {path}") + with open(path, "rb") as f: + raw = f.read() + body = raw[43:-26] + decoded = decode_tran_initial(body) + assert decoded is not None + # Check first len(expected) samples match exactly. + for i in range(len(expected)): + assert decoded[i] == expected[i], ( + f"sample {i}: decoded={decoded[i]} expected={expected[i]}" + ) + # And we got at least n_required samples decoded. + assert len(decoded) >= n_required, ( + f"decoded only {len(decoded)} samples, expected at least {n_required}" + ) + + +def test_decode_tran_initial_handles_empty(): + assert decode_tran_initial(b"") is None + assert decode_tran_initial(b"not a body") is None + + +def test_decode_tran_initial_synthetic_body(): + """A synthetic body with preamble + one 10 04 block decodes correctly.""" + # Magic + T[0]=10 + T[1]=20 in 16-count units. + # Then 10 04 block with 4 nibbles: (+1, -1, +2, -2) + # Encoded high-nibble first: 0x1F = (1, -1), 0x2E = (2, -2) + body = b"\x00\x02\x00\x00\x0a\x00\x14" + b"\x10\x04" + b"\x1f\x2e" + decoded = decode_tran_initial(body) + # T[0]=10, T[1]=20, then deltas (+1, -1, +2, -2) from T[1]=20 + assert decoded == [10, 20, 21, 20, 22, 20]