From 9539243fa5458761edea8acf9eef6bc66d97c36a Mon Sep 17 00:00:00 2001 From: Ralph Kuepper Date: Thu, 16 Jul 2026 03:33:43 +0200 Subject: [PATCH] =?UTF-8?q?test:=20real=20arena=20round-trips=20replace=20?= =?UTF-8?q?the=20synthetic=20stringify=20test=20(PLAN=20=C2=A7K1);=20warn?= =?UTF-8?q?=20before=20dropping=20unknown=20fields?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixture copies of both shooter arenas; loadWorld -> saveWorld -> parse -> structural deep-compare with dotted-path diffs. Both pass: the saver is semantically lossless on real worlds, terrain + splat layers included. - testPrefabFileRoundTrip pins the engine-side serializePrefab fix (schemaVersion + bounds used to be dropped). - openWorld posts a status-bar warning naming unknown fields BEFORE the user can save them away; testUnknownFieldDetection guards against false positives. - PLAN.md: Part 4 added — any world, any game: audit + phased plan. Requires engine fix/world-file-trust (Bloom-Engine/engine#104). 129 self-tests pass. Claude-Session: https://claude.ai/code/session_01PmL9WgNMkAgvpYSHEZga8K --- .gitignore | 3 + PLAN.md | 91 +- src/io/world-io.ts | 14 +- src/tests/fixtures/arena_01.world.json | 315 + src/tests/fixtures/arena_02.world.json | 24165 +++++++++++++++++++++++ src/tests/self-tests.ts | 199 +- 6 files changed, 24747 insertions(+), 40 deletions(-) create mode 100644 src/tests/fixtures/arena_01.world.json create mode 100644 src/tests/fixtures/arena_02.world.json diff --git a/.gitignore b/.gitignore index bcc2713..666f166 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,6 @@ dist/ # Crash dumps written by the engine crash filter during debugging tools/.testout/ + +# Scratch output written by `main --test` (round-trip self-tests) +/__selftest_* diff --git a/PLAN.md b/PLAN.md index 872345e..1a55728 100644 --- a/PLAN.md +++ b/PLAN.md @@ -7,8 +7,12 @@ Still outstanding: **F2** (rename/tint/tags/modelRef editing), **F3** (outliner depth), **G** (asset thumbnails — `renderAllThumbnails`/`getThumbnail` still have zero call sites), **H** (recent-projects UI — the write path runs every launch and nothing reads it), **I** (environment panel — still mutates directly, no -`SetEnvironmentCommand`), **K1** (a REAL round-trip test — see the correction at -§K1) and **K2** (see the correction there — its premise is void). +`SetEnvironmentCommand`), and **K2** (see the correction there — its premise is +void). ~~**K1**~~ shipped 2026-07-15 (evening) — see the correction at §K1. + +**Part 4 (added 2026-07-15) extends scope:** the editor should edit **any world +for any game** that uses the world format. It carries its own audit and phased +plan; Phase 1 (file trust) is already landed. This document is self-contained: it is written for an implementer with no prior context. It replaces the original design plan (which was deleted). Part 1 is a verified audit of the current state, Part 2 defines "done", Part 3 is the work plan. This is a **single unified scope** — do not cut it down to an MVP; if a task has a prerequisite, the prerequisite is in scope too. @@ -319,8 +323,16 @@ Keep fly-cam as the core mode (matches original scope). Stretch, only if trivial ### K. Shooter round-trip & integration proof -- **K1. Automated lossless round-trip test:** ⚠️ **STILL OUTSTANDING, and the - test that exists is actively MISLEADING (flagged 2026-07-15).** +- **K1. Automated lossless round-trip test:** ✅ **DONE (2026-07-15 evening).** + Fixture copies of both arenas live in `src/tests/fixtures/`; + `testWorldFileRoundTrip` runs `loadWorld` → `saveWorld` → parse both → structural + deep-compare with dotted-path diff reporting (`deepJsonEqual`), and passes for + both — the saver is semantically lossless on real worlds, including arena_02's + terrain + splat layers. The synthetic `JSON.stringify` test described below is + **deleted**, replaced by the real thing. A companion `testPrefabFileRoundTrip` + pins the prefab saver (see Part 4 §P1 — it was NOT lossless until today). + Original flag, kept for history: ⚠️ **the + test that existed was actively MISLEADING (flagged 2026-07-15).** `testWorldRoundTrip` in `src/tests/self-tests.ts` round-trips a *synthetic* 2-entity world with `JSON.stringify` — it never calls `saveWorld`, and `JSON.stringify` is the very idiom quirk #6 says corrupts a parsed graph (the @@ -340,3 +352,74 @@ Keep fly-cam as the core mode (matches original scope). Stretch, only if trivial ### Verification expectations Every task lands with its self-test where the logic is testable headless (commands, round-trip, paint kernel, selection model), and the implementer should run the editor against the shooter project after each group — the acceptance criteria above are written to be executed, not assumed. + +--- + +## Part 4 — Any world, any game (added 2026-07-15) + +**Goal:** this editor edits any world for any game that uses the world format. Parts 1–3 made it a working editor for the shooter's worlds; Part 4 is what separates that from a general tool. Audited 2026-07-15 (editor source, engine world module, and all four game repos); plan follows. + +### 4.1 Audit — where the "any game" claim actually stands + +**The editor is already game-agnostic in behavior.** A full sweep found no hard game dependency: game semantics stay opaque in `userData`/`tags`/`metadata`, the editor never injects or interprets shooter vocabulary for behavior, and every `editor.project.json` key is optional. What remains is soft coupling: + +- `KIND_COLORS` / `MESH_TAG_COLORS` (`src/world-sync/sync.ts:93-108`) hardcode shooter kind names for placeholder-cube colors. Unknown kinds fall through to a stable hash-hue, so nothing breaks — but the curated map should come from project config. +- `userData['halfExtents']` (`sync.ts:144-154`) sizes placeholder cubes — a convention, not a contract; other games get unit cubes. +- Play-in-editor requires the game to accept `--world ` (`src/playtest/launch.ts:47-48`). Reasonable, but written down nowhere. +- No-project mode works (bare `.world.json` opens, edits, saves) but renders every model-backed entity as a magenta cube — the catalog is empty without a project. +- `gameId` is parsed from the project file and silently discarded (`src/io/project.ts:33`). +- Asset catalog startup is fully synchronous (`src/io/asset-catalog.ts:55-76`) — ~20 s black window on the shooter's 26 GLBs; scales with the game. + +**The ecosystem is where the claim fails today.** Shooter is the world format's *only* consumer — and it spawns via its own flat-array code (`shooter/src/world-runtime.ts`), so **`instantiateWorld` still has zero game consumers** and the whole generic render path (§C's "a river cannot look different in-game" guarantee) remains unproven outside the editor. Garden ignores the format entirely (hardcoded single-file scene — two `drawCube` calls and 12 constant-array collectibles). Jump is 2D with its own text format and own editor; structurally out of scope. No engine example loads a world. "Any game that uses the world format" currently describes a set of one, whose loader was co-designed with this editor. + +**Two file-trust defects found (both FIXED same day, see §P1):** + +1. **Prefab round-trip was not lossless.** `serializePrefab` (`engine/src/world/serialize.ts`) wrote only `id`/`name`/`children` — `schemaVersion` was dropped and silently backfilled by migration on reload (hiding the loss), and `bounds` was dropped outright, coming back `undefined`. `createEmptyPrefab` also stamped `schemaVersion: 1` on a v2 schema. +2. **Unknown fields are silently stripped on save.** Validation tolerates unknown fields (correctly — forward compat) but the schema-explicit saver drops them, so a game's extension field survives load and vanishes on the first Ctrl+S with no warning anywhere. For a tool that claims to edit other games' data, silent data loss is the worst failure mode. (Preserving arbitrary unknown fields through the literal-key serializer is not realistic under Perry — see serialize.ts's header — so the honest contract is *detect and warn loudly*, plus sanctioned extension points that DO round-trip: `world.metadata`, `entity.userData`, `entity.tags`.) + +### 4.2 Definition of done — "any game" + +1. Both shooter arenas round-trip semantically losslessly under an automated test that runs the REAL save path. *(done — §P1)* +2. Prefabs round-trip losslessly, including `schemaVersion` and `bounds`. *(done — §P1)* +3. A file containing fields this editor doesn't know produces a loud warning at load — console and status bar — naming the fields, before the user can save. *(done — §P1)* +4. A written contract exists (engine repo) that a third game can implement without reading shooter source: world schema + extension points, `editor.project.json` keys, `--world` convention, `userData.kind` discrimination pattern. +5. `instantiateWorld` has at least one consumer that renders a world outside the editor (engine `world-viewer` example), and one real game consumer (garden). +6. A world authored **from scratch in the editor** plays in a game that is not the shooter. +7. The editor opens: a bare world with no project file, a project with unknown `userData` vocabularies, and a 500-entity world — without data loss and without the UI becoming unusable (outliner must scroll/filter). + +### 4.3 Work plan + +#### P1. File trust — ✅ DONE (2026-07-15 evening) + +> The editor's core promise to another game is "I will not damage your data." +> +> - **P1a** Real world round-trip test (was K1): fixtures + `loadWorld` → `saveWorld` → parse → `deepJsonEqual` (dotted-path diffs, both directions of key diff). Both arenas pass. The synthetic `JSON.stringify` test is deleted. +> - **P1b** Prefab round-trip fixed in the engine: `serializePrefab` now writes `schemaVersion` + `bounds`; `migratePrefabData` backfills degenerate bounds for pre-fix files; `createEmptyPrefab` stamps the current version. Pinned by `testPrefabFileRoundTrip`. +> - **P1c** Unknown-field policy implemented: `listUnknownWorldFields` / `listUnknownPrefabFields` (`engine/src/world/validate.ts`) walk every schema level and return dotted paths. `loadWorld`/`loadPrefab` `console.error` each one (stderr survives crashes; stdout doesn't); the editor's `openWorld` additionally posts a status-bar warning naming the count and first offender BEFORE the user can save. Extension points that do round-trip are documented at the checker. Pinned by `testUnknownFieldDetection` (clean world lists nothing — false positives would spam every load). +> +> 129 self-tests pass via `./main --test`. + +#### P2. The contract — write down what "uses the world format" means + +- **P2a** `engine/docs/world-format.md`: the schema (or a blessed pointer to `types.ts`), the three sanctioned extension points and the strip-warning behavior, `editor.project.json` — all eight keys, defaults, "all optional" — the `--world ` play convention, and the recommended `userData.kind` pattern with `halfExtents` et al. documented as conventions. Acceptance: a third game could adopt the format from this doc alone, without reading shooter source. +- **P2b** De-shooterize the soft spots: optional project key (e.g. `kindColors`) feeding the placeholder map, hash fallback stays the default; either use `gameId` or stop parsing it. +- **P2c** Editor CLI: `--project ` and `--world ` args (argv handling already exists for `--test`), so any world can be opened without dialogs. Acceptance: `./main --world ../somegame/assets/worlds/x.world.json` opens it. + +#### P3. The proof — a second consumer + +- **P3a** Engine `world-viewer` example (~100 LOC): `loadWorld` + `instantiateWorld` + `applyWorldLights` + fly camera on any path handed to it. First consumer of `instantiateWorld`; becomes the conformance harness for the generic path (terrain, splat layers, water, rivers, lights outside the editor) and the "hello world" for adopters. ⚠ verify-first: `instantiateWorld` has never run in a game — expect the §C1-era acceptance that was "never executable" to surface real gaps here. +- **P3b** Port **garden** to the world format. Its scene maps directly (island → terrain or flat entities, water plane → water volume, 12 collectibles → entities with `userData.kind: "bloom"`), and it exercises the exact path shooter doesn't: a world **authored from scratch in the editor**, loaded via **`instantiateWorld`**. Acceptance: a garden level built in the editor plays in garden. Decision needed first: adoption as product direction vs. testbed branch — garden has a GDD; don't fight its design (§4.4 Q1). + +#### P4. Generic editing depth (Part 3's F/H/I items, re-prioritized for foreign worlds) + +Order changes because the customer is now "someone else's world": **F3 first and split** — scrolling + a filter box are prerequisites for opening any large world (66 entities already buries the list; the panel cannot scroll at all — `outliner.ts:35,73`), rename/per-row ops can follow. Then **F2** with modelRef reassignment leading (remapping asset paths is the first thing editing a foreign world needs), then **I** (env completeness + `SetEnvironmentCommand`), then water/river gizmo manipulation (§C tail), then **H** (recent projects — the multi-game switching workflow). **J** stays stretch. + +#### P5. Polish + +Async/lazy asset catalog (the 20 s blocking startup punishes exactly the big new game this is for; models on demand, catalog listing stays instant), then **G** thumbnails as the natural background job once loading is async. + +### 4.4 Open questions + +1. Garden adoption: product direction or testbed? (P3b blocks on this; P3a doesn't.) +2. Should unknown-field warnings eventually harden into a versioned-strict mode (error, not warning, when `schemaVersion` claims current)? Today: warn only. +3. Does `world-viewer` belong in `engine/examples/` (sibling to `perry-embed`) or as a `--view` mode of the editor binary? Leaning examples/ — the point is proving the path with zero editor code in the loop. diff --git a/src/io/world-io.ts b/src/io/world-io.ts index 60d9f42..a2ad22a 100644 --- a/src/io/world-io.ts +++ b/src/io/world-io.ts @@ -1,8 +1,8 @@ // Thin wrapper around bloom/world loader/saver for the editor. // Handles file path resolution and state updates (modified flag, world path). -import { loadWorld, saveWorld, createEmptyWorld } from 'bloom/world'; -import { EditorState } from '../state/editor-state'; +import { loadWorld, saveWorld, createEmptyWorld, listUnknownWorldFields } from 'bloom/world'; +import { EditorState, setStatus } from '../state/editor-state'; import { rebuildAllSceneNodes } from '../world-sync/sync'; import { joinPath } from './paths'; @@ -15,6 +15,16 @@ export function openWorld(state: EditorState, path: string): boolean { state.selection.ids.clear(); state.selection.primary = null; rebuildAllSceneNodes(state); + + // The saver is schema-explicit: fields it doesn't know are dropped on the + // first Ctrl+S. loadWorld already printed each one to the console; the + // status bar makes sure the user saw it BEFORE saving, not after. + const unknown = listUnknownWorldFields(world); + if (unknown.length > 0) { + setStatus(state, + 'This file has ' + unknown.length + ' field(s) this editor does not know (e.g. ' + + unknown[0] + ') — saving will DROP them. See console.'); + } return true; } catch (e) { return false; diff --git a/src/tests/fixtures/arena_01.world.json b/src/tests/fixtures/arena_01.world.json new file mode 100644 index 0000000..2062fc6 --- /dev/null +++ b/src/tests/fixtures/arena_01.world.json @@ -0,0 +1,315 @@ +{ + "schemaVersion": 2, + "name": "Arena 01", + "id": "arena_01", + "bounds": { + "min": [ + -30, + -5, + -30 + ], + "max": [ + 30, + 20, + 30 + ] + }, + "environment": { + "skyColor": [ + 0.08, + 0.08, + 0.1 + ], + "ambientColor": [ + 0.5, + 0.5, + 0.7 + ], + "ambientIntensity": 0.35, + "sunDirection": [ + -0.3, + -0.9, + -0.2 + ], + "sunColor": [ + 1.0, + 0.95, + 0.85 + ], + "sunIntensity": 1.0, + "fogStart": 25, + "fogEnd": 80, + "fogColor": [ + 0.08, + 0.08, + 0.12 + ], + "shadowsEnabled": true + }, + "terrain": null, + "entities": [ + { + "id": "spawn_1", + "name": "player_spawn", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 1, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "player_spawn", + "primary": "1", + "yaw": "0" + } + }, + { + "id": "floor", + "name": "floor", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + -0.5, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "25,0.5,25", + "static": "1" + } + }, + { + "id": "wall_n", + "name": "wall_n", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 2.5, + -25 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "25,3,0.5", + "static": "1" + } + }, + { + "id": "wall_s", + "name": "wall_s", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 2.5, + 25 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "25,3,0.5", + "static": "1" + } + }, + { + "id": "wall_e", + "name": "wall_e", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 25, + 2.5, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "0.5,3,25", + "static": "1" + } + }, + { + "id": "wall_w", + "name": "wall_w", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -25, + 2.5, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "0.5,3,25", + "static": "1" + } + }, + { + "id": "spawner_a", + "name": "spawner_a", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 15, + 0, + -15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "enemy_spawner", + "enemyType": "dretch", + "waveBits": "1,2,3", + "maxAlive": "3", + "cooldown": "1.2" + } + }, + { + "id": "cfg_waves", + "name": "waves", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 0, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "wave_config", + "waves": "[{\"count\":5,\"enemy\":\"dretch\"},{\"count\":10,\"enemy\":\"dretch\"},{\"count\":20,\"enemy\":\"dretch\"}]" + } + } + ], + "lights": [], + "water": [], + "rivers": [], + "metadata": { + "gameId": "shooter" + } +} diff --git a/src/tests/fixtures/arena_02.world.json b/src/tests/fixtures/arena_02.world.json new file mode 100644 index 0000000..6f8adf2 --- /dev/null +++ b/src/tests/fixtures/arena_02.world.json @@ -0,0 +1,24165 @@ +{ + "schemaVersion": 2, + "name": "Arena 02 \u00e2\u20ac\u201d Outdoor plaza", + "id": "arena_02", + "bounds": { + "min": [ + -50, + -5, + -50 + ], + "max": [ + 50, + 30, + 50 + ] + }, + "environment": { + "skyColor": [ + 0.55, + 0.62, + 0.78 + ], + "ambientColor": [ + 0.75, + 0.78, + 0.85 + ], + "ambientIntensity": 0.55, + "sunDirection": [ + 0.45, + 0.72, + 0.52 + ], + "sunColor": [ + 1, + 0.95, + 0.82 + ], + "sunIntensity": 1.1, + "fogStart": 45, + "fogEnd": 140, + "fogColor": [ + 0.62, + 0.68, + 0.78 + ], + "shadowsEnabled": true + }, + "terrain": { + "width": 128, + "depth": 128, + "cellSize": 0.6299212598425197, + "origin": [ + -40, + 0, + -40 + ], + "heights": [ + 0.6377, + 0.7011, + 0.7649, + 0.8287, + 0.8921, + 0.9546, + 1.0155, + 1.0743, + 1.1303, + 1.183, + 1.2315, + 1.2754, + 1.314, + 1.3467, + 1.3732, + 1.3928, + 1.4054, + 1.4108, + 1.4087, + 1.3992, + 1.3825, + 1.3587, + 1.3284, + 1.2919, + 1.2498, + 1.2029, + 1.1517, + 1.0972, + 1.0402, + 0.9814, + 0.9218, + 0.8621, + 0.8031, + 0.7454, + 0.6899, + 0.6369, + 0.5871, + 0.5407, + 0.4981, + 0.4594, + 0.4248, + 0.3942, + 0.3676, + 0.3448, + 0.3256, + 0.3097, + 0.2969, + 0.2867, + 0.2789, + 0.273, + 0.2686, + 0.2654, + 0.2629, + 0.2609, + 0.259, + 0.257, + 0.2545, + 0.2513, + 0.2473, + 0.2424, + 0.2364, + 0.2292, + 0.2209, + 0.2115, + 0.2011, + 0.1898, + 0.1776, + 0.1649, + 0.1517, + 0.1383, + 0.125, + 0.112, + 0.0996, + 0.0881, + 0.0777, + 0.0688, + 0.0616, + 0.0563, + 0.0533, + 0.0528, + 0.0549, + 0.0598, + 0.0677, + 0.0786, + 0.0925, + 0.1096, + 0.1297, + 0.1527, + 0.1786, + 0.2071, + 0.2381, + 0.2712, + 0.3061, + 0.3426, + 0.3803, + 0.4187, + 0.4575, + 0.4962, + 0.5344, + 0.5718, + 0.6079, + 0.6423, + 0.6746, + 0.7045, + 0.7316, + 0.7558, + 0.7767, + 0.7941, + 0.8079, + 0.818, + 0.8244, + 0.8269, + 0.8256, + 0.8205, + 0.8119, + 0.7998, + 0.7843, + 0.7658, + 0.7443, + 0.7202, + 0.6937, + 0.6651, + 0.6347, + 0.6027, + 0.5695, + 0.5353, + 0.5004, + 0.465, + 0.64, + 0.7028, + 0.7659, + 0.8291, + 0.8919, + 0.9538, + 1.0142, + 1.0725, + 1.1281, + 1.1804, + 1.2287, + 1.2724, + 1.311, + 1.3438, + 1.3704, + 1.3903, + 1.4033, + 1.4091, + 1.4076, + 1.3988, + 1.3829, + 1.3601, + 1.3307, + 1.2952, + 1.2543, + 1.2085, + 1.1586, + 1.1054, + 1.0496, + 0.9922, + 0.9338, + 0.8754, + 0.8176, + 0.7612, + 0.7068, + 0.6549, + 0.606, + 0.5605, + 0.5187, + 0.4807, + 0.4465, + 0.4163, + 0.39, + 0.3672, + 0.348, + 0.3319, + 0.3187, + 0.308, + 0.2995, + 0.2927, + 0.2874, + 0.2831, + 0.2794, + 0.2761, + 0.2728, + 0.2692, + 0.2651, + 0.2604, + 0.2547, + 0.2481, + 0.2405, + 0.2318, + 0.222, + 0.2111, + 0.1994, + 0.1868, + 0.1737, + 0.16, + 0.1462, + 0.1324, + 0.1189, + 0.106, + 0.0939, + 0.083, + 0.0736, + 0.0659, + 0.0602, + 0.0569, + 0.0561, + 0.0581, + 0.063, + 0.071, + 0.0823, + 0.0969, + 0.1148, + 0.136, + 0.1604, + 0.1879, + 0.2184, + 0.2516, + 0.2873, + 0.3251, + 0.3647, + 0.4057, + 0.4477, + 0.4904, + 0.5331, + 0.5755, + 0.6171, + 0.6575, + 0.6962, + 0.7328, + 0.7669, + 0.7981, + 0.8261, + 0.8506, + 0.8713, + 0.8881, + 0.9009, + 0.9094, + 0.9138, + 0.9139, + 0.9099, + 0.9017, + 0.8897, + 0.8739, + 0.8546, + 0.832, + 0.8064, + 0.7781, + 0.7473, + 0.7144, + 0.6798, + 0.6436, + 0.6064, + 0.5683, + 0.5297, + 0.4909, + 0.6402, + 0.7021, + 0.7644, + 0.8268, + 0.8888, + 0.9499, + 1.0096, + 1.0672, + 1.1223, + 1.1741, + 1.2221, + 1.2656, + 1.304, + 1.3368, + 1.3634, + 1.3836, + 1.397, + 1.4033, + 1.4024, + 1.3944, + 1.3793, + 1.3575, + 1.3292, + 1.295, + 1.2553, + 1.2108, + 1.1623, + 1.1105, + 1.0562, + 1.0003, + 0.9434, + 0.8864, + 0.83, + 0.7749, + 0.7218, + 0.6711, + 0.6234, + 0.5789, + 0.5379, + 0.5006, + 0.4671, + 0.4373, + 0.4112, + 0.3886, + 0.3693, + 0.353, + 0.3394, + 0.3282, + 0.319, + 0.3114, + 0.3051, + 0.2997, + 0.2948, + 0.2901, + 0.2854, + 0.2803, + 0.2747, + 0.2683, + 0.2611, + 0.2529, + 0.2437, + 0.2334, + 0.2222, + 0.21, + 0.1971, + 0.1834, + 0.1694, + 0.155, + 0.1407, + 0.1266, + 0.1131, + 0.1004, + 0.0889, + 0.0788, + 0.0705, + 0.0643, + 0.0605, + 0.0592, + 0.0609, + 0.0656, + 0.0737, + 0.0851, + 0.1, + 0.1185, + 0.1406, + 0.1662, + 0.1952, + 0.2275, + 0.2628, + 0.3009, + 0.3414, + 0.3841, + 0.4286, + 0.4743, + 0.5209, + 0.5678, + 0.6146, + 0.6608, + 0.7059, + 0.7493, + 0.7906, + 0.8294, + 0.8652, + 0.8977, + 0.9264, + 0.9511, + 0.9716, + 0.9877, + 0.9992, + 1.006, + 1.0082, + 1.0057, + 0.9987, + 0.9873, + 0.9716, + 0.952, + 0.9286, + 0.9017, + 0.8717, + 0.8388, + 0.8035, + 0.7662, + 0.7271, + 0.6866, + 0.6451, + 0.603, + 0.5606, + 0.5182, + 0.6382, + 0.699, + 0.7603, + 0.8217, + 0.8827, + 0.9429, + 1.0018, + 1.0586, + 1.113, + 1.1642, + 1.2117, + 1.2548, + 1.293, + 1.3257, + 1.3525, + 1.3729, + 1.3866, + 1.3934, + 1.3932, + 1.386, + 1.3719, + 1.3511, + 1.324, + 1.2911, + 1.2528, + 1.2098, + 1.1629, + 1.1127, + 1.06, + 1.0056, + 0.9504, + 0.895, + 0.8402, + 0.7866, + 0.7349, + 0.6855, + 0.639, + 0.5956, + 0.5555, + 0.5191, + 0.4862, + 0.4569, + 0.4312, + 0.4087, + 0.3894, + 0.3729, + 0.359, + 0.3473, + 0.3374, + 0.3289, + 0.3216, + 0.3151, + 0.309, + 0.303, + 0.2968, + 0.2903, + 0.2831, + 0.2752, + 0.2664, + 0.2567, + 0.246, + 0.2343, + 0.2217, + 0.2083, + 0.1942, + 0.1796, + 0.1647, + 0.1498, + 0.1351, + 0.121, + 0.1076, + 0.0954, + 0.0846, + 0.0755, + 0.0686, + 0.0641, + 0.0623, + 0.0634, + 0.0678, + 0.0755, + 0.0869, + 0.1019, + 0.1208, + 0.1435, + 0.17, + 0.2002, + 0.234, + 0.2712, + 0.3116, + 0.3547, + 0.4004, + 0.4482, + 0.4976, + 0.5482, + 0.5994, + 0.6508, + 0.7018, + 0.7518, + 0.8004, + 0.8469, + 0.8909, + 0.9318, + 0.9693, + 1.0029, + 1.0323, + 1.0572, + 1.0773, + 1.0925, + 1.1025, + 1.1075, + 1.1073, + 1.1021, + 1.0919, + 1.0769, + 1.0574, + 1.0336, + 1.0059, + 0.9745, + 0.9399, + 0.9023, + 0.8623, + 0.8202, + 0.7765, + 0.7315, + 0.6857, + 0.6394, + 0.593, + 0.5468, + 0.634, + 0.6937, + 0.7538, + 0.814, + 0.8739, + 0.933, + 0.9908, + 1.0467, + 1.1002, + 1.1507, + 1.1976, + 1.2403, + 1.2782, + 1.3107, + 1.3375, + 1.3581, + 1.3721, + 1.3795, + 1.38, + 1.3736, + 1.3605, + 1.3409, + 1.3151, + 1.2836, + 1.2468, + 1.2055, + 1.1602, + 1.1117, + 1.0608, + 1.0083, + 0.9548, + 0.9011, + 0.848, + 0.7961, + 0.746, + 0.6981, + 0.6528, + 0.6106, + 0.5716, + 0.5361, + 0.5039, + 0.4752, + 0.4498, + 0.4276, + 0.4082, + 0.3916, + 0.3773, + 0.3651, + 0.3545, + 0.3452, + 0.3369, + 0.3293, + 0.3219, + 0.3146, + 0.3071, + 0.2991, + 0.2904, + 0.281, + 0.2707, + 0.2595, + 0.2473, + 0.2343, + 0.2204, + 0.2058, + 0.1908, + 0.1754, + 0.1598, + 0.1445, + 0.1296, + 0.1155, + 0.1025, + 0.0909, + 0.081, + 0.0732, + 0.0679, + 0.0653, + 0.0657, + 0.0694, + 0.0767, + 0.0877, + 0.1026, + 0.1215, + 0.1445, + 0.1716, + 0.2028, + 0.2378, + 0.2767, + 0.319, + 0.3646, + 0.4131, + 0.464, + 0.517, + 0.5716, + 0.6271, + 0.6832, + 0.7391, + 0.7943, + 0.8483, + 0.9003, + 0.9499, + 0.9965, + 1.0396, + 1.0788, + 1.1135, + 1.1435, + 1.1684, + 1.188, + 1.2021, + 1.2106, + 1.2135, + 1.2108, + 1.2026, + 1.189, + 1.1703, + 1.1468, + 1.1187, + 1.0864, + 1.0503, + 1.0108, + 0.9684, + 0.9234, + 0.8765, + 0.8279, + 0.7782, + 0.7279, + 0.6772, + 0.6267, + 0.5767, + 0.6277, + 0.686, + 0.7447, + 0.8036, + 0.8622, + 0.92, + 0.9766, + 1.0315, + 1.0841, + 1.1337, + 1.1799, + 1.222, + 1.2595, + 1.2919, + 1.3186, + 1.3393, + 1.3537, + 1.3616, + 1.3628, + 1.3574, + 1.3453, + 1.327, + 1.3025, + 1.2725, + 1.2374, + 1.1978, + 1.1544, + 1.1078, + 1.0588, + 1.0082, + 0.9566, + 0.9049, + 0.8536, + 0.8035, + 0.755, + 0.7087, + 0.6649, + 0.6239, + 0.5861, + 0.5515, + 0.5201, + 0.492, + 0.467, + 0.445, + 0.4257, + 0.4089, + 0.3943, + 0.3815, + 0.3703, + 0.3602, + 0.3509, + 0.3422, + 0.3336, + 0.325, + 0.3161, + 0.3067, + 0.2966, + 0.2857, + 0.2739, + 0.2613, + 0.2477, + 0.2334, + 0.2184, + 0.2028, + 0.1868, + 0.1707, + 0.1547, + 0.1391, + 0.1242, + 0.1103, + 0.0978, + 0.087, + 0.0782, + 0.0719, + 0.0683, + 0.0678, + 0.0707, + 0.0772, + 0.0876, + 0.1021, + 0.1208, + 0.1438, + 0.1711, + 0.2029, + 0.2388, + 0.2789, + 0.323, + 0.3707, + 0.4216, + 0.4756, + 0.532, + 0.5903, + 0.6501, + 0.7108, + 0.7717, + 0.8322, + 0.8918, + 0.9496, + 1.0052, + 1.0579, + 1.1071, + 1.1524, + 1.1931, + 1.2289, + 1.2593, + 1.2842, + 1.3031, + 1.3161, + 1.3229, + 1.3236, + 1.3181, + 1.3068, + 1.2897, + 1.2671, + 1.2393, + 1.2066, + 1.1696, + 1.1286, + 1.0841, + 1.0366, + 0.9866, + 0.9346, + 0.8811, + 0.8266, + 0.7715, + 0.7164, + 0.6617, + 0.6077, + 0.6194, + 0.6761, + 0.7333, + 0.7906, + 0.8477, + 0.9041, + 0.9595, + 1.0131, + 1.0646, + 1.1133, + 1.1587, + 1.2001, + 1.2372, + 1.2692, + 1.2959, + 1.3167, + 1.3315, + 1.3399, + 1.3418, + 1.3373, + 1.3264, + 1.3094, + 1.2864, + 1.258, + 1.2247, + 1.1869, + 1.1454, + 1.1009, + 1.0539, + 1.0054, + 0.9559, + 0.9062, + 0.8569, + 0.8086, + 0.762, + 0.7173, + 0.675, + 0.6355, + 0.5988, + 0.5652, + 0.5347, + 0.5072, + 0.4827, + 0.4609, + 0.4417, + 0.4248, + 0.4098, + 0.3966, + 0.3846, + 0.3737, + 0.3635, + 0.3537, + 0.3439, + 0.3341, + 0.3238, + 0.313, + 0.3015, + 0.2891, + 0.276, + 0.262, + 0.2472, + 0.2317, + 0.2156, + 0.1991, + 0.1823, + 0.1657, + 0.1493, + 0.1336, + 0.1188, + 0.1053, + 0.0935, + 0.0836, + 0.0762, + 0.0715, + 0.0699, + 0.0717, + 0.0773, + 0.0868, + 0.1005, + 0.1186, + 0.1413, + 0.1686, + 0.2005, + 0.237, + 0.278, + 0.3233, + 0.3727, + 0.4259, + 0.4824, + 0.5419, + 0.6039, + 0.6677, + 0.7329, + 0.7987, + 0.8645, + 0.9297, + 0.9936, + 1.0554, + 1.1145, + 1.1703, + 1.2222, + 1.2694, + 1.3117, + 1.3484, + 1.3793, + 1.404, + 1.4222, + 1.4338, + 1.4388, + 1.4371, + 1.4288, + 1.4142, + 1.3933, + 1.3666, + 1.3344, + 1.2971, + 1.2552, + 1.2092, + 1.1595, + 1.1068, + 1.0515, + 0.9943, + 0.9357, + 0.8762, + 0.8164, + 0.7568, + 0.6977, + 0.6397, + 0.6089, + 0.6639, + 0.7194, + 0.7751, + 0.8306, + 0.8855, + 0.9393, + 0.9917, + 1.0419, + 1.0895, + 1.134, + 1.1747, + 1.2112, + 1.243, + 1.2695, + 1.2904, + 1.3055, + 1.3145, + 1.3172, + 1.3136, + 1.3039, + 1.2882, + 1.2668, + 1.2401, + 1.2087, + 1.1729, + 1.1335, + 1.091, + 1.0463, + 0.9999, + 0.9526, + 0.9051, + 0.8579, + 0.8116, + 0.7668, + 0.7239, + 0.6833, + 0.6452, + 0.6098, + 0.5773, + 0.5477, + 0.5209, + 0.4969, + 0.4754, + 0.4562, + 0.4392, + 0.4239, + 0.4102, + 0.3976, + 0.3859, + 0.3747, + 0.3638, + 0.3529, + 0.3417, + 0.3302, + 0.318, + 0.3051, + 0.2915, + 0.277, + 0.2617, + 0.2457, + 0.2291, + 0.2121, + 0.1947, + 0.1774, + 0.1603, + 0.1437, + 0.128, + 0.1135, + 0.1006, + 0.0896, + 0.0809, + 0.075, + 0.0721, + 0.0727, + 0.077, + 0.0853, + 0.098, + 0.1152, + 0.1372, + 0.164, + 0.1957, + 0.2324, + 0.2738, + 0.32, + 0.3707, + 0.4256, + 0.4844, + 0.5466, + 0.6117, + 0.6793, + 0.7487, + 0.8193, + 0.8904, + 0.9612, + 1.0311, + 1.0993, + 1.1651, + 1.2277, + 1.2865, + 1.3409, + 1.3902, + 1.4339, + 1.4716, + 1.5027, + 1.5271, + 1.5445, + 1.5547, + 1.5577, + 1.5535, + 1.5423, + 1.5241, + 1.4994, + 1.4685, + 1.4318, + 1.3896, + 1.3427, + 1.2914, + 1.2365, + 1.1784, + 1.1178, + 1.0553, + 0.9915, + 0.927, + 0.8623, + 0.798, + 0.7346, + 0.6725, + 0.5965, + 0.6496, + 0.7033, + 0.7571, + 0.8109, + 0.8641, + 0.9164, + 0.9672, + 1.0161, + 1.0626, + 1.1061, + 1.146, + 1.1819, + 1.2132, + 1.2396, + 1.2606, + 1.2759, + 1.2854, + 1.2889, + 1.2864, + 1.2779, + 1.2636, + 1.2439, + 1.219, + 1.1894, + 1.1558, + 1.1185, + 1.0783, + 1.0359, + 0.9918, + 0.9468, + 0.9015, + 0.8565, + 0.8124, + 0.7696, + 0.7286, + 0.6896, + 0.653, + 0.619, + 0.5877, + 0.559, + 0.5329, + 0.5094, + 0.4882, + 0.4692, + 0.452, + 0.4365, + 0.4222, + 0.409, + 0.3965, + 0.3844, + 0.3724, + 0.3604, + 0.348, + 0.3352, + 0.3217, + 0.3075, + 0.2926, + 0.2769, + 0.2604, + 0.2433, + 0.2257, + 0.2078, + 0.1898, + 0.1719, + 0.1545, + 0.1379, + 0.1223, + 0.1083, + 0.0961, + 0.0861, + 0.0788, + 0.0745, + 0.0736, + 0.0765, + 0.0834, + 0.0948, + 0.1108, + 0.1317, + 0.1577, + 0.1888, + 0.2251, + 0.2666, + 0.3131, + 0.3646, + 0.4208, + 0.4813, + 0.5457, + 0.6137, + 0.6846, + 0.7579, + 0.8329, + 0.9089, + 0.9852, + 1.061, + 1.1356, + 1.2081, + 1.2778, + 1.344, + 1.4058, + 1.4627, + 1.5139, + 1.559, + 1.5974, + 1.6288, + 1.6528, + 1.6692, + 1.6779, + 1.6788, + 1.672, + 1.6577, + 1.636, + 1.6073, + 1.572, + 1.5306, + 1.4836, + 1.4315, + 1.3749, + 1.3146, + 1.2511, + 1.185, + 1.1172, + 1.0481, + 0.9785, + 0.9089, + 0.8399, + 0.7721, + 0.7059, + 0.5821, + 0.6333, + 0.6849, + 0.7369, + 0.7887, + 0.8401, + 0.8907, + 0.94, + 0.9874, + 1.0326, + 1.075, + 1.114, + 1.1492, + 1.1801, + 1.2063, + 1.2273, + 1.243, + 1.253, + 1.2573, + 1.2558, + 1.2485, + 1.2358, + 1.2177, + 1.1947, + 1.1672, + 1.1356, + 1.1007, + 1.0628, + 1.0228, + 0.9812, + 0.9386, + 0.8957, + 0.853, + 0.811, + 0.7703, + 0.7312, + 0.694, + 0.659, + 0.6264, + 0.5962, + 0.5685, + 0.5432, + 0.5202, + 0.4994, + 0.4805, + 0.4632, + 0.4474, + 0.4327, + 0.4189, + 0.4056, + 0.3926, + 0.3796, + 0.3665, + 0.3529, + 0.3389, + 0.3241, + 0.3087, + 0.2925, + 0.2756, + 0.2581, + 0.24, + 0.2215, + 0.2029, + 0.1843, + 0.166, + 0.1485, + 0.1319, + 0.1167, + 0.1032, + 0.0919, + 0.0831, + 0.0773, + 0.0748, + 0.076, + 0.0813, + 0.0911, + 0.1056, + 0.1251, + 0.1498, + 0.1799, + 0.2154, + 0.2564, + 0.3029, + 0.3546, + 0.4115, + 0.4732, + 0.5393, + 0.6095, + 0.6833, + 0.76, + 0.839, + 0.9196, + 1.0011, + 1.0826, + 1.1634, + 1.2426, + 1.3194, + 1.393, + 1.4626, + 1.5273, + 1.5866, + 1.6397, + 1.6861, + 1.7252, + 1.7567, + 1.7803, + 1.7956, + 1.8026, + 1.8014, + 1.7918, + 1.7743, + 1.7489, + 1.7162, + 1.6765, + 1.6303, + 1.5782, + 1.5209, + 1.459, + 1.3932, + 1.3242, + 1.2527, + 1.1794, + 1.1051, + 1.0303, + 0.9558, + 0.8821, + 0.8099, + 0.7395, + 0.5659, + 0.6149, + 0.6645, + 0.7143, + 0.7642, + 0.8137, + 0.8624, + 0.91, + 0.956, + 0.9998, + 1.041, + 1.079, + 1.1135, + 1.1439, + 1.1698, + 1.1908, + 1.2068, + 1.2173, + 1.2224, + 1.222, + 1.216, + 1.2048, + 1.1885, + 1.1674, + 1.142, + 1.1127, + 1.0801, + 1.0447, + 1.0071, + 0.968, + 0.9279, + 0.8874, + 0.8471, + 0.8075, + 0.7689, + 0.7318, + 0.6964, + 0.6631, + 0.6319, + 0.603, + 0.5763, + 0.5518, + 0.5294, + 0.5089, + 0.4901, + 0.4728, + 0.4567, + 0.4416, + 0.4271, + 0.4131, + 0.3992, + 0.3852, + 0.371, + 0.3564, + 0.3411, + 0.3252, + 0.3086, + 0.2913, + 0.2733, + 0.2547, + 0.2357, + 0.2165, + 0.1972, + 0.1782, + 0.1597, + 0.1421, + 0.1257, + 0.111, + 0.0982, + 0.0879, + 0.0804, + 0.0762, + 0.0757, + 0.0792, + 0.0872, + 0.0999, + 0.1177, + 0.1408, + 0.1694, + 0.2037, + 0.2437, + 0.2895, + 0.3409, + 0.3979, + 0.4602, + 0.5275, + 0.5993, + 0.6753, + 0.7548, + 0.8373, + 0.922, + 1.0082, + 1.0951, + 1.1818, + 1.2675, + 1.3513, + 1.4323, + 1.5097, + 1.5826, + 1.6502, + 1.7118, + 1.7667, + 1.8143, + 1.854, + 1.8855, + 1.9085, + 1.9227, + 1.928, + 1.9244, + 1.9121, + 1.8912, + 1.8621, + 1.8253, + 1.781, + 1.7301, + 1.6729, + 1.6104, + 1.5431, + 1.4718, + 1.3973, + 1.3203, + 1.2416, + 1.162, + 1.0821, + 1.0027, + 0.9243, + 0.8476, + 0.7732, + 0.5479, + 0.5947, + 0.642, + 0.6897, + 0.7374, + 0.7849, + 0.8317, + 0.8775, + 0.9219, + 0.9642, + 1.0042, + 1.0412, + 1.0749, + 1.1047, + 1.1303, + 1.1514, + 1.1675, + 1.1786, + 1.1845, + 1.1851, + 1.1805, + 1.1709, + 1.1563, + 1.1372, + 1.114, + 1.087, + 1.0568, + 1.024, + 0.989, + 0.9524, + 0.9149, + 0.877, + 0.8391, + 0.8018, + 0.7654, + 0.7304, + 0.6969, + 0.6653, + 0.6356, + 0.6079, + 0.5823, + 0.5586, + 0.5367, + 0.5166, + 0.498, + 0.4806, + 0.4643, + 0.4487, + 0.4337, + 0.4189, + 0.4042, + 0.3893, + 0.3741, + 0.3583, + 0.342, + 0.3249, + 0.3072, + 0.2888, + 0.2698, + 0.2504, + 0.2306, + 0.2107, + 0.1909, + 0.1716, + 0.1529, + 0.1354, + 0.1194, + 0.1052, + 0.0934, + 0.0842, + 0.0782, + 0.0757, + 0.0773, + 0.0832, + 0.0939, + 0.1096, + 0.1308, + 0.1576, + 0.1902, + 0.2288, + 0.2733, + 0.3239, + 0.3805, + 0.4427, + 0.5104, + 0.5833, + 0.6608, + 0.7425, + 0.8278, + 0.916, + 1.0063, + 1.098, + 1.1902, + 1.2821, + 1.3726, + 1.4609, + 1.546, + 1.6271, + 1.7032, + 1.7735, + 1.8373, + 1.8939, + 1.9425, + 1.9828, + 2.0142, + 2.0365, + 2.0494, + 2.0529, + 2.047, + 2.0318, + 2.0076, + 1.9747, + 1.9337, + 1.8849, + 1.8291, + 1.7669, + 1.6991, + 1.6264, + 1.5497, + 1.4697, + 1.3873, + 1.3032, + 1.2183, + 1.1334, + 1.0491, + 0.9661, + 0.8851, + 0.8066, + 0.5283, + 0.5727, + 0.6177, + 0.6631, + 0.7086, + 0.754, + 0.7988, + 0.8427, + 0.8853, + 0.9262, + 0.9648, + 1.0007, + 1.0336, + 1.0628, + 1.0881, + 1.1091, + 1.1255, + 1.1371, + 1.1438, + 1.1455, + 1.1423, + 1.1342, + 1.1215, + 1.1044, + 1.0834, + 1.0588, + 1.0311, + 1.0008, + 0.9684, + 0.9346, + 0.8997, + 0.8643, + 0.829, + 0.794, + 0.7599, + 0.727, + 0.6955, + 0.6655, + 0.6374, + 0.611, + 0.5864, + 0.5636, + 0.5423, + 0.5226, + 0.5041, + 0.4868, + 0.4702, + 0.4542, + 0.4387, + 0.4232, + 0.4076, + 0.3918, + 0.3756, + 0.3588, + 0.3414, + 0.3233, + 0.3046, + 0.2852, + 0.2653, + 0.245, + 0.2245, + 0.2041, + 0.1839, + 0.1644, + 0.1458, + 0.1285, + 0.1129, + 0.0995, + 0.0886, + 0.0807, + 0.0763, + 0.0757, + 0.0794, + 0.0878, + 0.1013, + 0.1202, + 0.1448, + 0.1754, + 0.212, + 0.2549, + 0.3041, + 0.3595, + 0.4211, + 0.4886, + 0.5617, + 0.6401, + 0.7233, + 0.8106, + 0.9016, + 0.9954, + 1.0913, + 1.1884, + 1.2858, + 1.3826, + 1.4778, + 1.5704, + 1.6595, + 1.7441, + 1.8233, + 1.8963, + 1.9621, + 2.0202, + 2.0698, + 2.1105, + 2.1417, + 2.1632, + 2.1748, + 2.1764, + 2.1681, + 2.15, + 2.1224, + 2.0857, + 2.0405, + 1.9872, + 1.9266, + 1.8594, + 1.7864, + 1.7084, + 1.6262, + 1.5408, + 1.453, + 1.3637, + 1.2736, + 1.1837, + 1.0946, + 1.0071, + 0.9219, + 0.8394, + 0.5071, + 0.549, + 0.5916, + 0.6346, + 0.6779, + 0.721, + 0.7638, + 0.8058, + 0.8466, + 0.8858, + 0.9231, + 0.9579, + 0.9898, + 1.0184, + 1.0433, + 1.0642, + 1.0809, + 1.093, + 1.1005, + 1.1033, + 1.1014, + 1.095, + 1.0841, + 1.0691, + 1.0504, + 1.0282, + 1.003, + 0.9753, + 0.9457, + 0.9145, + 0.8823, + 0.8496, + 0.8168, + 0.7843, + 0.7525, + 0.7217, + 0.6921, + 0.6639, + 0.6373, + 0.6122, + 0.5887, + 0.5667, + 0.5461, + 0.5268, + 0.5085, + 0.4911, + 0.4744, + 0.458, + 0.4419, + 0.4258, + 0.4095, + 0.3928, + 0.3756, + 0.3579, + 0.3394, + 0.3204, + 0.3007, + 0.2804, + 0.2597, + 0.2387, + 0.2176, + 0.1967, + 0.1763, + 0.1567, + 0.1382, + 0.1213, + 0.1063, + 0.0937, + 0.0839, + 0.0774, + 0.0747, + 0.0761, + 0.0821, + 0.0931, + 0.1095, + 0.1316, + 0.1596, + 0.194, + 0.2347, + 0.2819, + 0.3357, + 0.3959, + 0.4625, + 0.5352, + 0.6136, + 0.6974, + 0.7861, + 0.879, + 0.9755, + 1.0748, + 1.1761, + 1.2784, + 1.3809, + 1.4824, + 1.5821, + 1.679, + 1.7719, + 1.8598, + 1.942, + 2.0174, + 2.0851, + 2.1446, + 2.195, + 2.236, + 2.2669, + 2.2876, + 2.2978, + 2.2974, + 2.2867, + 2.2656, + 2.2347, + 2.1942, + 2.1448, + 2.087, + 2.0217, + 1.9495, + 1.8713, + 1.7881, + 1.7006, + 1.6099, + 1.5169, + 1.4224, + 1.3273, + 1.2325, + 1.1388, + 1.0469, + 0.9576, + 0.8713, + 0.4844, + 0.5239, + 0.5639, + 0.6045, + 0.6454, + 0.6862, + 0.7268, + 0.7668, + 0.8058, + 0.8434, + 0.8792, + 0.9128, + 0.9438, + 0.9717, + 0.9963, + 1.0171, + 1.0339, + 1.0466, + 1.0549, + 1.0587, + 1.0582, + 1.0534, + 1.0444, + 1.0316, + 1.0151, + 0.9953, + 0.9727, + 0.9477, + 0.9208, + 0.8923, + 0.8629, + 0.8328, + 0.8026, + 0.7726, + 0.7431, + 0.7145, + 0.6869, + 0.6605, + 0.6354, + 0.6116, + 0.5892, + 0.5681, + 0.5481, + 0.5292, + 0.5111, + 0.4937, + 0.4768, + 0.4601, + 0.4434, + 0.4267, + 0.4096, + 0.3921, + 0.3741, + 0.3554, + 0.3361, + 0.3161, + 0.2955, + 0.2745, + 0.253, + 0.2314, + 0.2099, + 0.1887, + 0.1681, + 0.1485, + 0.1303, + 0.1138, + 0.0995, + 0.0879, + 0.0793, + 0.0743, + 0.0734, + 0.0768, + 0.0852, + 0.0988, + 0.1181, + 0.1435, + 0.1751, + 0.2132, + 0.2579, + 0.3095, + 0.3677, + 0.4327, + 0.5042, + 0.582, + 0.6657, + 0.7548, + 0.8488, + 0.9471, + 1.049, + 1.1536, + 1.26, + 1.3674, + 1.4747, + 1.5808, + 1.6848, + 1.7856, + 1.8821, + 1.9732, + 2.0581, + 2.1357, + 2.2053, + 2.266, + 2.3171, + 2.3582, + 2.3887, + 2.4084, + 2.4172, + 2.4149, + 2.4016, + 2.3776, + 2.3433, + 2.2991, + 2.2456, + 2.1834, + 2.1134, + 2.0364, + 1.9532, + 1.8648, + 1.7722, + 1.6764, + 1.5782, + 1.4788, + 1.3788, + 1.2794, + 1.1812, + 1.0851, + 0.9918, + 0.9018, + 0.4604, + 0.4973, + 0.5348, + 0.5729, + 0.6113, + 0.6498, + 0.6882, + 0.7261, + 0.7632, + 0.7992, + 0.8335, + 0.8658, + 0.8958, + 0.9231, + 0.9472, + 0.9679, + 0.9849, + 0.998, + 1.0071, + 1.0121, + 1.013, + 1.0098, + 1.0027, + 0.9919, + 0.9777, + 0.9605, + 0.9405, + 0.9181, + 0.8939, + 0.8682, + 0.8415, + 0.8141, + 0.7865, + 0.759, + 0.7319, + 0.7054, + 0.6798, + 0.6552, + 0.6316, + 0.6092, + 0.5879, + 0.5677, + 0.5483, + 0.5298, + 0.5119, + 0.4945, + 0.4774, + 0.4604, + 0.4433, + 0.4259, + 0.4082, + 0.3899, + 0.371, + 0.3515, + 0.3313, + 0.3105, + 0.2892, + 0.2674, + 0.2454, + 0.2232, + 0.2013, + 0.1799, + 0.1593, + 0.1398, + 0.122, + 0.1061, + 0.0926, + 0.082, + 0.0748, + 0.0714, + 0.0723, + 0.0779, + 0.0886, + 0.105, + 0.1272, + 0.1558, + 0.1909, + 0.2327, + 0.2815, + 0.3373, + 0.4, + 0.4696, + 0.5459, + 0.6286, + 0.7173, + 0.8116, + 0.9108, + 1.0143, + 1.1213, + 1.2309, + 1.3423, + 1.4545, + 1.5663, + 1.6768, + 1.7849, + 1.8893, + 1.9892, + 2.0833, + 2.1707, + 2.2503, + 2.3214, + 2.3832, + 2.4349, + 2.476, + 2.506, + 2.5247, + 2.5319, + 2.5276, + 2.5118, + 2.4849, + 2.4473, + 2.3994, + 2.3418, + 2.2754, + 2.2009, + 2.1191, + 2.0311, + 1.9378, + 1.8403, + 1.7395, + 1.6365, + 1.5322, + 1.4277, + 1.3238, + 1.2214, + 1.1212, + 1.0242, + 0.9308, + 0.4352, + 0.4694, + 0.5044, + 0.5399, + 0.5758, + 0.612, + 0.6481, + 0.6839, + 0.7191, + 0.7533, + 0.7861, + 0.8172, + 0.8462, + 0.8727, + 0.8964, + 0.9169, + 0.9341, + 0.9477, + 0.9576, + 0.9636, + 0.9659, + 0.9643, + 0.9591, + 0.9505, + 0.9386, + 0.9238, + 0.9064, + 0.8867, + 0.8653, + 0.8423, + 0.8183, + 0.7937, + 0.7687, + 0.7436, + 0.7188, + 0.6945, + 0.6709, + 0.6481, + 0.6261, + 0.605, + 0.5848, + 0.5654, + 0.5467, + 0.5286, + 0.511, + 0.4936, + 0.4763, + 0.459, + 0.4414, + 0.4235, + 0.4051, + 0.3861, + 0.3665, + 0.3462, + 0.3252, + 0.3037, + 0.2816, + 0.2592, + 0.2367, + 0.2142, + 0.192, + 0.1705, + 0.1499, + 0.1307, + 0.1133, + 0.0981, + 0.0856, + 0.0762, + 0.0703, + 0.0686, + 0.0713, + 0.0791, + 0.0923, + 0.1114, + 0.1366, + 0.1684, + 0.2069, + 0.2525, + 0.3052, + 0.3651, + 0.4321, + 0.5062, + 0.5872, + 0.6746, + 0.7682, + 0.8673, + 0.9715, + 1.0799, + 1.1917, + 1.3062, + 1.4222, + 1.5389, + 1.655, + 1.7695, + 1.8813, + 1.9892, + 2.0921, + 2.1889, + 2.2786, + 2.3601, + 2.4325, + 2.4951, + 2.5472, + 2.5882, + 2.6176, + 2.6352, + 2.6408, + 2.6345, + 2.6162, + 2.5865, + 2.5456, + 2.4941, + 2.4326, + 2.3621, + 2.2832, + 2.1969, + 2.1043, + 2.0063, + 1.9041, + 1.7986, + 1.6909, + 1.5821, + 1.4732, + 1.3651, + 1.2587, + 1.1549, + 1.0543, + 0.9577, + 0.409, + 0.4405, + 0.4728, + 0.5057, + 0.5391, + 0.5729, + 0.6068, + 0.6404, + 0.6737, + 0.7061, + 0.7374, + 0.7671, + 0.7951, + 0.8208, + 0.844, + 0.8644, + 0.8818, + 0.8959, + 0.9065, + 0.9136, + 0.9172, + 0.9173, + 0.914, + 0.9074, + 0.8978, + 0.8855, + 0.8707, + 0.8537, + 0.835, + 0.8148, + 0.7935, + 0.7716, + 0.7491, + 0.7266, + 0.7041, + 0.682, + 0.6603, + 0.6392, + 0.6188, + 0.599, + 0.5799, + 0.5614, + 0.5433, + 0.5257, + 0.5082, + 0.4909, + 0.4735, + 0.4558, + 0.4379, + 0.4194, + 0.4004, + 0.3808, + 0.3604, + 0.3394, + 0.3178, + 0.2956, + 0.2729, + 0.25, + 0.227, + 0.2042, + 0.1819, + 0.1604, + 0.14, + 0.1212, + 0.1044, + 0.09, + 0.0784, + 0.0702, + 0.0659, + 0.0658, + 0.0706, + 0.0806, + 0.0962, + 0.1179, + 0.1461, + 0.1811, + 0.223, + 0.2722, + 0.3287, + 0.3926, + 0.4638, + 0.5422, + 0.6276, + 0.7195, + 0.8177, + 0.9215, + 1.0303, + 1.1433, + 1.2597, + 1.3786, + 1.499, + 1.6198, + 1.7398, + 1.8581, + 1.9733, + 2.0843, + 2.19, + 2.2892, + 2.3808, + 2.4638, + 2.5374, + 2.6007, + 2.653, + 2.6937, + 2.7224, + 2.7388, + 2.7429, + 2.7344, + 2.7138, + 2.6812, + 2.6372, + 2.5822, + 2.517, + 2.4425, + 2.3595, + 2.2689, + 2.1719, + 2.0695, + 1.9628, + 1.8529, + 1.741, + 1.628, + 1.515, + 1.403, + 1.2929, + 1.1856, + 1.0819, + 0.9823, + 0.3818, + 0.4106, + 0.4402, + 0.4706, + 0.5015, + 0.5328, + 0.5643, + 0.5959, + 0.6271, + 0.6578, + 0.6875, + 0.716, + 0.7428, + 0.7678, + 0.7905, + 0.8108, + 0.8282, + 0.8428, + 0.8541, + 0.8623, + 0.8672, + 0.8689, + 0.8675, + 0.863, + 0.8557, + 0.8458, + 0.8335, + 0.8192, + 0.8032, + 0.7858, + 0.7672, + 0.7479, + 0.728, + 0.7079, + 0.6878, + 0.6678, + 0.648, + 0.6287, + 0.6098, + 0.5913, + 0.5733, + 0.5556, + 0.5382, + 0.5209, + 0.5037, + 0.4864, + 0.4689, + 0.451, + 0.4326, + 0.4137, + 0.3941, + 0.3739, + 0.3529, + 0.3313, + 0.309, + 0.2862, + 0.2631, + 0.2398, + 0.2165, + 0.1935, + 0.1711, + 0.1497, + 0.1296, + 0.1113, + 0.0951, + 0.0816, + 0.0711, + 0.0642, + 0.0614, + 0.0631, + 0.0699, + 0.0821, + 0.1002, + 0.1246, + 0.1557, + 0.1937, + 0.239, + 0.2916, + 0.3518, + 0.4195, + 0.4947, + 0.5772, + 0.6667, + 0.7629, + 0.8654, + 0.9735, + 1.0866, + 1.2039, + 1.3245, + 1.4475, + 1.5718, + 1.6964, + 1.8201, + 1.9416, + 2.0599, + 2.1737, + 2.2818, + 2.383, + 2.4763, + 2.5607, + 2.6351, + 2.6989, + 2.7512, + 2.7915, + 2.8194, + 2.8346, + 2.8369, + 2.8265, + 2.8035, + 2.7682, + 2.7211, + 2.6628, + 2.5941, + 2.5158, + 2.4289, + 2.3343, + 2.2333, + 2.1267, + 2.0159, + 1.902, + 1.786, + 1.6692, + 1.5525, + 1.4369, + 1.3235, + 1.2131, + 1.1064, + 1.0042, + 0.3539, + 0.38, + 0.4069, + 0.4346, + 0.463, + 0.4919, + 0.5211, + 0.5505, + 0.5797, + 0.6086, + 0.6368, + 0.6639, + 0.6897, + 0.7139, + 0.7362, + 0.7562, + 0.7738, + 0.7887, + 0.8008, + 0.81, + 0.8163, + 0.8195, + 0.8199, + 0.8175, + 0.8124, + 0.8049, + 0.7952, + 0.7835, + 0.7702, + 0.7554, + 0.7396, + 0.7228, + 0.7055, + 0.6878, + 0.6699, + 0.652, + 0.6342, + 0.6165, + 0.5991, + 0.5819, + 0.5649, + 0.5481, + 0.5313, + 0.5144, + 0.4975, + 0.4802, + 0.4626, + 0.4445, + 0.4258, + 0.4064, + 0.3863, + 0.3655, + 0.344, + 0.3218, + 0.299, + 0.2757, + 0.2522, + 0.2285, + 0.205, + 0.1819, + 0.1596, + 0.1385, + 0.1188, + 0.101, + 0.0856, + 0.073, + 0.0637, + 0.0582, + 0.057, + 0.0605, + 0.0692, + 0.0837, + 0.1042, + 0.1312, + 0.1651, + 0.2062, + 0.2546, + 0.3106, + 0.3743, + 0.4456, + 0.5245, + 0.6108, + 0.7042, + 0.8044, + 0.9109, + 1.0229, + 1.14, + 1.2611, + 1.3856, + 1.5122, + 1.6401, + 1.768, + 1.8949, + 2.0193, + 2.1403, + 2.2564, + 2.3666, + 2.4695, + 2.5642, + 2.6496, + 2.7246, + 2.7886, + 2.8408, + 2.8805, + 2.9075, + 2.9214, + 2.9221, + 2.9097, + 2.8843, + 2.8464, + 2.7964, + 2.735, + 2.663, + 2.5812, + 2.4906, + 2.3924, + 2.2876, + 2.1773, + 2.0627, + 1.9451, + 1.8255, + 1.7052, + 1.5851, + 1.4664, + 1.3501, + 1.2369, + 1.1277, + 1.0231, + 0.3253, + 0.3487, + 0.373, + 0.398, + 0.4239, + 0.4504, + 0.4773, + 0.5045, + 0.5318, + 0.5589, + 0.5855, + 0.6113, + 0.6361, + 0.6595, + 0.6812, + 0.701, + 0.7187, + 0.734, + 0.7468, + 0.757, + 0.7646, + 0.7694, + 0.7715, + 0.7711, + 0.7683, + 0.7631, + 0.7559, + 0.7468, + 0.7361, + 0.724, + 0.7107, + 0.6966, + 0.6817, + 0.6663, + 0.6507, + 0.6348, + 0.6188, + 0.6028, + 0.5869, + 0.5709, + 0.5549, + 0.5389, + 0.5227, + 0.5063, + 0.4895, + 0.4723, + 0.4546, + 0.4363, + 0.4173, + 0.3975, + 0.377, + 0.3557, + 0.3337, + 0.311, + 0.2877, + 0.2641, + 0.2402, + 0.2163, + 0.1927, + 0.1697, + 0.1476, + 0.1267, + 0.1075, + 0.0904, + 0.0758, + 0.0643, + 0.0562, + 0.0521, + 0.0525, + 0.0578, + 0.0686, + 0.0852, + 0.1081, + 0.1377, + 0.1743, + 0.2183, + 0.2697, + 0.3289, + 0.3958, + 0.4705, + 0.5529, + 0.6428, + 0.7398, + 0.8436, + 0.9536, + 1.0693, + 1.1899, + 1.3145, + 1.4423, + 1.5722, + 1.7032, + 1.834, + 1.9635, + 2.0905, + 2.2136, + 2.3317, + 2.4435, + 2.5479, + 2.6436, + 2.7296, + 2.8051, + 2.869, + 2.9208, + 2.9599, + 2.9859, + 2.9984, + 2.9974, + 2.983, + 2.9554, + 2.915, + 2.8623, + 2.7979, + 2.7228, + 2.6379, + 2.544, + 2.4424, + 2.3342, + 2.2205, + 2.1026, + 1.9817, + 1.8589, + 1.7355, + 1.6126, + 1.4911, + 1.3722, + 1.2566, + 1.1453, + 1.0388, + 0.2963, + 0.317, + 0.3386, + 0.3611, + 0.3844, + 0.4085, + 0.4332, + 0.4583, + 0.4836, + 0.5089, + 0.5339, + 0.5584, + 0.5821, + 0.6047, + 0.6259, + 0.6455, + 0.6633, + 0.679, + 0.6925, + 0.7036, + 0.7124, + 0.7187, + 0.7226, + 0.7242, + 0.7235, + 0.7206, + 0.7158, + 0.7092, + 0.7011, + 0.6915, + 0.6808, + 0.6692, + 0.6567, + 0.6436, + 0.6301, + 0.6162, + 0.6021, + 0.5877, + 0.5731, + 0.5583, + 0.5433, + 0.5281, + 0.5124, + 0.4964, + 0.4799, + 0.4628, + 0.445, + 0.4265, + 0.4072, + 0.3871, + 0.3662, + 0.3444, + 0.322, + 0.2989, + 0.2753, + 0.2514, + 0.2273, + 0.2033, + 0.1797, + 0.1568, + 0.1349, + 0.1144, + 0.0958, + 0.0795, + 0.0658, + 0.0554, + 0.0486, + 0.046, + 0.048, + 0.0552, + 0.0679, + 0.0867, + 0.1119, + 0.144, + 0.1832, + 0.2299, + 0.2842, + 0.3463, + 0.4163, + 0.4942, + 0.5797, + 0.6728, + 0.773, + 0.8801, + 0.9933, + 1.1121, + 1.2358, + 1.3635, + 1.4941, + 1.6268, + 1.7604, + 1.8936, + 2.0254, + 2.1544, + 2.2793, + 2.3989, + 2.512, + 2.6173, + 2.7136, + 2.8001, + 2.8756, + 2.9393, + 2.9906, + 3.0288, + 3.0536, + 3.0647, + 3.0621, + 3.0457, + 3.016, + 2.9732, + 2.918, + 2.851, + 2.7731, + 2.6852, + 2.5884, + 2.4838, + 2.3726, + 2.2559, + 2.1351, + 2.0113, + 1.8858, + 1.7598, + 1.6344, + 1.5107, + 1.3896, + 1.2721, + 1.159, + 1.051, + 0.2669, + 0.285, + 0.304, + 0.3239, + 0.3448, + 0.3665, + 0.3889, + 0.4119, + 0.4353, + 0.4588, + 0.4824, + 0.5056, + 0.5282, + 0.55, + 0.5707, + 0.59, + 0.6079, + 0.6239, + 0.638, + 0.6501, + 0.6601, + 0.6679, + 0.6735, + 0.6769, + 0.6783, + 0.6777, + 0.6752, + 0.6711, + 0.6654, + 0.6583, + 0.6501, + 0.6408, + 0.6307, + 0.6198, + 0.6084, + 0.5964, + 0.584, + 0.5711, + 0.5579, + 0.5443, + 0.5302, + 0.5157, + 0.5006, + 0.485, + 0.4687, + 0.4516, + 0.4338, + 0.4151, + 0.3956, + 0.3752, + 0.3539, + 0.3319, + 0.3091, + 0.2856, + 0.2618, + 0.2376, + 0.2134, + 0.1894, + 0.1659, + 0.1432, + 0.1217, + 0.1018, + 0.0838, + 0.0683, + 0.0557, + 0.0464, + 0.0409, + 0.0398, + 0.0435, + 0.0525, + 0.0672, + 0.0881, + 0.1155, + 0.15, + 0.1917, + 0.2409, + 0.2979, + 0.3628, + 0.4355, + 0.5162, + 0.6046, + 0.7006, + 0.8037, + 0.9135, + 1.0296, + 1.1511, + 1.2774, + 1.4076, + 1.5407, + 1.6756, + 1.8112, + 1.9464, + 2.0799, + 2.2104, + 2.3366, + 2.4573, + 2.5712, + 2.677, + 2.7737, + 2.8602, + 2.9354, + 2.9987, + 3.0492, + 3.0865, + 3.1101, + 3.1197, + 3.1154, + 3.0972, + 3.0654, + 3.0204, + 2.9629, + 2.8934, + 2.813, + 2.7226, + 2.6232, + 2.516, + 2.4022, + 2.283, + 2.1597, + 2.0336, + 1.9059, + 1.7777, + 1.6503, + 1.5248, + 1.402, + 1.283, + 1.1686, + 1.0594, + 0.2374, + 0.2529, + 0.2693, + 0.2867, + 0.3052, + 0.3245, + 0.3448, + 0.3657, + 0.3872, + 0.4091, + 0.4311, + 0.453, + 0.4746, + 0.4956, + 0.5157, + 0.5349, + 0.5527, + 0.5691, + 0.5838, + 0.5968, + 0.6079, + 0.6171, + 0.6243, + 0.6296, + 0.633, + 0.6345, + 0.6343, + 0.6325, + 0.6292, + 0.6245, + 0.6187, + 0.6117, + 0.6038, + 0.5951, + 0.5856, + 0.5754, + 0.5646, + 0.5533, + 0.5413, + 0.5288, + 0.5156, + 0.5018, + 0.4873, + 0.472, + 0.4559, + 0.4389, + 0.4211, + 0.4023, + 0.3825, + 0.3619, + 0.3403, + 0.318, + 0.2949, + 0.2712, + 0.2472, + 0.2229, + 0.1987, + 0.1748, + 0.1515, + 0.1291, + 0.108, + 0.0887, + 0.0715, + 0.0569, + 0.0454, + 0.0373, + 0.0332, + 0.0336, + 0.039, + 0.0497, + 0.0663, + 0.0893, + 0.1189, + 0.1556, + 0.1996, + 0.2512, + 0.3107, + 0.378, + 0.4533, + 0.5365, + 0.6275, + 0.7259, + 0.8315, + 0.9437, + 1.0621, + 1.1859, + 1.3143, + 1.4465, + 1.5814, + 1.7181, + 1.8553, + 1.9919, + 2.1266, + 2.2581, + 2.3851, + 2.5063, + 2.6206, + 2.7266, + 2.8232, + 2.9093, + 2.9841, + 3.0466, + 3.0962, + 3.1323, + 3.1546, + 3.1627, + 3.1568, + 3.1368, + 3.1031, + 3.0561, + 2.9964, + 2.9248, + 2.8422, + 2.7496, + 2.648, + 2.5386, + 2.4227, + 2.3014, + 2.1762, + 2.0482, + 1.9187, + 1.7889, + 1.66, + 1.5331, + 1.4092, + 1.2892, + 1.1739, + 1.064, + 0.2079, + 0.2208, + 0.2347, + 0.2497, + 0.2658, + 0.2829, + 0.301, + 0.32, + 0.3396, + 0.3598, + 0.3803, + 0.401, + 0.4215, + 0.4418, + 0.4614, + 0.4803, + 0.4982, + 0.5149, + 0.5302, + 0.544, + 0.5562, + 0.5667, + 0.5755, + 0.5825, + 0.5878, + 0.5914, + 0.5933, + 0.5937, + 0.5927, + 0.5903, + 0.5867, + 0.582, + 0.5762, + 0.5695, + 0.5619, + 0.5534, + 0.5442, + 0.5342, + 0.5235, + 0.512, + 0.4996, + 0.4865, + 0.4725, + 0.4575, + 0.4416, + 0.4247, + 0.4068, + 0.3879, + 0.368, + 0.3472, + 0.3254, + 0.3028, + 0.2796, + 0.2557, + 0.2316, + 0.2073, + 0.1832, + 0.1594, + 0.1364, + 0.1145, + 0.094, + 0.0754, + 0.059, + 0.0454, + 0.0349, + 0.0281, + 0.0255, + 0.0274, + 0.0344, + 0.0469, + 0.0654, + 0.0903, + 0.122, + 0.1607, + 0.2069, + 0.2608, + 0.3224, + 0.392, + 0.4695, + 0.5549, + 0.648, + 0.7485, + 0.8561, + 0.9704, + 1.0906, + 1.2161, + 1.3461, + 1.4798, + 1.6161, + 1.754, + 1.8922, + 2.0296, + 2.165, + 2.2969, + 2.4242, + 2.5456, + 2.6597, + 2.7655, + 2.8616, + 2.9471, + 3.0211, + 3.0826, + 3.1311, + 3.1659, + 3.1867, + 3.1934, + 3.1858, + 3.1641, + 3.1286, + 3.0798, + 3.0183, + 2.9448, + 2.8603, + 2.7659, + 2.6625, + 2.5513, + 2.4337, + 2.3109, + 2.1842, + 2.0548, + 1.9241, + 1.7932, + 1.6634, + 1.5357, + 1.411, + 1.2905, + 1.1747, + 1.0646, + 0.1786, + 0.189, + 0.2005, + 0.2131, + 0.2269, + 0.2419, + 0.2579, + 0.2749, + 0.2927, + 0.3113, + 0.3304, + 0.3499, + 0.3694, + 0.3889, + 0.408, + 0.4267, + 0.4445, + 0.4615, + 0.4774, + 0.492, + 0.5052, + 0.517, + 0.5272, + 0.5359, + 0.5429, + 0.5485, + 0.5525, + 0.555, + 0.5561, + 0.5559, + 0.5545, + 0.5518, + 0.548, + 0.5432, + 0.5373, + 0.5305, + 0.5228, + 0.5141, + 0.5045, + 0.4939, + 0.4824, + 0.4698, + 0.4563, + 0.4416, + 0.4259, + 0.4091, + 0.3912, + 0.3722, + 0.3522, + 0.3312, + 0.3093, + 0.2865, + 0.2631, + 0.2393, + 0.2151, + 0.1909, + 0.1669, + 0.1435, + 0.1208, + 0.0994, + 0.0796, + 0.0617, + 0.0463, + 0.0337, + 0.0245, + 0.019, + 0.0177, + 0.0212, + 0.0298, + 0.0441, + 0.0644, + 0.0911, + 0.1247, + 0.1654, + 0.2136, + 0.2694, + 0.333, + 0.4046, + 0.484, + 0.5713, + 0.6661, + 0.7684, + 0.8776, + 0.9933, + 1.1149, + 1.2416, + 1.3728, + 1.5074, + 1.6445, + 1.7829, + 1.9216, + 2.0593, + 2.1948, + 2.3267, + 2.4538, + 2.5748, + 2.6883, + 2.7934, + 2.8887, + 2.9732, + 3.046, + 3.1063, + 3.1534, + 3.1869, + 3.2062, + 3.2113, + 3.2021, + 3.1788, + 3.1417, + 3.0912, + 3.0281, + 2.9531, + 2.8671, + 2.7712, + 2.6664, + 2.554, + 2.4352, + 2.3113, + 2.1836, + 2.0534, + 1.922, + 1.7906, + 1.6603, + 1.5322, + 1.4074, + 1.2867, + 1.1711, + 1.0611, + 0.1495, + 0.1576, + 0.1667, + 0.1771, + 0.1887, + 0.2015, + 0.2156, + 0.2109, + 0.2247, + 0.2391, + 0.2541, + 0.2697, + 0.2855, + 0.3013, + 0.3172, + 0.3327, + 0.3479, + 0.3625, + 0.3764, + 0.3894, + 0.4015, + 0.4125, + 0.4223, + 0.431, + 0.4384, + 0.4447, + 0.4497, + 0.4536, + 0.4562, + 0.4578, + 0.4582, + 0.4576, + 0.456, + 0.4534, + 0.4498, + 0.4453, + 0.4399, + 0.4336, + 0.4263, + 0.4181, + 0.4089, + 0.3987, + 0.3875, + 0.3754, + 0.3622, + 0.348, + 0.3328, + 0.3166, + 0.2996, + 0.2816, + 0.2629, + 0.2435, + 0.2237, + 0.2034, + 0.1978, + 0.1737, + 0.15, + 0.1265, + 0.1032, + 0.0818, + 0.0627, + 0.046, + 0.032, + 0.021, + 0.0133, + 0.0094, + 0.0096, + 0.0145, + 0.0246, + 0.0405, + 0.063, + 0.0917, + 0.1271, + 0.1696, + 0.2196, + 0.2771, + 0.3425, + 0.4157, + 0.4967, + 0.5855, + 0.6818, + 0.7853, + 0.8956, + 1.0124, + 1.1348, + 1.2623, + 1.394, + 1.529, + 1.6663, + 1.8048, + 1.9434, + 2.0809, + 2.2159, + 2.3472, + 2.4735, + 2.5936, + 2.7062, + 2.8101, + 2.9041, + 2.9873, + 3.0587, + 3.1176, + 3.1632, + 3.1951, + 3.2128, + 3.2164, + 3.2056, + 3.1808, + 3.1422, + 3.0903, + 3.0258, + 2.9496, + 2.8624, + 2.7654, + 2.6597, + 2.5465, + 2.427, + 2.3025, + 2.1744, + 2.0439, + 1.9123, + 1.7808, + 1.6506, + 1.5228, + 1.3983, + 1.278, + 1.1629, + 1.0535, + 0.121, + 0.1267, + 0.1336, + 0.1418, + 0.1514, + 0.1622, + 0.1743, + 0.1733, + 0.161, + 0.1703, + 0.1801, + 0.1903, + 0.2009, + 0.2116, + 0.2225, + 0.2333, + 0.2439, + 0.2543, + 0.2643, + 0.2739, + 0.2829, + 0.2913, + 0.299, + 0.3059, + 0.3121, + 0.3176, + 0.3221, + 0.326, + 0.329, + 0.3312, + 0.3325, + 0.3332, + 0.3331, + 0.3322, + 0.3306, + 0.3283, + 0.3252, + 0.3214, + 0.3168, + 0.3115, + 0.3054, + 0.2986, + 0.291, + 0.2826, + 0.2734, + 0.2635, + 0.2529, + 0.2415, + 0.2294, + 0.2168, + 0.2036, + 0.1899, + 0.176, + 0.1766, + 0.1742, + 0.1482, + 0.1238, + 0.1011, + 0.0801, + 0.0612, + 0.0444, + 0.0299, + 0.0181, + 0.009, + 0.0031, + 0.0006, + 0.0021, + 0.0079, + 0.0185, + 0.0347, + 0.0569, + 0.086, + 0.1228, + 0.168, + 0.2227, + 0.2839, + 0.3508, + 0.4253, + 0.5076, + 0.5975, + 0.6948, + 0.7992, + 0.9102, + 1.0275, + 1.1503, + 1.278, + 1.4098, + 1.5446, + 1.6816, + 1.8196, + 1.9575, + 2.0941, + 2.2281, + 2.3583, + 2.4834, + 2.6021, + 2.7132, + 2.8155, + 2.908, + 2.9895, + 3.0592, + 3.1164, + 3.1603, + 3.1905, + 3.2066, + 3.2085, + 3.1963, + 3.17, + 3.1301, + 3.077, + 3.0115, + 2.9343, + 2.8463, + 2.7486, + 2.6424, + 2.5288, + 2.4091, + 2.2846, + 2.1566, + 2.0263, + 1.8951, + 1.7641, + 1.6345, + 1.5074, + 1.3837, + 1.2644, + 1.1502, + 1.0419, + 0.093, + 0.0966, + 0.1014, + 0.1076, + 0.1151, + 0.124, + 0.1344, + 0.1385, + 0.1345, + 0.1252, + 0.1305, + 0.136, + 0.1418, + 0.1478, + 0.1539, + 0.16, + 0.1662, + 0.1723, + 0.1782, + 0.1839, + 0.1894, + 0.1946, + 0.1994, + 0.2039, + 0.208, + 0.2117, + 0.2149, + 0.2177, + 0.22, + 0.2219, + 0.2233, + 0.2242, + 0.2247, + 0.2247, + 0.2243, + 0.2233, + 0.222, + 0.2201, + 0.2177, + 0.2149, + 0.2116, + 0.2078, + 0.2035, + 0.1987, + 0.1935, + 0.1878, + 0.1816, + 0.1751, + 0.1681, + 0.1608, + 0.1524, + 0.1424, + 0.1479, + 0.1519, + 0.1438, + 0.1202, + 0.0982, + 0.0779, + 0.0594, + 0.0428, + 0.0283, + 0.016, + 0.0062, + -0.0011, + -0.0054, + -0.0066, + -0.0041, + 0.0023, + 0.0133, + 0.0293, + 0.051, + 0.0791, + 0.1144, + 0.1577, + 0.2099, + 0.2719, + 0.3447, + 0.4293, + 0.5166, + 0.6073, + 0.7052, + 0.81, + 0.9214, + 1.0387, + 1.1614, + 1.2888, + 1.42, + 1.5541, + 1.6902, + 1.8272, + 1.9639, + 2.0991, + 2.2316, + 2.3601, + 2.4834, + 2.6003, + 2.7095, + 2.8098, + 2.9003, + 2.9798, + 3.0476, + 3.1028, + 3.1448, + 3.1732, + 3.1876, + 3.188, + 3.1743, + 3.1467, + 3.1056, + 3.0516, + 2.9852, + 2.9074, + 2.819, + 2.721, + 2.6147, + 2.5013, + 2.3818, + 2.2578, + 2.1303, + 2.0008, + 1.8705, + 1.7405, + 1.6121, + 1.4862, + 1.3638, + 1.2459, + 1.1332, + 1.0263, + 0.0659, + 0.0674, + 0.0702, + 0.0744, + 0.0801, + 0.0873, + 0.096, + 0.1051, + 0.1103, + 0.1101, + 0.1041, + 0.1055, + 0.107, + 0.1086, + 0.1102, + 0.1118, + 0.1135, + 0.1151, + 0.1167, + 0.1183, + 0.1199, + 0.1214, + 0.1228, + 0.1241, + 0.1253, + 0.1264, + 0.1274, + 0.1283, + 0.1291, + 0.1297, + 0.1303, + 0.1307, + 0.1309, + 0.131, + 0.131, + 0.1309, + 0.1306, + 0.1302, + 0.1296, + 0.1289, + 0.1281, + 0.1271, + 0.126, + 0.1247, + 0.1233, + 0.1218, + 0.1201, + 0.1183, + 0.1159, + 0.1132, + 0.1106, + 0.122, + 0.1314, + 0.129, + 0.1157, + 0.0946, + 0.0751, + 0.0572, + 0.0411, + 0.0269, + 0.0146, + 0.0043, + -0.0037, + -0.0092, + -0.0122, + -0.0122, + -0.009, + -0.0022, + 0.0088, + 0.0244, + 0.0452, + 0.072, + 0.1055, + 0.1464, + 0.1958, + 0.2544, + 0.3234, + 0.4035, + 0.4959, + 0.6014, + 0.713, + 0.8179, + 0.929, + 1.0459, + 1.168, + 1.2946, + 1.4248, + 1.5577, + 1.6923, + 1.8277, + 1.9626, + 2.0959, + 2.2263, + 2.3527, + 2.4738, + 2.5883, + 2.6952, + 2.7932, + 2.8813, + 2.9585, + 3.024, + 3.077, + 3.117, + 3.1435, + 3.1562, + 3.155, + 3.1399, + 3.1111, + 3.0691, + 3.0143, + 2.9474, + 2.8692, + 2.7807, + 2.6829, + 2.577, + 2.464, + 2.3454, + 2.2222, + 2.0959, + 1.9677, + 1.8388, + 1.7103, + 1.5835, + 1.4594, + 1.3388, + 1.2228, + 1.1119, + 1.007, + 0.0396, + 0.0392, + 0.0402, + 0.0426, + 0.0466, + 0.0521, + 0.0592, + 0.0679, + 0.0781, + 0.0897, + 0.1002, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1138, + 0.1161, + 0.1079, + 0.0903, + 0.0716, + 0.0545, + 0.0391, + 0.0254, + 0.0134, + 0.0032, + -0.0051, + -0.0114, + -0.0155, + -0.0172, + -0.0164, + -0.0127, + -0.0057, + 0.005, + 0.0199, + 0.0396, + 0.0648, + 0.0961, + 0.1345, + 0.1806, + 0.2356, + 0.3002, + 0.3756, + 0.4626, + 0.5623, + 0.6755, + 0.803, + 0.9333, + 1.0493, + 1.1704, + 1.2956, + 1.4242, + 1.5554, + 1.6881, + 1.8213, + 1.9539, + 2.0847, + 2.2126, + 2.3363, + 2.4547, + 2.5665, + 2.6706, + 2.7658, + 2.8512, + 2.9259, + 2.9889, + 3.0396, + 3.0774, + 3.1019, + 3.1128, + 3.11, + 3.0936, + 3.0637, + 3.0209, + 2.9655, + 2.8983, + 2.8202, + 2.7319, + 2.6347, + 2.5295, + 2.4175, + 2.3001, + 2.1784, + 2.0537, + 1.9272, + 1.8002, + 1.6738, + 1.5492, + 1.4272, + 1.309, + 1.1952, + 1.0867, + 0.984, + 0.0144, + 0.0123, + 0.0115, + 0.0123, + 0.0147, + 0.0187, + 0.0244, + 0.0317, + 0.0407, + 0.0512, + 0.0631, + 0.0764, + 0.0909, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1063, + 0.1023, + 0.0853, + 0.0676, + 0.0514, + 0.0367, + 0.0237, + 0.0122, + 0.0024, + -0.0058, + -0.0123, + -0.017, + -0.0198, + -0.0205, + -0.019, + -0.015, + -0.0081, + 0.0021, + 0.016, + 0.0343, + 0.0576, + 0.0865, + 0.1219, + 0.1646, + 0.2156, + 0.2757, + 0.346, + 0.4274, + 0.5209, + 0.6273, + 0.7476, + 0.8825, + 1.0326, + 1.1685, + 1.2919, + 1.4185, + 1.5474, + 1.6777, + 1.8082, + 1.938, + 2.0659, + 2.1908, + 2.3114, + 2.4266, + 2.5352, + 2.6361, + 2.7283, + 2.8107, + 2.8825, + 2.9428, + 2.9909, + 3.0264, + 3.0488, + 3.0579, + 3.0536, + 3.0359, + 3.0051, + 2.9616, + 2.9059, + 2.8387, + 2.7609, + 2.6732, + 2.5768, + 2.4728, + 2.3623, + 2.2465, + 2.1267, + 2.0041, + 1.8799, + 1.7553, + 1.6314, + 1.5093, + 1.3901, + 1.2745, + 1.1635, + 1.0577, + 0.9577, + -0.0096, + -0.0133, + -0.0156, + -0.0163, + -0.0154, + -0.0127, + -0.0083, + -0.0022, + 0.0057, + 0.0151, + 0.0262, + 0.0387, + 0.0525, + 0.0675, + 0.0836, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0981, + 0.0798, + 0.063, + 0.0477, + 0.034, + 0.0218, + 0.011, + 0.0018, + -0.006, + -0.0123, + -0.0172, + -0.0205, + -0.0222, + -0.0222, + -0.0202, + -0.0161, + -0.0095, + -0.0001, + 0.0126, + 0.0292, + 0.0503, + 0.0766, + 0.1089, + 0.1479, + 0.1947, + 0.2501, + 0.3151, + 0.3906, + 0.4777, + 0.5772, + 0.69, + 0.8169, + 0.9585, + 1.1153, + 1.2838, + 1.4079, + 1.5341, + 1.6614, + 1.7888, + 1.9153, + 2.0398, + 2.1612, + 2.2782, + 2.3899, + 2.4949, + 2.5923, + 2.6811, + 2.7602, + 2.8289, + 2.8862, + 2.9317, + 2.9647, + 2.985, + 2.9922, + 2.9864, + 2.9675, + 2.9359, + 2.8919, + 2.8361, + 2.7692, + 2.6919, + 2.6052, + 2.5101, + 2.4076, + 2.2989, + 2.1853, + 2.0678, + 1.9477, + 1.8262, + 1.7044, + 1.5835, + 1.4645, + 1.3483, + 1.2359, + 1.1279, + 1.0252, + 0.9282, + -0.0322, + -0.0374, + -0.0411, + -0.0432, + -0.0435, + -0.042, + -0.0388, + -0.0337, + -0.0268, + -0.0183, + -0.008, + 0.0038, + 0.0171, + 0.0316, + 0.0473, + 0.0639, + 0.0814, + 0.0994, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0912, + 0.0739, + 0.0581, + 0.0438, + 0.031, + 0.0196, + 0.0097, + 0.0012, + -0.006, + -0.0118, + -0.0165, + -0.0198, + -0.0219, + -0.0227, + -0.0222, + -0.02, + -0.0161, + -0.01, + -0.0016, + 0.0097, + 0.0244, + 0.0432, + 0.0666, + 0.0955, + 0.1307, + 0.1731, + 0.2236, + 0.2832, + 0.3527, + 0.4333, + 0.5258, + 0.631, + 0.7498, + 0.8827, + 1.0303, + 1.193, + 1.3709, + 1.5157, + 1.6396, + 1.7635, + 1.8863, + 2.007, + 2.1244, + 2.2375, + 2.3452, + 2.4463, + 2.5399, + 2.6249, + 2.7005, + 2.7658, + 2.82, + 2.8627, + 2.8932, + 2.9112, + 2.9166, + 2.9093, + 2.8893, + 2.857, + 2.8127, + 2.757, + 2.6906, + 2.6142, + 2.5287, + 2.4351, + 2.3346, + 2.2281, + 2.1169, + 2.0022, + 1.885, + 1.7666, + 1.6481, + 1.5306, + 1.415, + 1.3023, + 1.1934, + 1.089, + 0.9897, + 0.896, + -0.0535, + -0.0599, + -0.0648, + -0.068, + -0.0695, + -0.0691, + -0.0668, + -0.0626, + -0.0566, + -0.0488, + -0.0392, + -0.028, + -0.0153, + -0.0012, + 0.0142, + 0.0306, + 0.0479, + 0.066, + 0.0845, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0842, + 0.0678, + 0.053, + 0.0396, + 0.0277, + 0.0172, + 0.0082, + 0.0006, + -0.0058, + -0.011, + -0.0151, + -0.0182, + -0.0203, + -0.0214, + -0.0215, + -0.0206, + -0.0184, + -0.0149, + -0.0097, + -0.0024, + 0.0073, + 0.0199, + 0.0361, + 0.0565, + 0.082, + 0.1132, + 0.1511, + 0.1966, + 0.2507, + 0.3142, + 0.3882, + 0.4736, + 0.5712, + 0.6818, + 0.8061, + 0.9445, + 1.0975, + 1.2652, + 1.4475, + 1.6127, + 1.7327, + 1.8514, + 1.9678, + 2.0809, + 2.1897, + 2.2931, + 2.39, + 2.4794, + 2.5605, + 2.6323, + 2.694, + 2.745, + 2.7847, + 2.8125, + 2.8283, + 2.8319, + 2.8231, + 2.8021, + 2.7692, + 2.7248, + 2.6694, + 2.6037, + 2.5284, + 2.4444, + 2.3528, + 2.2545, + 2.1506, + 2.0423, + 1.9306, + 1.8168, + 1.7019, + 1.5871, + 1.4733, + 1.3615, + 1.2527, + 1.1476, + 1.047, + 0.9514, + 0.8614, + -0.0731, + -0.0807, + -0.0866, + -0.0908, + -0.0932, + -0.0937, + -0.0922, + -0.0888, + -0.0835, + -0.0764, + -0.0674, + -0.0567, + -0.0444, + -0.0306, + -0.0156, + 0.0007, + 0.0179, + 0.0359, + 0.0544, + 0.0734, + 0.0925, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0939, + 0.0771, + 0.0617, + 0.0477, + 0.0352, + 0.0243, + 0.0148, + 0.0067, + -0.0001, + -0.0056, + -0.01, + -0.0134, + -0.0159, + -0.0176, + -0.0186, + -0.0189, + -0.0186, + -0.0175, + -0.0156, + -0.0127, + -0.0085, + -0.0026, + 0.0052, + 0.0156, + 0.0291, + 0.0464, + 0.0683, + 0.0954, + 0.1288, + 0.1693, + 0.2179, + 0.2754, + 0.3429, + 0.4213, + 0.5113, + 0.6138, + 0.7295, + 0.8588, + 1.0021, + 1.1596, + 1.3313, + 1.5169, + 1.6968, + 1.811, + 1.9229, + 2.0314, + 2.1356, + 2.2343, + 2.3267, + 2.4118, + 2.4886, + 2.5564, + 2.6144, + 2.662, + 2.6986, + 2.7238, + 2.7373, + 2.739, + 2.7288, + 2.7069, + 2.6736, + 2.6292, + 2.5742, + 2.5095, + 2.4356, + 2.3534, + 2.264, + 2.1682, + 2.0672, + 1.9621, + 1.8539, + 1.7437, + 1.6327, + 1.5219, + 1.4122, + 1.3046, + 1.1999, + 1.0989, + 1.0024, + 0.9108, + 0.8247, + -0.0911, + -0.0996, + -0.1064, + -0.1114, + -0.1145, + -0.1157, + -0.1149, + -0.1122, + -0.1075, + -0.1008, + -0.0923, + -0.082, + -0.0701, + -0.0566, + -0.0418, + -0.0257, + -0.0087, + 0.0092, + 0.0278, + 0.0468, + 0.066, + 0.0852, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0859, + 0.07, + 0.0555, + 0.0425, + 0.0309, + 0.0208, + 0.0122, + 0.0051, + -0.0007, + -0.0053, + -0.0088, + -0.0114, + -0.0131, + -0.0142, + -0.0148, + -0.0149, + -0.0147, + -0.0141, + -0.0131, + -0.0117, + -0.0096, + -0.0066, + -0.0023, + 0.0035, + 0.0115, + 0.0222, + 0.0363, + 0.0545, + 0.0776, + 0.1064, + 0.142, + 0.1851, + 0.2367, + 0.2978, + 0.3693, + 0.4519, + 0.5465, + 0.6537, + 0.774, + 0.9078, + 1.0553, + 1.2165, + 1.3911, + 1.5787, + 1.7659, + 1.8729, + 1.9765, + 2.0757, + 2.1696, + 2.2572, + 2.3377, + 2.4101, + 2.4738, + 2.5279, + 2.572, + 2.6055, + 2.6279, + 2.6392, + 2.639, + 2.6275, + 2.6048, + 2.5711, + 2.5269, + 2.4726, + 2.4089, + 2.3366, + 2.2565, + 2.1695, + 2.0766, + 1.9788, + 1.8772, + 1.7728, + 1.6666, + 1.5597, + 1.4532, + 1.3479, + 1.2447, + 1.1445, + 1.0479, + 0.9557, + 0.8684, + 0.7863, + -0.1074, + -0.1166, + -0.124, + -0.1297, + -0.1334, + -0.1351, + -0.1348, + -0.1325, + -0.1282, + -0.1219, + -0.1138, + -0.1038, + -0.0922, + -0.079, + -0.0643, + -0.0485, + -0.0315, + -0.0137, + 0.0047, + 0.0237, + 0.0428, + 0.0621, + 0.0811, + 0.0998, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0942, + 0.0781, + 0.0632, + 0.0496, + 0.0374, + 0.0266, + 0.0174, + 0.0097, + 0.0035, + -0.0014, + -0.005, + -0.0076, + -0.0092, + -0.01, + -0.0103, + -0.0102, + -0.0098, + -0.0093, + -0.0087, + -0.0081, + -0.0075, + -0.0067, + -0.0056, + -0.0041, + -0.0016, + 0.0021, + 0.0076, + 0.0154, + 0.0262, + 0.0407, + 0.0597, + 0.0841, + 0.1147, + 0.1525, + 0.1984, + 0.2533, + 0.318, + 0.3935, + 0.4804, + 0.5794, + 0.6909, + 0.8155, + 0.9532, + 1.1041, + 1.2679, + 1.4443, + 1.6324, + 1.8185, + 1.9169, + 2.011, + 2.0998, + 2.1824, + 2.2581, + 2.326, + 2.3853, + 2.4355, + 2.476, + 2.5063, + 2.526, + 2.5349, + 2.533, + 2.5202, + 2.4967, + 2.4628, + 2.4189, + 2.3655, + 2.3031, + 2.2327, + 2.1548, + 2.0705, + 1.9807, + 1.8864, + 1.7885, + 1.6881, + 1.5861, + 1.4837, + 1.3817, + 1.281, + 1.1825, + 1.087, + 0.9951, + 0.9074, + 0.8245, + 0.7467, + -0.1218, + -0.1315, + -0.1395, + -0.1455, + -0.1496, + -0.1517, + -0.1517, + -0.1497, + -0.1457, + -0.1397, + -0.1318, + -0.1221, + -0.1106, + -0.0976, + -0.0831, + -0.0674, + -0.0506, + -0.033, + -0.0146, + 0.0042, + 0.0232, + 0.0423, + 0.0613, + 0.0798, + 0.0978, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0857, + 0.0706, + 0.0566, + 0.0439, + 0.0325, + 0.0226, + 0.0142, + 0.0074, + 0.002, + -0.0019, + -0.0046, + -0.0062, + -0.0068, + -0.0067, + -0.0061, + -0.0051, + -0.0039, + -0.0028, + -0.0019, + -0.0012, + -0.0008, + -0.0008, + -0.0009, + -0.0011, + -0.0011, + -0.0006, + 0.0008, + 0.0037, + 0.0085, + 0.016, + 0.0269, + 0.0419, + 0.0619, + 0.0878, + 0.1204, + 0.1608, + 0.2097, + 0.268, + 0.3365, + 0.416, + 0.5071, + 0.6103, + 0.7259, + 0.8541, + 0.995, + 1.1483, + 1.3137, + 1.4904, + 1.6776, + 1.8533, + 1.942, + 2.0256, + 2.1031, + 2.1738, + 2.237, + 2.292, + 2.3382, + 2.375, + 2.402, + 2.419, + 2.4257, + 2.422, + 2.4081, + 2.3839, + 2.3499, + 2.3064, + 2.2539, + 2.1931, + 2.1246, + 2.0493, + 1.9679, + 1.8814, + 1.7907, + 1.6968, + 1.6006, + 1.5032, + 1.4054, + 1.3082, + 1.2123, + 1.1187, + 1.028, + 0.9409, + 0.8579, + 0.7796, + 0.7062, + -0.1343, + -0.1443, + -0.1526, + -0.1589, + -0.1632, + -0.1654, + -0.1656, + -0.1638, + -0.1599, + -0.154, + -0.1462, + -0.1366, + -0.1252, + -0.1123, + -0.098, + -0.0825, + -0.0658, + -0.0484, + -0.0302, + -0.0116, + 0.0072, + 0.0261, + 0.0448, + 0.063, + 0.0806, + 0.0975, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0923, + 0.0776, + 0.0635, + 0.0504, + 0.0385, + 0.028, + 0.0189, + 0.0113, + 0.0052, + 0.0007, + -0.0024, + -0.0042, + -0.0048, + -0.0044, + -0.0033, + -0.0016, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0016, + 0.0058, + 0.0131, + 0.0242, + 0.0399, + 0.0613, + 0.089, + 0.124, + 0.1673, + 0.2195, + 0.2815, + 0.3539, + 0.4375, + 0.5326, + 0.6397, + 0.7588, + 0.8901, + 1.0333, + 1.1879, + 1.3535, + 1.5292, + 1.7138, + 1.8697, + 1.9478, + 2.0201, + 2.0858, + 2.1442, + 2.1948, + 2.2369, + 2.27, + 2.2938, + 2.3081, + 2.3126, + 2.3072, + 2.2921, + 2.2674, + 2.2334, + 2.1905, + 2.1391, + 2.0799, + 2.0136, + 1.9409, + 1.8626, + 1.7796, + 1.6927, + 1.603, + 1.5113, + 1.4185, + 1.3255, + 1.2333, + 1.1425, + 1.0539, + 0.9682, + 0.886, + 0.8078, + 0.7341, + 0.6652, + -0.1448, + -0.155, + -0.1633, + -0.1696, + -0.174, + -0.1762, + -0.1764, + -0.1745, + -0.1706, + -0.1647, + -0.1569, + -0.1473, + -0.136, + -0.1232, + -0.109, + -0.0935, + -0.0771, + -0.0598, + -0.0419, + -0.0236, + -0.005, + 0.0135, + 0.0317, + 0.0495, + 0.0666, + 0.0829, + 0.0981, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0975, + 0.0835, + 0.0699, + 0.0568, + 0.0446, + 0.0335, + 0.0237, + 0.0154, + 0.0086, + 0.0033, + -0.0004, + -0.0027, + -0.0036, + -0.0032, + -0.0018, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0065, + 0.0183, + 0.0352, + 0.0583, + 0.0884, + 0.1262, + 0.1727, + 0.2286, + 0.2944, + 0.3709, + 0.4585, + 0.5574, + 0.6679, + 0.79, + 0.9234, + 1.0678, + 1.2227, + 1.3871, + 1.5601, + 1.7404, + 1.8673, + 1.9343, + 1.9949, + 2.0485, + 2.0946, + 2.1326, + 2.1621, + 2.1827, + 2.1942, + 2.1966, + 2.1896, + 2.1734, + 2.1483, + 2.1144, + 2.0721, + 2.022, + 1.9646, + 1.9006, + 1.8307, + 1.7556, + 1.6762, + 1.5934, + 1.508, + 1.4209, + 1.3329, + 1.2449, + 1.1577, + 1.072, + 0.9885, + 0.908, + 0.8308, + 0.7575, + 0.6885, + 0.6242, + -0.1533, + -0.1634, + -0.1716, + -0.1778, + -0.182, + -0.184, + -0.184, + -0.182, + -0.1779, + -0.1719, + -0.1639, + -0.1542, + -0.1429, + -0.1301, + -0.1159, + -0.1006, + -0.0843, + -0.0672, + -0.0496, + -0.0317, + -0.0136, + 0.0044, + 0.0221, + 0.0393, + 0.0558, + 0.0714, + 0.0858, + 0.099, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.088, + 0.0752, + 0.0626, + 0.0505, + 0.0392, + 0.0289, + 0.0199, + 0.0122, + 0.0061, + 0.0016, + -0.0014, + -0.0028, + -0.0028, + -0.0016, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0097, + 0.0285, + 0.0539, + 0.0868, + 0.128, + 0.1781, + 0.2378, + 0.3077, + 0.3882, + 0.4795, + 0.5818, + 0.6952, + 0.8194, + 0.954, + 1.0985, + 1.2522, + 1.4139, + 1.5826, + 1.7569, + 1.8465, + 1.902, + 1.9508, + 1.9924, + 2.0263, + 2.0521, + 2.0696, + 2.0785, + 2.0787, + 2.0703, + 2.0531, + 2.0276, + 1.9939, + 1.9525, + 1.9037, + 1.8482, + 1.7866, + 1.7196, + 1.6479, + 1.5723, + 1.4936, + 1.4126, + 1.3302, + 1.2471, + 1.1641, + 1.0821, + 1.0016, + 0.9234, + 0.8479, + 0.7758, + 0.7075, + 0.6432, + 0.5834, + -0.1597, + -0.1695, + -0.1774, + -0.1833, + -0.1871, + -0.1888, + -0.1885, + -0.1861, + -0.1817, + -0.1753, + -0.1672, + -0.1573, + -0.1458, + -0.1329, + -0.1188, + -0.1036, + -0.0875, + -0.0707, + -0.0534, + -0.0358, + -0.0183, + -0.0009, + 0.0161, + 0.0326, + 0.0482, + 0.0628, + 0.0763, + 0.0885, + 0.0992, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0906, + 0.0792, + 0.0676, + 0.0559, + 0.0447, + 0.0342, + 0.0247, + 0.0163, + 0.0094, + 0.0039, + 0.0001, + -0.0022, + -0.0029, + -0.0021, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0207, + 0.0491, + 0.0854, + 0.1302, + 0.1843, + 0.2481, + 0.322, + 0.4063, + 0.501, + 0.6062, + 0.7217, + 0.847, + 0.9817, + 1.125, + 1.2759, + 1.4334, + 1.5961, + 1.7574, + 1.8078, + 1.8519, + 1.8891, + 1.9189, + 1.9412, + 1.9556, + 1.9619, + 1.9601, + 1.9502, + 1.9322, + 1.9064, + 1.873, + 1.8325, + 1.7852, + 1.7317, + 1.6726, + 1.6086, + 1.5403, + 1.4686, + 1.3941, + 1.3176, + 1.2399, + 1.1618, + 1.084, + 1.0071, + 0.9319, + 0.8589, + 0.7886, + 0.7215, + 0.6581, + 0.5986, + 0.5433, + -0.1639, + -0.1733, + -0.1807, + -0.1861, + -0.1893, + -0.1905, + -0.1897, + -0.1868, + -0.1819, + -0.1752, + -0.1666, + -0.1565, + -0.1448, + -0.1318, + -0.1176, + -0.1025, + -0.0865, + -0.07, + -0.0532, + -0.0361, + -0.0192, + -0.0025, + 0.0137, + 0.0292, + 0.0438, + 0.0574, + 0.0698, + 0.0807, + 0.0902, + 0.098, + 0.1, + 0.1, + 0.1, + 0.0995, + 0.0912, + 0.0817, + 0.0714, + 0.0607, + 0.05, + 0.0395, + 0.0297, + 0.0209, + 0.0131, + 0.0068, + 0.0019, + -0.0013, + -0.0029, + -0.0029, + -0.0013, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0131, + 0.045, + 0.0851, + 0.1341, + 0.1924, + 0.2602, + 0.338, + 0.4257, + 0.5232, + 0.6305, + 0.7471, + 0.8725, + 1.0059, + 1.1465, + 1.2933, + 1.4449, + 1.6, + 1.7133, + 1.7526, + 1.7854, + 1.8114, + 1.8302, + 1.8416, + 1.8454, + 1.8417, + 1.8304, + 1.8116, + 1.7856, + 1.7527, + 1.7131, + 1.6674, + 1.616, + 1.5595, + 1.4985, + 1.4338, + 1.3659, + 1.2957, + 1.2238, + 1.1509, + 1.0777, + 1.005, + 0.9334, + 0.8634, + 0.7955, + 0.7304, + 0.6684, + 0.6098, + 0.555, + 0.5042, + -0.166, + -0.1748, + -0.1815, + -0.1861, + -0.1887, + -0.1892, + -0.1876, + -0.1841, + -0.1786, + -0.1713, + -0.1623, + -0.1518, + -0.1398, + -0.1266, + -0.1124, + -0.0973, + -0.0816, + -0.0654, + -0.0489, + -0.0325, + -0.0162, + -0.0004, + 0.0149, + 0.0293, + 0.0428, + 0.0551, + 0.0661, + 0.0757, + 0.0836, + 0.09, + 0.0946, + 0.0958, + 0.0901, + 0.0828, + 0.0743, + 0.0648, + 0.0549, + 0.0448, + 0.035, + 0.0258, + 0.0175, + 0.0103, + 0.0044, + 0.0001, + -0.0026, + -0.0037, + -0.003, + -0.0007, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0069, + 0.0429, + 0.0873, + 0.1405, + 0.2029, + 0.2747, + 0.3559, + 0.4465, + 0.5461, + 0.6545, + 0.7712, + 0.8953, + 1.0261, + 1.1626, + 1.3036, + 1.4477, + 1.5937, + 1.6538, + 1.6823, + 1.7044, + 1.7198, + 1.7283, + 1.7298, + 1.7242, + 1.7117, + 1.6923, + 1.6662, + 1.6337, + 1.5952, + 1.5511, + 1.5018, + 1.448, + 1.3902, + 1.329, + 1.2651, + 1.1991, + 1.1318, + 1.0637, + 0.9955, + 0.9279, + 0.8614, + 0.7966, + 0.7339, + 0.6739, + 0.6168, + 0.563, + 0.5128, + 0.4663, + -0.166, + -0.1739, + -0.1798, + -0.1835, + -0.1852, + -0.1848, + -0.1824, + -0.178, + -0.1718, + -0.1638, + -0.1543, + -0.1432, + -0.1309, + -0.1175, + -0.1032, + -0.0881, + -0.0725, + -0.0567, + -0.0408, + -0.025, + -0.0095, + 0.0054, + 0.0196, + 0.0328, + 0.045, + 0.0559, + 0.0654, + 0.0733, + 0.0797, + 0.0843, + 0.0872, + 0.0834, + 0.0768, + 0.0688, + 0.0599, + 0.0505, + 0.0409, + 0.0315, + 0.0226, + 0.0147, + 0.0078, + 0.0023, + -0.0016, + -0.0039, + -0.0045, + -0.0033, + -0.0004, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0034, + 0.0438, + 0.0926, + 0.1501, + 0.2165, + 0.2919, + 0.3759, + 0.4686, + 0.5694, + 0.6778, + 0.7932, + 0.9148, + 1.0415, + 1.1723, + 1.306, + 1.4413, + 1.556, + 1.5804, + 1.5988, + 1.6109, + 1.6167, + 1.6159, + 1.6086, + 1.595, + 1.575, + 1.5489, + 1.517, + 1.4796, + 1.4372, + 1.3902, + 1.339, + 1.2844, + 1.2267, + 1.1668, + 1.1051, + 1.0422, + 0.9789, + 0.9157, + 0.8531, + 0.7917, + 0.732, + 0.6744, + 0.6193, + 0.5671, + 0.518, + 0.4723, + 0.43, + -0.1638, + -0.1707, + -0.1755, + -0.1782, + -0.1788, + -0.1773, + -0.1739, + -0.1686, + -0.1615, + -0.1527, + -0.1425, + -0.1309, + -0.1181, + -0.1044, + -0.0899, + -0.0749, + -0.0595, + -0.0441, + -0.0287, + -0.0136, + 0.001, + 0.0149, + 0.0278, + 0.0397, + 0.0504, + 0.0597, + 0.0675, + 0.0738, + 0.0783, + 0.0811, + 0.0802, + 0.0737, + 0.066, + 0.0572, + 0.0479, + 0.0385, + 0.0292, + 0.0205, + 0.0126, + 0.0059, + 0.0005, + -0.0032, + -0.0052, + -0.0055, + -0.0038, + -0.0004, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0037, + 0.0486, + 0.1018, + 0.1634, + 0.2334, + 0.3117, + 0.3979, + 0.4916, + 0.5925, + 0.6997, + 0.8125, + 0.9301, + 1.0512, + 1.175, + 1.3, + 1.425, + 1.4804, + 1.4952, + 1.5042, + 1.5073, + 1.5044, + 1.4956, + 1.4809, + 1.4604, + 1.4344, + 1.4032, + 1.3671, + 1.3264, + 1.2816, + 1.2332, + 1.1817, + 1.1276, + 1.0716, + 1.0141, + 0.9557, + 0.8971, + 0.8387, + 0.7811, + 0.7247, + 0.67, + 0.6173, + 0.5671, + 0.5196, + 0.4751, + 0.4337, + 0.3955, + -0.1595, + -0.1652, + -0.1688, + -0.1702, + -0.1696, + -0.1669, + -0.1623, + -0.1559, + -0.1478, + -0.1381, + -0.1271, + -0.1148, + -0.1015, + -0.0875, + -0.0728, + -0.0578, + -0.0426, + -0.0275, + -0.0127, + 0.0016, + 0.0152, + 0.0279, + 0.0396, + 0.05, + 0.0591, + 0.0667, + 0.0726, + 0.0769, + 0.0795, + 0.0803, + 0.0745, + 0.0665, + 0.0575, + 0.0479, + 0.0382, + 0.0286, + 0.0196, + 0.0115, + 0.0046, + -0.0008, + -0.0046, + -0.0066, + -0.0066, + -0.0047, + -0.0009, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0085, + 0.0579, + 0.1153, + 0.1806, + 0.2535, + 0.3338, + 0.4211, + 0.5149, + 0.6145, + 0.7192, + 0.8281, + 0.9402, + 1.0544, + 1.1697, + 1.2847, + 1.3828, + 1.3942, + 1.4003, + 1.4009, + 1.396, + 1.3857, + 1.3701, + 1.3493, + 1.3235, + 1.293, + 1.2581, + 1.2192, + 1.1767, + 1.1311, + 1.0827, + 1.0322, + 0.98, + 0.9267, + 0.8728, + 0.8187, + 0.7651, + 0.7123, + 0.6608, + 0.6109, + 0.5631, + 0.5176, + 0.4746, + 0.4345, + 0.3972, + 0.363, + -0.153, + -0.1574, + -0.1595, + -0.1596, + -0.1576, + -0.1535, + -0.1477, + -0.14, + -0.1307, + -0.12, + -0.1081, + -0.0951, + -0.0812, + -0.0668, + -0.0519, + -0.0369, + -0.0219, + -0.0072, + 0.007, + 0.0205, + 0.033, + 0.0445, + 0.0548, + 0.0636, + 0.0709, + 0.0766, + 0.0806, + 0.0828, + 0.0832, + 0.08, + 0.0712, + 0.0615, + 0.0511, + 0.0406, + 0.0303, + 0.0207, + 0.012, + 0.0045, + -0.0014, + -0.0055, + -0.0077, + -0.0079, + -0.006, + -0.002, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0183, + 0.072, + 0.1331, + 0.2012, + 0.2762, + 0.3576, + 0.4449, + 0.5375, + 0.6345, + 0.7353, + 0.8389, + 0.9442, + 1.0502, + 1.1559, + 1.2599, + 1.2963, + 1.2996, + 1.2979, + 1.2912, + 1.2796, + 1.2632, + 1.2422, + 1.2167, + 1.187, + 1.1534, + 1.1163, + 1.0761, + 1.0332, + 0.9879, + 0.9409, + 0.8926, + 0.8433, + 0.7937, + 0.7442, + 0.6951, + 0.647, + 0.6002, + 0.5551, + 0.5119, + 0.4709, + 0.4324, + 0.3964, + 0.3631, + 0.3326, + -0.1445, + -0.1473, + -0.1479, + -0.1464, + -0.1428, + -0.1373, + -0.13, + -0.121, + -0.1104, + -0.0986, + -0.0857, + -0.0718, + -0.0573, + -0.0424, + -0.0273, + -0.0122, + 0.0025, + 0.0168, + 0.0303, + 0.0429, + 0.0544, + 0.0646, + 0.0733, + 0.0804, + 0.0859, + 0.0895, + 0.0914, + 0.0914, + 0.0895, + 0.0812, + 0.0701, + 0.0584, + 0.0466, + 0.0351, + 0.0242, + 0.0144, + 0.006, + -0.0008, + -0.0057, + -0.0086, + -0.0092, + -0.0076, + -0.0037, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0334, + 0.0907, + 0.1547, + 0.2249, + 0.3009, + 0.3822, + 0.4683, + 0.5583, + 0.6515, + 0.747, + 0.8439, + 0.9413, + 1.038, + 1.133, + 1.202, + 1.2027, + 1.1988, + 1.1905, + 1.1777, + 1.1607, + 1.1395, + 1.1144, + 1.0855, + 1.0534, + 1.0181, + 0.9802, + 0.9399, + 0.8978, + 0.8542, + 0.8096, + 0.7644, + 0.7189, + 0.6738, + 0.6292, + 0.5856, + 0.5434, + 0.5027, + 0.464, + 0.4273, + 0.393, + 0.361, + 0.3315, + 0.3045, + -0.1339, + -0.135, + -0.1339, + -0.1307, + -0.1255, + -0.1183, + -0.1094, + -0.0989, + -0.087, + -0.0739, + -0.0599, + -0.0451, + -0.0299, + -0.0145, + 0.0009, + 0.016, + 0.0306, + 0.0444, + 0.0572, + 0.0689, + 0.0792, + 0.0879, + 0.095, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0973, + 0.0844, + 0.0709, + 0.0572, + 0.0438, + 0.0312, + 0.0197, + 0.0097, + 0.0015, + -0.0047, + -0.0086, + -0.0101, + -0.0092, + -0.0057, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0533, + 0.1135, + 0.1794, + 0.2506, + 0.3265, + 0.4065, + 0.4899, + 0.5761, + 0.6641, + 0.7532, + 0.8423, + 0.9307, + 1.0172, + 1.101, + 1.1098, + 1.104, + 1.0942, + 1.0804, + 1.0628, + 1.0416, + 1.0169, + 0.9891, + 0.9583, + 0.9249, + 0.8893, + 0.8517, + 0.8126, + 0.7724, + 0.7314, + 0.69, + 0.6487, + 0.6077, + 0.5675, + 0.5282, + 0.4904, + 0.454, + 0.4195, + 0.387, + 0.3566, + 0.3284, + 0.3024, + 0.2787, + -0.1214, + -0.1206, + -0.1177, + -0.1126, + -0.1055, + -0.0966, + -0.086, + -0.0739, + -0.0605, + -0.0461, + -0.0309, + -0.0152, + 0.0008, + 0.0168, + 0.0325, + 0.0477, + 0.062, + 0.0754, + 0.0875, + 0.0982, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0895, + 0.0733, + 0.0575, + 0.0425, + 0.0287, + 0.0165, + 0.0063, + -0.0017, + -0.0073, + -0.0102, + -0.0105, + -0.0079, + -0.0027, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0206, + 0.0775, + 0.1396, + 0.2063, + 0.2772, + 0.3517, + 0.4291, + 0.5087, + 0.5897, + 0.6714, + 0.7529, + 0.8334, + 0.9119, + 0.9877, + 1.0212, + 1.0137, + 1.0025, + 0.9879, + 0.9699, + 0.9488, + 0.9247, + 0.8978, + 0.8685, + 0.837, + 0.8036, + 0.7687, + 0.7326, + 0.6956, + 0.6582, + 0.6206, + 0.5832, + 0.5462, + 0.5101, + 0.4751, + 0.4413, + 0.4091, + 0.3786, + 0.35, + 0.3233, + 0.2986, + 0.2759, + 0.2553, + -0.1069, + -0.1041, + -0.0992, + -0.0921, + -0.0831, + -0.0723, + -0.0599, + -0.046, + -0.0311, + -0.0153, + 0.0012, + 0.018, + 0.0348, + 0.0513, + 0.0674, + 0.0826, + 0.0968, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0963, + 0.0774, + 0.0593, + 0.0425, + 0.0275, + 0.0145, + 0.004, + -0.0039, + -0.0088, + -0.0108, + -0.0098, + -0.0058, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0463, + 0.105, + 0.1677, + 0.2341, + 0.3035, + 0.3753, + 0.4488, + 0.5233, + 0.5982, + 0.6725, + 0.7456, + 0.8166, + 0.8849, + 0.9372, + 0.9281, + 0.9158, + 0.9005, + 0.8822, + 0.8613, + 0.8378, + 0.812, + 0.7842, + 0.7545, + 0.7234, + 0.6911, + 0.6579, + 0.6242, + 0.5901, + 0.5561, + 0.5225, + 0.4894, + 0.4572, + 0.4261, + 0.3964, + 0.368, + 0.3413, + 0.3163, + 0.2931, + 0.2717, + 0.2521, + 0.2344, + -0.0905, + -0.0857, + -0.0786, + -0.0695, + -0.0584, + -0.0455, + -0.0312, + -0.0156, + 0.0011, + 0.0184, + 0.0362, + 0.054, + 0.0717, + 0.0889, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0829, + 0.0624, + 0.0438, + 0.0273, + 0.0135, + 0.0027, + -0.0051, + -0.0096, + -0.0107, + -0.0084, + -0.0029, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0196, + 0.0752, + 0.1343, + 0.1966, + 0.2613, + 0.3279, + 0.3958, + 0.4643, + 0.5327, + 0.6004, + 0.6666, + 0.7307, + 0.7919, + 0.8498, + 0.8473, + 0.8341, + 0.8182, + 0.7998, + 0.7792, + 0.7564, + 0.7317, + 0.7054, + 0.6777, + 0.6488, + 0.619, + 0.5887, + 0.558, + 0.5273, + 0.4967, + 0.4667, + 0.4373, + 0.4089, + 0.3815, + 0.3555, + 0.3308, + 0.3076, + 0.286, + 0.2661, + 0.2477, + 0.231, + 0.2158, + -0.0724, + -0.0653, + -0.056, + -0.0447, + -0.0314, + -0.0165, + -0.0001, + 0.0174, + 0.0358, + 0.0547, + 0.0739, + 0.0929, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0896, + 0.0666, + 0.046, + 0.0282, + 0.0134, + 0.0021, + -0.0056, + -0.0096, + -0.0099, + -0.0065, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0499, + 0.1058, + 0.1642, + 0.2247, + 0.2865, + 0.3492, + 0.4121, + 0.4746, + 0.536, + 0.5958, + 0.6534, + 0.7081, + 0.7595, + 0.7715, + 0.7574, + 0.7411, + 0.7228, + 0.7025, + 0.6805, + 0.6571, + 0.6323, + 0.6064, + 0.5797, + 0.5525, + 0.5249, + 0.4971, + 0.4696, + 0.4424, + 0.4158, + 0.3899, + 0.365, + 0.3412, + 0.3186, + 0.2974, + 0.2775, + 0.2591, + 0.2421, + 0.2266, + 0.2124, + 0.1996, + -0.0525, + -0.0432, + -0.0315, + -0.0179, + -0.0023, + 0.0148, + 0.0333, + 0.0528, + 0.073, + 0.0935, + 0.1011, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0976, + 0.072, + 0.0493, + 0.0299, + 0.0141, + 0.0023, + -0.0055, + -0.0092, + -0.0087, + -0.0042, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0288, + 0.0817, + 0.1366, + 0.1931, + 0.2505, + 0.3084, + 0.3661, + 0.423, + 0.4787, + 0.5326, + 0.5841, + 0.6328, + 0.6782, + 0.7005, + 0.6858, + 0.6693, + 0.6511, + 0.6313, + 0.6102, + 0.5879, + 0.5647, + 0.5407, + 0.5162, + 0.4914, + 0.4664, + 0.4416, + 0.4171, + 0.393, + 0.3697, + 0.3471, + 0.3256, + 0.3051, + 0.2858, + 0.2677, + 0.2509, + 0.2354, + 0.2212, + 0.2082, + 0.1964, + 0.1856, + -0.0311, + -0.0193, + -0.0053, + 0.0108, + 0.0287, + 0.0481, + 0.0687, + 0.0903, + 0.1072, + 0.1115, + 0.1046, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0783, + 0.0534, + 0.0323, + 0.0154, + 0.0029, + -0.005, + -0.0084, + -0.0073, + -0.0019, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0114, + 0.0616, + 0.1133, + 0.1661, + 0.2195, + 0.2728, + 0.3257, + 0.3775, + 0.4278, + 0.4762, + 0.5221, + 0.5652, + 0.6051, + 0.6343, + 0.6192, + 0.6026, + 0.5846, + 0.5654, + 0.5453, + 0.5243, + 0.5026, + 0.4805, + 0.4581, + 0.4357, + 0.4133, + 0.3912, + 0.3696, + 0.3486, + 0.3283, + 0.3089, + 0.2905, + 0.2731, + 0.2568, + 0.2417, + 0.2277, + 0.2149, + 0.2031, + 0.1924, + 0.1827, + 0.1739, + -0.0082, + 0.0061, + 0.0227, + 0.0412, + 0.0615, + 0.0833, + 0.1062, + 0.1249, + 0.1315, + 0.1259, + 0.1165, + 0.1202, + 0.1237, + 0.127, + 0.1299, + 0.1325, + 0.1346, + 0.1363, + 0.1375, + 0.1382, + 0.1383, + 0.1379, + 0.1369, + 0.1354, + 0.1333, + 0.1307, + 0.1275, + 0.1209, + 0.1145, + 0.1084, + 0.1027, + 0.0857, + 0.0584, + 0.0355, + 0.0173, + 0.0041, + -0.0041, + -0.0074, + -0.0058, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0451, + 0.0939, + 0.1433, + 0.1928, + 0.242, + 0.2903, + 0.3374, + 0.3827, + 0.426, + 0.4667, + 0.5047, + 0.5395, + 0.571, + 0.5574, + 0.5408, + 0.5232, + 0.5048, + 0.4856, + 0.4659, + 0.4459, + 0.4256, + 0.4054, + 0.3852, + 0.3653, + 0.3459, + 0.327, + 0.3089, + 0.2915, + 0.2751, + 0.2595, + 0.245, + 0.2316, + 0.2191, + 0.2077, + 0.1973, + 0.1879, + 0.1793, + 0.1714, + 0.1642, + 0.0161, + 0.033, + 0.0521, + 0.0732, + 0.096, + 0.1202, + 0.1454, + 0.1595, + 0.1568, + 0.151, + 0.1615, + 0.1715, + 0.1809, + 0.1896, + 0.1973, + 0.204, + 0.2094, + 0.2136, + 0.2163, + 0.2175, + 0.2173, + 0.2154, + 0.2121, + 0.2072, + 0.2009, + 0.1931, + 0.1822, + 0.1632, + 0.1449, + 0.1276, + 0.1117, + 0.094, + 0.0642, + 0.0394, + 0.0198, + 0.0057, + -0.003, + -0.0063, + -0.0043, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0319, + 0.0779, + 0.1241, + 0.1701, + 0.2153, + 0.2595, + 0.3021, + 0.3428, + 0.3813, + 0.4173, + 0.4505, + 0.4807, + 0.5078, + 0.5003, + 0.484, + 0.4669, + 0.4492, + 0.4311, + 0.4128, + 0.3943, + 0.3759, + 0.3577, + 0.3398, + 0.3223, + 0.3054, + 0.2892, + 0.2737, + 0.2591, + 0.2454, + 0.2326, + 0.2208, + 0.2099, + 0.1999, + 0.1909, + 0.1827, + 0.1752, + 0.1685, + 0.1622, + 0.1565, + 0.0417, + 0.0613, + 0.083, + 0.1067, + 0.1321, + 0.1587, + 0.1862, + 0.1956, + 0.1949, + 0.2133, + 0.2312, + 0.2483, + 0.2642, + 0.2787, + 0.2915, + 0.3023, + 0.311, + 0.3174, + 0.3212, + 0.3225, + 0.3211, + 0.317, + 0.3102, + 0.3009, + 0.2891, + 0.2748, + 0.2525, + 0.2184, + 0.1859, + 0.1552, + 0.1272, + 0.1023, + 0.0709, + 0.044, + 0.0228, + 0.0076, + -0.0017, + -0.0052, + -0.0031, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0217, + 0.065, + 0.1082, + 0.1508, + 0.1924, + 0.2326, + 0.2711, + 0.3076, + 0.3417, + 0.3733, + 0.4022, + 0.4282, + 0.4512, + 0.4478, + 0.4317, + 0.4152, + 0.3985, + 0.3815, + 0.3646, + 0.3477, + 0.3312, + 0.3149, + 0.2992, + 0.2841, + 0.2696, + 0.2559, + 0.2429, + 0.2309, + 0.2197, + 0.2095, + 0.2001, + 0.1916, + 0.1839, + 0.177, + 0.1707, + 0.1651, + 0.1599, + 0.1551, + 0.1505, + 0.0685, + 0.0907, + 0.1152, + 0.1415, + 0.1694, + 0.1986, + 0.2285, + 0.2458, + 0.2735, + 0.3007, + 0.327, + 0.3517, + 0.3748, + 0.3955, + 0.4136, + 0.4289, + 0.4407, + 0.4491, + 0.4537, + 0.4544, + 0.4512, + 0.4439, + 0.4328, + 0.4178, + 0.3992, + 0.3771, + 0.34, + 0.2881, + 0.2386, + 0.1925, + 0.1502, + 0.1127, + 0.0786, + 0.0493, + 0.0264, + 0.0099, + -0.0002, + -0.0041, + -0.002, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.014, + 0.0549, + 0.0952, + 0.1346, + 0.1727, + 0.2093, + 0.2439, + 0.2764, + 0.3065, + 0.3341, + 0.359, + 0.3811, + 0.4005, + 0.3995, + 0.3839, + 0.3681, + 0.3523, + 0.3366, + 0.3211, + 0.3058, + 0.2911, + 0.2768, + 0.2632, + 0.2503, + 0.2381, + 0.2268, + 0.2162, + 0.2066, + 0.1978, + 0.1899, + 0.1828, + 0.1764, + 0.1708, + 0.1657, + 0.1612, + 0.1572, + 0.1534, + 0.1498, + 0.1463, + 0.0964, + 0.1213, + 0.1485, + 0.1775, + 0.208, + 0.2397, + 0.2721, + 0.3046, + 0.337, + 0.3685, + 0.3988, + 0.4273, + 0.4535, + 0.477, + 0.4974, + 0.5141, + 0.527, + 0.5357, + 0.54, + 0.5397, + 0.5348, + 0.5252, + 0.5111, + 0.4925, + 0.4697, + 0.443, + 0.3959, + 0.3339, + 0.2749, + 0.22, + 0.1699, + 0.1255, + 0.0872, + 0.0555, + 0.0306, + 0.0126, + 0.0015, + -0.003, + -0.0012, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0086, + 0.047, + 0.0846, + 0.121, + 0.1559, + 0.1889, + 0.22, + 0.2488, + 0.2751, + 0.299, + 0.3203, + 0.339, + 0.3551, + 0.3553, + 0.3403, + 0.3253, + 0.3105, + 0.2961, + 0.282, + 0.2684, + 0.2554, + 0.2431, + 0.2315, + 0.2207, + 0.2108, + 0.2017, + 0.1934, + 0.186, + 0.1794, + 0.1736, + 0.1686, + 0.1642, + 0.1604, + 0.157, + 0.1541, + 0.1514, + 0.1488, + 0.1462, + 0.1435, + 0.1252, + 0.1529, + 0.1827, + 0.2145, + 0.2477, + 0.2819, + 0.3167, + 0.3516, + 0.3861, + 0.4196, + 0.4516, + 0.4816, + 0.509, + 0.5335, + 0.5544, + 0.5715, + 0.5843, + 0.5927, + 0.5962, + 0.5949, + 0.5886, + 0.5774, + 0.5613, + 0.5405, + 0.5153, + 0.4859, + 0.4325, + 0.3649, + 0.3007, + 0.241, + 0.1867, + 0.1385, + 0.097, + 0.0626, + 0.0355, + 0.0158, + 0.0034, + -0.002, + -0.0007, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0053, + 0.0413, + 0.0762, + 0.1097, + 0.1414, + 0.1712, + 0.1989, + 0.2242, + 0.2472, + 0.2677, + 0.2857, + 0.3013, + 0.3145, + 0.3149, + 0.3006, + 0.2865, + 0.2729, + 0.2597, + 0.2471, + 0.2352, + 0.2239, + 0.2135, + 0.2039, + 0.1952, + 0.1873, + 0.1803, + 0.1741, + 0.1688, + 0.1643, + 0.1604, + 0.1573, + 0.1546, + 0.1525, + 0.1506, + 0.149, + 0.1475, + 0.1459, + 0.1441, + 0.142, + 0.1548, + 0.1853, + 0.2179, + 0.2524, + 0.2882, + 0.325, + 0.3623, + 0.3995, + 0.4362, + 0.4716, + 0.5054, + 0.5369, + 0.5656, + 0.591, + 0.6126, + 0.6301, + 0.6429, + 0.6509, + 0.6538, + 0.6515, + 0.6439, + 0.6311, + 0.6131, + 0.5902, + 0.5625, + 0.5306, + 0.4714, + 0.3981, + 0.3285, + 0.2639, + 0.2051, + 0.153, + 0.1081, + 0.0708, + 0.0412, + 0.0196, + 0.0057, + -0.0009, + -0.0004, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0036, + 0.0373, + 0.0696, + 0.1003, + 0.129, + 0.1557, + 0.1802, + 0.2024, + 0.2222, + 0.2396, + 0.2547, + 0.2675, + 0.2782, + 0.278, + 0.2645, + 0.2515, + 0.239, + 0.2272, + 0.2161, + 0.2058, + 0.1963, + 0.1877, + 0.18, + 0.1732, + 0.1674, + 0.1623, + 0.1582, + 0.1548, + 0.1521, + 0.1501, + 0.1486, + 0.1475, + 0.1468, + 0.1463, + 0.1458, + 0.1453, + 0.1445, + 0.1434, + 0.1417, + 0.1851, + 0.2184, + 0.2538, + 0.291, + 0.3295, + 0.3689, + 0.4087, + 0.4483, + 0.4871, + 0.5245, + 0.5601, + 0.5931, + 0.6231, + 0.6495, + 0.6719, + 0.6897, + 0.7026, + 0.7103, + 0.7126, + 0.7094, + 0.7005, + 0.6862, + 0.6663, + 0.6413, + 0.6114, + 0.5769, + 0.513, + 0.4337, + 0.3586, + 0.2889, + 0.2255, + 0.1692, + 0.1206, + 0.0802, + 0.048, + 0.0241, + 0.0083, + 0.0003, + -0.0003, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0034, + 0.0347, + 0.0645, + 0.0924, + 0.1184, + 0.1421, + 0.1636, + 0.1828, + 0.1997, + 0.2143, + 0.2267, + 0.237, + 0.2455, + 0.2445, + 0.2319, + 0.22, + 0.2087, + 0.1983, + 0.1887, + 0.18, + 0.1723, + 0.1655, + 0.1597, + 0.1547, + 0.1507, + 0.1476, + 0.1453, + 0.1437, + 0.1427, + 0.1423, + 0.1423, + 0.1427, + 0.1432, + 0.1438, + 0.1443, + 0.1445, + 0.1444, + 0.1438, + 0.1425, + 0.2161, + 0.2521, + 0.2903, + 0.3303, + 0.3715, + 0.4135, + 0.4557, + 0.4976, + 0.5386, + 0.5781, + 0.6155, + 0.6501, + 0.6814, + 0.7089, + 0.7319, + 0.7502, + 0.7632, + 0.7707, + 0.7725, + 0.7684, + 0.7584, + 0.7426, + 0.721, + 0.6939, + 0.6617, + 0.6248, + 0.5574, + 0.4721, + 0.3914, + 0.3164, + 0.2481, + 0.1874, + 0.1349, + 0.091, + 0.0558, + 0.0294, + 0.0115, + 0.0018, + -0.0003, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0043, + 0.0333, + 0.0606, + 0.0859, + 0.1091, + 0.13, + 0.1487, + 0.1652, + 0.1793, + 0.1914, + 0.2014, + 0.2096, + 0.2161, + 0.214, + 0.2025, + 0.1917, + 0.1818, + 0.1728, + 0.1647, + 0.1576, + 0.1516, + 0.1465, + 0.1425, + 0.1394, + 0.1371, + 0.1358, + 0.1351, + 0.1352, + 0.1358, + 0.1369, + 0.1382, + 0.1398, + 0.1414, + 0.143, + 0.1443, + 0.1452, + 0.1455, + 0.1452, + 0.144, + 0.2475, + 0.2864, + 0.3274, + 0.37, + 0.4139, + 0.4585, + 0.5032, + 0.5475, + 0.5907, + 0.6322, + 0.6714, + 0.7077, + 0.7403, + 0.7689, + 0.7927, + 0.8115, + 0.8247, + 0.8321, + 0.8334, + 0.8286, + 0.8175, + 0.8002, + 0.777, + 0.748, + 0.7137, + 0.6744, + 0.605, + 0.5135, + 0.427, + 0.3465, + 0.2732, + 0.2079, + 0.1512, + 0.1036, + 0.0651, + 0.0359, + 0.0155, + 0.0037, + -0.0001, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0062, + 0.0328, + 0.0576, + 0.0803, + 0.1009, + 0.1192, + 0.1352, + 0.1491, + 0.1608, + 0.1705, + 0.1784, + 0.1847, + 0.1897, + 0.1864, + 0.1759, + 0.1664, + 0.1578, + 0.1503, + 0.1438, + 0.1383, + 0.134, + 0.1306, + 0.1283, + 0.1268, + 0.1263, + 0.1266, + 0.1276, + 0.1291, + 0.1311, + 0.1335, + 0.1361, + 0.1387, + 0.1413, + 0.1436, + 0.1455, + 0.1469, + 0.1476, + 0.1474, + 0.1463, + 0.2794, + 0.321, + 0.3647, + 0.4101, + 0.4567, + 0.5038, + 0.5511, + 0.5977, + 0.6432, + 0.6867, + 0.7278, + 0.7657, + 0.7998, + 0.8294, + 0.8542, + 0.8735, + 0.887, + 0.8943, + 0.8953, + 0.8898, + 0.8777, + 0.8592, + 0.8344, + 0.8036, + 0.7672, + 0.7257, + 0.6561, + 0.5584, + 0.4658, + 0.3797, + 0.3011, + 0.2309, + 0.1698, + 0.1182, + 0.0761, + 0.0437, + 0.0205, + 0.0063, + 0.0003, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0087, + 0.0331, + 0.0554, + 0.0755, + 0.0935, + 0.1093, + 0.1228, + 0.1343, + 0.1438, + 0.1514, + 0.1575, + 0.1621, + 0.1657, + 0.1614, + 0.1521, + 0.1439, + 0.1367, + 0.1306, + 0.1257, + 0.1219, + 0.1191, + 0.1174, + 0.1167, + 0.117, + 0.118, + 0.1198, + 0.1223, + 0.1252, + 0.1285, + 0.132, + 0.1357, + 0.1392, + 0.1425, + 0.1455, + 0.1479, + 0.1496, + 0.1505, + 0.1504, + 0.1492, + 0.3116, + 0.3559, + 0.4024, + 0.4505, + 0.4997, + 0.5494, + 0.5991, + 0.6482, + 0.6959, + 0.7415, + 0.7845, + 0.8241, + 0.8596, + 0.8905, + 0.9162, + 0.9361, + 0.95, + 0.9574, + 0.9581, + 0.952, + 0.939, + 0.9194, + 0.8931, + 0.8607, + 0.8224, + 0.7787, + 0.7112, + 0.607, + 0.5083, + 0.4163, + 0.3322, + 0.2569, + 0.191, + 0.1351, + 0.0891, + 0.0531, + 0.0268, + 0.0098, + 0.0013, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0117, + 0.0337, + 0.0535, + 0.0712, + 0.0868, + 0.1001, + 0.1113, + 0.1205, + 0.128, + 0.1338, + 0.1382, + 0.1415, + 0.144, + 0.1388, + 0.1308, + 0.1239, + 0.1182, + 0.1137, + 0.1103, + 0.108, + 0.1069, + 0.1068, + 0.1077, + 0.1095, + 0.112, + 0.1153, + 0.119, + 0.1232, + 0.1277, + 0.1322, + 0.1367, + 0.1411, + 0.145, + 0.1484, + 0.1512, + 0.1531, + 0.154, + 0.1539, + 0.1525, + 0.3439, + 0.391, + 0.4402, + 0.491, + 0.5428, + 0.5952, + 0.6474, + 0.6988, + 0.7487, + 0.7965, + 0.8414, + 0.8827, + 0.9198, + 0.9519, + 0.9786, + 0.9993, + 1.0136, + 1.0212, + 1.0217, + 1.0152, + 1.0015, + 0.9808, + 0.9533, + 0.9193, + 0.8792, + 0.8335, + 0.7707, + 0.66, + 0.5549, + 0.4568, + 0.3669, + 0.2862, + 0.2153, + 0.1547, + 0.1044, + 0.0646, + 0.0347, + 0.0145, + 0.0031, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0149, + 0.0345, + 0.0519, + 0.0672, + 0.0803, + 0.0914, + 0.1004, + 0.1076, + 0.1132, + 0.1174, + 0.1204, + 0.1226, + 0.1243, + 0.1185, + 0.1118, + 0.1064, + 0.1021, + 0.0991, + 0.0973, + 0.0966, + 0.0971, + 0.0985, + 0.1009, + 0.1042, + 0.1082, + 0.1127, + 0.1177, + 0.123, + 0.1285, + 0.1339, + 0.1392, + 0.1441, + 0.1486, + 0.1523, + 0.1553, + 0.1573, + 0.1582, + 0.1578, + 0.1561, + 0.3764, + 0.4262, + 0.4781, + 0.5315, + 0.586, + 0.6409, + 0.6956, + 0.7494, + 0.8017, + 0.8516, + 0.8984, + 0.9415, + 0.9802, + 1.0137, + 1.0415, + 1.063, + 1.0779, + 1.0857, + 1.0863, + 1.0795, + 1.0652, + 1.0436, + 1.0149, + 0.9795, + 0.9378, + 0.8903, + 0.835, + 0.7176, + 0.606, + 0.5016, + 0.4057, + 0.3193, + 0.2431, + 0.1774, + 0.1225, + 0.0784, + 0.0447, + 0.0208, + 0.0062, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0181, + 0.0353, + 0.0503, + 0.0633, + 0.0741, + 0.0829, + 0.0899, + 0.0953, + 0.0992, + 0.102, + 0.1039, + 0.1053, + 0.1064, + 0.1003, + 0.095, + 0.091, + 0.0883, + 0.0868, + 0.0866, + 0.0875, + 0.0895, + 0.0924, + 0.0963, + 0.101, + 0.1062, + 0.112, + 0.1181, + 0.1244, + 0.1308, + 0.137, + 0.1429, + 0.1483, + 0.1531, + 0.157, + 0.1601, + 0.162, + 0.1627, + 0.162, + 0.1599, + 0.4089, + 0.4614, + 0.516, + 0.572, + 0.6291, + 0.6866, + 0.7438, + 0.8, + 0.8546, + 0.9067, + 0.9555, + 1.0005, + 1.0408, + 1.0757, + 1.1048, + 1.1273, + 1.1428, + 1.1511, + 1.1518, + 1.1448, + 1.1301, + 1.1078, + 1.0781, + 1.0415, + 0.9983, + 0.9491, + 0.8946, + 0.7805, + 0.6622, + 0.5513, + 0.4491, + 0.3567, + 0.2748, + 0.2038, + 0.1439, + 0.095, + 0.057, + 0.0291, + 0.0108, + 0.0011, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0042, + 0.0211, + 0.0358, + 0.0485, + 0.0592, + 0.0678, + 0.0746, + 0.0797, + 0.0834, + 0.0859, + 0.0875, + 0.0885, + 0.0893, + 0.0892, + 0.0841, + 0.0803, + 0.0778, + 0.0766, + 0.0767, + 0.078, + 0.0805, + 0.084, + 0.0884, + 0.0937, + 0.0996, + 0.1061, + 0.113, + 0.1201, + 0.1273, + 0.1344, + 0.1412, + 0.1476, + 0.1534, + 0.1584, + 0.1624, + 0.1654, + 0.1672, + 0.1676, + 0.1665, + 0.1639, + 0.4414, + 0.4966, + 0.5537, + 0.6124, + 0.6721, + 0.7322, + 0.7919, + 0.8505, + 0.9074, + 0.9617, + 1.0127, + 1.0595, + 1.1016, + 1.1381, + 1.1684, + 1.192, + 1.2084, + 1.2172, + 1.2182, + 1.2113, + 1.1963, + 1.1735, + 1.143, + 1.1053, + 1.0608, + 1.0101, + 0.9539, + 0.8492, + 0.724, + 0.6064, + 0.4977, + 0.399, + 0.311, + 0.2342, + 0.1689, + 0.115, + 0.0722, + 0.04, + 0.0175, + 0.0041, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0091, + 0.0235, + 0.036, + 0.0463, + 0.0548, + 0.0613, + 0.0662, + 0.0696, + 0.0718, + 0.073, + 0.0737, + 0.0741, + 0.0746, + 0.0734, + 0.0698, + 0.0675, + 0.0666, + 0.067, + 0.0687, + 0.0716, + 0.0755, + 0.0805, + 0.0864, + 0.0929, + 0.1001, + 0.1077, + 0.1156, + 0.1236, + 0.1316, + 0.1393, + 0.1466, + 0.1533, + 0.1593, + 0.1644, + 0.1684, + 0.1712, + 0.1727, + 0.1727, + 0.1712, + 0.168, + 0.4738, + 0.5315, + 0.5913, + 0.6526, + 0.7149, + 0.7775, + 0.8397, + 0.9008, + 0.9601, + 1.0166, + 1.0698, + 1.1186, + 1.1625, + 1.2007, + 1.2325, + 1.2573, + 1.2747, + 1.2842, + 1.2857, + 1.2789, + 1.2639, + 1.2407, + 1.2096, + 1.1711, + 1.1255, + 1.0735, + 1.0157, + 0.9243, + 0.792, + 0.6675, + 0.552, + 0.4466, + 0.3522, + 0.2694, + 0.1983, + 0.1389, + 0.0909, + 0.0538, + 0.0268, + 0.0091, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0132, + 0.0254, + 0.0355, + 0.0436, + 0.0499, + 0.0545, + 0.0576, + 0.0595, + 0.0604, + 0.0607, + 0.0606, + 0.0606, + 0.061, + 0.0594, + 0.0574, + 0.0567, + 0.0574, + 0.0594, + 0.0627, + 0.0671, + 0.0726, + 0.079, + 0.0862, + 0.0941, + 0.1024, + 0.1111, + 0.1199, + 0.1286, + 0.1372, + 0.1454, + 0.1531, + 0.16, + 0.1661, + 0.1711, + 0.1749, + 0.1774, + 0.1785, + 0.178, + 0.1759, + 0.1721, + 0.506, + 0.5663, + 0.6287, + 0.6926, + 0.7574, + 0.8226, + 0.8873, + 0.9509, + 1.0126, + 1.0715, + 1.1268, + 1.1778, + 1.2236, + 1.2636, + 1.2969, + 1.3231, + 1.3417, + 1.3521, + 1.3542, + 1.3479, + 1.3329, + 1.3096, + 1.2782, + 1.2389, + 1.1924, + 1.1393, + 1.0802, + 1.0064, + 0.867, + 0.7352, + 0.6126, + 0.5003, + 0.3992, + 0.3098, + 0.2325, + 0.1671, + 0.1135, + 0.0712, + 0.0393, + 0.017, + 0.0032, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.0049, + 0.0166, + 0.0263, + 0.0342, + 0.0402, + 0.0444, + 0.0472, + 0.0487, + 0.0493, + 0.0491, + 0.0487, + 0.0482, + 0.0481, + 0.0487, + 0.0473, + 0.0468, + 0.0478, + 0.0502, + 0.0538, + 0.0587, + 0.0647, + 0.0717, + 0.0795, + 0.088, + 0.0971, + 0.1065, + 0.116, + 0.1257, + 0.1351, + 0.1442, + 0.1527, + 0.1606, + 0.1676, + 0.1736, + 0.1785, + 0.182, + 0.1841, + 0.1846, + 0.1836, + 0.1808, + 0.1762, + 0.5273, + 0.5891, + 0.6532, + 0.7189, + 0.7856, + 0.8526, + 0.9192, + 0.9846, + 1.0481, + 1.1087, + 1.1658, + 1.2184, + 1.2658, + 1.3072, + 1.342, + 1.3694, + 1.3891, + 1.4005, + 1.4035, + 1.3977, + 1.3833, + 1.3603, + 1.329, + 1.2897, + 1.243, + 1.1895, + 1.1299, + 1.065, + 0.9339, + 0.7962, + 0.6675, + 0.5492, + 0.4421, + 0.3468, + 0.2637, + 0.1927, + 0.1337, + 0.0861, + 0.0492, + 0.0221, + 0.0038, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + -0.0057, + 0.0037, + 0.0129, + 0.0203, + 0.0259, + 0.0298, + 0.0322, + 0.0333, + 0.0334, + 0.0329, + 0.0319, + 0.031, + 0.0303, + 0.0304, + 0.0311, + 0.0308, + 0.0321, + 0.0348, + 0.0388, + 0.0441, + 0.0505, + 0.058, + 0.0664, + 0.0755, + 0.0851, + 0.0952, + 0.1055, + 0.1158, + 0.126, + 0.1358, + 0.1452, + 0.1539, + 0.1618, + 0.1687, + 0.1744, + 0.1789, + 0.1819, + 0.1835, + 0.1834, + 0.1816, + 0.178, + 0.1727, + 0.3105, + 0.3525, + 0.3981, + 0.4478, + 0.5006, + 0.5536, + 0.6064, + 0.6582, + 0.7086, + 0.7567, + 0.8021, + 0.8439, + 0.8818, + 0.9149, + 0.9429, + 0.9651, + 0.9813, + 0.991, + 0.994, + 0.9903, + 0.9797, + 0.9624, + 0.9385, + 0.9084, + 0.8723, + 0.831, + 0.7847, + 0.7343, + 0.6507, + 0.5398, + 0.4359, + 0.3399, + 0.2525, + 0.1743, + 0.1056, + 0.0463, + -0.0037, + -0.0447, + -0.0773, + -0.1021, + -0.1199, + -0.1316, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1347, + -0.1317, + -0.125, + -0.1197, + -0.1158, + -0.1131, + -0.1116, + -0.111, + -0.1113, + -0.1121, + -0.1132, + -0.1143, + -0.1152, + -0.1155, + -0.1151, + -0.1144, + -0.1132, + -0.1109, + -0.1075, + -0.1031, + -0.0977, + -0.0916, + -0.0847, + -0.0772, + -0.0693, + -0.061, + -0.0525, + -0.044, + -0.0356, + -0.0273, + -0.0195, + -0.0122, + -0.0055, + 0.0005, + 0.0056, + 0.0097, + 0.0127, + 0.0146, + 0.0153, + 0.0147, + 0.0127, + 0.0093, + 0.0045, + -0.0799, + -0.074, + -0.0618, + -0.0415, + -0.0145, + 0.0127, + 0.0398, + 0.0665, + 0.0923, + 0.1171, + 0.1405, + 0.1622, + 0.1817, + 0.199, + 0.2136, + 0.2253, + 0.234, + 0.2393, + 0.2413, + 0.2399, + 0.2349, + 0.2265, + 0.2148, + 0.1999, + 0.182, + 0.1613, + 0.1381, + 0.1128, + 0.0816, + 0.0238, + -0.0306, + -0.0811, + -0.1273, + -0.1688, + -0.2057, + -0.2378, + -0.2651, + -0.2879, + -0.3064, + -0.3209, + -0.3318, + -0.3395, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3444, + -0.3414, + -0.3389, + -0.3371, + -0.336, + -0.3354, + -0.3353, + -0.3356, + -0.3362, + -0.3369, + -0.3377, + -0.3383, + -0.3387, + -0.3387, + -0.3382, + -0.3375, + -0.3362, + -0.3343, + -0.3319, + -0.3291, + -0.3258, + -0.3221, + -0.3181, + -0.3139, + -0.3094, + -0.3049, + -0.3003, + -0.2958, + -0.2914, + -0.2872, + -0.2832, + -0.2795, + -0.2762, + -0.2733, + -0.271, + -0.2691, + -0.2678, + -0.2672, + -0.2672, + -0.2678, + -0.2691, + -0.2712, + -0.2739, + -0.4145, + -0.44, + -0.4569, + -0.462, + -0.4576, + -0.4528, + -0.4481, + -0.4435, + -0.439, + -0.4347, + -0.4306, + -0.4268, + -0.4233, + -0.4203, + -0.4177, + -0.4156, + -0.414, + -0.413, + -0.4126, + -0.4128, + -0.4135, + -0.4149, + -0.4168, + -0.4193, + -0.4223, + -0.4258, + -0.4297, + -0.434, + -0.4386, + -0.4473, + -0.457, + -0.466, + -0.4742, + -0.4817, + -0.4884, + -0.4943, + -0.4993, + -0.5036, + -0.5071, + -0.51, + -0.5122, + -0.5138, + -0.515, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5155, + -0.5152, + -0.5148, + -0.5146, + -0.5144, + -0.5143, + -0.5143, + -0.5144, + -0.5146, + -0.5147, + -0.5149, + -0.515, + -0.5151, + -0.5152, + -0.5151, + -0.515, + -0.5147, + -0.5144, + -0.5139, + -0.5134, + -0.5128, + -0.5122, + -0.5114, + -0.5107, + -0.5099, + -0.509, + -0.5082, + -0.5074, + -0.5066, + -0.5058, + -0.5051, + -0.5044, + -0.5038, + -0.5032, + -0.5028, + -0.5024, + -0.5022, + -0.502, + -0.5019, + -0.502, + -0.5022, + -0.5025, + -0.5029, + -0.5034, + -0.4829, + -0.5155, + -0.539, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4812, + -0.5146, + -0.5387, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4796, + -0.5138, + -0.5384, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.478, + -0.513, + -0.5382, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4765, + -0.5122, + -0.5379, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.475, + -0.5114, + -0.5377, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4736, + -0.5107, + -0.5374, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4723, + -0.5099, + -0.5372, + -0.5497, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.55, + -0.4119, + -0.4446, + -0.467, + -0.4749, + -0.4709, + -0.4665, + -0.4621, + -0.4577, + -0.4534, + -0.4492, + -0.4451, + -0.4411, + -0.4375, + -0.4341, + -0.431, + -0.4283, + -0.426, + -0.4242, + -0.4228, + -0.4219, + -0.4215, + -0.4217, + -0.4223, + -0.4235, + -0.4251, + -0.4272, + -0.4298, + -0.4327, + -0.436, + -0.4396, + -0.4435, + -0.4476, + -0.4518, + -0.4561, + -0.4625, + -0.4705, + -0.4778, + -0.4845, + -0.4906, + -0.496, + -0.5008, + -0.505, + -0.5087, + -0.5119, + -0.5146, + -0.5168, + -0.5188, + -0.5204, + -0.5217, + -0.5228, + -0.5237, + -0.5244, + -0.525, + -0.5255, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5259, + -0.5258, + -0.5257, + -0.5257, + -0.5257, + -0.5258, + -0.5259, + -0.5261, + -0.5264, + -0.5267, + -0.5271, + -0.5274, + -0.5278, + -0.5282, + -0.5286, + -0.529, + -0.5292, + -0.5294, + -0.5295, + -0.5294, + -0.5291, + -0.5285, + -0.5277, + -0.5268, + -0.5258, + -0.5247, + -0.5234, + -0.5221, + -0.5208, + -0.5194, + -0.518, + -0.5165, + -0.5151, + -0.5138, + -0.5125, + -0.5113, + -0.5103, + -0.5093, + -0.5085, + -0.5078, + -0.5073, + -0.507, + -0.5068, + -0.5067, + -0.5069, + -0.5071, + -0.5075, + -0.5081, + -0.5087, + -0.5095, + -0.5104, + -0.5113, + -0.5123, + -0.5134, + -0.5145, + -0.0102, + -0.0051, + 0.0083, + 0.0328, + 0.0664, + 0.1008, + 0.1354, + 0.17, + 0.2044, + 0.238, + 0.2706, + 0.3019, + 0.3314, + 0.3587, + 0.3836, + 0.4056, + 0.4245, + 0.4399, + 0.4518, + 0.4597, + 0.4638, + 0.4638, + 0.4598, + 0.4518, + 0.4399, + 0.4243, + 0.4053, + 0.3831, + 0.358, + 0.3305, + 0.3008, + 0.2693, + 0.2366, + 0.203, + 0.1688, + 0.1143, + 0.0541, + -0.0012, + -0.0514, + -0.0966, + -0.137, + -0.1727, + -0.204, + -0.2313, + -0.2547, + -0.2748, + -0.2918, + -0.3061, + -0.3181, + -0.3282, + -0.3365, + -0.3434, + -0.3491, + -0.3538, + -0.3577, + -0.3609, + -0.3635, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3652, + -0.3645, + -0.3638, + -0.3633, + -0.3631, + -0.3632, + -0.3637, + -0.3646, + -0.366, + -0.3678, + -0.37, + -0.3727, + -0.3756, + -0.3788, + -0.3822, + -0.3855, + -0.3888, + -0.3917, + -0.3941, + -0.3958, + -0.3965, + -0.3961, + -0.3944, + -0.3905, + -0.3843, + -0.3771, + -0.3688, + -0.3596, + -0.3495, + -0.3387, + -0.3273, + -0.3155, + -0.3035, + -0.2914, + -0.2793, + -0.2676, + -0.2564, + -0.2459, + -0.2362, + -0.2275, + -0.2199, + -0.2135, + -0.2085, + -0.2048, + -0.2026, + -0.2017, + -0.2021, + -0.2039, + -0.207, + -0.2112, + -0.2164, + -0.2226, + -0.2297, + -0.2374, + -0.2458, + -0.2546, + -0.2638, + -0.2733, + 0.53, + 0.5866, + 0.6488, + 0.7175, + 0.7915, + 0.867, + 0.9432, + 1.0196, + 1.0954, + 1.17, + 1.2425, + 1.3121, + 1.3781, + 1.4396, + 1.4957, + 1.5459, + 1.5893, + 1.6253, + 1.6535, + 1.6733, + 1.6846, + 1.687, + 1.6806, + 1.6655, + 1.6418, + 1.61, + 1.5704, + 1.5238, + 1.4706, + 1.4118, + 1.3481, + 1.2804, + 1.2096, + 1.1366, + 1.0623, + 0.9875, + 0.8628, + 0.736, + 0.6201, + 0.515, + 0.4206, + 0.3365, + 0.2622, + 0.1971, + 0.1405, + 0.0917, + 0.0498, + 0.0143, + -0.0158, + -0.0412, + -0.0624, + -0.0801, + -0.0949, + -0.1071, + -0.1173, + -0.1257, + -0.1326, + -0.1382, + -0.1427, + -0.1463, + -0.1489, + -0.1508, + -0.1521, + -0.1527, + -0.1527, + -0.1524, + -0.1517, + -0.1507, + -0.1496, + -0.1486, + -0.1477, + -0.1471, + -0.1469, + -0.1472, + -0.1483, + -0.1501, + -0.1528, + -0.1564, + -0.1609, + -0.1663, + -0.1726, + -0.1795, + -0.187, + -0.1948, + -0.2026, + -0.2102, + -0.2172, + -0.2231, + -0.2276, + -0.23, + -0.23, + -0.227, + -0.2198, + -0.2064, + -0.1904, + -0.172, + -0.1513, + -0.1285, + -0.1038, + -0.0775, + -0.05, + -0.0216, + 0.0072, + 0.036, + 0.0644, + 0.0919, + 0.1181, + 0.1425, + 0.1647, + 0.1844, + 0.2012, + 0.215, + 0.2256, + 0.2328, + 0.2367, + 0.2371, + 0.2343, + 0.2284, + 0.2196, + 0.2081, + 0.1942, + 0.1781, + 0.1603, + 0.1409, + 0.1203, + 0.0987, + 0.0765, + 0.0538, + 0.9072, + 1, + 1.0966, + 1.1967, + 1.2997, + 1.4048, + 1.511, + 1.6177, + 1.7239, + 1.8285, + 1.9306, + 2.0289, + 2.1224, + 2.2099, + 2.2903, + 2.3625, + 2.4255, + 2.4786, + 2.5208, + 2.5516, + 2.5706, + 2.5774, + 2.5719, + 2.5542, + 2.5246, + 2.4835, + 2.4316, + 2.3695, + 2.2983, + 2.2188, + 2.1324, + 2.04, + 1.943, + 1.8426, + 1.7399, + 1.6363, + 1.5328, + 1.3597, + 1.1905, + 1.0362, + 0.8968, + 0.7717, + 0.6605, + 0.5624, + 0.4765, + 0.4017, + 0.3371, + 0.2817, + 0.2343, + 0.1941, + 0.1602, + 0.1316, + 0.1075, + 0.0874, + 0.0707, + 0.0567, + 0.0451, + 0.0356, + 0.0279, + 0.0216, + 0.0166, + 0.0128, + 0.01, + 0.008, + 0.0067, + 0.0059, + 0.0054, + 0.0052, + 0.0051, + 0.0048, + 0.0041, + 0.003, + 0.0012, + -0.0015, + -0.0051, + -0.0099, + -0.0158, + -0.0229, + -0.0311, + -0.0405, + -0.0508, + -0.0618, + -0.0733, + -0.0849, + -0.0962, + -0.1067, + -0.1159, + -0.1231, + -0.1277, + -0.1289, + -0.1261, + -0.1177, + -0.0996, + -0.0777, + -0.0522, + -0.023, + 0.0094, + 0.0449, + 0.083, + 0.1233, + 0.1653, + 0.2083, + 0.2519, + 0.2952, + 0.3376, + 0.3785, + 0.4171, + 0.4528, + 0.485, + 0.5132, + 0.537, + 0.556, + 0.5699, + 0.5787, + 0.5823, + 0.5808, + 0.5744, + 0.5632, + 0.5478, + 0.5284, + 0.5056, + 0.4797, + 0.4512, + 0.4208, + 0.3887, + 0.3555, + 0.3216, + 0.2874, + 0.9532, + 1.0503, + 1.1514, + 1.2558, + 1.3632, + 1.4728, + 1.5839, + 1.6957, + 1.8072, + 1.9174, + 2.0251, + 2.1292, + 2.2285, + 2.3218, + 2.408, + 2.4859, + 2.5546, + 2.6129, + 2.6602, + 2.6957, + 2.7189, + 2.7295, + 2.7273, + 2.7123, + 2.6848, + 2.6453, + 2.5943, + 2.5325, + 2.4609, + 2.3805, + 2.2924, + 2.1979, + 2.0982, + 1.9945, + 1.8883, + 1.7806, + 1.6726, + 1.5656, + 1.3919, + 1.2225, + 1.0684, + 0.9295, + 0.8052, + 0.6947, + 0.5973, + 0.5119, + 0.4376, + 0.3732, + 0.3179, + 0.2705, + 0.23, + 0.1957, + 0.1666, + 0.1421, + 0.1214, + 0.104, + 0.0895, + 0.0773, + 0.0673, + 0.0589, + 0.052, + 0.0464, + 0.0419, + 0.0382, + 0.0352, + 0.0326, + 0.0304, + 0.0284, + 0.0262, + 0.0239, + 0.0211, + 0.0176, + 0.0135, + 0.0084, + 0.0023, + -0.0049, + -0.0132, + -0.0227, + -0.0332, + -0.0447, + -0.0569, + -0.0696, + -0.0825, + -0.0951, + -0.107, + -0.1176, + -0.1262, + -0.1323, + -0.135, + -0.1335, + -0.1262, + -0.1082, + -0.0861, + -0.0598, + -0.0295, + 0.0047, + 0.0425, + 0.0835, + 0.1273, + 0.1734, + 0.2212, + 0.2701, + 0.3192, + 0.3679, + 0.4154, + 0.4609, + 0.5036, + 0.5428, + 0.5778, + 0.6081, + 0.6333, + 0.6528, + 0.6665, + 0.6743, + 0.6762, + 0.6722, + 0.6627, + 0.6479, + 0.6283, + 0.6044, + 0.5766, + 0.5457, + 0.5121, + 0.4765, + 0.4393, + 0.4012, + 0.3626, + 0.3239, + 0.9675, + 1.066, + 1.1685, + 1.2747, + 1.3841, + 1.4959, + 1.6094, + 1.7239, + 1.8383, + 1.9516, + 2.0626, + 2.1703, + 2.2734, + 2.3707, + 2.4609, + 2.543, + 2.6158, + 2.6783, + 2.7298, + 2.7693, + 2.7964, + 2.8108, + 2.8121, + 2.8004, + 2.7758, + 2.7388, + 2.69, + 2.63, + 2.5597, + 2.4802, + 2.3926, + 2.2981, + 2.1979, + 2.0934, + 1.9858, + 1.8764, + 1.7664, + 1.657, + 1.5491, + 1.3851, + 1.2193, + 1.0689, + 0.9335, + 0.8125, + 0.705, + 0.6102, + 0.5271, + 0.4546, + 0.3917, + 0.3375, + 0.2908, + 0.2509, + 0.2167, + 0.1877, + 0.163, + 0.142, + 0.1242, + 0.1092, + 0.0964, + 0.0856, + 0.0765, + 0.0687, + 0.062, + 0.0563, + 0.0512, + 0.0466, + 0.0423, + 0.038, + 0.0336, + 0.0289, + 0.0237, + 0.0179, + 0.0112, + 0.0037, + -0.0048, + -0.0144, + -0.0251, + -0.0367, + -0.0493, + -0.0626, + -0.0763, + -0.0903, + -0.104, + -0.1171, + -0.1289, + -0.139, + -0.1465, + -0.1507, + -0.1509, + -0.1445, + -0.1274, + -0.1058, + -0.0798, + -0.0494, + -0.0147, + 0.0242, + 0.0668, + 0.1128, + 0.1618, + 0.2131, + 0.2661, + 0.32, + 0.374, + 0.4274, + 0.4792, + 0.5286, + 0.5747, + 0.6167, + 0.654, + 0.6859, + 0.7118, + 0.7315, + 0.7446, + 0.7511, + 0.7509, + 0.7443, + 0.7316, + 0.7131, + 0.6894, + 0.661, + 0.6286, + 0.5929, + 0.5544, + 0.514, + 0.4721, + 0.4295, + 0.3866, + 0.344, + 0.9794, + 1.0791, + 1.183, + 1.2908, + 1.4019, + 1.5157, + 1.6315, + 1.7484, + 1.8656, + 1.9819, + 2.0962, + 2.2073, + 2.314, + 2.4151, + 2.5093, + 2.5955, + 2.6724, + 2.7392, + 2.7947, + 2.8384, + 2.8695, + 2.8876, + 2.8925, + 2.8841, + 2.8626, + 2.8284, + 2.7818, + 2.7237, + 2.655, + 2.5765, + 2.4895, + 2.3952, + 2.2948, + 2.1895, + 2.0808, + 1.9699, + 1.858, + 1.7463, + 1.6358, + 1.5277, + 1.3797, + 1.2176, + 1.0709, + 0.939, + 0.8212, + 0.7166, + 0.6242, + 0.5432, + 0.4724, + 0.4108, + 0.3575, + 0.3114, + 0.2718, + 0.2377, + 0.2084, + 0.1834, + 0.1618, + 0.1434, + 0.1275, + 0.1138, + 0.1019, + 0.0915, + 0.0823, + 0.0741, + 0.0665, + 0.0595, + 0.0527, + 0.0459, + 0.039, + 0.0317, + 0.0239, + 0.0155, + 0.0063, + -0.0038, + -0.0149, + -0.0269, + -0.0398, + -0.0536, + -0.068, + -0.083, + -0.0981, + -0.113, + -0.1274, + -0.1406, + -0.1521, + -0.1611, + -0.167, + -0.169, + -0.1629, + -0.147, + -0.1265, + -0.1013, + -0.0712, + -0.0365, + 0.0028, + 0.0465, + 0.0941, + 0.1454, + 0.1997, + 0.2564, + 0.3148, + 0.374, + 0.4332, + 0.4914, + 0.5477, + 0.6011, + 0.6507, + 0.6957, + 0.7353, + 0.7687, + 0.7955, + 0.8152, + 0.8277, + 0.8327, + 0.8304, + 0.821, + 0.8048, + 0.7824, + 0.7543, + 0.7212, + 0.6838, + 0.643, + 0.5994, + 0.5538, + 0.507, + 0.4596, + 0.4123, + 0.3655, + 0.9889, + 1.0895, + 1.1946, + 1.3036, + 1.4163, + 1.5319, + 1.6498, + 1.769, + 1.8887, + 2.0078, + 2.1252, + 2.2396, + 2.3498, + 2.4546, + 2.5526, + 2.6427, + 2.7237, + 2.7946, + 2.8542, + 2.902, + 2.937, + 2.959, + 2.9675, + 2.9626, + 2.9442, + 2.9127, + 2.8687, + 2.8127, + 2.7456, + 2.6684, + 2.5822, + 2.4882, + 2.3877, + 2.2819, + 2.1723, + 2.06, + 1.9464, + 1.8326, + 1.7198, + 1.609, + 1.501, + 1.3748, + 1.2166, + 1.0736, + 0.9451, + 0.8304, + 0.7285, + 0.6385, + 0.5594, + 0.4901, + 0.4296, + 0.377, + 0.3313, + 0.2917, + 0.2575, + 0.2278, + 0.202, + 0.1797, + 0.1602, + 0.1431, + 0.128, + 0.1146, + 0.1024, + 0.0913, + 0.081, + 0.0711, + 0.0615, + 0.052, + 0.0423, + 0.0323, + 0.0217, + 0.0105, + -0.0014, + -0.0141, + -0.0277, + -0.0421, + -0.0572, + -0.073, + -0.0893, + -0.1057, + -0.122, + -0.1377, + -0.1524, + -0.1654, + -0.1761, + -0.1838, + -0.1876, + -0.181, + -0.1668, + -0.1477, + -0.1237, + -0.0947, + -0.0605, + -0.0213, + 0.0227, + 0.0714, + 0.1243, + 0.181, + 0.2408, + 0.3031, + 0.367, + 0.4317, + 0.4961, + 0.5593, + 0.6202, + 0.6778, + 0.7311, + 0.7791, + 0.8209, + 0.856, + 0.8836, + 0.9033, + 0.9149, + 0.9184, + 0.9138, + 0.9014, + 0.8816, + 0.855, + 0.8224, + 0.7843, + 0.7418, + 0.6956, + 0.6466, + 0.5957, + 0.5437, + 0.4914, + 0.4394, + 0.3883, + 0.9956, + 1.097, + 1.2029, + 1.3131, + 1.4271, + 1.5443, + 1.6639, + 1.7852, + 1.9072, + 2.0289, + 2.1491, + 2.2665, + 2.3801, + 2.4883, + 2.59, + 2.684, + 2.7689, + 2.8437, + 2.9074, + 2.9591, + 2.9982, + 3.024, + 3.0362, + 3.0347, + 3.0195, + 2.9909, + 2.9495, + 2.8957, + 2.8304, + 2.7547, + 2.6695, + 2.576, + 2.4757, + 2.3696, + 2.2593, + 2.1459, + 2.0307, + 1.9151, + 1.8001, + 1.6868, + 1.576, + 1.4687, + 1.3654, + 1.2153, + 1.076, + 0.9509, + 0.8392, + 0.7399, + 0.6521, + 0.5746, + 0.5066, + 0.447, + 0.3949, + 0.3493, + 0.3096, + 0.2748, + 0.2444, + 0.2177, + 0.1941, + 0.1732, + 0.1545, + 0.1376, + 0.1222, + 0.1079, + 0.0944, + 0.0814, + 0.0687, + 0.0562, + 0.0435, + 0.0305, + 0.017, + 0.003, + -0.0117, + -0.0271, + -0.0432, + -0.06, + -0.0773, + -0.095, + -0.1129, + -0.1306, + -0.1478, + -0.1641, + -0.1787, + -0.1912, + -0.2008, + -0.2061, + -0.1985, + -0.1862, + -0.169, + -0.1467, + -0.1191, + -0.0862, + -0.0478, + -0.004, + 0.0449, + 0.0986, + 0.1569, + 0.219, + 0.2845, + 0.3525, + 0.4221, + 0.4923, + 0.5621, + 0.6304, + 0.696, + 0.7579, + 0.8148, + 0.8658, + 0.91, + 0.9466, + 0.975, + 0.9947, + 1.0055, + 1.0073, + 1.0003, + 0.9848, + 0.9612, + 0.9303, + 0.8929, + 0.8497, + 0.8018, + 0.75, + 0.6955, + 0.6391, + 0.5818, + 0.5243, + 0.4675, + 0.412, + 0.9995, + 1.1013, + 1.2079, + 1.319, + 1.434, + 1.5525, + 1.6736, + 1.7967, + 1.9207, + 2.0447, + 2.1674, + 2.2877, + 2.4042, + 2.5157, + 2.6209, + 2.7185, + 2.8071, + 2.8858, + 2.9534, + 3.009, + 3.0519, + 3.0815, + 3.0974, + 3.0993, + 3.0874, + 3.0619, + 3.0231, + 2.9716, + 2.9084, + 2.8342, + 2.7502, + 2.6576, + 2.5576, + 2.4515, + 2.3407, + 2.2264, + 2.1101, + 1.9929, + 1.8759, + 1.7603, + 1.6471, + 1.537, + 1.4307, + 1.3289, + 1.2127, + 1.0771, + 0.9553, + 0.8465, + 0.7497, + 0.6638, + 0.5878, + 0.5209, + 0.4619, + 0.41, + 0.3643, + 0.3241, + 0.2886, + 0.2571, + 0.229, + 0.2039, + 0.1812, + 0.1605, + 0.1413, + 0.1234, + 0.1064, + 0.0901, + 0.0741, + 0.0583, + 0.0424, + 0.0262, + 0.0098, + -0.0072, + -0.0247, + -0.0428, + -0.0614, + -0.0805, + -0.0999, + -0.1194, + -0.1387, + -0.1575, + -0.1754, + -0.1919, + -0.2062, + -0.2179, + -0.2203, + -0.2149, + -0.2049, + -0.19, + -0.1698, + -0.1442, + -0.1129, + -0.076, + -0.0333, + 0.0151, + 0.0688, + 0.1278, + 0.1914, + 0.2591, + 0.3303, + 0.404, + 0.4793, + 0.5551, + 0.6304, + 0.7038, + 0.7742, + 0.8403, + 0.9009, + 0.955, + 1.0015, + 1.0396, + 1.0687, + 1.0884, + 1.0982, + 1.0983, + 1.0887, + 1.07, + 1.0425, + 1.0072, + 0.9648, + 0.9164, + 0.863, + 0.8056, + 0.7454, + 0.6834, + 0.6206, + 0.558, + 0.4963, + 0.4362, + 1.0003, + 1.1024, + 1.2093, + 1.3209, + 1.4367, + 1.5561, + 1.6785, + 1.8031, + 1.9288, + 2.0547, + 2.1797, + 2.3025, + 2.4218, + 2.5363, + 2.6446, + 2.7455, + 2.8377, + 2.92, + 2.9914, + 3.0507, + 3.0974, + 3.1307, + 3.1502, + 3.1556, + 3.147, + 3.1245, + 3.0885, + 3.0395, + 2.9784, + 2.906, + 2.8235, + 2.7319, + 2.6325, + 2.5266, + 2.4156, + 2.3008, + 2.1835, + 2.065, + 1.9464, + 1.8288, + 1.7133, + 1.6007, + 1.4917, + 1.387, + 1.287, + 1.1921, + 1.076, + 0.9574, + 0.8513, + 0.7567, + 0.6726, + 0.5979, + 0.5317, + 0.4731, + 0.4211, + 0.375, + 0.334, + 0.2974, + 0.2645, + 0.2347, + 0.2077, + 0.1827, + 0.1596, + 0.1378, + 0.1171, + 0.0971, + 0.0776, + 0.0583, + 0.039, + 0.0196, + 0, + -0.02, + -0.0403, + -0.061, + -0.0821, + -0.1034, + -0.1247, + -0.1458, + -0.1665, + -0.1862, + -0.2045, + -0.2209, + -0.2315, + -0.2329, + -0.23, + -0.2225, + -0.21, + -0.1923, + -0.1691, + -0.1401, + -0.1052, + -0.0643, + -0.0173, + 0.0356, + 0.0943, + 0.1583, + 0.2273, + 0.3006, + 0.3774, + 0.4568, + 0.5378, + 0.6193, + 0.6999, + 0.7784, + 0.8535, + 0.9238, + 0.9881, + 1.0451, + 1.0939, + 1.1336, + 1.1634, + 1.1828, + 1.1917, + 1.1899, + 1.1778, + 1.1557, + 1.1244, + 1.0845, + 1.0372, + 0.9835, + 0.9245, + 0.8614, + 0.7955, + 0.7279, + 0.6596, + 0.5917, + 0.5251, + 0.4606, + 0.998, + 1.1, + 1.207, + 1.3188, + 1.435, + 1.5551, + 1.6783, + 1.804, + 1.9311, + 2.0587, + 2.1855, + 2.3104, + 2.4321, + 2.5493, + 2.6605, + 2.7645, + 2.86, + 2.9457, + 3.0205, + 3.0835, + 3.1337, + 3.1706, + 3.1936, + 3.2025, + 3.1972, + 3.1778, + 3.1446, + 3.0983, + 3.0395, + 2.9691, + 2.8882, + 2.7978, + 2.6993, + 2.594, + 2.4831, + 2.368, + 2.2501, + 2.1306, + 2.0107, + 1.8915, + 1.7741, + 1.6593, + 1.5479, + 1.4405, + 1.3377, + 1.2398, + 1.1471, + 1.0596, + 0.9561, + 0.8525, + 0.7599, + 0.6773, + 0.6036, + 0.538, + 0.4794, + 0.4271, + 0.3802, + 0.3381, + 0.3, + 0.2653, + 0.2336, + 0.2042, + 0.1767, + 0.1508, + 0.1261, + 0.1022, + 0.0789, + 0.056, + 0.0333, + 0.0106, + -0.0122, + -0.0352, + -0.0584, + -0.0817, + -0.1052, + -0.1286, + -0.1517, + -0.1743, + -0.196, + -0.2163, + -0.2322, + -0.2398, + -0.2436, + -0.2432, + -0.2384, + -0.2287, + -0.2138, + -0.1933, + -0.1671, + -0.1348, + -0.0963, + -0.0514, + -0.0002, + 0.0572, + 0.1207, + 0.1898, + 0.264, + 0.3428, + 0.4251, + 0.5102, + 0.5968, + 0.6837, + 0.7696, + 0.8531, + 0.9327, + 1.0071, + 1.075, + 1.1349, + 1.1859, + 1.227, + 1.2573, + 1.2766, + 1.2844, + 1.2808, + 1.2661, + 1.2407, + 1.2053, + 1.161, + 1.1087, + 1.0497, + 0.9852, + 0.9165, + 0.8449, + 0.7717, + 0.698, + 0.625, + 0.5536, + 0.4846, + 0.9924, + 1.0939, + 1.2007, + 1.3124, + 1.4287, + 1.5491, + 1.6728, + 1.7992, + 1.9273, + 2.0561, + 2.1845, + 2.3112, + 2.4349, + 2.5543, + 2.6681, + 2.7748, + 2.8732, + 2.9621, + 3.0401, + 3.1065, + 3.1602, + 3.2005, + 3.2269, + 3.2392, + 3.2371, + 3.2208, + 3.1906, + 3.147, + 3.0907, + 3.0224, + 2.9434, + 2.8545, + 2.7572, + 2.6526, + 2.5422, + 2.4272, + 2.309, + 2.1889, + 2.068, + 1.9476, + 1.8286, + 1.712, + 1.5986, + 1.4889, + 1.3836, + 1.2831, + 1.1876, + 1.0972, + 1.0121, + 0.9321, + 0.8491, + 0.7583, + 0.6769, + 0.604, + 0.5385, + 0.4797, + 0.4267, + 0.3788, + 0.3352, + 0.2953, + 0.2586, + 0.2244, + 0.1924, + 0.1622, + 0.1332, + 0.1053, + 0.0782, + 0.0516, + 0.0253, + -0.0008, + -0.0268, + -0.0528, + -0.0788, + -0.1047, + -0.1304, + -0.1558, + -0.1805, + -0.2044, + -0.2226, + -0.2359, + -0.2458, + -0.2521, + -0.2544, + -0.2523, + -0.2455, + -0.2336, + -0.2163, + -0.1932, + -0.164, + -0.1284, + -0.0864, + -0.0377, + 0.0176, + 0.0795, + 0.1476, + 0.2216, + 0.3009, + 0.3849, + 0.4726, + 0.5631, + 0.6551, + 0.7472, + 0.8382, + 0.9265, + 1.0105, + 1.0889, + 1.1601, + 1.2228, + 1.2758, + 1.3181, + 1.349, + 1.368, + 1.3747, + 1.3692, + 1.3519, + 1.3232, + 1.284, + 1.2352, + 1.1781, + 1.1138, + 1.0439, + 0.9697, + 0.8926, + 0.8139, + 0.735, + 0.657, + 0.5809, + 0.5077, + 0.9834, + 1.0842, + 1.1904, + 1.3017, + 1.4177, + 1.5379, + 1.6618, + 1.7885, + 1.9172, + 2.0468, + 2.1763, + 2.3043, + 2.4296, + 2.551, + 2.6668, + 2.776, + 2.877, + 2.9686, + 3.0497, + 3.1191, + 3.176, + 3.2196, + 3.2493, + 3.2649, + 3.266, + 3.2529, + 3.2257, + 3.1849, + 3.1311, + 3.0652, + 2.9882, + 2.9012, + 2.8053, + 2.7019, + 2.5922, + 2.4777, + 2.3596, + 2.2392, + 2.1178, + 1.9965, + 1.8764, + 1.7583, + 1.6432, + 1.5316, + 1.4242, + 1.3214, + 1.2234, + 1.1305, + 1.0427, + 0.9599, + 0.8822, + 0.8092, + 0.7408, + 0.6702, + 0.5977, + 0.5322, + 0.4729, + 0.4189, + 0.3696, + 0.3243, + 0.2824, + 0.2433, + 0.2065, + 0.1717, + 0.1384, + 0.1064, + 0.0752, + 0.0448, + 0.0149, + -0.0146, + -0.0438, + -0.0728, + -0.1015, + -0.1298, + -0.1577, + -0.1824, + -0.2034, + -0.2217, + -0.2372, + -0.2495, + -0.2583, + -0.2633, + -0.2641, + -0.2602, + -0.2515, + -0.2374, + -0.2177, + -0.1919, + -0.1599, + -0.1212, + -0.0757, + -0.0234, + 0.0358, + 0.1019, + 0.1744, + 0.2531, + 0.3372, + 0.4262, + 0.519, + 0.6146, + 0.7116, + 0.8088, + 0.9045, + 0.9973, + 1.0854, + 1.1674, + 1.2418, + 1.307, + 1.3619, + 1.4054, + 1.4367, + 1.4553, + 1.4609, + 1.4535, + 1.4336, + 1.4017, + 1.3587, + 1.3056, + 1.2438, + 1.1746, + 1.0995, + 1.0199, + 0.9375, + 0.8537, + 0.7698, + 0.687, + 0.6065, + 0.5292, + 0.9709, + 1.0707, + 1.176, + 1.2864, + 1.4017, + 1.5215, + 1.6451, + 1.7717, + 1.9005, + 2.0305, + 2.1606, + 2.2895, + 2.4161, + 2.5388, + 2.6564, + 2.7675, + 2.8708, + 2.9648, + 3.0485, + 3.1208, + 3.1807, + 3.2273, + 3.2602, + 3.2789, + 3.2833, + 3.2732, + 3.249, + 3.2111, + 3.1601, + 3.0967, + 3.022, + 2.937, + 2.8429, + 2.7409, + 2.6324, + 2.5187, + 2.4011, + 2.2809, + 2.1594, + 2.0376, + 1.9167, + 1.7977, + 1.6812, + 1.5682, + 1.459, + 1.3543, + 1.2542, + 1.1591, + 1.0689, + 0.9838, + 0.9035, + 0.828, + 0.757, + 0.6903, + 0.6275, + 0.5683, + 0.5124, + 0.458, + 0.4028, + 0.3519, + 0.3046, + 0.2603, + 0.2187, + 0.1792, + 0.1415, + 0.1052, + 0.07, + 0.0357, + 0.0022, + -0.0307, + -0.0631, + -0.0939, + -0.1229, + -0.15, + -0.1751, + -0.198, + -0.2184, + -0.2361, + -0.2507, + -0.262, + -0.2697, + -0.2733, + -0.2725, + -0.267, + -0.2563, + -0.2401, + -0.2181, + -0.1898, + -0.155, + -0.1134, + -0.0647, + -0.0089, + 0.054, + 0.124, + 0.2006, + 0.2836, + 0.3723, + 0.4659, + 0.5634, + 0.6636, + 0.7654, + 0.8671, + 0.9672, + 1.064, + 1.156, + 1.2413, + 1.3185, + 1.386, + 1.4425, + 1.487, + 1.5185, + 1.5367, + 1.5411, + 1.532, + 1.5095, + 1.4745, + 1.4279, + 1.3708, + 1.3045, + 1.2306, + 1.1505, + 1.0661, + 0.9787, + 0.89, + 0.8014, + 0.7143, + 0.6297, + 0.5487, + 0.955, + 1.0534, + 1.1574, + 1.2666, + 1.3809, + 1.4997, + 1.6226, + 1.7487, + 1.8772, + 2.0071, + 2.1373, + 2.2667, + 2.394, + 2.5177, + 2.6366, + 2.7493, + 2.8543, + 2.9504, + 3.0364, + 3.1112, + 3.1737, + 3.2233, + 3.2591, + 3.2809, + 3.2883, + 3.2813, + 3.2602, + 3.2252, + 3.1771, + 3.1164, + 3.0442, + 2.9615, + 2.8694, + 2.7692, + 2.6622, + 2.5497, + 2.433, + 2.3134, + 2.1922, + 2.0704, + 1.9493, + 1.8296, + 1.7124, + 1.5982, + 1.4878, + 1.3815, + 1.2798, + 1.1828, + 1.0906, + 1.0034, + 0.921, + 0.8432, + 0.77, + 0.7009, + 0.6358, + 0.5744, + 0.5163, + 0.4612, + 0.4088, + 0.3589, + 0.3111, + 0.2653, + 0.2213, + 0.1788, + 0.1379, + 0.0983, + 0.0601, + 0.0233, + -0.0121, + -0.0461, + -0.0786, + -0.1094, + -0.1384, + -0.1655, + -0.1903, + -0.2128, + -0.2326, + -0.2495, + -0.2632, + -0.2734, + -0.2798, + -0.282, + -0.2797, + -0.2725, + -0.26, + -0.2418, + -0.2176, + -0.1869, + -0.1495, + -0.1051, + -0.0535, + 0.0055, + 0.0718, + 0.1453, + 0.2257, + 0.3126, + 0.4053, + 0.503, + 0.6048, + 0.7093, + 0.8152, + 0.9209, + 1.0249, + 1.1254, + 1.2207, + 1.3089, + 1.3886, + 1.458, + 1.5159, + 1.5611, + 1.5928, + 1.6104, + 1.6137, + 1.6028, + 1.578, + 1.5401, + 1.49, + 1.4291, + 1.3587, + 1.2804, + 1.1959, + 1.1069, + 1.015, + 0.9219, + 0.8291, + 0.738, + 0.6498, + 0.5655, + 0.9356, + 1.0323, + 1.1346, + 1.2423, + 1.3551, + 1.4726, + 1.5943, + 1.7194, + 1.8471, + 1.9765, + 2.1064, + 2.2358, + 2.3633, + 2.4875, + 2.6072, + 2.7209, + 2.8274, + 2.9251, + 3.0131, + 3.09, + 3.155, + 3.2071, + 3.2457, + 3.2703, + 3.2807, + 3.2768, + 3.2587, + 3.2268, + 3.1816, + 3.1238, + 3.0543, + 2.9741, + 2.8844, + 2.7864, + 2.6812, + 2.5703, + 2.455, + 2.3364, + 2.2159, + 2.0946, + 1.9736, + 1.8539, + 1.7362, + 1.6214, + 1.5101, + 1.4028, + 1.2998, + 1.2013, + 1.1076, + 1.0186, + 0.9343, + 0.8547, + 0.7794, + 0.7084, + 0.6413, + 0.5779, + 0.5178, + 0.4608, + 0.4065, + 0.3548, + 0.3054, + 0.258, + 0.2126, + 0.1688, + 0.1267, + 0.0861, + 0.047, + 0.0095, + -0.0265, + -0.0609, + -0.0936, + -0.1245, + -0.1534, + -0.1802, + -0.2046, + -0.2265, + -0.2457, + -0.2617, + -0.2745, + -0.2836, + -0.2888, + -0.2896, + -0.2858, + -0.277, + -0.2627, + -0.2426, + -0.2163, + -0.1835, + -0.1437, + -0.0968, + -0.0425, + 0.0194, + 0.0887, + 0.1653, + 0.2491, + 0.3394, + 0.4356, + 0.537, + 0.6424, + 0.7505, + 0.86, + 0.9692, + 1.0765, + 1.1801, + 1.2782, + 1.3689, + 1.4505, + 1.5215, + 1.5804, + 1.6262, + 1.6578, + 1.6748, + 1.6769, + 1.6643, + 1.6373, + 1.5967, + 1.5435, + 1.4792, + 1.4051, + 1.3229, + 1.2344, + 1.1414, + 1.0455, + 0.9486, + 0.8521, + 0.7575, + 0.6661, + 0.579, + 0.9128, + 1.0075, + 1.1077, + 1.2135, + 1.3244, + 1.4402, + 1.5602, + 1.6839, + 1.8104, + 1.9387, + 2.0679, + 2.1967, + 2.3239, + 2.4482, + 2.5682, + 2.6826, + 2.7899, + 2.889, + 2.9784, + 3.0572, + 3.1242, + 3.1786, + 3.2198, + 3.2471, + 3.2604, + 3.2594, + 3.2444, + 3.2155, + 3.1734, + 3.1186, + 3.052, + 2.9747, + 2.8876, + 2.792, + 2.6891, + 2.5802, + 2.4666, + 2.3495, + 2.2302, + 2.1099, + 1.9895, + 1.8701, + 1.7525, + 1.6376, + 1.5259, + 1.4179, + 1.314, + 1.2145, + 1.1196, + 1.0292, + 0.9435, + 0.8623, + 0.7854, + 0.7127, + 0.6439, + 0.5787, + 0.5169, + 0.4583, + 0.4024, + 0.3492, + 0.2983, + 0.2496, + 0.2028, + 0.158, + 0.1149, + 0.0734, + 0.0337, + -0.0044, + -0.0408, + -0.0754, + -0.1082, + -0.139, + -0.1677, + -0.1942, + -0.2181, + -0.2394, + -0.2577, + -0.2729, + -0.2846, + -0.2926, + -0.2965, + -0.296, + -0.2908, + -0.2803, + -0.2644, + -0.2425, + -0.2144, + -0.1795, + -0.1376, + -0.0885, + -0.0318, + 0.0325, + 0.1043, + 0.1837, + 0.2702, + 0.3634, + 0.4626, + 0.567, + 0.6753, + 0.7865, + 0.8989, + 1.0109, + 1.1209, + 1.2269, + 1.3271, + 1.4197, + 1.5029, + 1.575, + 1.6346, + 1.6806, + 1.712, + 1.7283, + 1.7293, + 1.715, + 1.6859, + 1.6429, + 1.5871, + 1.5197, + 1.4424, + 1.3569, + 1.265, + 1.1685, + 1.0693, + 0.9691, + 0.8695, + 0.7721, + 0.6781, + 0.5887, + 0.8867, + 0.979, + 1.0769, + 1.1803, + 1.289, + 1.4026, + 1.5206, + 1.6424, + 1.7672, + 1.894, + 2.0219, + 2.1497, + 2.2761, + 2.3999, + 2.5198, + 2.6343, + 2.7421, + 2.8419, + 2.9325, + 3.0127, + 3.0815, + 3.1379, + 3.1814, + 3.2113, + 3.2272, + 3.2292, + 3.2171, + 3.1914, + 3.1524, + 3.1008, + 3.0373, + 2.963, + 2.8789, + 2.786, + 2.6857, + 2.5792, + 2.4678, + 2.3526, + 2.235, + 2.116, + 1.9967, + 1.8782, + 1.7612, + 1.6466, + 1.5349, + 1.4267, + 1.3224, + 1.2223, + 1.1266, + 1.0353, + 0.9484, + 0.866, + 0.7878, + 0.7137, + 0.6435, + 0.5769, + 0.5137, + 0.4536, + 0.3964, + 0.3419, + 0.2898, + 0.2399, + 0.1922, + 0.1464, + 0.1025, + 0.0604, + 0.0202, + -0.0183, + -0.0549, + -0.0897, + -0.1224, + -0.153, + -0.1813, + -0.2073, + -0.2306, + -0.2511, + -0.2686, + -0.2829, + -0.2935, + -0.3004, + -0.303, + -0.3012, + -0.2945, + -0.2827, + -0.2652, + -0.2417, + -0.2118, + -0.1752, + -0.1315, + -0.0804, + -0.0218, + 0.0445, + 0.1185, + 0.2, + 0.2888, + 0.3842, + 0.4857, + 0.5924, + 0.703, + 0.8164, + 0.931, + 1.0451, + 1.157, + 1.2647, + 1.3665, + 1.4603, + 1.5444, + 1.6172, + 1.6772, + 1.7231, + 1.7541, + 1.7696, + 1.7694, + 1.7536, + 1.7228, + 1.6777, + 1.6195, + 1.5496, + 1.4696, + 1.3813, + 1.2866, + 1.1874, + 1.0855, + 0.9827, + 0.8808, + 0.7812, + 0.6853, + 0.5943, + 0.8574, + 0.947, + 1.0422, + 1.1429, + 1.249, + 1.36, + 1.4756, + 1.5951, + 1.7177, + 1.8425, + 1.9686, + 2.0949, + 2.22, + 2.3429, + 2.4621, + 2.5763, + 2.6841, + 2.7843, + 2.8756, + 2.9569, + 3.0271, + 3.0853, + 3.1308, + 3.163, + 3.1815, + 3.1862, + 3.1772, + 3.1545, + 3.1188, + 3.0704, + 3.0103, + 2.9392, + 2.8582, + 2.7685, + 2.6711, + 2.5674, + 2.4585, + 2.3457, + 2.2302, + 2.113, + 1.9954, + 1.8781, + 1.7622, + 1.6483, + 1.5371, + 1.4292, + 1.3249, + 1.2246, + 1.1285, + 1.0366, + 0.9491, + 0.8658, + 0.7867, + 0.7115, + 0.6402, + 0.5725, + 0.5081, + 0.4469, + 0.3886, + 0.333, + 0.2799, + 0.2292, + 0.1806, + 0.1341, + 0.0896, + 0.0471, + 0.0065, + -0.0322, + -0.0689, + -0.1035, + -0.136, + -0.1663, + -0.1941, + -0.2195, + -0.2421, + -0.2618, + -0.2784, + -0.2916, + -0.3012, + -0.3069, + -0.3083, + -0.3052, + -0.2972, + -0.284, + -0.2651, + -0.2401, + -0.2088, + -0.1707, + -0.1255, + -0.0729, + -0.0127, + 0.0552, + 0.1308, + 0.2139, + 0.3043, + 0.4014, + 0.5044, + 0.6126, + 0.7248, + 0.8396, + 0.9556, + 1.0709, + 1.184, + 1.2927, + 1.3952, + 1.4897, + 1.5742, + 1.6471, + 1.707, + 1.7525, + 1.7829, + 1.7976, + 1.7962, + 1.7791, + 1.7466, + 1.6998, + 1.6397, + 1.5678, + 1.4858, + 1.3954, + 1.2986, + 1.1973, + 1.0935, + 0.989, + 0.8854, + 0.7844, + 0.6873, + 0.5953, + 0.8251, + 0.9117, + 1.0038, + 1.1016, + 1.2046, + 1.3128, + 1.4255, + 1.5422, + 1.6621, + 1.7846, + 1.9084, + 2.0327, + 2.1561, + 2.2775, + 2.3956, + 2.509, + 2.6164, + 2.7165, + 2.8081, + 2.8901, + 2.9613, + 3.021, + 3.0682, + 3.1026, + 3.1235, + 3.1309, + 3.1248, + 3.1053, + 3.0727, + 3.0278, + 2.9711, + 2.9035, + 2.8259, + 2.7396, + 2.6455, + 2.5449, + 2.439, + 2.3289, + 2.2159, + 2.1011, + 1.9854, + 1.8699, + 1.7555, + 1.6428, + 1.5326, + 1.4254, + 1.3216, + 1.2215, + 1.1254, + 1.0334, + 0.9455, + 0.8617, + 0.782, + 0.7061, + 0.634, + 0.5655, + 0.5002, + 0.4382, + 0.379, + 0.3226, + 0.2688, + 0.2173, + 0.1682, + 0.1212, + 0.0763, + 0.0335, + -0.0072, + -0.0459, + -0.0825, + -0.1169, + -0.149, + -0.1788, + -0.2061, + -0.2307, + -0.2526, + -0.2714, + -0.287, + -0.2992, + -0.3076, + -0.3121, + -0.3124, + -0.308, + -0.2988, + -0.2843, + -0.2641, + -0.2379, + -0.2053, + -0.166, + -0.1196, + -0.0658, + -0.0045, + 0.0645, + 0.1411, + 0.2252, + 0.3165, + 0.4145, + 0.5184, + 0.6274, + 0.7402, + 0.8557, + 0.9721, + 1.0879, + 1.2013, + 1.3102, + 1.4128, + 1.5071, + 1.5914, + 1.664, + 1.7233, + 1.7682, + 1.7977, + 1.8114, + 1.8089, + 1.7906, + 1.7568, + 1.7086, + 1.6471, + 1.5737, + 1.4903, + 1.3985, + 1.3004, + 1.1979, + 1.0929, + 0.9874, + 0.8831, + 0.7814, + 0.6839, + 0.5915, + 0.79, + 0.8733, + 0.9622, + 1.0565, + 1.1563, + 1.2611, + 1.3706, + 1.4841, + 1.6011, + 1.7206, + 1.8418, + 1.9636, + 2.0848, + 2.2043, + 2.3208, + 2.4329, + 2.5395, + 2.6391, + 2.7306, + 2.8129, + 2.8849, + 2.9456, + 2.9944, + 3.0306, + 3.0538, + 3.0638, + 3.0605, + 3.044, + 3.0148, + 2.9733, + 2.9202, + 2.8562, + 2.7823, + 2.6996, + 2.6091, + 2.512, + 2.4094, + 2.3025, + 2.1924, + 2.0803, + 1.9671, + 1.8538, + 1.7413, + 1.6303, + 1.5215, + 1.4154, + 1.3125, + 1.213, + 1.1173, + 1.0255, + 0.9377, + 0.8538, + 0.7737, + 0.6975, + 0.625, + 0.5559, + 0.4901, + 0.4274, + 0.3677, + 0.3108, + 0.2564, + 0.2045, + 0.155, + 0.1077, + 0.0627, + 0.0198, + -0.0209, + -0.0594, + -0.0957, + -0.1298, + -0.1614, + -0.1906, + -0.2172, + -0.241, + -0.2619, + -0.2798, + -0.2944, + -0.3054, + -0.3128, + -0.3161, + -0.3152, + -0.3097, + -0.2993, + -0.2836, + -0.2624, + -0.2351, + -0.2015, + -0.1613, + -0.114, + -0.0595, + 0.0025, + 0.0721, + 0.1492, + 0.2337, + 0.3253, + 0.4234, + 0.5274, + 0.6363, + 0.7491, + 0.8642, + 0.9803, + 1.0957, + 1.2085, + 1.3168, + 1.4187, + 1.5122, + 1.5957, + 1.6673, + 1.7256, + 1.7695, + 1.798, + 1.8106, + 1.8071, + 1.7877, + 1.7529, + 1.7037, + 1.6412, + 1.567, + 1.4828, + 1.3904, + 1.2917, + 1.1888, + 1.0835, + 0.9778, + 0.8735, + 0.772, + 0.6747, + 0.5829, + 0.7524, + 0.8321, + 0.9174, + 1.0082, + 1.1043, + 1.2055, + 1.3113, + 1.4214, + 1.5349, + 1.6511, + 1.7692, + 1.8881, + 2.0067, + 2.1239, + 2.2383, + 2.3488, + 2.454, + 2.5527, + 2.6438, + 2.726, + 2.7984, + 2.86, + 2.91, + 2.9478, + 2.9731, + 2.9855, + 2.9849, + 2.9716, + 2.9456, + 2.9076, + 2.8582, + 2.798, + 2.728, + 2.6492, + 2.5625, + 2.4691, + 2.3702, + 2.2668, + 2.16, + 2.051, + 1.9407, + 1.83, + 1.7199, + 1.611, + 1.504, + 1.3994, + 1.2978, + 1.1994, + 1.1045, + 1.0133, + 0.9258, + 0.8421, + 0.7622, + 0.6859, + 0.6132, + 0.5438, + 0.4778, + 0.4148, + 0.3548, + 0.2975, + 0.2429, + 0.1908, + 0.1411, + 0.0938, + 0.0488, + 0.006, + -0.0345, + -0.0727, + -0.1086, + -0.1421, + -0.1731, + -0.2015, + -0.2273, + -0.2502, + -0.2702, + -0.287, + -0.3005, + -0.3104, + -0.3166, + -0.3188, + -0.3168, + -0.3101, + -0.2987, + -0.282, + -0.2598, + -0.2317, + -0.1974, + -0.1565, + -0.1087, + -0.0538, + 0.0084, + 0.078, + 0.1551, + 0.2393, + 0.3305, + 0.4281, + 0.5314, + 0.6394, + 0.7511, + 0.8652, + 0.9801, + 1.0941, + 1.2055, + 1.3124, + 1.4128, + 1.5048, + 1.5868, + 1.6569, + 1.7138, + 1.7564, + 1.7836, + 1.7951, + 1.7905, + 1.7702, + 1.7347, + 1.6849, + 1.622, + 1.5476, + 1.4632, + 1.3709, + 1.2724, + 1.1699, + 1.0652, + 0.9602, + 0.8567, + 0.7561, + 0.6599, + 0.5693, + 0.7125, + 0.7885, + 0.87, + 0.9568, + 1.049, + 1.1463, + 1.2483, + 1.3544, + 1.4642, + 1.5768, + 1.6914, + 1.807, + 1.9225, + 2.0369, + 2.1489, + 2.2573, + 2.3608, + 2.4583, + 2.5485, + 2.6303, + 2.7027, + 2.7648, + 2.8158, + 2.8551, + 2.8822, + 2.8969, + 2.899, + 2.8886, + 2.866, + 2.8316, + 2.7858, + 2.7296, + 2.6636, + 2.5888, + 2.5062, + 2.4169, + 2.3219, + 2.2224, + 2.1193, + 2.0137, + 1.9066, + 1.799, + 1.6916, + 1.5851, + 1.4803, + 1.3777, + 1.2777, + 1.1808, + 1.087, + 0.9967, + 0.91, + 0.8269, + 0.7473, + 0.6713, + 0.5987, + 0.5295, + 0.4634, + 0.4004, + 0.3403, + 0.283, + 0.2283, + 0.1762, + 0.1266, + 0.0794, + 0.0346, + -0.0078, + -0.0479, + -0.0857, + -0.121, + -0.1538, + -0.184, + -0.2116, + -0.2364, + -0.2583, + -0.2772, + -0.2929, + -0.3053, + -0.3141, + -0.3191, + -0.3202, + -0.3171, + -0.3094, + -0.297, + -0.2794, + -0.2565, + -0.2278, + -0.1929, + -0.1517, + -0.1038, + -0.0489, + 0.0131, + 0.0823, + 0.1587, + 0.2421, + 0.3322, + 0.4285, + 0.5303, + 0.6367, + 0.7466, + 0.8587, + 0.9715, + 1.0833, + 1.1925, + 1.297, + 1.3952, + 1.4851, + 1.5649, + 1.633, + 1.6881, + 1.729, + 1.7548, + 1.765, + 1.7595, + 1.7385, + 1.7025, + 1.6525, + 1.5897, + 1.5156, + 1.4318, + 1.3403, + 1.2428, + 1.1415, + 1.0381, + 0.9347, + 0.8328, + 0.734, + 0.6397, + 0.5509, + 0.6706, + 0.7427, + 0.8202, + 0.903, + 0.991, + 1.0841, + 1.1819, + 1.2839, + 1.3896, + 1.4982, + 1.6089, + 1.7209, + 1.8331, + 1.9443, + 2.0535, + 2.1594, + 2.2609, + 2.3567, + 2.4457, + 2.5267, + 2.5989, + 2.6612, + 2.713, + 2.7535, + 2.7823, + 2.7991, + 2.8037, + 2.7962, + 2.7769, + 2.746, + 2.7041, + 2.6518, + 2.59, + 2.5194, + 2.4411, + 2.356, + 2.2653, + 2.1698, + 2.0707, + 1.9689, + 1.8654, + 1.7611, + 1.6568, + 1.5532, + 1.4509, + 1.3506, + 1.2526, + 1.1574, + 1.0652, + 0.9762, + 0.8905, + 0.8083, + 0.7294, + 0.6539, + 0.5818, + 0.5129, + 0.4471, + 0.3843, + 0.3244, + 0.2672, + 0.2128, + 0.1609, + 0.1116, + 0.0648, + 0.0204, + -0.0216, + -0.0611, + -0.0982, + -0.1328, + -0.1647, + -0.1941, + -0.2207, + -0.2445, + -0.2653, + -0.2831, + -0.2976, + -0.3088, + -0.3164, + -0.3203, + -0.3203, + -0.3161, + -0.3075, + -0.2942, + -0.2759, + -0.2524, + -0.2232, + -0.1882, + -0.1469, + -0.0991, + -0.0447, + 0.0166, + 0.0849, + 0.1601, + 0.242, + 0.3304, + 0.4247, + 0.5243, + 0.6283, + 0.7356, + 0.8449, + 0.9547, + 1.0636, + 1.1697, + 1.2713, + 1.3664, + 1.4534, + 1.5306, + 1.5962, + 1.6491, + 1.688, + 1.7121, + 1.7211, + 1.7146, + 1.6931, + 1.6569, + 1.6071, + 1.5449, + 1.4716, + 1.3891, + 1.299, + 1.2033, + 1.1039, + 1.0028, + 0.9016, + 0.8022, + 0.7059, + 0.6141, + 0.528, + 0.6272, + 0.6952, + 0.7685, + 0.847, + 0.9307, + 1.0194, + 1.1127, + 1.2104, + 1.3117, + 1.4161, + 1.5227, + 1.6307, + 1.7391, + 1.8469, + 1.953, + 2.0561, + 2.1551, + 2.2489, + 2.3364, + 2.4164, + 2.488, + 2.5503, + 2.6025, + 2.644, + 2.6743, + 2.693, + 2.7001, + 2.6954, + 2.6792, + 2.6519, + 2.6138, + 2.5656, + 2.508, + 2.4418, + 2.3679, + 2.2873, + 2.2009, + 2.1098, + 2.0149, + 1.9172, + 1.8175, + 1.7169, + 1.616, + 1.5155, + 1.4162, + 1.3184, + 1.2228, + 1.1297, + 1.0393, + 0.9519, + 0.8676, + 0.7865, + 0.7086, + 0.634, + 0.5625, + 0.4942, + 0.4289, + 0.3666, + 0.3071, + 0.2504, + 0.1964, + 0.145, + 0.0962, + 0.0499, + 0.006, + -0.0353, + -0.074, + -0.1103, + -0.144, + -0.175, + -0.2033, + -0.2288, + -0.2514, + -0.2711, + -0.2876, + -0.301, + -0.3109, + -0.3174, + -0.3202, + -0.3191, + -0.3139, + -0.3044, + -0.2903, + -0.2714, + -0.2474, + -0.2181, + -0.183, + -0.142, + -0.0948, + -0.0411, + 0.0191, + 0.086, + 0.1595, + 0.2394, + 0.3255, + 0.4172, + 0.5138, + 0.6146, + 0.7185, + 0.8242, + 0.9304, + 1.0355, + 1.1378, + 1.2356, + 1.3272, + 1.4107, + 1.4845, + 1.5472, + 1.5975, + 1.6341, + 1.6565, + 1.6641, + 1.6568, + 1.6348, + 1.5988, + 1.5495, + 1.4883, + 1.4165, + 1.3358, + 1.2478, + 1.1546, + 1.058, + 0.9597, + 0.8616, + 0.7653, + 0.6723, + 0.5837, + 0.5008, + 0.5825, + 0.6464, + 0.7153, + 0.7894, + 0.8686, + 0.9528, + 1.0415, + 1.1346, + 1.2313, + 1.3312, + 1.4335, + 1.5373, + 1.6417, + 1.7457, + 1.8483, + 1.9483, + 2.0447, + 2.1362, + 2.2218, + 2.3005, + 2.3713, + 2.4333, + 2.4857, + 2.528, + 2.5595, + 2.58, + 2.5893, + 2.5874, + 2.5744, + 2.5505, + 2.5162, + 2.472, + 2.4187, + 2.357, + 2.2876, + 2.2116, + 2.1298, + 2.0432, + 1.9527, + 1.8592, + 1.7637, + 1.667, + 1.5697, + 1.4727, + 1.3765, + 1.2817, + 1.1887, + 1.0979, + 1.0096, + 0.9241, + 0.8414, + 0.7618, + 0.6852, + 0.6116, + 0.5411, + 0.4737, + 0.4092, + 0.3475, + 0.2887, + 0.2327, + 0.1793, + 0.1285, + 0.0804, + 0.0348, + -0.0082, + -0.0487, + -0.0866, + -0.1218, + -0.1545, + -0.1844, + -0.2116, + -0.2359, + -0.2573, + -0.2757, + -0.291, + -0.303, + -0.3118, + -0.317, + -0.3186, + -0.3165, + -0.3103, + -0.3, + -0.2853, + -0.266, + -0.2417, + -0.2123, + -0.1775, + -0.137, + -0.0905, + -0.038, + 0.0208, + 0.0858, + 0.1571, + 0.2345, + 0.3176, + 0.4061, + 0.4992, + 0.5961, + 0.6959, + 0.7974, + 0.8992, + 0.9998, + 1.0976, + 1.191, + 1.2783, + 1.3578, + 1.4279, + 1.4872, + 1.5345, + 1.5687, + 1.5891, + 1.5952, + 1.5871, + 1.5649, + 1.5292, + 1.4809, + 1.4211, + 1.3512, + 1.2729, + 1.1877, + 1.0976, + 1.0043, + 0.9097, + 0.8153, + 0.7228, + 0.6337, + 0.5491, + 0.47, + 0.537, + 0.5966, + 0.6612, + 0.7308, + 0.8054, + 0.8848, + 0.9689, + 1.0572, + 1.1492, + 1.2444, + 1.3421, + 1.4415, + 1.5417, + 1.6418, + 1.7407, + 1.8373, + 1.9307, + 2.0197, + 2.1032, + 2.1803, + 2.25, + 2.3115, + 2.3639, + 2.4067, + 2.4393, + 2.4614, + 2.4728, + 2.4734, + 2.4634, + 2.4429, + 2.4124, + 2.3723, + 2.3232, + 2.266, + 2.2012, + 2.1299, + 2.0527, + 1.9708, + 1.8849, + 1.7959, + 1.7046, + 1.612, + 1.5186, + 1.4252, + 1.3324, + 1.2407, + 1.1506, + 1.0624, + 0.9765, + 0.8931, + 0.8123, + 0.7344, + 0.6593, + 0.5871, + 0.5178, + 0.4514, + 0.3879, + 0.3272, + 0.2693, + 0.2141, + 0.1615, + 0.1117, + 0.0644, + 0.0197, + -0.0223, + -0.0618, + -0.0986, + -0.1328, + -0.1643, + -0.193, + -0.2189, + -0.2419, + -0.262, + -0.279, + -0.293, + -0.3038, + -0.3112, + -0.3153, + -0.3158, + -0.3126, + -0.3055, + -0.2945, + -0.2792, + -0.2595, + -0.2351, + -0.2059, + -0.1715, + -0.1317, + -0.0864, + -0.0353, + 0.0216, + 0.0844, + 0.1531, + 0.2275, + 0.3072, + 0.3919, + 0.4809, + 0.5734, + 0.6685, + 0.7651, + 0.8619, + 0.9574, + 1.0501, + 1.1385, + 1.221, + 1.2959, + 1.3618, + 1.4174, + 1.4614, + 1.4929, + 1.5112, + 1.516, + 1.5071, + 1.4848, + 1.4497, + 1.4026, + 1.3446, + 1.2771, + 1.2016, + 1.1198, + 1.0334, + 0.9441, + 0.8536, + 0.7636, + 0.6756, + 0.5909, + 0.5107, + 0.4359, + 0.491, + 0.5463, + 0.6065, + 0.6716, + 0.7415, + 0.8162, + 0.8954, + 0.9789, + 1.0661, + 1.1565, + 1.2495, + 1.3443, + 1.4401, + 1.536, + 1.631, + 1.7242, + 1.8143, + 1.9006, + 1.9818, + 2.0571, + 2.1254, + 2.1861, + 2.2383, + 2.2814, + 2.3149, + 2.3385, + 2.3518, + 2.3549, + 2.3477, + 2.3305, + 2.3036, + 2.2675, + 2.2227, + 2.1699, + 2.1098, + 2.0431, + 1.9707, + 1.8935, + 1.8123, + 1.7278, + 1.641, + 1.5526, + 1.4633, + 1.3737, + 1.2845, + 1.1962, + 1.1091, + 1.0238, + 0.9404, + 0.8593, + 0.7807, + 0.7046, + 0.6312, + 0.5606, + 0.4928, + 0.4277, + 0.3654, + 0.3058, + 0.249, + 0.1948, + 0.1433, + 0.0945, + 0.0483, + 0.0047, + -0.0363, + -0.0745, + -0.1102, + -0.1431, + -0.1732, + -0.2006, + -0.2252, + -0.2468, + -0.2655, + -0.2811, + -0.2937, + -0.3031, + -0.3093, + -0.3121, + -0.3115, + -0.3073, + -0.2995, + -0.2877, + -0.272, + -0.252, + -0.2277, + -0.1987, + -0.1649, + -0.1261, + -0.0821, + -0.0328, + 0.022, + 0.0822, + 0.1479, + 0.2188, + 0.2947, + 0.3751, + 0.4595, + 0.5471, + 0.637, + 0.7282, + 0.8193, + 0.9092, + 0.9964, + 1.0793, + 1.1565, + 1.2264, + 1.2878, + 1.3393, + 1.3798, + 1.4085, + 1.4246, + 1.4279, + 1.4183, + 1.3961, + 1.3617, + 1.3161, + 1.2603, + 1.1956, + 1.1234, + 1.0454, + 0.9631, + 0.8783, + 0.7925, + 0.7074, + 0.6243, + 0.5445, + 0.4692, + 0.3993, + 0.4449, + 0.496, + 0.5517, + 0.6123, + 0.6775, + 0.7475, + 0.8219, + 0.9004, + 0.9828, + 1.0683, + 1.1565, + 1.2467, + 1.338, + 1.4296, + 1.5206, + 1.61, + 1.6968, + 1.7801, + 1.8588, + 1.9321, + 1.9989, + 2.0586, + 2.1104, + 2.1536, + 2.1878, + 2.2126, + 2.2277, + 2.233, + 2.2286, + 2.2145, + 2.1912, + 2.159, + 2.1183, + 2.0699, + 2.0143, + 1.9524, + 1.8847, + 1.8123, + 1.7357, + 1.656, + 1.5737, + 1.4896, + 1.4044, + 1.3188, + 1.2333, + 1.1484, + 1.0646, + 0.9822, + 0.9016, + 0.8231, + 0.7467, + 0.6728, + 0.6013, + 0.5324, + 0.4662, + 0.4026, + 0.3417, + 0.2835, + 0.2279, + 0.175, + 0.1247, + 0.0771, + 0.0321, + -0.0102, + -0.0499, + -0.0868, + -0.1211, + -0.1526, + -0.1814, + -0.2073, + -0.2304, + -0.2506, + -0.2678, + -0.282, + -0.2931, + -0.3012, + -0.306, + -0.3076, + -0.3059, + -0.3008, + -0.2921, + -0.2797, + -0.2636, + -0.2435, + -0.2193, + -0.1908, + -0.1578, + -0.1202, + -0.0777, + -0.0304, + 0.022, + 0.0794, + 0.1417, + 0.2089, + 0.2806, + 0.3564, + 0.4357, + 0.518, + 0.6022, + 0.6875, + 0.7727, + 0.8565, + 0.9376, + 1.0146, + 1.0862, + 1.1509, + 1.2074, + 1.2546, + 1.2914, + 1.3171, + 1.331, + 1.3328, + 1.3226, + 1.3005, + 1.2671, + 1.2232, + 1.1698, + 1.1081, + 1.0396, + 0.9658, + 0.8881, + 0.8082, + 0.7276, + 0.6477, + 0.57, + 0.4956, + 0.4256, + 0.3607, + 0.3991, + 0.446, + 0.4974, + 0.5534, + 0.6141, + 0.6793, + 0.7489, + 0.8226, + 0.9, + 0.9807, + 1.0641, + 1.1495, + 1.2363, + 1.3235, + 1.4104, + 1.4959, + 1.5793, + 1.6595, + 1.7355, + 1.8066, + 1.8718, + 1.9303, + 1.9815, + 2.0246, + 2.0593, + 2.0851, + 2.1018, + 2.1092, + 2.1073, + 2.0963, + 2.0763, + 2.0478, + 2.0113, + 1.9671, + 1.916, + 1.8587, + 1.7957, + 1.728, + 1.6562, + 1.581, + 1.5033, + 1.4236, + 1.3426, + 1.261, + 1.1793, + 1.098, + 1.0176, + 0.9383, + 0.8606, + 0.7847, + 0.7108, + 0.6391, + 0.5698, + 0.5028, + 0.4384, + 0.3765, + 0.3171, + 0.2604, + 0.2063, + 0.1548, + 0.1059, + 0.0597, + 0.0161, + -0.0248, + -0.0631, + -0.0986, + -0.1314, + -0.1614, + -0.1886, + -0.213, + -0.2345, + -0.2532, + -0.2688, + -0.2815, + -0.2912, + -0.2978, + -0.3014, + -0.3018, + -0.2989, + -0.2929, + -0.2834, + -0.2705, + -0.2541, + -0.2339, + -0.21, + -0.182, + -0.15, + -0.1137, + -0.073, + -0.0278, + 0.0219, + 0.0762, + 0.135, + 0.1981, + 0.2653, + 0.3362, + 0.4102, + 0.4867, + 0.565, + 0.6441, + 0.7229, + 0.8003, + 0.8751, + 0.9459, + 1.0116, + 1.0708, + 1.1222, + 1.1649, + 1.1979, + 1.2205, + 1.2321, + 1.2325, + 1.2216, + 1.1998, + 1.1675, + 1.1255, + 1.0748, + 1.0165, + 0.9519, + 0.8825, + 0.8097, + 0.7351, + 0.6599, + 0.5857, + 0.5136, + 0.4449, + 0.3804, + 0.321, + 0.3539, + 0.3967, + 0.4439, + 0.4955, + 0.5517, + 0.6122, + 0.6771, + 0.746, + 0.8186, + 0.8944, + 0.9731, + 1.0538, + 1.1359, + 1.2188, + 1.3015, + 1.3831, + 1.4629, + 1.5399, + 1.6132, + 1.6819, + 1.7453, + 1.8025, + 1.8529, + 1.8958, + 1.9307, + 1.9574, + 1.9754, + 1.9847, + 1.9852, + 1.9769, + 1.9602, + 1.9353, + 1.9026, + 1.8626, + 1.8159, + 1.763, + 1.7047, + 1.6416, + 1.5744, + 1.5039, + 1.4306, + 1.3553, + 1.2786, + 1.2011, + 1.1232, + 1.0456, + 0.9685, + 0.8925, + 0.8178, + 0.7446, + 0.6733, + 0.604, + 0.5369, + 0.472, + 0.4095, + 0.3494, + 0.2918, + 0.2368, + 0.1843, + 0.1343, + 0.087, + 0.0423, + 0.0002, + -0.0391, + -0.0758, + -0.1098, + -0.1409, + -0.1694, + -0.1949, + -0.2177, + -0.2376, + -0.2546, + -0.2686, + -0.2798, + -0.288, + -0.2932, + -0.2954, + -0.2945, + -0.2906, + -0.2836, + -0.2735, + -0.2601, + -0.2434, + -0.2233, + -0.1997, + -0.1724, + -0.1414, + -0.1066, + -0.0678, + -0.0249, + 0.022, + 0.073, + 0.128, + 0.1869, + 0.2493, + 0.315, + 0.3835, + 0.4541, + 0.5262, + 0.5988, + 0.6711, + 0.7419, + 0.8101, + 0.8746, + 0.9341, + 0.9876, + 1.0339, + 1.072, + 1.1011, + 1.1205, + 1.1298, + 1.1288, + 1.1174, + 1.0959, + 1.0648, + 1.0248, + 0.9769, + 0.9221, + 0.8617, + 0.797, + 0.7294, + 0.6602, + 0.5907, + 0.5223, + 0.4561, + 0.3932, + 0.3345, + 0.2806, + 0.3098, + 0.3486, + 0.3917, + 0.4391, + 0.4908, + 0.5469, + 0.6071, + 0.6713, + 0.7392, + 0.8103, + 0.8842, + 0.9603, + 1.0379, + 1.1164, + 1.1949, + 1.2727, + 1.3488, + 1.4226, + 1.493, + 1.5593, + 1.6207, + 1.6764, + 1.7259, + 1.7683, + 1.8034, + 1.8307, + 1.8499, + 1.8608, + 1.8635, + 1.8578, + 1.8441, + 1.8226, + 1.7936, + 1.7575, + 1.715, + 1.6665, + 1.6126, + 1.554, + 1.4914, + 1.4253, + 1.3565, + 1.2855, + 1.213, + 1.1395, + 1.0655, + 0.9915, + 0.9179, + 0.8451, + 0.7734, + 0.7032, + 0.6345, + 0.5677, + 0.5029, + 0.4402, + 0.3798, + 0.3217, + 0.266, + 0.2127, + 0.1619, + 0.1137, + 0.0681, + 0.0251, + -0.0153, + -0.053, + -0.088, + -0.1202, + -0.1497, + -0.1764, + -0.2003, + -0.2213, + -0.2395, + -0.2548, + -0.2672, + -0.2767, + -0.2834, + -0.2871, + -0.288, + -0.286, + -0.281, + -0.2732, + -0.2623, + -0.2485, + -0.2316, + -0.2116, + -0.1884, + -0.1619, + -0.1321, + -0.0988, + -0.062, + -0.0216, + 0.0224, + 0.07, + 0.1211, + 0.1756, + 0.2332, + 0.2936, + 0.3564, + 0.4209, + 0.4866, + 0.5527, + 0.6182, + 0.6823, + 0.7439, + 0.8019, + 0.8553, + 0.9029, + 0.944, + 0.9775, + 1.0026, + 1.0189, + 1.0259, + 1.0235, + 1.0116, + 0.9905, + 0.9607, + 0.9229, + 0.8779, + 0.8268, + 0.7706, + 0.7107, + 0.6484, + 0.5847, + 0.5211, + 0.4586, + 0.3985, + 0.3415, + 0.2886, + 0.2403, + 0.2671, + 0.3021, + 0.3412, + 0.3845, + 0.432, + 0.4838, + 0.5396, + 0.5992, + 0.6625, + 0.729, + 0.7983, + 0.8699, + 0.943, + 1.0172, + 1.0916, + 1.1655, + 1.2381, + 1.3085, + 1.3761, + 1.4399, + 1.4992, + 1.5533, + 1.6017, + 1.6436, + 1.6786, + 1.7063, + 1.7264, + 1.7388, + 1.7434, + 1.7401, + 1.7291, + 1.7107, + 1.6852, + 1.6529, + 1.6143, + 1.5699, + 1.5203, + 1.466, + 1.4077, + 1.346, + 1.2815, + 1.2148, + 1.1463, + 1.0768, + 1.0066, + 0.9363, + 0.8661, + 0.7966, + 0.728, + 0.6607, + 0.5947, + 0.5305, + 0.4681, + 0.4077, + 0.3495, + 0.2934, + 0.2397, + 0.1884, + 0.1395, + 0.0931, + 0.0493, + 0.0081, + -0.0305, + -0.0664, + -0.0996, + -0.13, + -0.1577, + -0.1825, + -0.2046, + -0.2238, + -0.2402, + -0.2538, + -0.2645, + -0.2724, + -0.2775, + -0.2798, + -0.2793, + -0.2761, + -0.2701, + -0.2614, + -0.2499, + -0.2357, + -0.2186, + -0.1988, + -0.1761, + -0.1505, + -0.1219, + -0.0902, + -0.0555, + -0.0176, + 0.0234, + 0.0675, + 0.1147, + 0.1647, + 0.2173, + 0.2724, + 0.3294, + 0.3878, + 0.4471, + 0.5065, + 0.5653, + 0.6227, + 0.6776, + 0.7291, + 0.7763, + 0.8182, + 0.854, + 0.8829, + 0.9042, + 0.9174, + 0.9221, + 0.9183, + 0.9059, + 0.8853, + 0.8569, + 0.8212, + 0.7792, + 0.7318, + 0.68, + 0.625, + 0.5679, + 0.5099, + 0.4521, + 0.3957, + 0.3415, + 0.2905, + 0.2434, + 0.2008, + 0.226, + 0.2575, + 0.2929, + 0.3323, + 0.3758, + 0.4234, + 0.4749, + 0.5303, + 0.5892, + 0.6513, + 0.7161, + 0.7833, + 0.8522, + 0.9221, + 0.9925, + 1.0626, + 1.1316, + 1.1988, + 1.2634, + 1.3246, + 1.3818, + 1.4343, + 1.4814, + 1.5225, + 1.5573, + 1.5853, + 1.6061, + 1.6197, + 1.6259, + 1.6248, + 1.6163, + 1.6008, + 1.5784, + 1.5496, + 1.5147, + 1.4742, + 1.4286, + 1.3784, + 1.3243, + 1.2668, + 1.2064, + 1.1438, + 1.0793, + 1.0136, + 0.9472, + 0.8804, + 0.8137, + 0.7474, + 0.6819, + 0.6175, + 0.5543, + 0.4927, + 0.4328, + 0.3748, + 0.3188, + 0.2649, + 0.2133, + 0.164, + 0.1171, + 0.0727, + 0.0308, + -0.0085, + -0.0452, + -0.0791, + -0.1104, + -0.139, + -0.1647, + -0.1877, + -0.2079, + -0.2252, + -0.2398, + -0.2516, + -0.2606, + -0.2668, + -0.2704, + -0.2712, + -0.2694, + -0.265, + -0.258, + -0.2484, + -0.2363, + -0.2217, + -0.2046, + -0.185, + -0.1628, + -0.1381, + -0.1107, + -0.0808, + -0.0482, + -0.0129, + 0.0251, + 0.0657, + 0.1088, + 0.1544, + 0.2021, + 0.2518, + 0.303, + 0.3554, + 0.4083, + 0.4612, + 0.5133, + 0.564, + 0.6123, + 0.6574, + 0.6985, + 0.7347, + 0.7654, + 0.7897, + 0.8072, + 0.8174, + 0.8199, + 0.8148, + 0.802, + 0.7819, + 0.7548, + 0.7214, + 0.6824, + 0.6387, + 0.5912, + 0.541, + 0.4892, + 0.4368, + 0.3848, + 0.3343, + 0.286, + 0.2409, + 0.1996, + 0.1625, + 0.187, + 0.2151, + 0.2469, + 0.2827, + 0.3225, + 0.3662, + 0.4138, + 0.465, + 0.5198, + 0.5776, + 0.6383, + 0.7013, + 0.766, + 0.8319, + 0.8984, + 0.9647, + 1.0303, + 1.0942, + 1.1559, + 1.2146, + 1.2696, + 1.3203, + 1.366, + 1.4063, + 1.4406, + 1.4686, + 1.49, + 1.5046, + 1.5122, + 1.5129, + 1.5066, + 1.4937, + 1.4742, + 1.4485, + 1.417, + 1.3801, + 1.3383, + 1.292, + 1.2419, + 1.1883, + 1.1318, + 1.073, + 1.0124, + 0.9505, + 0.8876, + 0.8243, + 0.7609, + 0.6979, + 0.6354, + 0.5739, + 0.5135, + 0.4545, + 0.3972, + 0.3416, + 0.2879, + 0.2363, + 0.1869, + 0.1397, + 0.0949, + 0.0525, + 0.0127, + -0.0246, + -0.0593, + -0.0913, + -0.1205, + -0.1471, + -0.1709, + -0.1919, + -0.2101, + -0.2255, + -0.2382, + -0.2482, + -0.2554, + -0.26, + -0.2619, + -0.2613, + -0.2582, + -0.2526, + -0.2446, + -0.2343, + -0.2216, + -0.2067, + -0.1895, + -0.1701, + -0.1485, + -0.1247, + -0.0987, + -0.0705, + -0.04, + -0.0073, + 0.0277, + 0.0648, + 0.1039, + 0.145, + 0.1879, + 0.2323, + 0.2779, + 0.3243, + 0.3709, + 0.4174, + 0.463, + 0.5071, + 0.5489, + 0.5878, + 0.6229, + 0.6537, + 0.6793, + 0.6992, + 0.713, + 0.7202, + 0.7207, + 0.7143, + 0.7012, + 0.6816, + 0.6559, + 0.6247, + 0.5886, + 0.5485, + 0.5053, + 0.4599, + 0.4132, + 0.3663, + 0.32, + 0.2752, + 0.2328, + 0.1934, + 0.1577, + 0.126, + 0.1501, + 0.1751, + 0.2038, + 0.2362, + 0.2725, + 0.3126, + 0.3564, + 0.4039, + 0.4547, + 0.5087, + 0.5654, + 0.6244, + 0.6852, + 0.7472, + 0.81, + 0.8727, + 0.9349, + 0.9957, + 1.0545, + 1.1106, + 1.1634, + 1.2122, + 1.2565, + 1.2957, + 1.3295, + 1.3573, + 1.379, + 1.3943, + 1.4031, + 1.4053, + 1.4009, + 1.3902, + 1.3733, + 1.3505, + 1.3221, + 1.2885, + 1.2502, + 1.2075, + 1.1609, + 1.111, + 1.0583, + 1.0032, + 0.9462, + 0.8878, + 0.8284, + 0.7684, + 0.7083, + 0.6483, + 0.5889, + 0.5302, + 0.4726, + 0.4163, + 0.3615, + 0.3083, + 0.257, + 0.2077, + 0.1605, + 0.1156, + 0.0729, + 0.0327, + -0.005, + -0.0402, + -0.0727, + -0.1026, + -0.1298, + -0.1543, + -0.176, + -0.195, + -0.2112, + -0.2247, + -0.2355, + -0.2436, + -0.249, + -0.2519, + -0.2523, + -0.2502, + -0.2458, + -0.239, + -0.2301, + -0.219, + -0.2058, + -0.1906, + -0.1734, + -0.1543, + -0.1333, + -0.1105, + -0.0858, + -0.0592, + -0.0309, + -0.0007, + 0.0312, + 0.0648, + 0.1001, + 0.1369, + 0.175, + 0.2143, + 0.2543, + 0.2949, + 0.3355, + 0.3757, + 0.415, + 0.4527, + 0.4883, + 0.5212, + 0.5506, + 0.576, + 0.5968, + 0.6125, + 0.6227, + 0.6272, + 0.6257, + 0.6181, + 0.6047, + 0.5856, + 0.5613, + 0.5322, + 0.499, + 0.4625, + 0.4234, + 0.3825, + 0.3409, + 0.2992, + 0.2584, + 0.2193, + 0.1825, + 0.1486, + 0.1182, + 0.0918, + 0.1158, + 0.138, + 0.1637, + 0.1931, + 0.2262, + 0.263, + 0.3034, + 0.3473, + 0.3946, + 0.4449, + 0.4978, + 0.5531, + 0.6102, + 0.6687, + 0.7278, + 0.7872, + 0.846, + 0.9038, + 0.9598, + 1.0133, + 1.0639, + 1.1108, + 1.1536, + 1.1917, + 1.2246, + 1.2521, + 1.2739, + 1.2896, + 1.2992, + 1.3027, + 1.3, + 1.2912, + 1.2765, + 1.2562, + 1.2306, + 1.2, + 1.1647, + 1.1253, + 1.0821, + 1.0356, + 0.9862, + 0.9346, + 0.881, + 0.8259, + 0.7698, + 0.7131, + 0.6561, + 0.5991, + 0.5426, + 0.4867, + 0.4318, + 0.3782, + 0.3259, + 0.2752, + 0.2263, + 0.1794, + 0.1345, + 0.0918, + 0.0514, + 0.0134, + -0.0221, + -0.0551, + -0.0855, + -0.1132, + -0.1382, + -0.1606, + -0.1802, + -0.1971, + -0.2113, + -0.2227, + -0.2316, + -0.2378, + -0.2415, + -0.2427, + -0.2415, + -0.238, + -0.2322, + -0.2244, + -0.2145, + -0.2026, + -0.1889, + -0.1735, + -0.1563, + -0.1375, + -0.1172, + -0.0953, + -0.0719, + -0.0471, + -0.0208, + 0.0068, + 0.0358, + 0.0661, + 0.0975, + 0.1301, + 0.1636, + 0.1979, + 0.2326, + 0.2676, + 0.3024, + 0.3366, + 0.3698, + 0.4015, + 0.4312, + 0.4582, + 0.4822, + 0.5025, + 0.5187, + 0.5305, + 0.5373, + 0.5391, + 0.5357, + 0.5271, + 0.5134, + 0.4949, + 0.4719, + 0.4449, + 0.4145, + 0.3813, + 0.3462, + 0.3098, + 0.2729, + 0.2363, + 0.2007, + 0.1669, + 0.1354, + 0.1069, + 0.0816, + 0.0601, + 0.0841, + 0.1038, + 0.1269, + 0.1535, + 0.1837, + 0.2176, + 0.2549, + 0.2957, + 0.3396, + 0.3866, + 0.4361, + 0.488, + 0.5417, + 0.5967, + 0.6525, + 0.7086, + 0.7643, + 0.8191, + 0.8724, + 0.9234, + 0.9717, + 1.0167, + 1.0579, + 1.0947, + 1.1267, + 1.1537, + 1.1753, + 1.1912, + 1.2014, + 1.2058, + 1.2043, + 1.1972, + 1.1844, + 1.1663, + 1.143, + 1.115, + 1.0825, + 1.046, + 1.0058, + 0.9624, + 0.9162, + 0.8677, + 0.8172, + 0.7653, + 0.7123, + 0.6586, + 0.6045, + 0.5505, + 0.4968, + 0.4437, + 0.3915, + 0.3404, + 0.2906, + 0.2425, + 0.196, + 0.1514, + 0.1089, + 0.0685, + 0.0304, + -0.0053, + -0.0385, + -0.0693, + -0.0974, + -0.1229, + -0.1458, + -0.1659, + -0.1834, + -0.1981, + -0.2102, + -0.2197, + -0.2265, + -0.2309, + -0.2328, + -0.2323, + -0.2295, + -0.2246, + -0.2176, + -0.2086, + -0.1978, + -0.1853, + -0.1711, + -0.1554, + -0.1383, + -0.1199, + -0.1002, + -0.0793, + -0.0572, + -0.0341, + -0.0099, + 0.0153, + 0.0415, + 0.0685, + 0.0963, + 0.1248, + 0.1539, + 0.1834, + 0.2131, + 0.2427, + 0.272, + 0.3005, + 0.3279, + 0.3539, + 0.3779, + 0.3995, + 0.4183, + 0.4339, + 0.4458, + 0.4538, + 0.4575, + 0.4568, + 0.4517, + 0.4421, + 0.4282, + 0.4102, + 0.3884, + 0.3634, + 0.3357, + 0.3058, + 0.2744, + 0.2421, + 0.2098, + 0.178, + 0.1474, + 0.1186, + 0.0921, + 0.0685, + 0.0481, + 0.0312, + 0.0553, + 0.0728, + 0.0935, + 0.1177, + 0.1455, + 0.1766, + 0.2112, + 0.2492, + 0.2902, + 0.3341, + 0.3806, + 0.4293, + 0.4798, + 0.5317, + 0.5844, + 0.6374, + 0.6902, + 0.7422, + 0.7928, + 0.8414, + 0.8875, + 0.9305, + 0.9699, + 1.0053, + 1.0363, + 1.0625, + 1.0837, + 1.0996, + 1.1101, + 1.1151, + 1.1146, + 1.1086, + 1.0974, + 1.081, + 1.0598, + 1.034, + 1.0039, + 0.97, + 0.9325, + 0.8918, + 0.8485, + 0.8028, + 0.7553, + 0.7062, + 0.6561, + 0.6052, + 0.554, + 0.5027, + 0.4517, + 0.4013, + 0.3516, + 0.3031, + 0.2559, + 0.2102, + 0.1662, + 0.124, + 0.0839, + 0.0458, + 0.0101, + -0.0233, + -0.0542, + -0.0827, + -0.1085, + -0.1317, + -0.1523, + -0.1702, + -0.1855, + -0.1981, + -0.2081, + -0.2155, + -0.2204, + -0.2228, + -0.2229, + -0.2208, + -0.2165, + -0.2101, + -0.2019, + -0.1919, + -0.1802, + -0.167, + -0.1524, + -0.1365, + -0.1195, + -0.1014, + -0.0824, + -0.0624, + -0.0417, + -0.0202, + 0.002, + 0.0248, + 0.0482, + 0.0721, + 0.0964, + 0.1211, + 0.146, + 0.1709, + 0.1958, + 0.2204, + 0.2444, + 0.2676, + 0.2896, + 0.3102, + 0.3289, + 0.3455, + 0.3594, + 0.3705, + 0.3784, + 0.3829, + 0.3837, + 0.3808, + 0.374, + 0.3635, + 0.3494, + 0.332, + 0.3115, + 0.2884, + 0.2631, + 0.2363, + 0.2084, + 0.1801, + 0.152, + 0.1247, + 0.0987, + 0.0746, + 0.0529, + 0.0339, + 0.0179, + 0.0053, + 0.0295, + 0.045, + 0.0638, + 0.086, + 0.1115, + 0.1404, + 0.1726, + 0.208, + 0.2465, + 0.2877, + 0.3314, + 0.3773, + 0.425, + 0.4739, + 0.5238, + 0.574, + 0.624, + 0.6733, + 0.7213, + 0.7675, + 0.8114, + 0.8524, + 0.8901, + 0.924, + 0.9537, + 0.979, + 0.9996, + 1.0152, + 1.0256, + 1.0309, + 1.031, + 1.026, + 1.0159, + 1.001, + 0.9814, + 0.9574, + 0.9294, + 0.8976, + 0.8624, + 0.8242, + 0.7834, + 0.7403, + 0.6954, + 0.649, + 0.6015, + 0.5533, + 0.5046, + 0.456, + 0.4075, + 0.3597, + 0.3126, + 0.2666, + 0.2218, + 0.1785, + 0.137, + 0.0972, + 0.0595, + 0.0238, + -0.0095, + -0.0405, + -0.0691, + -0.0952, + -0.1187, + -0.1396, + -0.1579, + -0.1735, + -0.1866, + -0.197, + -0.2048, + -0.2102, + -0.2131, + -0.2137, + -0.212, + -0.2082, + -0.2024, + -0.1947, + -0.1852, + -0.1742, + -0.1617, + -0.1479, + -0.1329, + -0.1169, + -0.1, + -0.0823, + -0.0639, + -0.0449, + -0.0254, + -0.0055, + 0.0147, + 0.0353, + 0.056, + 0.0769, + 0.0979, + 0.1189, + 0.1398, + 0.1605, + 0.1809, + 0.2007, + 0.2199, + 0.2381, + 0.2551, + 0.2706, + 0.2844, + 0.2962, + 0.3058, + 0.3127, + 0.3169, + 0.3182, + 0.3163, + 0.3113, + 0.3031, + 0.2918, + 0.2776, + 0.2607, + 0.2414, + 0.2201, + 0.1971, + 0.1731, + 0.1485, + 0.1239, + 0.0997, + 0.0766, + 0.0549, + 0.0351, + 0.0177, + 0.003, + -0.0088, + -0.0174 + ], + "layers": [] + }, + "entities": [ + { + "id": "spawn_1", + "name": "player_spawn", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 1, + 20 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "player_spawn", + "primary": "1", + "yaw": "0" + } + }, + { + "id": "wall_boundary_n", + "name": "wall_boundary_n", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 3, + -40 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "40, 4, 0.5", + "static": "1" + } + }, + { + "id": "wall_boundary_s", + "name": "wall_boundary_s", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 3, + 40 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "40, 4, 0.5", + "static": "1" + } + }, + { + "id": "wall_boundary_e", + "name": "wall_boundary_e", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 40, + 3, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "0.5, 4, 40", + "static": "1" + } + }, + { + "id": "wall_boundary_w", + "name": "wall_boundary_w", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -40, + 3, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "static" + ], + "userData": { + "kind": "collider_box", + "halfExtents": "0.5, 4, 40", + "static": "1" + } + }, + { + "id": "terrain_ground", + "name": "terrain_ground", + "modelRef": "assets/models/terrain_hills.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 0, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "terrain" + ], + "userData": { + "kind": "static_mesh" + } + }, + { + "id": "h_floor", + "name": "h_floor", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21, + 0.1, + -13 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "12.000, 0.100, 8.000" + } + }, + { + "id": "h_s_f0_0", + "name": "h_s_f0_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.95, + 1.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_s_f0_1", + "name": "h_s_f0_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 0.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.600, 0.300" + } + }, + { + "id": "h_s_f0_2", + "name": "h_s_f0_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 3.05, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_s_f0_3", + "name": "h_s_f0_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -24.65, + 1.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.450, 1.600, 0.300" + } + }, + { + "id": "h_s_f0_4", + "name": "h_s_f0_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 3.1, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "1.200, 0.300, 0.300" + } + }, + { + "id": "h_s_f0_5", + "name": "h_s_f0_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -17.35, + 1.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.450, 1.600, 0.300" + } + }, + { + "id": "h_s_f0_6", + "name": "h_s_f0_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 0.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.600, 0.300" + } + }, + { + "id": "h_s_f0_7", + "name": "h_s_f0_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 3.05, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_s_f0_8", + "name": "h_s_f0_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.05, + 1.8, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_s_f1_0", + "name": "h_s_f1_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.95, + 5.5, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_s_f1_1", + "name": "h_s_f1_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 4.25, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_s_f1_2", + "name": "h_s_f1_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 6.55, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_s_f1_3", + "name": "h_s_f1_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -24.5, + 5.5, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 1.600, 0.300" + } + }, + { + "id": "h_s_f1_4", + "name": "h_s_f1_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 4.25, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_s_f1_5", + "name": "h_s_f1_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 6.55, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_s_f1_6", + "name": "h_s_f1_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -17.5, + 5.5, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 1.600, 0.300" + } + }, + { + "id": "h_s_f1_7", + "name": "h_s_f1_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 4.25, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_s_f1_8", + "name": "h_s_f1_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 6.55, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_s_f1_9", + "name": "h_s_f1_9", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.05, + 5.5, + -5.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_n_f0_0", + "name": "h_n_f0_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.1, + 1.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.900, 1.600, 0.300" + } + }, + { + "id": "h_n_f0_1", + "name": "h_n_f0_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -26.0, + 3.1, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "1.200, 0.300, 0.300" + } + }, + { + "id": "h_n_f0_2", + "name": "h_n_f0_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -22.35, + 1.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.450, 1.600, 0.300" + } + }, + { + "id": "h_n_f0_3", + "name": "h_n_f0_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -19.0, + 0.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.600, 0.300" + } + }, + { + "id": "h_n_f0_4", + "name": "h_n_f0_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -19.0, + 3.05, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_n_f0_5", + "name": "h_n_f0_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -15.75, + 1.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.350, 1.600, 0.300" + } + }, + { + "id": "h_n_f0_6", + "name": "h_n_f0_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.5, + 0.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.600, 0.300" + } + }, + { + "id": "h_n_f0_7", + "name": "h_n_f0_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.5, + 3.05, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_n_f0_8", + "name": "h_n_f0_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.3, + 1.8, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "1.300, 1.600, 0.300" + } + }, + { + "id": "h_n_f1_0", + "name": "h_n_f1_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.95, + 5.5, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_n_f1_1", + "name": "h_n_f1_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 4.25, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_n_f1_2", + "name": "h_n_f1_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.0, + 6.55, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_n_f1_3", + "name": "h_n_f1_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -24.5, + 5.5, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 1.600, 0.300" + } + }, + { + "id": "h_n_f1_4", + "name": "h_n_f1_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 4.25, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_n_f1_5", + "name": "h_n_f1_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 6.55, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_n_f1_6", + "name": "h_n_f1_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -17.5, + 5.5, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 1.600, 0.300" + } + }, + { + "id": "h_n_f1_7", + "name": "h_n_f1_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 4.25, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.350, 0.300" + } + }, + { + "id": "h_n_f1_8", + "name": "h_n_f1_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -14.0, + 6.55, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.900, 0.550, 0.300" + } + }, + { + "id": "h_n_f1_9", + "name": "h_n_f1_9", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.05, + 5.5, + -20.7 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.050, 1.600, 0.300" + } + }, + { + "id": "h_e_f0_0", + "name": "h_e_f0_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 1.8, + -19.15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_e_f0_1", + "name": "h_e_f0_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 0.8, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.600, 0.900" + } + }, + { + "id": "h_e_f0_2", + "name": "h_e_f0_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 3.05, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_e_f0_3", + "name": "h_e_f0_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 1.8, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 3.100" + } + }, + { + "id": "h_e_f0_4", + "name": "h_e_f0_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 0.8, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.600, 0.900" + } + }, + { + "id": "h_e_f0_5", + "name": "h_e_f0_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 3.05, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_e_f0_6", + "name": "h_e_f0_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 1.8, + -6.85 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_e_f1_0", + "name": "h_e_f1_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 5.5, + -19.15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_e_f1_1", + "name": "h_e_f1_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 4.25, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_e_f1_2", + "name": "h_e_f1_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 6.55, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.550, 0.900" + } + }, + { + "id": "h_e_f1_3", + "name": "h_e_f1_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 5.5, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 3.100" + } + }, + { + "id": "h_e_f1_4", + "name": "h_e_f1_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 4.25, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_e_f1_5", + "name": "h_e_f1_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 6.55, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.550, 0.900" + } + }, + { + "id": "h_e_f1_6", + "name": "h_e_f1_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.3, + 5.5, + -6.85 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_w_f0_0", + "name": "h_w_f0_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 1.8, + -19.15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_w_f0_1", + "name": "h_w_f0_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 0.8, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.600, 0.900" + } + }, + { + "id": "h_w_f0_2", + "name": "h_w_f0_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 3.05, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_w_f0_3", + "name": "h_w_f0_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 1.8, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 3.100" + } + }, + { + "id": "h_w_f0_4", + "name": "h_w_f0_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 0.8, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.600, 0.900" + } + }, + { + "id": "h_w_f0_5", + "name": "h_w_f0_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 3.05, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_w_f0_6", + "name": "h_w_f0_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 1.8, + -6.85 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_w_f1_0", + "name": "h_w_f1_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 5.5, + -19.15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_w_f1_1", + "name": "h_w_f1_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 4.25, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_w_f1_2", + "name": "h_w_f1_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 6.55, + -17.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.550, 0.900" + } + }, + { + "id": "h_w_f1_3", + "name": "h_w_f1_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 5.5, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 3.100" + } + }, + { + "id": "h_w_f1_4", + "name": "h_w_f1_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 4.25, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.350, 0.900" + } + }, + { + "id": "h_w_f1_5", + "name": "h_w_f1_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 6.55, + -9.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 0.550, 0.900" + } + }, + { + "id": "h_w_f1_6", + "name": "h_w_f1_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.7, + 5.5, + -6.85 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.300, 1.600, 1.250" + } + }, + { + "id": "h_part_a", + "name": "h_part_a", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -25, + 1.8, + -17.8 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.200, 1.600, 2.600" + } + }, + { + "id": "h_part_b", + "name": "h_part_b", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -25, + 1.8, + -12.1 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.200, 1.600, 1.100" + } + }, + { + "id": "h_slab_a", + "name": "h_slab_a", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -23.6, + 3.65, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "9.400, 0.250, 8.000" + } + }, + { + "id": "h_slab_b", + "name": "h_slab_b", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 3.65, + -15.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 0.250, 5.700" + } + }, + { + "id": "h_slab_c", + "name": "h_slab_c", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 3.65, + -5.9 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 0.250, 0.900" + } + }, + { + "id": "h_roof_a", + "name": "h_roof_a", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -23.6, + 7.35, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "9.400, 0.250, 8.000" + } + }, + { + "id": "h_roof_b", + "name": "h_roof_b", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 7.35, + -20.3 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 0.250, 0.700" + } + }, + { + "id": "h_roof_c", + "name": "h_roof_c", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 7.35, + -10.9 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "2.600, 0.250, 5.900" + } + }, + { + "id": "h_par_n", + "name": "h_par_n", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 8.15, + -20.8 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "12.000, 0.550, 0.200" + } + }, + { + "id": "h_par_s", + "name": "h_par_s", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 8.15, + -5.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "12.000, 0.550, 0.200" + } + }, + { + "id": "h_par_e", + "name": "h_par_e", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -9.2, + 8.15, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.200, 0.550, 7.600" + } + }, + { + "id": "h_par_w", + "name": "h_par_w", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.8, + 8.15, + -13.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.200, 0.550, 7.600" + } + }, + { + "id": "h_stair_a_0", + "name": "h_stair_a_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.1, + 0.254, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.254, 1.400" + } + }, + { + "id": "h_stair_a_1", + "name": "h_stair_a_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.4, + 0.408, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.408, 1.400" + } + }, + { + "id": "h_stair_a_2", + "name": "h_stair_a_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.7, + 0.562, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.562, 1.400" + } + }, + { + "id": "h_stair_a_3", + "name": "h_stair_a_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.0, + 0.717, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.717, 1.400" + } + }, + { + "id": "h_stair_a_4", + "name": "h_stair_a_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.3, + 0.871, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.871, 1.400" + } + }, + { + "id": "h_stair_a_5", + "name": "h_stair_a_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 1.025, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.025, 1.400" + } + }, + { + "id": "h_stair_a_6", + "name": "h_stair_a_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.9, + 1.179, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.179, 1.400" + } + }, + { + "id": "h_stair_a_7", + "name": "h_stair_a_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.2, + 1.333, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.333, 1.400" + } + }, + { + "id": "h_stair_a_8", + "name": "h_stair_a_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.5, + 1.488, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.488, 1.400" + } + }, + { + "id": "h_stair_a_9", + "name": "h_stair_a_9", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.8, + 1.642, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.642, 1.400" + } + }, + { + "id": "h_stair_a_10", + "name": "h_stair_a_10", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -13.1, + 1.796, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.796, 1.400" + } + }, + { + "id": "h_stair_a_11", + "name": "h_stair_a_11", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -13.4, + 1.95, + -8.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.950, 1.400" + } + }, + { + "id": "h_stair_b_0", + "name": "h_stair_b_0", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.1, + 4.054, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.154, 1.400" + } + }, + { + "id": "h_stair_b_1", + "name": "h_stair_b_1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.4, + 4.208, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.308, 1.400" + } + }, + { + "id": "h_stair_b_2", + "name": "h_stair_b_2", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.7, + 4.362, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.463, 1.400" + } + }, + { + "id": "h_stair_b_3", + "name": "h_stair_b_3", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.0, + 4.517, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.617, 1.400" + } + }, + { + "id": "h_stair_b_4", + "name": "h_stair_b_4", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.3, + 4.671, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.771, 1.400" + } + }, + { + "id": "h_stair_b_5", + "name": "h_stair_b_5", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.6, + 4.825, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 0.925, 1.400" + } + }, + { + "id": "h_stair_b_6", + "name": "h_stair_b_6", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.9, + 4.979, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.079, 1.400" + } + }, + { + "id": "h_stair_b_7", + "name": "h_stair_b_7", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.2, + 5.133, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.233, 1.400" + } + }, + { + "id": "h_stair_b_8", + "name": "h_stair_b_8", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.5, + 5.288, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.388, 1.400" + } + }, + { + "id": "h_stair_b_9", + "name": "h_stair_b_9", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.8, + 5.442, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.542, 1.400" + } + }, + { + "id": "h_stair_b_10", + "name": "h_stair_b_10", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -13.1, + 5.596, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.696, 1.400" + } + }, + { + "id": "h_stair_b_11", + "name": "h_stair_b_11", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -13.4, + 5.75, + -18.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "building", + "stair" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.150, 1.850, 1.400" + } + }, + { + "id": "furniture_bed_w", + "name": "furniture_bed_w", + "modelRef": "assets/models/prop_bed.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.0, + 0.2, + -8.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "1.000, 0.300, 0.500" + } + }, + { + "id": "furniture_crate_w1", + "name": "furniture_crate_w1", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.2, + 0.2, + -19.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "furniture_crate_w2", + "name": "furniture_crate_w2", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.9, + 1.2, + -19.4 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.400, 0.400, 0.400" + } + }, + { + "id": "furniture_table_g", + "name": "furniture_table_g", + "modelRef": "assets/models/prop_table.glb", + "prefabRef": null, + "transform": { + "position": [ + -19.5, + 0.2, + -8.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.800, 0.400, 0.500" + } + }, + { + "id": "furniture_chair_g1", + "name": "furniture_chair_g1", + "modelRef": "assets/models/prop_chair.glb", + "prefabRef": null, + "transform": { + "position": [ + -18.0, + 0.2, + -8.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.250, 0.500, 0.250" + } + }, + { + "id": "furniture_chair_g2", + "name": "furniture_chair_g2", + "modelRef": "assets/models/prop_chair.glb", + "prefabRef": null, + "transform": { + "position": [ + -21.0, + 0.2, + -8.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.250, 0.500, 0.250" + } + }, + { + "id": "furniture_crate_g1", + "name": "furniture_crate_g1", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -16.5, + 0.2, + -14.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "furniture_crate_g2", + "name": "furniture_crate_g2", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -15.4, + 0.2, + -14.6 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "furniture_crate_g3", + "name": "furniture_crate_g3", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -16.0, + 1.2, + -14.2 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.400, 0.400, 0.400" + } + }, + { + "id": "furniture_bed_f1", + "name": "furniture_bed_f1", + "modelRef": "assets/models/prop_bed.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.0, + 3.9, + -18.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "1.000, 0.300, 0.500" + } + }, + { + "id": "furniture_table_f1", + "name": "furniture_table_f1", + "modelRef": "assets/models/prop_table.glb", + "prefabRef": null, + "transform": { + "position": [ + -27.0, + 3.9, + -7.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.800, 0.400, 0.500" + } + }, + { + "id": "furniture_chair_f1", + "name": "furniture_chair_f1", + "modelRef": "assets/models/prop_chair.glb", + "prefabRef": null, + "transform": { + "position": [ + -25.5, + 3.9, + -7.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.250, 0.500, 0.250" + } + }, + { + "id": "furniture_crate_f1a", + "name": "furniture_crate_f1a", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.3, + 3.9, + -12.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "furniture_crate_f1b", + "name": "furniture_crate_f1b", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.5, + 4.9, + -12.4 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.400, 0.400, 0.400" + } + }, + { + "id": "furniture_crate_r1", + "name": "furniture_crate_r1", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.5, + 7.6, + -19.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "furniture_crate_r2", + "name": "furniture_crate_r2", + "modelRef": "assets/models/prop_crate.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.0, + 7.6, + -6.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.500, 0.500, 0.500" + } + }, + { + "id": "pickup_rifle_house_g", + "name": "pickup_rifle_house_g", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -29.0, + 0.9, + -18.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "rifle" + } + }, + { + "id": "pickup_blaster_f1", + "name": "pickup_blaster_f1", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.0, + 4.6, + -12.0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "blaster" + } + }, + { + "id": "pickup_rifle_roof", + "name": "pickup_rifle_roof", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.5, + 8.3, + -6.5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "rifle" + } + }, + { + "id": "tree_1", + "name": "tree_1", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 12, + 0, + 5 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_2", + "name": "tree_2", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 18, + 0, + 0 + ], + "rotation": [ + 0, + 1.2, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_3", + "name": "tree_3", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 5, + 0, + -8 + ], + "rotation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_4", + "name": "tree_4", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -10, + 0, + 25 + ], + "rotation": [ + 0, + 0.4, + 0 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_5", + "name": "tree_5", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -8, + 0, + 28 + ], + "rotation": [ + 0, + 1.8, + 0 + ], + "scale": [ + 1.3, + 1.3, + 1.3 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_6", + "name": "tree_6", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -18, + 0, + 25 + ], + "rotation": [ + 0, + 2.3, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_7", + "name": "tree_7", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 30, + 0, + -6 + ], + "rotation": [ + 0, + 0.9, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "tree_8", + "name": "tree_8", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 22, + 0, + 22 + ], + "rotation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "tint": null, + "tags": [ + "prop" + ], + "userData": { + "kind": "static_mesh", + "collider": "box", + "halfExtents": "0.18, 1.0, 0.18" + } + }, + { + "id": "spawner_ne", + "name": "spawner_ne", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 30, + 2.5, + -30 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "enemy_spawner" + } + }, + { + "id": "spawner_nw", + "name": "spawner_nw", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30, + 1.5, + -30 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "enemy_spawner" + } + }, + { + "id": "spawner_se", + "name": "spawner_se", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 30, + 0.8, + 30 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "enemy_spawner" + } + }, + { + "id": "spawner_sw", + "name": "spawner_sw", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -30, + 1.5, + 30 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "enemy_spawner" + } + }, + { + "id": "pickup_rifle_n", + "name": "pickup_rifle_n", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 0.8, + -15 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "rifle" + } + }, + { + "id": "pickup_rifle_hill", + "name": "pickup_rifle_hill", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 26, + 3.5, + -24 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "rifle" + } + }, + { + "id": "pickup_blaster_hill", + "name": "pickup_blaster_hill", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + -24, + 3, + 26 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "weapon_pickup", + "weapon": "blaster" + } + }, + { + "id": "waves", + "name": "waves", + "modelRef": "assets/models/_gizmo_box.glb", + "prefabRef": null, + "transform": { + "position": [ + 0, + 0, + 0 + ], + "rotation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "tint": null, + "tags": [ + "logic" + ], + "userData": { + "kind": "wave_config", + "waves": "[{\"count\": 4, \"enemy\": \"dretch,dretch,mantis,dretch\"}, {\"count\": 7, \"enemy\": \"mantis,dretch,marauder,adv_marauder,mantis,dretch,marauder\"}, {\"count\": 11, \"enemy\": \"marauder,adv_marauder,dragoon,adv_dragoon,mantis,adv_marauder,marauder,dragoon,dretch,adv_dragoon,tyrant\"}]" + } + }, + { + "id": "tree_0001", + "name": "tree_0001", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -25.2119, + 1.0818, + 7.555 + ], + "rotation": [ + 0, + 1.1964, + 0 + ], + "scale": [ + 1.1171, + 1.1171, + 1.1171 + ] + }, + "tint": [ + 0.9954, + 1.0517, + 0.9188, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0002", + "name": "tree_0002", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 5.7869, + 0, + -13.2819 + ], + "rotation": [ + 0, + 1.0602, + 0 + ], + "scale": [ + 1.1666, + 1.1666, + 1.1666 + ] + }, + "tint": [ + 1.0654, + 1.0394, + 0.7777, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0003", + "name": "tree_0003", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.2563, + 1.1085, + 35.4324 + ], + "rotation": [ + 0, + 2.6274, + 0 + ], + "scale": [ + 0.9733, + 0.9733, + 0.9733 + ] + }, + "tint": [ + 1.0065, + 0.9865, + 0.7455, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0004", + "name": "tree_0004", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -34.6153, + 1.0411, + -34.9499 + ], + "rotation": [ + 0, + 5.7552, + 0 + ], + "scale": [ + 0.9467, + 0.9467, + 0.9467 + ] + }, + "tint": [ + 1.035, + 0.9965, + 0.724, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0005", + "name": "tree_0005", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 33.3923, + 1.574, + -33.716 + ], + "rotation": [ + 0, + 5.4109, + 0 + ], + "scale": [ + 1.0047, + 1.0047, + 1.0047 + ] + }, + "tint": [ + 0.8885, + 0.9551, + 0.8594, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0006", + "name": "tree_0006", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 20.1898, + 0.2069, + -0.7627 + ], + "rotation": [ + 0, + 4.4622, + 0 + ], + "scale": [ + 1.3183, + 1.3183, + 1.3183 + ] + }, + "tint": [ + 0.9074, + 0.9751, + 0.8767, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0007", + "name": "tree_0007", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -4.9644, + 0, + -12.5605 + ], + "rotation": [ + 0, + 3.9303, + 0 + ], + "scale": [ + 0.9106, + 0.9106, + 0.9106 + ] + }, + "tint": [ + 1.029, + 1.0312, + 0.8163, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0008", + "name": "tree_0008", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -8.5366, + 0.3856, + -34.9198 + ], + "rotation": [ + 0, + 2.0432, + 0 + ], + "scale": [ + 1.1742, + 1.1742, + 1.1742 + ] + }, + "tint": [ + 1.072, + 1.0425, + 0.7745, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0009", + "name": "tree_0009", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 11.8142, + -0.1044, + 16.5356 + ], + "rotation": [ + 0, + 2.6796, + 0 + ], + "scale": [ + 0.8921, + 0.8921, + 0.8921 + ] + }, + "tint": [ + 1.0566, + 1.0687, + 0.8617, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0010", + "name": "tree_0010", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -32.4468, + 2.4242, + 23.1912 + ], + "rotation": [ + 0, + 5.2413, + 0 + ], + "scale": [ + 1.0198, + 1.0198, + 1.0198 + ] + }, + "tint": [ + 0.917, + 0.9858, + 0.887, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0011", + "name": "tree_0011", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 35.192, + 0.2989, + -5.3711 + ], + "rotation": [ + 0, + 3.391, + 0 + ], + "scale": [ + 1.0409, + 1.0409, + 1.0409 + ] + }, + "tint": [ + 1.0138, + 1.0164, + 0.8052, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0012", + "name": "tree_0012", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -26.3522, + 1.2703, + -35.493 + ], + "rotation": [ + 0, + 1.685, + 0 + ], + "scale": [ + 1.3416, + 1.3416, + 1.3416 + ] + }, + "tint": [ + 0.9492, + 0.9855, + 0.8347, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0013", + "name": "tree_0013", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 27.899, + 0.099, + 3.346 + ], + "rotation": [ + 0, + 1.7554, + 0 + ], + "scale": [ + 0.927, + 0.927, + 0.927 + ] + }, + "tint": [ + 0.9163, + 0.973, + 0.8575, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0014", + "name": "tree_0014", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -11.8528, + 0, + 4.6423 + ], + "rotation": [ + 0, + 0.5244, + 0 + ], + "scale": [ + 0.8967, + 0.8967, + 0.8967 + ] + }, + "tint": [ + 0.9886, + 0.991, + 0.7849, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0015", + "name": "tree_0015", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 10.0181, + 0.5628, + -25.8208 + ], + "rotation": [ + 0, + 1.9481, + 0 + ], + "scale": [ + 1.0818, + 1.0818, + 1.0818 + ] + }, + "tint": [ + 1.0033, + 0.9723, + 0.7167, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0016", + "name": "tree_0016", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -24.2974, + 0.5636, + 0.1012 + ], + "rotation": [ + 0, + 5.0932, + 0 + ], + "scale": [ + 1.3548, + 1.3548, + 1.3548 + ] + }, + "tint": [ + 1.013, + 1.0341, + 0.8488, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0017", + "name": "tree_0017", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -22.652, + 0.8484, + -29.3878 + ], + "rotation": [ + 0, + 2.1917, + 0 + ], + "scale": [ + 1.1507, + 1.1507, + 1.1507 + ] + }, + "tint": [ + 0.9065, + 0.968, + 0.8612, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0018", + "name": "tree_0018", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 0.98, + 0.0662, + -27.5737 + ], + "rotation": [ + 0, + 0.4823, + 0 + ], + "scale": [ + 1.0345, + 1.0345, + 1.0345 + ] + }, + "tint": [ + 0.963, + 0.9551, + 0.7403, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0019", + "name": "tree_0019", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 30.0245, + 0.8214, + 18.6124 + ], + "rotation": [ + 0, + 4.7264, + 0 + ], + "scale": [ + 0.8823, + 0.8823, + 0.8823 + ] + }, + "tint": [ + 0.9654, + 0.9977, + 0.838, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0020", + "name": "tree_0020", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -33.5049, + 2.1524, + 19.0379 + ], + "rotation": [ + 0, + 0.081, + 0 + ], + "scale": [ + 1.2188, + 1.2188, + 1.2188 + ] + }, + "tint": [ + 0.9145, + 0.9738, + 0.8623, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0021", + "name": "tree_0021", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -29.0914, + 1.3958, + 7.1714 + ], + "rotation": [ + 0, + 2.4327, + 0 + ], + "scale": [ + 0.8947, + 0.8947, + 0.8947 + ] + }, + "tint": [ + 1.1003, + 1.0758, + 0.8087, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0022", + "name": "tree_0022", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -7.6165, + 0, + 2.9723 + ], + "rotation": [ + 0, + 5.8917, + 0 + ], + "scale": [ + 1.1885, + 1.1885, + 1.1885 + ] + }, + "tint": [ + 0.8982, + 0.9622, + 0.8607, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0023", + "name": "tree_0023", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -2.1655, + 0, + -15.2198 + ], + "rotation": [ + 0, + 5.4326, + 0 + ], + "scale": [ + 0.9015, + 0.9015, + 0.9015 + ] + }, + "tint": [ + 0.9747, + 0.9784, + 0.7771, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0025", + "name": "tree_0025", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 19.5378, + 0.3064, + 33.5428 + ], + "rotation": [ + 0, + 2.224, + 0 + ], + "scale": [ + 1.2602, + 1.2602, + 1.2602 + ] + }, + "tint": [ + 1.0433, + 1.0678, + 0.8808, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0026", + "name": "tree_0026", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 28.1631, + 0.4647, + 16.6417 + ], + "rotation": [ + 0, + 4.0031, + 0 + ], + "scale": [ + 0.9019, + 0.9019, + 0.9019 + ] + }, + "tint": [ + 0.9782, + 1.026, + 0.885, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0027", + "name": "tree_0027", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -19.7816, + 0.5423, + -24.1365 + ], + "rotation": [ + 0, + 5.4975, + 0 + ], + "scale": [ + 1.0475, + 1.0475, + 1.0475 + ] + }, + "tint": [ + 0.9793, + 1.0342, + 0.9028, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0028", + "name": "tree_0028", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.5785, + 0, + 1.0197 + ], + "rotation": [ + 0, + 3.6553, + 0 + ], + "scale": [ + 1.4063, + 1.4063, + 1.4063 + ] + }, + "tint": [ + 0.9391, + 0.9927, + 0.8681, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0029", + "name": "tree_0029", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -5.7408, + 0, + -3.4074 + ], + "rotation": [ + 0, + 2.2198, + 0 + ], + "scale": [ + 0.9398, + 0.9398, + 0.9398 + ] + }, + "tint": [ + 0.974, + 0.9757, + 0.7717, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0030", + "name": "tree_0030", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -4.2822, + 0.3254, + 32.3875 + ], + "rotation": [ + 0, + 4.1674, + 0 + ], + "scale": [ + 1.0121, + 1.0121, + 1.0121 + ] + }, + "tint": [ + 0.9442, + 0.9729, + 0.8127, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0031", + "name": "tree_0031", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 23.5672, + 1.9041, + -32.9955 + ], + "rotation": [ + 0, + 0.8638, + 0 + ], + "scale": [ + 0.9395, + 0.9395, + 0.9395 + ] + }, + "tint": [ + 0.8922, + 0.9455, + 0.8303, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0033", + "name": "tree_0033", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -28.8637, + 0.4505, + -2.5951 + ], + "rotation": [ + 0, + 0.4329, + 0 + ], + "scale": [ + 1.046, + 1.046, + 1.046 + ] + }, + "tint": [ + 0.96, + 1.0295, + 0.9225, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0034", + "name": "tree_0034", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 29.2522, + 1.423, + 22.9079 + ], + "rotation": [ + 0, + 1.5453, + 0 + ], + "scale": [ + 1.3492, + 1.3492, + 1.3492 + ] + }, + "tint": [ + 1.0537, + 1.0353, + 0.7866, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0036", + "name": "tree_0036", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.8597, + 0.4677, + -29.1272 + ], + "rotation": [ + 0, + 5.3716, + 0 + ], + "scale": [ + 1.1254, + 1.1254, + 1.1254 + ] + }, + "tint": [ + 1.017, + 1.0503, + 0.881, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0037", + "name": "tree_0037", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 27.3748, + 3.1742, + -23.1725 + ], + "rotation": [ + 0, + 3.2344, + 0 + ], + "scale": [ + 1.2499, + 1.2499, + 1.2499 + ] + }, + "tint": [ + 0.9222, + 0.9578, + 0.8119, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0038", + "name": "tree_0038", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 27.0408, + 0.2139, + -0.1241 + ], + "rotation": [ + 0, + 5.5441, + 0 + ], + "scale": [ + 1.2744, + 1.2744, + 1.2744 + ] + }, + "tint": [ + 0.9753, + 1.0083, + 0.8473, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0039", + "name": "tree_0039", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 29.1308, + 0.104, + 3.0387 + ], + "rotation": [ + 0, + 0.4886, + 0 + ], + "scale": [ + 1.3858, + 1.3858, + 1.3858 + ] + }, + "tint": [ + 0.9632, + 1.0225, + 0.9008, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0040", + "name": "tree_0040", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -24.7026, + 3.013, + 28.3747 + ], + "rotation": [ + 0, + 2.3829, + 0 + ], + "scale": [ + 1.1512, + 1.1512, + 1.1512 + ] + }, + "tint": [ + 0.9377, + 0.9854, + 0.853, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0041", + "name": "tree_0041", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -35.9278, + 1.4701, + 27.5095 + ], + "rotation": [ + 0, + 2.0094, + 0 + ], + "scale": [ + 1.2911, + 1.2911, + 1.2911 + ] + }, + "tint": [ + 1.0342, + 1.0307, + 0.8069, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0042", + "name": "tree_0042", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 16.8928, + 0.152, + -5.2889 + ], + "rotation": [ + 0, + 1.4766, + 0 + ], + "scale": [ + 1.1661, + 1.1661, + 1.1661 + ] + }, + "tint": [ + 0.9568, + 1.0284, + 0.9249, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0043", + "name": "tree_0043", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -2.0751, + 0, + -11.6529 + ], + "rotation": [ + 0, + 1.0298, + 0 + ], + "scale": [ + 0.861, + 0.861, + 0.861 + ] + }, + "tint": [ + 1.0382, + 1.027, + 0.7915, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0044", + "name": "tree_0044", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 31.93, + 0.9802, + 34.799 + ], + "rotation": [ + 0, + 2.6827, + 0 + ], + "scale": [ + 1.388, + 1.388, + 1.388 + ] + }, + "tint": [ + 0.9189, + 0.9872, + 0.8871, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0045", + "name": "tree_0045", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 13.8247, + 0.7178, + -32.0141 + ], + "rotation": [ + 0, + 0.1985, + 0 + ], + "scale": [ + 1.3166, + 1.3166, + 1.3166 + ] + }, + "tint": [ + 0.9158, + 0.9633, + 0.835, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0046", + "name": "tree_0046", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 25.2256, + 1.0965, + -8.6697 + ], + "rotation": [ + 0, + 0.4642, + 0 + ], + "scale": [ + 1.1532, + 1.1532, + 1.1532 + ] + }, + "tint": [ + 0.902, + 0.9477, + 0.8199, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0048", + "name": "tree_0048", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -16.4692, + 2.1632, + 29.5698 + ], + "rotation": [ + 0, + 0.4386, + 0 + ], + "scale": [ + 1.1839, + 1.1839, + 1.1839 + ] + }, + "tint": [ + 1.0551, + 1.0393, + 0.7939, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0050", + "name": "tree_0050", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 3.2128, + 0, + -5.5341 + ], + "rotation": [ + 0, + 2.4138, + 0 + ], + "scale": [ + 1.0564, + 1.0564, + 1.0564 + ] + }, + "tint": [ + 1.0144, + 1.0565, + 0.8998, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0051", + "name": "tree_0051", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -15.2387, + 0.5879, + -34.3091 + ], + "rotation": [ + 0, + 3.8593, + 0 + ], + "scale": [ + 1.4057, + 1.4057, + 1.4057 + ] + }, + "tint": [ + 0.9628, + 0.9548, + 0.7397, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0052", + "name": "tree_0052", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -30.3728, + 2.5849, + 26.9765 + ], + "rotation": [ + 0, + 0.0838, + 0 + ], + "scale": [ + 1.0287, + 1.0287, + 1.0287 + ] + }, + "tint": [ + 1.1203, + 1.0804, + 0.7878, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0053", + "name": "tree_0053", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -33.6044, + 0.7769, + 35.8362 + ], + "rotation": [ + 0, + 2.8449, + 0 + ], + "scale": [ + 0.9385, + 0.9385, + 0.9385 + ] + }, + "tint": [ + 0.9252, + 0.9634, + 0.8204, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0054", + "name": "tree_0054", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -10.038, + 0, + 4.034 + ], + "rotation": [ + 0, + 1.4914, + 0 + ], + "scale": [ + 0.9685, + 0.9685, + 0.9685 + ] + }, + "tint": [ + 0.9894, + 1.0578, + 0.9429, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0055", + "name": "tree_0055", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 28.7937, + 0.3136, + -2.6095 + ], + "rotation": [ + 0, + 1.7838, + 0 + ], + "scale": [ + 0.9286, + 0.9286, + 0.9286 + ] + }, + "tint": [ + 1.0783, + 1.0719, + 0.8345, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0056", + "name": "tree_0056", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 15.7455, + -0.046, + 34.4062 + ], + "rotation": [ + 0, + 5.6963, + 0 + ], + "scale": [ + 1.0092, + 1.0092, + 1.0092 + ] + }, + "tint": [ + 0.9876, + 0.9652, + 0.7249, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0057", + "name": "tree_0057", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 31.1733, + 1.8447, + -15.3219 + ], + "rotation": [ + 0, + 2.6135, + 0 + ], + "scale": [ + 1.4291, + 1.4291, + 1.4291 + ] + }, + "tint": [ + 0.934, + 0.9884, + 0.866, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0058", + "name": "tree_0058", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 4.8675, + 0, + -4.7072 + ], + "rotation": [ + 0, + 6.2642, + 0 + ], + "scale": [ + 0.9537, + 0.9537, + 0.9537 + ] + }, + "tint": [ + 0.9874, + 1.0473, + 0.9211, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0059", + "name": "tree_0059", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -31.0816, + 1.0671, + 35.8193 + ], + "rotation": [ + 0, + 5.9273, + 0 + ], + "scale": [ + 1.0325, + 1.0325, + 1.0325 + ] + }, + "tint": [ + 0.9673, + 1.0316, + 0.9157, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0060", + "name": "tree_0060", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 4.2309, + 0, + 3.7579 + ], + "rotation": [ + 0, + 1.722, + 0 + ], + "scale": [ + 1.1194, + 1.1194, + 1.1194 + ] + }, + "tint": [ + 0.9664, + 1.0391, + 0.935, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0061", + "name": "tree_0061", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 12.0198, + -0.1143, + 7.7744 + ], + "rotation": [ + 0, + 5.643, + 0 + ], + "scale": [ + 1.1238, + 1.1238, + 1.1238 + ] + }, + "tint": [ + 0.9458, + 0.9748, + 0.8147, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0062", + "name": "tree_0062", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 30.8185, + 2.8044, + -22.9827 + ], + "rotation": [ + 0, + 3.0544, + 0 + ], + "scale": [ + 1.2301, + 1.2301, + 1.2301 + ] + }, + "tint": [ + 1.0196, + 1.017, + 0.7973, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0064", + "name": "tree_0064", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -16.0414, + 2.1612, + 28.5646 + ], + "rotation": [ + 0, + 2.5554, + 0 + ], + "scale": [ + 1.1331, + 1.1331, + 1.1331 + ] + }, + "tint": [ + 0.9727, + 1.0053, + 0.8445, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0065", + "name": "tree_0065", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 35.0229, + 2.0214, + -23.2803 + ], + "rotation": [ + 0, + 0.9729, + 0 + ], + "scale": [ + 1.4264, + 1.4264, + 1.4264 + ] + }, + "tint": [ + 0.9833, + 1.0536, + 0.9428, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0066", + "name": "tree_0066", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 20.1574, + 0.1008, + 3.6431 + ], + "rotation": [ + 0, + 2.8745, + 0 + ], + "scale": [ + 1.1498, + 1.1498, + 1.1498 + ] + }, + "tint": [ + 0.9997, + 0.9809, + 0.7431, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0067", + "name": "tree_0067", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -35.9244, + 0.6679, + 3.4179 + ], + "rotation": [ + 0, + 3.0221, + 0 + ], + "scale": [ + 1.3649, + 1.3649, + 1.3649 + ] + }, + "tint": [ + 0.9515, + 1.0231, + 0.9206, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0068", + "name": "tree_0068", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 27.45, + 2.3833, + -31.3455 + ], + "rotation": [ + 0, + 1.8276, + 0 + ], + "scale": [ + 1.2674, + 1.2674, + 1.2674 + ] + }, + "tint": [ + 0.9464, + 0.9762, + 0.817, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0069", + "name": "tree_0069", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -22.686, + 0.9609, + 6.8375 + ], + "rotation": [ + 0, + 4.0885, + 0 + ], + "scale": [ + 1.3751, + 1.3751, + 1.3751 + ] + }, + "tint": [ + 0.9183, + 0.9552, + 0.8119, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0070", + "name": "tree_0070", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 1.726, + 0, + 1.6783 + ], + "rotation": [ + 0, + 4.9529, + 0 + ], + "scale": [ + 1.3268, + 1.3268, + 1.3268 + ] + }, + "tint": [ + 0.9779, + 1.0352, + 0.9073, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0071", + "name": "tree_0071", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -33.4992, + 0.3751, + -24.7338 + ], + "rotation": [ + 0, + 1.5075, + 0 + ], + "scale": [ + 1.2232, + 1.2232, + 1.2232 + ] + }, + "tint": [ + 0.992, + 1.0453, + 0.9089, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0072", + "name": "tree_0072", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 16.9386, + 0.4767, + -9.7217 + ], + "rotation": [ + 0, + 1.8369, + 0 + ], + "scale": [ + 0.9973, + 0.9973, + 0.9973 + ] + }, + "tint": [ + 0.954, + 1.0064, + 0.8769, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0073", + "name": "tree_0073", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + -1.8706, + 0.2123, + -32.3212 + ], + "rotation": [ + 0, + 0.6972, + 0 + ], + "scale": [ + 1.1927, + 1.1927, + 1.1927 + ] + }, + "tint": [ + 0.8966, + 0.944, + 0.8199, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0074", + "name": "tree_0074", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -5.1799, + 0.0928, + -21.8228 + ], + "rotation": [ + 0, + 2.8767, + 0 + ], + "scale": [ + 1.389, + 1.389, + 1.389 + ] + }, + "tint": [ + 0.8847, + 0.9507, + 0.8549, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0075", + "name": "tree_0075", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -17.6801, + 2.1142, + 19.9855 + ], + "rotation": [ + 0, + 4.4312, + 0 + ], + "scale": [ + 1.2117, + 1.2117, + 1.2117 + ] + }, + "tint": [ + 0.9464, + 0.9594, + 0.7769, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0076", + "name": "tree_0076", + "modelRef": "assets/models/prop_tree.glb", + "prefabRef": null, + "transform": { + "position": [ + 5.3077, + -0.1741, + 25.9049 + ], + "rotation": [ + 0, + 2.0286, + 0 + ], + "scale": [ + 1.1225, + 1.1225, + 1.1225 + ] + }, + "tint": [ + 0.9796, + 1.039, + 0.9138, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0077", + "name": "tree_0077", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 30.5631, + 2.3599, + -18.0096 + ], + "rotation": [ + 0, + 5.4812, + 0 + ], + "scale": [ + 1.3035, + 1.3035, + 1.3035 + ] + }, + "tint": [ + 0.951, + 1.0054, + 0.8793, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0078", + "name": "tree_0078", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 14.1407, + -0.1877, + 30.2028 + ], + "rotation": [ + 0, + 4.8182, + 0 + ], + "scale": [ + 0.8706, + 0.8706, + 0.8706 + ] + }, + "tint": [ + 1.0489, + 1.0572, + 0.8466, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0079", + "name": "tree_0079", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 3.2634, + 0.0557, + -27.3141 + ], + "rotation": [ + 0, + 2.5312, + 0 + ], + "scale": [ + 0.8709, + 0.8709, + 0.8709 + ] + }, + "tint": [ + 1.0098, + 1.0568, + 0.908, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0080", + "name": "tree_0080", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 27.4921, + 3.0362, + -26.8244 + ], + "rotation": [ + 0, + 4.7393, + 0 + ], + "scale": [ + 0.8605, + 0.8605, + 0.8605 + ] + }, + "tint": [ + 0.9116, + 0.9801, + 0.882, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0081", + "name": "tree_0081", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 23.3894, + 0.2699, + -0.229 + ], + "rotation": [ + 0, + 2.3388, + 0 + ], + "scale": [ + 1.124, + 1.124, + 1.124 + ] + }, + "tint": [ + 0.9334, + 1.0013, + 0.8977, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0082", + "name": "tree_0082", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 18.4775, + 0.4726, + -7.6303 + ], + "rotation": [ + 0, + 5.4476, + 0 + ], + "scale": [ + 1.1535, + 1.1535, + 1.1535 + ] + }, + "tint": [ + 0.9857, + 0.9916, + 0.7911, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0083", + "name": "tree_0083", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -18.249, + 0.7206, + -30.7241 + ], + "rotation": [ + 0, + 4.2267, + 0 + ], + "scale": [ + 1.0299, + 1.0299, + 1.0299 + ] + }, + "tint": [ + 0.8985, + 0.9564, + 0.8462, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0084", + "name": "tree_0084", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + 2.3334, + 0.0979, + -32.5137 + ], + "rotation": [ + 0, + 2.9674, + 0 + ], + "scale": [ + 1.2321, + 1.2321, + 1.2321 + ] + }, + "tint": [ + 0.9725, + 0.9917, + 0.8124, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0085", + "name": "tree_0085", + "modelRef": "assets/models/prop_tree2.glb", + "prefabRef": null, + "transform": { + "position": [ + -12.3554, + 1.1604, + 34.0158 + ], + "rotation": [ + 0, + 2.7333, + 0 + ], + "scale": [ + 1.1065, + 1.1065, + 1.1065 + ] + }, + "tint": [ + 0.979, + 1.0276, + 0.8876, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0086", + "name": "tree_0086", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -25.99, + 3.0921, + 27.2436 + ], + "rotation": [ + 0, + 5.3452, + 0 + ], + "scale": [ + 0.8677, + 0.8677, + 0.8677 + ] + }, + "tint": [ + 0.9581, + 1.0269, + 0.9194, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0087", + "name": "tree_0087", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + -2.2233, + 0, + 5.1861 + ], + "rotation": [ + 0, + 6.162, + 0 + ], + "scale": [ + 1.0256, + 1.0256, + 1.0256 + ] + }, + "tint": [ + 0.9795, + 1.0496, + 0.9392, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + }, + { + "id": "tree_0088", + "name": "tree_0088", + "modelRef": "assets/models/prop_tree3.glb", + "prefabRef": null, + "transform": { + "position": [ + 7.5562, + 0.2826, + -21.5524 + ], + "rotation": [ + 0, + 5.4165, + 0 + ], + "scale": [ + 1.0004, + 1.0004, + 1.0004 + ] + }, + "tint": [ + 0.9497, + 1.0187, + 0.913, + 1 + ], + "tags": [ + "prop", + "tree" + ], + "userData": { + "kind": "prop_tree" + } + } + ], + "lights": [ + { + "id": "light_plaza_n", + "name": "light_plaza_n", + "kind": "point", + "position": [ + 0, + 5, + -20 + ], + "color": [ + 1, + 0.85, + 0.55 + ], + "intensity": 1, + "range": 22 + }, + { + "id": "light_plaza_s", + "name": "light_plaza_s", + "kind": "point", + "position": [ + 0, + 5, + 20 + ], + "color": [ + 1, + 0.85, + 0.55 + ], + "intensity": 1, + "range": 22 + }, + { + "id": "light_hill_ne", + "name": "light_hill_ne", + "kind": "point", + "position": [ + 26, + 5, + -24 + ], + "color": [ + 0.95, + 0.75, + 0.45 + ], + "intensity": 0.8, + "range": 18 + }, + { + "id": "light_house_g1", + "name": "light_house_g1", + "kind": "point", + "position": [ + -28.0, + 2.9, + -13.0 + ], + "color": [ + 0.98, + 0.87, + 0.62 + ], + "intensity": 2.4, + "range": 14 + }, + { + "id": "light_house_g2", + "name": "light_house_g2", + "kind": "point", + "position": [ + -15.0, + 2.9, + -10.0 + ], + "color": [ + 0.98, + 0.87, + 0.62 + ], + "intensity": 2.2, + "range": 13 + }, + { + "id": "light_house_f1", + "name": "light_house_f1", + "kind": "point", + "position": [ + -21.0, + 6.4, + -13.0 + ], + "color": [ + 0.85, + 0.9, + 1.0 + ], + "intensity": 2.0, + "range": 15 + }, + { + "id": "light_house_porch_s", + "name": "light_house_porch_s", + "kind": "point", + "position": [ + -21.0, + 3.3, + -4.0 + ], + "color": [ + 1.0, + 0.8, + 0.5 + ], + "intensity": 1.6, + "range": 9 + } + ], + "water": [ + { + "id": "river", + "kind": "box", + "center": [ + 0, + 0, + 12 + ], + "size": [ + 80, + 1, + 5 + ], + "surfaceHeight": 0.05, + "color": [ + 0.2, + 0.42, + 0.62, + 0.75 + ], + "waveAmplitude": 0.05, + "waveSpeed": 1.4 + } + ], + "rivers": [], + "metadata": { + "gameId": "shooter" + } +} diff --git a/src/tests/self-tests.ts b/src/tests/self-tests.ts index 4cfc669..07a0c88 100644 --- a/src/tests/self-tests.ts +++ b/src/tests/self-tests.ts @@ -3,8 +3,10 @@ // pass/fail summary; runSelfTests returns the failure count. import { WorldData, PrefabData, WaterVolume, createEmptyWorld, createEntity } from 'bloom/world'; -import { validateWorld, validatePrefab } from 'bloom/world'; -import { migrateWorldData } from 'bloom/world'; +import { validateWorld, validatePrefab, listUnknownWorldFields } from 'bloom/world'; +import { migrateWorldData, WORLD_SCHEMA_VERSION } from 'bloom/world'; +import { loadWorld, saveWorld, loadPrefab, savePrefab, createEmptyPrefab } from 'bloom/world'; +import { readFile } from 'bloom'; import { buildHeightmapMesh, sampleHeight, defaultTerrain } from 'bloom/world'; import { createTerrainLayer, quantizeWeight, terrainLayerMaskColor } from 'bloom/world'; import { expandPrefab, createPrefabRegistry, registerPrefab, PrefabLeaf } from 'bloom/world'; @@ -43,7 +45,9 @@ export function runSelfTests(): number { passed = 0; failed = 0; - testWorldRoundTrip(); + testWorldFileRoundTrip(); + testPrefabFileRoundTrip(); + testUnknownFieldDetection(); testValidation(); testTerrainBilinearSample(); testPrefabCycleDetection(); @@ -66,37 +70,164 @@ export function runSelfTests(): number { return failed; } -/// ⚠️ THIS TEST DOES NOT TEST THE SAVE PATH. Read before trusting its green tick. -/// -/// It builds a SYNTHETIC 2-entity world and round-trips it with `JSON.stringify` -/// — which is (a) not what saving does (`saveWorld` → `serialize.ts` hand-writes -/// the text) and (b) the exact idiom `docs/perry-quirks.md` #6 says CORRUPTS a -/// parsed graph, i.e. the bug that made `saveWorld` write 0 bytes and report OK. -/// -/// So this passes by construction on a small fresh object, while covering none of -/// the thing that actually broke. That is worse than no test: it is a green check -/// over the exact hole. -/// -/// PLAN §K1 is the real work and is still OUTSTANDING: load -/// `../shooter/assets/worlds/arena_01|02.world.json`, save them through -/// `saveWorld`, and deep-compare. Per §K1's own wording, any normalisation the -/// saver applies is a bug to fix, not a tolerance to add. No fixture exists yet. -function testWorldRoundTrip(): void { - const world = createEmptyWorld('test', 'Test World'); - world.entities.push(createEntity('ent_1', 'models/tree.glb', [5, 0, 3])); - world.entities.push(createEntity('ent_2', 'models/rock.glb', [-2, 0, 7])); - world.terrain = defaultTerrain(); - - const json = JSON.stringify(world); - const parsed = JSON.parse(json) as WorldData; - - assert(parsed.schemaVersion === world.schemaVersion, 'roundtrip: schemaVersion'); - assert(parsed.name === 'Test World', 'roundtrip: name'); - assert(parsed.entities.length === 2, 'roundtrip: entity count'); - assert(parsed.entities[0].id === 'ent_1', 'roundtrip: entity id'); - assert(parsed.entities[1].transform.position[2] === 7, 'roundtrip: position z'); - assert(parsed.terrain !== null, 'roundtrip: terrain not null'); - assert(parsed.terrain!.width === 128, 'roundtrip: terrain width'); +// --- The real round-trip test (PLAN §K1) --------------------------------------- +// +// This replaces a synthetic test that round-tripped a small fresh object through +// `JSON.stringify` — the exact idiom that corrupts a parsed graph on Perry 0.5.x +// (perry-quirks #6), and not the code path saving actually uses. It was a green +// tick over the exact hole. +// +// This one exercises the REAL path on the REAL worlds: fixture copies of both +// shooter arenas (checked in under fixtures/, both schema v2 so no migration +// noise) go loadWorld → saveWorld → JSON.parse both → structural deep-compare. +// Any difference — a dropped field, a normalised number, a reordered array — +// is a saver bug to fix, not a tolerance to add. Text formatting is allowed to +// differ (the arenas were written by shooter tools with a different pretty- +// printer); parsed VALUES are not. + +// Structural equality of two parsed-JSON values. Records dotted paths of the +// first few differences into `diffs` so a failure says WHERE, not just "false". +function deepJsonEqual(a: unknown, b: unknown, path: string, diffs: string[]): void { + if (diffs.length >= 8) return; // enough to diagnose; don't flood the console + + if (a === null || b === null) { + if (a !== b) diffs.push(path + ': ' + (a === null ? 'null vs value' : 'value vs null')); + return; + } + + const ta = typeof a; + const tb = typeof b; + if (ta !== tb) { + diffs.push(path + ': type ' + ta + ' vs ' + tb); + return; + } + + if (ta === 'number' || ta === 'string' || ta === 'boolean') { + if (a !== b) diffs.push(path + ': ' + a + ' vs ' + b); + return; + } + + if (Array.isArray(a) || Array.isArray(b)) { + if (!Array.isArray(a) || !Array.isArray(b)) { + diffs.push(path + ': array vs object'); + return; + } + if (a.length !== b.length) { + diffs.push(path + ': length ' + a.length + ' vs ' + b.length); + return; + } + for (let i = 0; i < a.length; i++) { + deepJsonEqual(a[i], b[i], path + '[' + i + ']', diffs); + if (diffs.length >= 8) return; + } + return; + } + + // Plain objects. Key sets must match in both directions. + const ka = Object.keys(a as Record); + const kb = Object.keys(b as Record); + for (let i = 0; i < ka.length; i++) { + if (kb.indexOf(ka[i]) < 0) diffs.push(path + '.' + ka[i] + ': missing in saved output'); + } + for (let i = 0; i < kb.length; i++) { + if (ka.indexOf(kb[i]) < 0) diffs.push(path + '.' + kb[i] + ': added by saver'); + } + if (diffs.length >= 8) return; + for (let i = 0; i < ka.length; i++) { + if (kb.indexOf(ka[i]) >= 0) { + deepJsonEqual( + (a as Record)[ka[i]], + (b as Record)[ka[i]], + path + '.' + ka[i], + diffs, + ); + if (diffs.length >= 8) return; + } + } +} + +function roundTripWorldFixture(fixturePath: string, label: string): void { + const original = readFile(fixturePath); + if (!original || original.length === 0) { + assert(false, 'roundtrip ' + label + ': fixture readable (' + fixturePath + ') — run from the editor root'); + return; + } + + const world = loadWorld(fixturePath); + const outPath = '__selftest_' + label + '.out.json'; + const saved = saveWorld(outPath, world); + assert(saved.ok, 'roundtrip ' + label + ': saveWorld reports ok'); + if (!saved.ok) return; + + const written = readFile(outPath); + // The historical failure mode: writeFile wrote 0 bytes and reported success. + assert(written !== null && written.length > 0, 'roundtrip ' + label + ': saved file is not empty'); + if (!written || written.length === 0) return; + + const a = JSON.parse(original); + const b = JSON.parse(written); + const diffs: string[] = []; + deepJsonEqual(a, b, 'world', diffs); + for (let i = 0; i < diffs.length; i++) { + console.log(' roundtrip ' + label + ' diff: ' + diffs[i]); + } + assert(diffs.length === 0, 'roundtrip ' + label + ': load->save is semantically lossless'); +} + +function testWorldFileRoundTrip(): void { + roundTripWorldFixture('src/tests/fixtures/arena_01.world.json', 'arena_01'); + roundTripWorldFixture('src/tests/fixtures/arena_02.world.json', 'arena_02'); +} + +// Prefab save->load round-trip. Pins the 2026-07-15 fix: serializePrefab used to +// drop schemaVersion and bounds entirely (bounds came back undefined; the version +// was silently backfilled by migration, hiding the loss). +function testPrefabFileRoundTrip(): void { + const p = createEmptyPrefab('rt_prefab', 'RT Prefab'); + assert(p.schemaVersion === WORLD_SCHEMA_VERSION, + 'prefab rt: createEmptyPrefab stamps the CURRENT schema version'); + + p.bounds = { min: [-1, -2, -3], max: [4, 5, 6] }; + p.children.push({ + id: 'c0', modelRef: 'wall.glb', prefabRef: null, + transform: { position: [1, 0, 2], rotation: [0, 0.5, 0], scale: [2, 1, 1] }, + tint: [1, 0.5, 0.25, 1], tags: ['wall'], + }); + + const outPath = '__selftest_prefab.out.json'; + const saved = savePrefab(outPath, p); + assert(saved.ok, 'prefab rt: savePrefab reports ok'); + if (!saved.ok) return; + + const back = loadPrefab(outPath); + assert(back.schemaVersion === WORLD_SCHEMA_VERSION, 'prefab rt: schemaVersion survives the round trip'); + assert(back.bounds !== null && back.bounds !== undefined, 'prefab rt: bounds survives the round trip'); + assert(back.bounds.min[0] === -1 && back.bounds.max[2] === 6, 'prefab rt: bounds values intact'); + assert(back.children.length === 1, 'prefab rt: child count'); + assert(back.children[0].modelRef === 'wall.glb', 'prefab rt: child modelRef'); + assert(back.children[0].tint !== null && back.children[0].tint![1] === 0.5, 'prefab rt: child tint'); + assert(back.children[0].tags.length === 1 && back.children[0].tags[0] === 'wall', 'prefab rt: child tags'); + assert(back.children[0].transform.rotation[1] === 0.5, 'prefab rt: child rotation'); +} + +// The editor cannot preserve fields it doesn't know (the saver is schema- +// explicit by literal key), so the contract is: detect them at load and warn. +// A world that came out of createEmptyWorld must list NOTHING — a false +// positive here would spam every load with bogus warnings. +function testUnknownFieldDetection(): void { + const clean = createEmptyWorld('t', 'T'); + assert(listUnknownWorldFields(clean).length === 0, 'unknown fields: clean world lists none'); + + const w = createEmptyWorld('t2', 'T2') as any; + w.navmesh = { cells: [1, 2, 3] }; // top-level extension + const e = createEntity('e1', 'a.glb', [0, 0, 0]) as any; + e.lootTable = 'common'; // entity-level extension + w.entities.push(e); + + const unknown = listUnknownWorldFields(w as WorldData); + assert(unknown.length === 2, 'unknown fields: both extensions detected (got ' + unknown.length + ')'); + assert(unknown.indexOf('world.navmesh') >= 0, 'unknown fields: top-level path reported'); + assert(unknown.indexOf('world.entities[0].lootTable') >= 0, 'unknown fields: entity path reported'); } function testValidation(): void {