diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index 0dac07c0..d8c9a398 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -522,6 +522,11 @@ the `all` path the Vulcanus DAG is evaluated four times per pixel region. > the root cause. The tables in the first two are the **pre-fix** state, kept > because the reasoning that got from one to the other is the useful part. The > current figures are in "ROOT CAUSE: `cliff_smoothing`". +> +> **And read "The residual is in the RULE, not the fields" at the end of this +> file before spending any time on field accuracy.** Substituting the game's own +> `elevation` and `cliffiness` for ours does not move a single placed cell, so +> the residual this section chases is not in the fields. **Superseded the "Not validated" section below.** `test/vulcanusCliffEntities.spec.ts` now compares the port against every real `cliff-vulcanus` the game places, captured @@ -704,3 +709,174 @@ positions. That capture is the obvious next step and is the same shape as `captureCliffEntities` in `test/oracle/capture.ts`, pointed at a Vulcanus surface. + +## The residual is in the RULE, not the fields - measured 2026-07-29 + +Everything above, and all of #18, treats the Vulcanus cliff gap as a **field +accuracy** problem: the noise field matches to 5e-6, the constants are read from +the game, so the ~1.15-1.19x over-placement must be residual field error +somewhere. **That is wrong, and it is now measured rather than argued.** + +`test/oracle/capture.ts vulcanus-cliff-corner-fields` dumps the game's own +`vulcanus_elevation` and `cliffiness_basic` at every corner of the placement +lattice (`(i*4, j*4 + 0.5)`) over three calcite-dominated 256x256 regions - +12,675 corners. Feeding those values straight into our own +`makeCliffPlacementFromFields` instead of our fields: + +| region | interior cells | TP | FP | FN | precision | recall | +| --- | --- | --- | --- | --- | --- | --- | +| `[1500,1500]` | 3844 | 706 | 290 | 90 | 0.709 | 0.887 | +| `[1100,2600]` | 3844 | 720 | 199 | 86 | 0.783 | 0.893 | +| `[-1700,1900]` | 3844 | 744 | 156 | 123 | 0.827 | 0.858 | + +and the placed cell set is **identical, cell for cell, to the one our own fields +produce**. Not one cell flips in any of the three regions. + +That is exactly what an accurate field predicts, and it is worth doing the +arithmetic so the result does not read as suspicious: a cell can only flip if a +corner's elevation sits within the field error of a band boundary. At ~5e-6 +relative error against 120-wide bands, over ~14k corner reads, the expected +number of flips is ~2e-4. Zero is the expected answer. + +So the port's Vulcanus cliff **fields are exact for placement purposes**, and +17-29% of the cliff cells it places are wrong anyway, with 11-14% of the game's +missed. **The residual lives in the rule** - `crossingsForChunk`'s sampling +geometry, the `cliff_smoothing` knot model, `toMaybeCliffOrientation`, or +`fixImpossibleCells` - and #18 should be re-pointed there. + +`test/vulcanusOreCliffSeparation.spec.ts` pins this, including a `+3` elevation +bias control so the "identical" assertion cannot pass by the substitution +silently not happening (the bias moves tens of cells per region). + +### There is no ore/cliff exclusion in the engine - read out of the binary + +The other half of #24. Disassembled from the 2.1.12 arm64 slice (see +`cliffs-NOTES.md` for the lldb recipe): + +- `EntityMapGenerationTask::generateCliffs()` (`0x1016229b4`) calls exactly + three things: `CliffGenerator::crossingsForChunk`, + `CellCliffCrossing::toMaybeCliffOrientation` (inlined) and `tryToAddCliff`. + **No tile lookup, no entity lookup, no resource field.** +- `tryToAddCliff` (`0x101625038`) has one rejection path, `wouldCollide`, and it + is gated behind `mode == 2` (`ldrb w8, [x0, #0x10]; cmp w8, #0x2; b.ne`). +- `computeInternal` (`0x101622860`): `generateCliffs()`, then + `generateEntities()` three times, then `generateDecoratives()`. +- `apply` (`0x101623b48`): `applyCliffs()`, `applyDecoratives()`, + `applyEntities()`. `applyCliffs` does call `Surface::wouldCollide` and + `Entity::forceDestroy`, so a cliff can still be dropped at apply time - but + against tiles and already-generated neighbours, not against ore that does not + exist yet. + +There is no separate resource generation task: `nm | c++filt` lists +`BasicTilesMapGenerationTask`, `EntityMapGenerationTask` and +`TileCorrectionMapGenerationTask` and nothing else of the kind, so resources are +entities and they are generated after cliffs. + +**Cliff placement is therefore a pure function of `cliff_elevation` and +`cliffiness`.** There is no exclusion to port, and any "ore excluded from cliffs" +item (the M3a follow-up in `client-preview-ROADMAP.md`, #24's own second cause) +should be closed rather than implemented. + +Collision was already ruled out; both masks were re-read here rather than quoted +from the issue - cliff `{item, meltable, object, player, water_tile, +is_lower_object, is_object, cliff}`, resource `{resource}`. **Tiles cannot +separate them either**, which is worth recording because the ore patches really +do paint their own tile: `volcanic-jagged-ground`'s autoplace is +`5 * min(10, max(vulcanus_calcite_region + 0.2, ...))`, and +`tiles-vulcanus.lua` labels it "CLIFF TILE". Its mask is +`tile_collision_masks.ground()` = `{ground_tile}`, which the cliff mask does not +touch. Of the ~20 Vulcanus tiles only `lava` and `lava-hot` carry `water_tile`, +and `tile_collision_masks.lava()` also carries `resource`, so lava excludes both. + +### #24's "100x below chance" baseline does not hold + +The issue divides the observed overlap by a **tile-independence** baseline +(`ore tiles x cliff coverage / area`), which assumes each ore tile is an +independent trial. It is not: region `[0,0]`'s 945 ore tiles are **2 connected +blobs**, and `[-1200,800]`'s 1047 are **2**. + +The right null keeps the blobs and moves them - shift the whole ore tile set on +the region torus and re-measure. 500 shifts per region, over the three committed +regions plus six new ones (`test/oracle/capture.ts +vulcanus-ore-cliff-replication`, region list fixed before any was measured, and +the two that turned out to hold no ore are kept in the fixture rather than +dropped): + +| region | ore tiles | blobs | cliff cover | overlap | tile-indep. | shift median | P(shift <= obs) | +| --- | --- | --- | --- | --- | --- | --- | --- | +| `[0,0]` | 945 | 2 | 6.9% | 0 | 65 | 0 | **0.51** | +| `[1500,1500]` | 3933 | 25 | 21.6% | 8 | 850 | 789 | **0.000** | +| `[-1200,800]` | 1047 | 2 | 9.8% | 0 | 103 | 49 | **0.29** | +| `[700,-1800]` | 404 | 9 | 15.2% | 0 | 61 | 55 | 0.02 | +| `[-2400,-600]` | 597 | 3 | 12.9% | 1 | 77 | 58 | 0.19 | +| `[1100,2600]` | 3045 | 20 | 21.2% | 9 | 645 | 611 | **0.000** | +| `[-900,-2500]` | 904 | 4 | 15.9% | 0 | 144 | 110 | 0.18 | +| `[-1700,1900]` | 714 | 2 | 22.7% | 0 | 162 | 156 | 0.10 | +| `[300,3400]` | 944 | 8 | 2.0% | 0 | 19 | 0 | 0.73 | + +**The separation replicates** - 18 of 12,533 ore tiles pooled, 0.14%, with both +ore-rich regions outside 500 of 500 shifts. **But `[0,0]` and `[-1200,800]` were +never evidence for it**: half of all random placements of `[0,0]`'s blob also hit +zero cliffs. The previous write-up read their "ratio to chance 0.000" as the +strongest signal in the set; it is the weakest, and the "no cliff can exist below +70, so region 0 is explained by elevation" reading was explaining a +non-observation. + +### What is left open, stated as a contradiction rather than a cause + +Put the two halves together and they do not fit: + +- the binary says cliff placement cannot see ore; and +- the game's own `elevation` + `cliffiness`, through our rule, place **47** cliff + cells inside cells whose full 4x4 footprint is ore (172/130/29 such cells per + region, 8/38/1 placed) where the game placed **0**. + +A covariate-matched control says that is not the rule simply being worse on +volcano terrain: pairing each full-ore cell with up to three no-ore cells at the +same mean elevation (+/-25) and mean cliffiness (+/-0.1) in the same region, the +rule's precision on the controls is 0.79 / 1.02 / 2.00 (n = 443/387/69). So the +47 should have been ~47 real cliffs. Poisson P(0 | 47) ~ 4e-21. + +Since the binary reading is direct, the modelling of `crossingsForChunk` is the +suspect, and **a 4x4 cell fully inside a calcite patch is the sharpest test case +anyone has for #18**: our rule is wrong there ~100% of the time while being right +~78% of the time everywhere else. Four explanations for the localisation were +measured and **falsified** on 2026-07-29 - do not re-test them: + +1. **Elevation.** With the cliffiness gate forced open, the game's own corner + elevations give a band crossing in 40.5% / 34.3% / 50.0% of full-ore cells + against 42.7% / 37.3% / 34.0% of random cells in the same regions. Calcite + sits on band-crossing terrain at the background rate. (For coal and tungsten + the figure is 0.000 in four of five regions, and that is a real structural + result rather than a coincidence: `vulcanus_ashlands_func` is + `300 + 0.001 * min(basis, basis)`, i.e. flat 300, and the basalts branch tops + out near 120 against `cliff_elevation_0 = 70`. Coal and tungsten live on + terrain that cannot host a cliff at all. Calcite and the geysers live in the + mountains, with the cliffs, and are the only hard case.) +2. **Cliffiness.** The gate is `cliffinessAvg > 0.5` and `cliffiness_basic` + floors at exactly 0.5, so it is a hard binary gate over roughly half the map, + not a soft one. It is open at 14.9% of `[1500,1500]`'s full-ore cells against + 60.0% of random - but at **85.8%** of `[1100,2600]`'s against 64.0%, and 10.0% + at `[-1700,1900]`. It does not replicate in either direction, which is what a + coincidence looks like: `cliffiness_basic` is a `quick_multioctave_noise` at + `seed1 = 123`, `input_scale = 1/32`, with no dependence on any resource, + biome or elevation field, so there is no path by which ore could correlate + with it. **This one is worth naming as a near-miss** - in region 1 alone it + looked like a 3.8x mechanism, and one region would have been enough to write + it down as the answer. +3. **`fixImpossibleCells`.** On and off changes the full-ore predictions by 0 + (8/35/1 both ways on the interior-inset window). +4. **Steep or aliased terrain.** Full-ore cells' max corner-to-corner elevation + delta is p10/p50/p90 = 17/37/63 against 13/35/66 for no-ore cells - the same + distribution - and the rule's precision is 0.58-0.84 across every delta bin, + with no bin where it collapses. (This was the best remaining guess: the + mountains branch carries `200 * (aux - 0.5) * (mountain_volcano_spots + 0.5)` + and `vulcanus_aux` is a 5-tile-wavelength noise, so elevation there swings + ~150 between adjacent 4-tile corners. It swings the same amount off the ore.) + +One measured fact that is not a cause but is where a fifth hypothesis should +start: the false positives our rule produces **off** ore sit one cell from a real +cliff 78% of the time (93 of 120 at `[1100,2600]`) - they are edge-of-line +offsets along a real cliff face. The ones **inside** ore sit 2-5 cells away (4 of +37 at distance 1). They are not misaligned cliff lines; they are cliff faces the +game does not have at all. diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index 998c6c2e..a29c34b6 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -184,6 +184,10 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, + "oracle-vulcanus-cliff-corner-fields.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-07-29 by test/oracle/capture.ts vulcanus-cliff-corner-fields against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time" + }, "oracle-vulcanus-cliff-entities.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-07-28 by test/oracle/capture.ts vulcanus-cliff-entities against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time" @@ -208,6 +212,10 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, + "oracle-vulcanus-ore-cliff-replication.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-07-29 by test/oracle/capture.ts vulcanus-ore-cliff-replication against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time" + }, "oracle-vulcanus-resource-entities.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-07-28 by test/oracle/capture.ts vulcanus-resource-entities against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time" diff --git a/test/fixtures/oracle-vulcanus-cliff-corner-fields.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-corner-fields.seed123456.json new file mode 100644 index 00000000..d346dc7f --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-corner-fields.seed123456.json @@ -0,0 +1,38058 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. The two fields Vulcanus cliff placement reads, sampled at the exact lattice the placement pass uses, over three calcite-dominated 256x256 regions. `cliffiness_basic` is read unsmoothed at EVERY corner (i*4, j*4+0.5); `vulcanus_elevation` only at the cliff_smoothing=1 SMOOTHING KNOTS (smoothingKnots: in-chunk corner indices 0/4/7), because at smoothing 1 the unsmoothed term vanishes exactly and no other elevation sample is ever taken. Exists to separate a FIELD error from a RULE error in the Vulcanus cliff port (#18) and in the ore/cliff separation (#24): a spec can run makeCliffPlacementFromFields on these values instead of ours. Forced surface seed like every other Vulcanus fixture. Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-cliff-corner-fields", + "seed": 123456, + "planet": "vulcanus", + "grid": 4, + "cornerOffsetY": 0.5, + "regions": [ + { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + { + "x0": 1100, + "y0": 2600, + "x1": 1356, + "y1": 2856 + }, + { + "x0": -1700, + "y0": 1900, + "x1": -1444, + "y1": 2156 + } + ], + "corners": [ + "375,375", + "376,375", + "377,375", + "378,375", + "379,375", + "380,375", + "381,375", + "382,375", + "383,375", + "384,375", + "385,375", + "386,375", + "387,375", + "388,375", + "389,375", + "390,375", + "391,375", + "392,375", + "393,375", + "394,375", + "395,375", + "396,375", + "397,375", + "398,375", + "399,375", + "400,375", + "401,375", + "402,375", + "403,375", + "404,375", + "405,375", + "406,375", + "407,375", + "408,375", + "409,375", + "410,375", + "411,375", + "412,375", + "413,375", + "414,375", + "415,375", + "416,375", + "417,375", + "418,375", + "419,375", + "420,375", + "421,375", + "422,375", + "423,375", + "424,375", + "425,375", + "426,375", + "427,375", + "428,375", + "429,375", + "430,375", + "431,375", + "432,375", + "433,375", + "434,375", + "435,375", + "436,375", + "437,375", + "438,375", + "439,375", + "375,376", + "376,376", + "377,376", + "378,376", + "379,376", + "380,376", + "381,376", + "382,376", + "383,376", + "384,376", + "385,376", + "386,376", + "387,376", + "388,376", + "389,376", + "390,376", + "391,376", + "392,376", + "393,376", + "394,376", + "395,376", + "396,376", + "397,376", + "398,376", + "399,376", + "400,376", + "401,376", + "402,376", + "403,376", + "404,376", + "405,376", + "406,376", + "407,376", + "408,376", + "409,376", + "410,376", + "411,376", + "412,376", + "413,376", + "414,376", + "415,376", + "416,376", + "417,376", + "418,376", + "419,376", + "420,376", + "421,376", + "422,376", + "423,376", + "424,376", + "425,376", + "426,376", + "427,376", + "428,376", + "429,376", + "430,376", + "431,376", + "432,376", + "433,376", + "434,376", + "435,376", + "436,376", + "437,376", + "438,376", + "439,376", + "375,377", + "376,377", + "377,377", + "378,377", + "379,377", + "380,377", + "381,377", + "382,377", + "383,377", + "384,377", + "385,377", + "386,377", + "387,377", + "388,377", + "389,377", + "390,377", + "391,377", + "392,377", + "393,377", + "394,377", + "395,377", + "396,377", + "397,377", + "398,377", + "399,377", + "400,377", + "401,377", + "402,377", + "403,377", + "404,377", + "405,377", + "406,377", + "407,377", + "408,377", + "409,377", + "410,377", + "411,377", + "412,377", + "413,377", + "414,377", + "415,377", + "416,377", + "417,377", + "418,377", + "419,377", + "420,377", + "421,377", + "422,377", + "423,377", + "424,377", + "425,377", + "426,377", + "427,377", + "428,377", + "429,377", + "430,377", + "431,377", + "432,377", + "433,377", + "434,377", + "435,377", + "436,377", + "437,377", + "438,377", + "439,377", + "375,378", + "376,378", + "377,378", + "378,378", + "379,378", + "380,378", + "381,378", + "382,378", + "383,378", + "384,378", + "385,378", + "386,378", + "387,378", + "388,378", + "389,378", + "390,378", + "391,378", + "392,378", + "393,378", + "394,378", + "395,378", + "396,378", + "397,378", + "398,378", + "399,378", + "400,378", + "401,378", + "402,378", + "403,378", + "404,378", + "405,378", + "406,378", + "407,378", + "408,378", + "409,378", + "410,378", + "411,378", + "412,378", + "413,378", + "414,378", + "415,378", + "416,378", + "417,378", + "418,378", + "419,378", + "420,378", + "421,378", + "422,378", + "423,378", + "424,378", + "425,378", + "426,378", + "427,378", + "428,378", + "429,378", + "430,378", + "431,378", + "432,378", + "433,378", + "434,378", + "435,378", + "436,378", + "437,378", + "438,378", + "439,378", + "375,379", + "376,379", + "377,379", + "378,379", + "379,379", + "380,379", + "381,379", + "382,379", + "383,379", + "384,379", + "385,379", + "386,379", + "387,379", + "388,379", + "389,379", + "390,379", + "391,379", + "392,379", + "393,379", + "394,379", + "395,379", + "396,379", + "397,379", + "398,379", + "399,379", + "400,379", + "401,379", + "402,379", + "403,379", + "404,379", + "405,379", + "406,379", + "407,379", + "408,379", + "409,379", + "410,379", + "411,379", + "412,379", + "413,379", + "414,379", + "415,379", + "416,379", + "417,379", + "418,379", + "419,379", + "420,379", + "421,379", + "422,379", + "423,379", + "424,379", + "425,379", + "426,379", + "427,379", + "428,379", + "429,379", + "430,379", + "431,379", + "432,379", + "433,379", + "434,379", + "435,379", + "436,379", + "437,379", + "438,379", + "439,379", + "375,380", + "376,380", + "377,380", + "378,380", + "379,380", + "380,380", + "381,380", + "382,380", + "383,380", + "384,380", + "385,380", + "386,380", + "387,380", + "388,380", + "389,380", + "390,380", + "391,380", + "392,380", + "393,380", + "394,380", + "395,380", + "396,380", + "397,380", + "398,380", + "399,380", + "400,380", + "401,380", + "402,380", + "403,380", + "404,380", + "405,380", + "406,380", + "407,380", + "408,380", + "409,380", + "410,380", + "411,380", + "412,380", + "413,380", + "414,380", + "415,380", + "416,380", + "417,380", + "418,380", + "419,380", + "420,380", + "421,380", + "422,380", + "423,380", + "424,380", + "425,380", + "426,380", + "427,380", + "428,380", + "429,380", + "430,380", + "431,380", + "432,380", + "433,380", + "434,380", + "435,380", + "436,380", + "437,380", + "438,380", + "439,380", + "375,381", + "376,381", + "377,381", + "378,381", + "379,381", + "380,381", + "381,381", + "382,381", + "383,381", + "384,381", + "385,381", + "386,381", + "387,381", + "388,381", + "389,381", + "390,381", + "391,381", + "392,381", + "393,381", + "394,381", + "395,381", + "396,381", + "397,381", + "398,381", + "399,381", + "400,381", + "401,381", + "402,381", + "403,381", + "404,381", + "405,381", + "406,381", + "407,381", + "408,381", + "409,381", + "410,381", + "411,381", + "412,381", + "413,381", + "414,381", + "415,381", + "416,381", + "417,381", + "418,381", + "419,381", + "420,381", + "421,381", + "422,381", + "423,381", + "424,381", + "425,381", + "426,381", + "427,381", + "428,381", + "429,381", + "430,381", + "431,381", + "432,381", + "433,381", + "434,381", + "435,381", + "436,381", + "437,381", + "438,381", + "439,381", + "375,382", + "376,382", + "377,382", + "378,382", + "379,382", + "380,382", + "381,382", + "382,382", + "383,382", + "384,382", + "385,382", + "386,382", + "387,382", + "388,382", + "389,382", + "390,382", + "391,382", + "392,382", + "393,382", + "394,382", + "395,382", + "396,382", + "397,382", + "398,382", + "399,382", + "400,382", + "401,382", + "402,382", + "403,382", + "404,382", + "405,382", + "406,382", + "407,382", + "408,382", + "409,382", + "410,382", + "411,382", + "412,382", + "413,382", + "414,382", + "415,382", + "416,382", + "417,382", + "418,382", + "419,382", + "420,382", + "421,382", + "422,382", + "423,382", + "424,382", + "425,382", + "426,382", + "427,382", + "428,382", + "429,382", + "430,382", + "431,382", + "432,382", + "433,382", + "434,382", + "435,382", + "436,382", + "437,382", + "438,382", + "439,382", + "375,383", + "376,383", + "377,383", + "378,383", + "379,383", + "380,383", + "381,383", + "382,383", + "383,383", + "384,383", + "385,383", + "386,383", + "387,383", + "388,383", + "389,383", + "390,383", + "391,383", + "392,383", + "393,383", + "394,383", + "395,383", + "396,383", + "397,383", + "398,383", + "399,383", + "400,383", + "401,383", + "402,383", + "403,383", + "404,383", + "405,383", + "406,383", + "407,383", + "408,383", + "409,383", + "410,383", + "411,383", + "412,383", + "413,383", + "414,383", + "415,383", + "416,383", + "417,383", + "418,383", + "419,383", + "420,383", + "421,383", + "422,383", + "423,383", + "424,383", + "425,383", + "426,383", + "427,383", + "428,383", + "429,383", + "430,383", + "431,383", + "432,383", + "433,383", + "434,383", + "435,383", + "436,383", + "437,383", + "438,383", + "439,383", + "375,384", + "376,384", + "377,384", + "378,384", + "379,384", + "380,384", + "381,384", + "382,384", + "383,384", + "384,384", + "385,384", + "386,384", + "387,384", + "388,384", + "389,384", + "390,384", + "391,384", + "392,384", + "393,384", + "394,384", + "395,384", + "396,384", + "397,384", + "398,384", + "399,384", + "400,384", + "401,384", + "402,384", + "403,384", + "404,384", + "405,384", + "406,384", + "407,384", + "408,384", + "409,384", + "410,384", + "411,384", + "412,384", + "413,384", + "414,384", + "415,384", + "416,384", + "417,384", + "418,384", + "419,384", + "420,384", + "421,384", + "422,384", + "423,384", + "424,384", + "425,384", + "426,384", + "427,384", + "428,384", + "429,384", + "430,384", + "431,384", + "432,384", + "433,384", + "434,384", + "435,384", + "436,384", + "437,384", + "438,384", + "439,384", + "375,385", + "376,385", + "377,385", + "378,385", + "379,385", + "380,385", + "381,385", + "382,385", + "383,385", + "384,385", + "385,385", + "386,385", + "387,385", + "388,385", + "389,385", + "390,385", + "391,385", + "392,385", + "393,385", + "394,385", + "395,385", + "396,385", + "397,385", + "398,385", + "399,385", + "400,385", + "401,385", + "402,385", + "403,385", + "404,385", + "405,385", + "406,385", + "407,385", + "408,385", + "409,385", + "410,385", + "411,385", + "412,385", + "413,385", + "414,385", + "415,385", + "416,385", + "417,385", + "418,385", + "419,385", + "420,385", + "421,385", + "422,385", + "423,385", + "424,385", + "425,385", + "426,385", + "427,385", + "428,385", + "429,385", + "430,385", + "431,385", + "432,385", + "433,385", + "434,385", + "435,385", + "436,385", + "437,385", + "438,385", + "439,385", + "375,386", + "376,386", + "377,386", + "378,386", + "379,386", + "380,386", + "381,386", + "382,386", + "383,386", + "384,386", + "385,386", + "386,386", + "387,386", + "388,386", + "389,386", + "390,386", + "391,386", + "392,386", + "393,386", + "394,386", + "395,386", + "396,386", + "397,386", + "398,386", + "399,386", + "400,386", + "401,386", + "402,386", + "403,386", + "404,386", + "405,386", + "406,386", + "407,386", + "408,386", + "409,386", + "410,386", + "411,386", + "412,386", + "413,386", + "414,386", + "415,386", + "416,386", + "417,386", + "418,386", + "419,386", + "420,386", + "421,386", + "422,386", + "423,386", + "424,386", + "425,386", + "426,386", + "427,386", + "428,386", + "429,386", + "430,386", + "431,386", + "432,386", + "433,386", + "434,386", + "435,386", + "436,386", + "437,386", + "438,386", + "439,386", + "375,387", + "376,387", + "377,387", + "378,387", + "379,387", + "380,387", + "381,387", + "382,387", + "383,387", + "384,387", + "385,387", + "386,387", + "387,387", + "388,387", + "389,387", + "390,387", + "391,387", + "392,387", + "393,387", + "394,387", + "395,387", + "396,387", + "397,387", + "398,387", + "399,387", + "400,387", + "401,387", + "402,387", + "403,387", + "404,387", + "405,387", + "406,387", + "407,387", + "408,387", + "409,387", + "410,387", + "411,387", + "412,387", + "413,387", + "414,387", + "415,387", + "416,387", + "417,387", + "418,387", + "419,387", + "420,387", + "421,387", + "422,387", + "423,387", + "424,387", + "425,387", + "426,387", + "427,387", + "428,387", + "429,387", + "430,387", + "431,387", + "432,387", + "433,387", + "434,387", + "435,387", + "436,387", + "437,387", + "438,387", + "439,387", + "375,388", + "376,388", + "377,388", + "378,388", + "379,388", + "380,388", + "381,388", + "382,388", + "383,388", + "384,388", + "385,388", + "386,388", + "387,388", + "388,388", + "389,388", + "390,388", + "391,388", + "392,388", + "393,388", + "394,388", + "395,388", + "396,388", + "397,388", + "398,388", + "399,388", + "400,388", + "401,388", + "402,388", + "403,388", + "404,388", + "405,388", + "406,388", + "407,388", + "408,388", + "409,388", + "410,388", + "411,388", + "412,388", + "413,388", + "414,388", + "415,388", + "416,388", + "417,388", + "418,388", + "419,388", + "420,388", + "421,388", + "422,388", + "423,388", + "424,388", + "425,388", + "426,388", + "427,388", + "428,388", + "429,388", + "430,388", + "431,388", + "432,388", + "433,388", + "434,388", + "435,388", + "436,388", + "437,388", + "438,388", + "439,388", + "375,389", + "376,389", + "377,389", + "378,389", + "379,389", + "380,389", + "381,389", + "382,389", + "383,389", + "384,389", + "385,389", + "386,389", + "387,389", + "388,389", + "389,389", + "390,389", + "391,389", + "392,389", + "393,389", + "394,389", + "395,389", + "396,389", + "397,389", + "398,389", + "399,389", + "400,389", + "401,389", + "402,389", + "403,389", + "404,389", + "405,389", + "406,389", + "407,389", + "408,389", + "409,389", + "410,389", + "411,389", + "412,389", + "413,389", + "414,389", + "415,389", + "416,389", + "417,389", + "418,389", + "419,389", + "420,389", + "421,389", + "422,389", + "423,389", + "424,389", + "425,389", + "426,389", + "427,389", + "428,389", + "429,389", + "430,389", + "431,389", + "432,389", + "433,389", + "434,389", + "435,389", + "436,389", + "437,389", + "438,389", + "439,389", + "375,390", + "376,390", + "377,390", + "378,390", + "379,390", + "380,390", + "381,390", + "382,390", + "383,390", + "384,390", + "385,390", + "386,390", + "387,390", + "388,390", + "389,390", + "390,390", + "391,390", + "392,390", + "393,390", + "394,390", + "395,390", + "396,390", + "397,390", + "398,390", + "399,390", + "400,390", + "401,390", + "402,390", + "403,390", + "404,390", + "405,390", + "406,390", + "407,390", + "408,390", + "409,390", + "410,390", + "411,390", + "412,390", + "413,390", + "414,390", + "415,390", + "416,390", + "417,390", + "418,390", + "419,390", + "420,390", + "421,390", + "422,390", + "423,390", + "424,390", + "425,390", + "426,390", + "427,390", + "428,390", + "429,390", + "430,390", + "431,390", + "432,390", + "433,390", + "434,390", + "435,390", + "436,390", + "437,390", + "438,390", + "439,390", + "375,391", + "376,391", + "377,391", + "378,391", + "379,391", + "380,391", + "381,391", + "382,391", + "383,391", + "384,391", + "385,391", + "386,391", + "387,391", + "388,391", + "389,391", + "390,391", + "391,391", + "392,391", + "393,391", + "394,391", + "395,391", + "396,391", + "397,391", + "398,391", + "399,391", + "400,391", + "401,391", + "402,391", + "403,391", + "404,391", + "405,391", + "406,391", + "407,391", + "408,391", + "409,391", + "410,391", + "411,391", + "412,391", + "413,391", + "414,391", + "415,391", + "416,391", + "417,391", + "418,391", + "419,391", + "420,391", + "421,391", + "422,391", + "423,391", + "424,391", + "425,391", + "426,391", + "427,391", + "428,391", + "429,391", + "430,391", + "431,391", + "432,391", + "433,391", + "434,391", + "435,391", + "436,391", + "437,391", + "438,391", + "439,391", + "375,392", + "376,392", + "377,392", + "378,392", + "379,392", + "380,392", + "381,392", + "382,392", + "383,392", + "384,392", + "385,392", + "386,392", + "387,392", + "388,392", + "389,392", + "390,392", + "391,392", + "392,392", + "393,392", + "394,392", + "395,392", + "396,392", + "397,392", + "398,392", + "399,392", + "400,392", + "401,392", + "402,392", + "403,392", + "404,392", + "405,392", + "406,392", + "407,392", + "408,392", + "409,392", + "410,392", + "411,392", + "412,392", + "413,392", + "414,392", + "415,392", + "416,392", + "417,392", + "418,392", + "419,392", + "420,392", + "421,392", + "422,392", + "423,392", + "424,392", + "425,392", + "426,392", + "427,392", + "428,392", + "429,392", + "430,392", + "431,392", + "432,392", + "433,392", + "434,392", + "435,392", + "436,392", + "437,392", + "438,392", + "439,392", + "375,393", + "376,393", + "377,393", + "378,393", + "379,393", + "380,393", + "381,393", + "382,393", + "383,393", + "384,393", + "385,393", + "386,393", + "387,393", + "388,393", + "389,393", + "390,393", + "391,393", + "392,393", + "393,393", + "394,393", + "395,393", + "396,393", + "397,393", + "398,393", + "399,393", + "400,393", + "401,393", + "402,393", + "403,393", + "404,393", + "405,393", + "406,393", + "407,393", + "408,393", + "409,393", + "410,393", + "411,393", + "412,393", + "413,393", + "414,393", + "415,393", + "416,393", + "417,393", + "418,393", + "419,393", + "420,393", + "421,393", + "422,393", + "423,393", + "424,393", + "425,393", + "426,393", + "427,393", + "428,393", + "429,393", + "430,393", + "431,393", + "432,393", + "433,393", + "434,393", + "435,393", + "436,393", + "437,393", + "438,393", + "439,393", + "375,394", + "376,394", + "377,394", + "378,394", + "379,394", + "380,394", + "381,394", + "382,394", + "383,394", + "384,394", + "385,394", + "386,394", + "387,394", + "388,394", + "389,394", + "390,394", + "391,394", + "392,394", + "393,394", + "394,394", + "395,394", + "396,394", + "397,394", + "398,394", + "399,394", + "400,394", + "401,394", + "402,394", + "403,394", + "404,394", + "405,394", + "406,394", + "407,394", + "408,394", + "409,394", + "410,394", + "411,394", + "412,394", + "413,394", + "414,394", + "415,394", + "416,394", + "417,394", + "418,394", + "419,394", + "420,394", + "421,394", + "422,394", + "423,394", + "424,394", + "425,394", + "426,394", + "427,394", + "428,394", + "429,394", + "430,394", + "431,394", + "432,394", + "433,394", + "434,394", + "435,394", + "436,394", + "437,394", + "438,394", + "439,394", + "375,395", + "376,395", + "377,395", + "378,395", + "379,395", + "380,395", + "381,395", + "382,395", + "383,395", + "384,395", + "385,395", + "386,395", + "387,395", + "388,395", + "389,395", + "390,395", + "391,395", + "392,395", + "393,395", + "394,395", + "395,395", + "396,395", + "397,395", + "398,395", + "399,395", + "400,395", + "401,395", + "402,395", + "403,395", + "404,395", + "405,395", + "406,395", + "407,395", + "408,395", + "409,395", + "410,395", + "411,395", + "412,395", + "413,395", + "414,395", + "415,395", + "416,395", + "417,395", + "418,395", + "419,395", + "420,395", + "421,395", + "422,395", + "423,395", + "424,395", + "425,395", + "426,395", + "427,395", + "428,395", + "429,395", + "430,395", + "431,395", + "432,395", + "433,395", + "434,395", + "435,395", + "436,395", + "437,395", + "438,395", + "439,395", + "375,396", + "376,396", + "377,396", + "378,396", + "379,396", + "380,396", + "381,396", + "382,396", + "383,396", + "384,396", + "385,396", + "386,396", + "387,396", + "388,396", + "389,396", + "390,396", + "391,396", + "392,396", + "393,396", + "394,396", + "395,396", + "396,396", + "397,396", + "398,396", + "399,396", + "400,396", + "401,396", + "402,396", + "403,396", + "404,396", + "405,396", + "406,396", + "407,396", + "408,396", + "409,396", + "410,396", + "411,396", + "412,396", + "413,396", + "414,396", + "415,396", + "416,396", + "417,396", + "418,396", + "419,396", + "420,396", + "421,396", + "422,396", + "423,396", + "424,396", + "425,396", + "426,396", + "427,396", + "428,396", + "429,396", + "430,396", + "431,396", + "432,396", + "433,396", + "434,396", + "435,396", + "436,396", + "437,396", + "438,396", + "439,396", + "375,397", + "376,397", + "377,397", + "378,397", + "379,397", + "380,397", + "381,397", + "382,397", + "383,397", + "384,397", + "385,397", + "386,397", + "387,397", + "388,397", + "389,397", + "390,397", + "391,397", + "392,397", + "393,397", + "394,397", + "395,397", + "396,397", + "397,397", + "398,397", + "399,397", + "400,397", + "401,397", + "402,397", + "403,397", + "404,397", + "405,397", + "406,397", + "407,397", + "408,397", + "409,397", + "410,397", + "411,397", + "412,397", + "413,397", + "414,397", + "415,397", + "416,397", + "417,397", + "418,397", + "419,397", + "420,397", + "421,397", + "422,397", + "423,397", + "424,397", + "425,397", + "426,397", + "427,397", + "428,397", + "429,397", + "430,397", + "431,397", + "432,397", + "433,397", + "434,397", + "435,397", + "436,397", + "437,397", + "438,397", + "439,397", + "375,398", + "376,398", + "377,398", + "378,398", + "379,398", + "380,398", + "381,398", + "382,398", + "383,398", + "384,398", + "385,398", + "386,398", + "387,398", + "388,398", + "389,398", + "390,398", + "391,398", + "392,398", + "393,398", + "394,398", + "395,398", + "396,398", + "397,398", + "398,398", + "399,398", + "400,398", + "401,398", + "402,398", + "403,398", + "404,398", + "405,398", + "406,398", + "407,398", + "408,398", + "409,398", + "410,398", + "411,398", + "412,398", + "413,398", + "414,398", + "415,398", + "416,398", + "417,398", + "418,398", + "419,398", + "420,398", + "421,398", + "422,398", + "423,398", + "424,398", + "425,398", + "426,398", + "427,398", + "428,398", + "429,398", + "430,398", + "431,398", + "432,398", + "433,398", + "434,398", + "435,398", + "436,398", + "437,398", + "438,398", + "439,398", + "375,399", + "376,399", + "377,399", + "378,399", + "379,399", + "380,399", + "381,399", + "382,399", + "383,399", + "384,399", + "385,399", + "386,399", + "387,399", + "388,399", + "389,399", + "390,399", + "391,399", + "392,399", + "393,399", + "394,399", + "395,399", + "396,399", + "397,399", + "398,399", + "399,399", + "400,399", + "401,399", + "402,399", + "403,399", + "404,399", + "405,399", + "406,399", + "407,399", + "408,399", + "409,399", + "410,399", + "411,399", + "412,399", + "413,399", + "414,399", + "415,399", + "416,399", + "417,399", + "418,399", + "419,399", + "420,399", + "421,399", + "422,399", + "423,399", + "424,399", + "425,399", + "426,399", + "427,399", + "428,399", + "429,399", + "430,399", + "431,399", + "432,399", + "433,399", + "434,399", + "435,399", + "436,399", + "437,399", + "438,399", + "439,399", + "375,400", + "376,400", + "377,400", + "378,400", + "379,400", + "380,400", + "381,400", + "382,400", + "383,400", + "384,400", + "385,400", + "386,400", + "387,400", + "388,400", + "389,400", + "390,400", + "391,400", + "392,400", + "393,400", + "394,400", + "395,400", + "396,400", + "397,400", + "398,400", + "399,400", + "400,400", + "401,400", + "402,400", + "403,400", + "404,400", + "405,400", + "406,400", + "407,400", + "408,400", + "409,400", + "410,400", + "411,400", + "412,400", + "413,400", + "414,400", + "415,400", + "416,400", + "417,400", + "418,400", + "419,400", + "420,400", + "421,400", + "422,400", + "423,400", + "424,400", + "425,400", + "426,400", + "427,400", + "428,400", + "429,400", + "430,400", + "431,400", + "432,400", + "433,400", + "434,400", + "435,400", + "436,400", + "437,400", + "438,400", + "439,400", + "375,401", + "376,401", + "377,401", + "378,401", + "379,401", + "380,401", + "381,401", + "382,401", + "383,401", + "384,401", + "385,401", + "386,401", + "387,401", + "388,401", + "389,401", + "390,401", + "391,401", + "392,401", + "393,401", + "394,401", + "395,401", + "396,401", + "397,401", + "398,401", + "399,401", + "400,401", + "401,401", + "402,401", + "403,401", + "404,401", + "405,401", + "406,401", + "407,401", + "408,401", + "409,401", + "410,401", + "411,401", + "412,401", + "413,401", + "414,401", + "415,401", + "416,401", + "417,401", + "418,401", + "419,401", + "420,401", + "421,401", + "422,401", + "423,401", + "424,401", + "425,401", + "426,401", + "427,401", + "428,401", + "429,401", + "430,401", + "431,401", + "432,401", + "433,401", + "434,401", + "435,401", + "436,401", + "437,401", + "438,401", + "439,401", + "375,402", + "376,402", + "377,402", + "378,402", + "379,402", + "380,402", + "381,402", + "382,402", + "383,402", + "384,402", + "385,402", + "386,402", + "387,402", + "388,402", + "389,402", + "390,402", + "391,402", + "392,402", + "393,402", + "394,402", + "395,402", + "396,402", + "397,402", + "398,402", + "399,402", + "400,402", + "401,402", + "402,402", + "403,402", + "404,402", + "405,402", + "406,402", + "407,402", + "408,402", + "409,402", + "410,402", + "411,402", + "412,402", + "413,402", + "414,402", + "415,402", + "416,402", + "417,402", + "418,402", + "419,402", + "420,402", + "421,402", + "422,402", + "423,402", + "424,402", + "425,402", + "426,402", + "427,402", + "428,402", + "429,402", + "430,402", + "431,402", + "432,402", + "433,402", + "434,402", + "435,402", + "436,402", + "437,402", + "438,402", + "439,402", + "375,403", + "376,403", + "377,403", + "378,403", + "379,403", + "380,403", + "381,403", + "382,403", + "383,403", + "384,403", + "385,403", + "386,403", + "387,403", + "388,403", + "389,403", + "390,403", + "391,403", + "392,403", + "393,403", + "394,403", + "395,403", + "396,403", + "397,403", + "398,403", + "399,403", + "400,403", + "401,403", + "402,403", + "403,403", + "404,403", + "405,403", + "406,403", + "407,403", + "408,403", + "409,403", + "410,403", + "411,403", + "412,403", + "413,403", + "414,403", + "415,403", + "416,403", + "417,403", + "418,403", + "419,403", + "420,403", + "421,403", + "422,403", + "423,403", + "424,403", + "425,403", + "426,403", + "427,403", + "428,403", + "429,403", + "430,403", + "431,403", + "432,403", + "433,403", + "434,403", + "435,403", + "436,403", + "437,403", + "438,403", + "439,403", + "375,404", + "376,404", + "377,404", + "378,404", + "379,404", + "380,404", + "381,404", + "382,404", + "383,404", + "384,404", + "385,404", + "386,404", + "387,404", + "388,404", + "389,404", + "390,404", + "391,404", + "392,404", + "393,404", + "394,404", + "395,404", + "396,404", + "397,404", + "398,404", + "399,404", + "400,404", + "401,404", + "402,404", + "403,404", + "404,404", + "405,404", + "406,404", + "407,404", + "408,404", + "409,404", + "410,404", + "411,404", + "412,404", + "413,404", + "414,404", + "415,404", + "416,404", + "417,404", + "418,404", + "419,404", + "420,404", + "421,404", + "422,404", + "423,404", + "424,404", + "425,404", + "426,404", + "427,404", + "428,404", + "429,404", + "430,404", + "431,404", + "432,404", + "433,404", + "434,404", + "435,404", + "436,404", + "437,404", + "438,404", + "439,404", + "375,405", + "376,405", + "377,405", + "378,405", + "379,405", + "380,405", + "381,405", + "382,405", + "383,405", + "384,405", + "385,405", + "386,405", + "387,405", + "388,405", + "389,405", + "390,405", + "391,405", + "392,405", + "393,405", + "394,405", + "395,405", + "396,405", + "397,405", + "398,405", + "399,405", + "400,405", + "401,405", + "402,405", + "403,405", + "404,405", + "405,405", + "406,405", + "407,405", + "408,405", + "409,405", + "410,405", + "411,405", + "412,405", + "413,405", + "414,405", + "415,405", + "416,405", + "417,405", + "418,405", + "419,405", + "420,405", + "421,405", + "422,405", + "423,405", + "424,405", + "425,405", + "426,405", + "427,405", + "428,405", + "429,405", + "430,405", + "431,405", + "432,405", + "433,405", + "434,405", + "435,405", + "436,405", + "437,405", + "438,405", + "439,405", + "375,406", + "376,406", + "377,406", + "378,406", + "379,406", + "380,406", + "381,406", + "382,406", + "383,406", + "384,406", + "385,406", + "386,406", + "387,406", + "388,406", + "389,406", + "390,406", + "391,406", + "392,406", + "393,406", + "394,406", + "395,406", + "396,406", + "397,406", + "398,406", + "399,406", + "400,406", + "401,406", + "402,406", + "403,406", + "404,406", + "405,406", + "406,406", + "407,406", + "408,406", + "409,406", + "410,406", + "411,406", + "412,406", + "413,406", + "414,406", + "415,406", + "416,406", + "417,406", + "418,406", + "419,406", + "420,406", + "421,406", + "422,406", + "423,406", + "424,406", + "425,406", + "426,406", + "427,406", + "428,406", + "429,406", + "430,406", + "431,406", + "432,406", + "433,406", + "434,406", + "435,406", + "436,406", + "437,406", + "438,406", + "439,406", + "375,407", + "376,407", + "377,407", + "378,407", + "379,407", + "380,407", + "381,407", + "382,407", + "383,407", + "384,407", + "385,407", + "386,407", + "387,407", + "388,407", + "389,407", + "390,407", + "391,407", + "392,407", + "393,407", + "394,407", + "395,407", + "396,407", + "397,407", + "398,407", + "399,407", + "400,407", + "401,407", + "402,407", + "403,407", + "404,407", + "405,407", + "406,407", + "407,407", + "408,407", + "409,407", + "410,407", + "411,407", + "412,407", + "413,407", + "414,407", + "415,407", + "416,407", + "417,407", + "418,407", + "419,407", + "420,407", + "421,407", + "422,407", + "423,407", + "424,407", + "425,407", + "426,407", + "427,407", + "428,407", + "429,407", + "430,407", + "431,407", + "432,407", + "433,407", + "434,407", + "435,407", + "436,407", + "437,407", + "438,407", + "439,407", + "375,408", + "376,408", + "377,408", + "378,408", + "379,408", + "380,408", + "381,408", + "382,408", + "383,408", + "384,408", + "385,408", + "386,408", + "387,408", + "388,408", + "389,408", + "390,408", + "391,408", + "392,408", + "393,408", + "394,408", + "395,408", + "396,408", + "397,408", + "398,408", + "399,408", + "400,408", + "401,408", + "402,408", + "403,408", + "404,408", + "405,408", + "406,408", + "407,408", + "408,408", + "409,408", + "410,408", + "411,408", + "412,408", + "413,408", + "414,408", + "415,408", + "416,408", + "417,408", + "418,408", + "419,408", + "420,408", + "421,408", + "422,408", + "423,408", + "424,408", + "425,408", + "426,408", + "427,408", + "428,408", + "429,408", + "430,408", + "431,408", + "432,408", + "433,408", + "434,408", + "435,408", + "436,408", + "437,408", + "438,408", + "439,408", + "375,409", + "376,409", + "377,409", + "378,409", + "379,409", + "380,409", + "381,409", + "382,409", + "383,409", + "384,409", + "385,409", + "386,409", + "387,409", + "388,409", + "389,409", + "390,409", + "391,409", + "392,409", + "393,409", + "394,409", + "395,409", + "396,409", + "397,409", + "398,409", + "399,409", + "400,409", + "401,409", + "402,409", + "403,409", + "404,409", + "405,409", + "406,409", + "407,409", + "408,409", + "409,409", + "410,409", + "411,409", + "412,409", + "413,409", + "414,409", + "415,409", + "416,409", + "417,409", + "418,409", + "419,409", + "420,409", + "421,409", + "422,409", + "423,409", + "424,409", + "425,409", + "426,409", + "427,409", + "428,409", + "429,409", + "430,409", + "431,409", + "432,409", + "433,409", + "434,409", + "435,409", + "436,409", + "437,409", + "438,409", + "439,409", + "375,410", + "376,410", + "377,410", + "378,410", + "379,410", + "380,410", + "381,410", + "382,410", + "383,410", + "384,410", + "385,410", + "386,410", + "387,410", + "388,410", + "389,410", + "390,410", + "391,410", + "392,410", + "393,410", + "394,410", + "395,410", + "396,410", + "397,410", + "398,410", + "399,410", + "400,410", + "401,410", + "402,410", + "403,410", + "404,410", + "405,410", + "406,410", + "407,410", + "408,410", + "409,410", + "410,410", + "411,410", + "412,410", + "413,410", + "414,410", + "415,410", + "416,410", + "417,410", + "418,410", + "419,410", + "420,410", + "421,410", + "422,410", + "423,410", + "424,410", + "425,410", + "426,410", + "427,410", + "428,410", + "429,410", + "430,410", + "431,410", + "432,410", + "433,410", + "434,410", + "435,410", + "436,410", + "437,410", + "438,410", + "439,410", + "375,411", + "376,411", + "377,411", + "378,411", + "379,411", + "380,411", + "381,411", + "382,411", + "383,411", + "384,411", + "385,411", + "386,411", + "387,411", + "388,411", + "389,411", + "390,411", + "391,411", + "392,411", + "393,411", + "394,411", + "395,411", + "396,411", + "397,411", + "398,411", + "399,411", + "400,411", + "401,411", + "402,411", + "403,411", + "404,411", + "405,411", + "406,411", + "407,411", + "408,411", + "409,411", + "410,411", + "411,411", + "412,411", + "413,411", + "414,411", + "415,411", + "416,411", + "417,411", + "418,411", + "419,411", + "420,411", + "421,411", + "422,411", + "423,411", + "424,411", + "425,411", + "426,411", + "427,411", + "428,411", + "429,411", + "430,411", + "431,411", + "432,411", + "433,411", + "434,411", + "435,411", + "436,411", + "437,411", + "438,411", + "439,411", + "375,412", + "376,412", + "377,412", + "378,412", + "379,412", + "380,412", + "381,412", + "382,412", + "383,412", + "384,412", + "385,412", + "386,412", + "387,412", + "388,412", + "389,412", + "390,412", + "391,412", + "392,412", + "393,412", + "394,412", + "395,412", + "396,412", + "397,412", + "398,412", + "399,412", + "400,412", + "401,412", + "402,412", + "403,412", + "404,412", + "405,412", + "406,412", + "407,412", + "408,412", + "409,412", + "410,412", + "411,412", + "412,412", + "413,412", + "414,412", + "415,412", + "416,412", + "417,412", + "418,412", + "419,412", + "420,412", + "421,412", + "422,412", + "423,412", + "424,412", + "425,412", + "426,412", + "427,412", + "428,412", + "429,412", + "430,412", + "431,412", + "432,412", + "433,412", + "434,412", + "435,412", + "436,412", + "437,412", + "438,412", + "439,412", + "375,413", + "376,413", + "377,413", + "378,413", + "379,413", + "380,413", + "381,413", + "382,413", + "383,413", + "384,413", + "385,413", + "386,413", + "387,413", + "388,413", + "389,413", + "390,413", + "391,413", + "392,413", + "393,413", + "394,413", + "395,413", + "396,413", + "397,413", + "398,413", + "399,413", + "400,413", + "401,413", + "402,413", + "403,413", + "404,413", + "405,413", + "406,413", + "407,413", + "408,413", + "409,413", + "410,413", + "411,413", + "412,413", + "413,413", + "414,413", + "415,413", + "416,413", + "417,413", + "418,413", + "419,413", + "420,413", + "421,413", + "422,413", + "423,413", + "424,413", + "425,413", + "426,413", + "427,413", + "428,413", + "429,413", + "430,413", + "431,413", + "432,413", + "433,413", + "434,413", + "435,413", + "436,413", + "437,413", + "438,413", + "439,413", + "375,414", + "376,414", + "377,414", + "378,414", + "379,414", + "380,414", + "381,414", + "382,414", + "383,414", + "384,414", + "385,414", + "386,414", + "387,414", + "388,414", + "389,414", + "390,414", + "391,414", + "392,414", + "393,414", + "394,414", + "395,414", + "396,414", + "397,414", + "398,414", + "399,414", + "400,414", + "401,414", + "402,414", + "403,414", + "404,414", + "405,414", + "406,414", + "407,414", + "408,414", + "409,414", + "410,414", + "411,414", + "412,414", + "413,414", + "414,414", + "415,414", + "416,414", + "417,414", + "418,414", + "419,414", + "420,414", + "421,414", + "422,414", + "423,414", + "424,414", + "425,414", + "426,414", + "427,414", + "428,414", + "429,414", + "430,414", + "431,414", + "432,414", + "433,414", + "434,414", + "435,414", + "436,414", + "437,414", + "438,414", + "439,414", + "375,415", + "376,415", + "377,415", + "378,415", + "379,415", + "380,415", + "381,415", + "382,415", + "383,415", + "384,415", + "385,415", + "386,415", + "387,415", + "388,415", + "389,415", + "390,415", + "391,415", + "392,415", + "393,415", + "394,415", + "395,415", + "396,415", + "397,415", + "398,415", + "399,415", + "400,415", + "401,415", + "402,415", + "403,415", + "404,415", + "405,415", + "406,415", + "407,415", + "408,415", + "409,415", + "410,415", + "411,415", + "412,415", + "413,415", + "414,415", + "415,415", + "416,415", + "417,415", + "418,415", + "419,415", + "420,415", + "421,415", + "422,415", + "423,415", + "424,415", + "425,415", + "426,415", + "427,415", + "428,415", + "429,415", + "430,415", + "431,415", + "432,415", + "433,415", + "434,415", + "435,415", + "436,415", + "437,415", + "438,415", + "439,415", + "375,416", + "376,416", + "377,416", + "378,416", + "379,416", + "380,416", + "381,416", + "382,416", + "383,416", + "384,416", + "385,416", + "386,416", + "387,416", + "388,416", + "389,416", + "390,416", + "391,416", + "392,416", + "393,416", + "394,416", + "395,416", + "396,416", + "397,416", + "398,416", + "399,416", + "400,416", + "401,416", + "402,416", + "403,416", + "404,416", + "405,416", + "406,416", + "407,416", + "408,416", + "409,416", + "410,416", + "411,416", + "412,416", + "413,416", + "414,416", + "415,416", + "416,416", + "417,416", + "418,416", + "419,416", + "420,416", + "421,416", + "422,416", + "423,416", + "424,416", + "425,416", + "426,416", + "427,416", + "428,416", + "429,416", + "430,416", + "431,416", + "432,416", + "433,416", + "434,416", + "435,416", + "436,416", + "437,416", + "438,416", + "439,416", + "375,417", + "376,417", + "377,417", + "378,417", + "379,417", + "380,417", + "381,417", + "382,417", + "383,417", + "384,417", + "385,417", + "386,417", + "387,417", + "388,417", + "389,417", + "390,417", + "391,417", + "392,417", + "393,417", + "394,417", + "395,417", + "396,417", + "397,417", + "398,417", + "399,417", + "400,417", + "401,417", + "402,417", + "403,417", + "404,417", + "405,417", + "406,417", + "407,417", + "408,417", + "409,417", + "410,417", + "411,417", + "412,417", + "413,417", + "414,417", + "415,417", + "416,417", + "417,417", + "418,417", + "419,417", + "420,417", + "421,417", + "422,417", + "423,417", + "424,417", + "425,417", + "426,417", + "427,417", + "428,417", + "429,417", + "430,417", + "431,417", + "432,417", + "433,417", + "434,417", + "435,417", + "436,417", + "437,417", + "438,417", + "439,417", + "375,418", + "376,418", + "377,418", + "378,418", + "379,418", + "380,418", + "381,418", + "382,418", + "383,418", + "384,418", + "385,418", + "386,418", + "387,418", + "388,418", + "389,418", + "390,418", + "391,418", + "392,418", + "393,418", + "394,418", + "395,418", + "396,418", + "397,418", + "398,418", + "399,418", + "400,418", + "401,418", + "402,418", + "403,418", + "404,418", + "405,418", + "406,418", + "407,418", + "408,418", + "409,418", + "410,418", + "411,418", + "412,418", + "413,418", + "414,418", + "415,418", + "416,418", + "417,418", + "418,418", + "419,418", + "420,418", + "421,418", + "422,418", + "423,418", + "424,418", + "425,418", + "426,418", + "427,418", + "428,418", + "429,418", + "430,418", + "431,418", + "432,418", + "433,418", + "434,418", + "435,418", + "436,418", + "437,418", + "438,418", + "439,418", + "375,419", + "376,419", + "377,419", + "378,419", + "379,419", + "380,419", + "381,419", + "382,419", + "383,419", + "384,419", + "385,419", + "386,419", + "387,419", + "388,419", + "389,419", + "390,419", + "391,419", + "392,419", + "393,419", + "394,419", + "395,419", + "396,419", + "397,419", + "398,419", + "399,419", + "400,419", + "401,419", + "402,419", + "403,419", + "404,419", + "405,419", + "406,419", + "407,419", + "408,419", + "409,419", + "410,419", + "411,419", + "412,419", + "413,419", + "414,419", + "415,419", + "416,419", + "417,419", + "418,419", + "419,419", + "420,419", + "421,419", + "422,419", + "423,419", + "424,419", + "425,419", + "426,419", + "427,419", + "428,419", + "429,419", + "430,419", + "431,419", + "432,419", + "433,419", + "434,419", + "435,419", + "436,419", + "437,419", + "438,419", + "439,419", + "375,420", + "376,420", + "377,420", + "378,420", + "379,420", + "380,420", + "381,420", + "382,420", + "383,420", + "384,420", + "385,420", + "386,420", + "387,420", + "388,420", + "389,420", + "390,420", + "391,420", + "392,420", + "393,420", + "394,420", + "395,420", + "396,420", + "397,420", + "398,420", + "399,420", + "400,420", + "401,420", + "402,420", + "403,420", + "404,420", + "405,420", + "406,420", + "407,420", + "408,420", + "409,420", + "410,420", + "411,420", + "412,420", + "413,420", + "414,420", + "415,420", + "416,420", + "417,420", + "418,420", + "419,420", + "420,420", + "421,420", + "422,420", + "423,420", + "424,420", + "425,420", + "426,420", + "427,420", + "428,420", + "429,420", + "430,420", + "431,420", + "432,420", + "433,420", + "434,420", + "435,420", + "436,420", + "437,420", + "438,420", + "439,420", + "375,421", + "376,421", + "377,421", + "378,421", + "379,421", + "380,421", + "381,421", + "382,421", + "383,421", + "384,421", + "385,421", + "386,421", + "387,421", + "388,421", + "389,421", + "390,421", + "391,421", + "392,421", + "393,421", + "394,421", + "395,421", + "396,421", + "397,421", + "398,421", + "399,421", + "400,421", + "401,421", + "402,421", + "403,421", + "404,421", + "405,421", + "406,421", + "407,421", + "408,421", + "409,421", + "410,421", + "411,421", + "412,421", + "413,421", + "414,421", + "415,421", + "416,421", + "417,421", + "418,421", + "419,421", + "420,421", + "421,421", + "422,421", + "423,421", + "424,421", + "425,421", + "426,421", + "427,421", + "428,421", + "429,421", + "430,421", + "431,421", + "432,421", + "433,421", + "434,421", + "435,421", + "436,421", + "437,421", + "438,421", + "439,421", + "375,422", + "376,422", + "377,422", + "378,422", + "379,422", + "380,422", + "381,422", + "382,422", + "383,422", + "384,422", + "385,422", + "386,422", + "387,422", + "388,422", + "389,422", + "390,422", + "391,422", + "392,422", + "393,422", + "394,422", + "395,422", + "396,422", + "397,422", + "398,422", + "399,422", + "400,422", + "401,422", + "402,422", + "403,422", + "404,422", + "405,422", + "406,422", + "407,422", + "408,422", + "409,422", + "410,422", + "411,422", + "412,422", + "413,422", + "414,422", + "415,422", + "416,422", + "417,422", + "418,422", + "419,422", + "420,422", + "421,422", + "422,422", + "423,422", + "424,422", + "425,422", + "426,422", + "427,422", + "428,422", + "429,422", + "430,422", + "431,422", + "432,422", + "433,422", + "434,422", + "435,422", + "436,422", + "437,422", + "438,422", + "439,422", + "375,423", + "376,423", + "377,423", + "378,423", + "379,423", + "380,423", + "381,423", + "382,423", + "383,423", + "384,423", + "385,423", + "386,423", + "387,423", + "388,423", + "389,423", + "390,423", + "391,423", + "392,423", + "393,423", + "394,423", + "395,423", + "396,423", + "397,423", + "398,423", + "399,423", + "400,423", + "401,423", + "402,423", + "403,423", + "404,423", + "405,423", + "406,423", + "407,423", + "408,423", + "409,423", + "410,423", + "411,423", + "412,423", + "413,423", + "414,423", + "415,423", + "416,423", + "417,423", + "418,423", + "419,423", + "420,423", + "421,423", + "422,423", + "423,423", + "424,423", + "425,423", + "426,423", + "427,423", + "428,423", + "429,423", + "430,423", + "431,423", + "432,423", + "433,423", + "434,423", + "435,423", + "436,423", + "437,423", + "438,423", + "439,423", + "375,424", + "376,424", + "377,424", + "378,424", + "379,424", + "380,424", + "381,424", + "382,424", + "383,424", + "384,424", + "385,424", + "386,424", + "387,424", + "388,424", + "389,424", + "390,424", + "391,424", + "392,424", + "393,424", + "394,424", + "395,424", + "396,424", + "397,424", + "398,424", + "399,424", + "400,424", + "401,424", + "402,424", + "403,424", + "404,424", + "405,424", + "406,424", + "407,424", + "408,424", + "409,424", + "410,424", + "411,424", + "412,424", + "413,424", + "414,424", + "415,424", + "416,424", + "417,424", + "418,424", + "419,424", + "420,424", + "421,424", + "422,424", + "423,424", + "424,424", + "425,424", + "426,424", + "427,424", + "428,424", + "429,424", + "430,424", + "431,424", + "432,424", + "433,424", + "434,424", + "435,424", + "436,424", + "437,424", + "438,424", + "439,424", + "375,425", + "376,425", + "377,425", + "378,425", + "379,425", + "380,425", + "381,425", + "382,425", + "383,425", + "384,425", + "385,425", + "386,425", + "387,425", + "388,425", + "389,425", + "390,425", + "391,425", + "392,425", + "393,425", + "394,425", + "395,425", + "396,425", + "397,425", + "398,425", + "399,425", + "400,425", + "401,425", + "402,425", + "403,425", + "404,425", + "405,425", + "406,425", + "407,425", + "408,425", + "409,425", + "410,425", + "411,425", + "412,425", + "413,425", + "414,425", + "415,425", + "416,425", + "417,425", + "418,425", + "419,425", + "420,425", + "421,425", + "422,425", + "423,425", + "424,425", + "425,425", + "426,425", + "427,425", + "428,425", + "429,425", + "430,425", + "431,425", + "432,425", + "433,425", + "434,425", + "435,425", + "436,425", + "437,425", + "438,425", + "439,425", + "375,426", + "376,426", + "377,426", + "378,426", + "379,426", + "380,426", + "381,426", + "382,426", + "383,426", + "384,426", + "385,426", + "386,426", + "387,426", + "388,426", + "389,426", + "390,426", + "391,426", + "392,426", + "393,426", + "394,426", + "395,426", + "396,426", + "397,426", + "398,426", + "399,426", + "400,426", + "401,426", + "402,426", + "403,426", + "404,426", + "405,426", + "406,426", + "407,426", + "408,426", + "409,426", + "410,426", + "411,426", + "412,426", + "413,426", + "414,426", + "415,426", + "416,426", + "417,426", + "418,426", + "419,426", + "420,426", + "421,426", + "422,426", + "423,426", + "424,426", + "425,426", + "426,426", + "427,426", + "428,426", + "429,426", + "430,426", + "431,426", + "432,426", + "433,426", + "434,426", + "435,426", + "436,426", + "437,426", + "438,426", + "439,426", + "375,427", + "376,427", + "377,427", + "378,427", + "379,427", + "380,427", + "381,427", + "382,427", + "383,427", + "384,427", + "385,427", + "386,427", + "387,427", + "388,427", + "389,427", + "390,427", + "391,427", + "392,427", + "393,427", + "394,427", + "395,427", + "396,427", + "397,427", + "398,427", + "399,427", + "400,427", + "401,427", + "402,427", + "403,427", + "404,427", + "405,427", + "406,427", + "407,427", + "408,427", + "409,427", + "410,427", + "411,427", + "412,427", + "413,427", + "414,427", + "415,427", + "416,427", + "417,427", + "418,427", + "419,427", + "420,427", + "421,427", + "422,427", + "423,427", + "424,427", + "425,427", + "426,427", + "427,427", + "428,427", + "429,427", + "430,427", + "431,427", + "432,427", + "433,427", + "434,427", + "435,427", + "436,427", + "437,427", + "438,427", + "439,427", + "375,428", + "376,428", + "377,428", + "378,428", + "379,428", + "380,428", + "381,428", + "382,428", + "383,428", + "384,428", + "385,428", + "386,428", + "387,428", + "388,428", + "389,428", + "390,428", + "391,428", + "392,428", + "393,428", + "394,428", + "395,428", + "396,428", + "397,428", + "398,428", + "399,428", + "400,428", + "401,428", + "402,428", + "403,428", + "404,428", + "405,428", + "406,428", + "407,428", + "408,428", + "409,428", + "410,428", + "411,428", + "412,428", + "413,428", + "414,428", + "415,428", + "416,428", + "417,428", + "418,428", + "419,428", + "420,428", + "421,428", + "422,428", + "423,428", + "424,428", + "425,428", + "426,428", + "427,428", + "428,428", + "429,428", + "430,428", + "431,428", + "432,428", + "433,428", + "434,428", + "435,428", + "436,428", + "437,428", + "438,428", + "439,428", + "375,429", + "376,429", + "377,429", + "378,429", + "379,429", + "380,429", + "381,429", + "382,429", + "383,429", + "384,429", + "385,429", + "386,429", + "387,429", + "388,429", + "389,429", + "390,429", + "391,429", + "392,429", + "393,429", + "394,429", + "395,429", + "396,429", + "397,429", + "398,429", + "399,429", + "400,429", + "401,429", + "402,429", + "403,429", + "404,429", + "405,429", + "406,429", + "407,429", + "408,429", + "409,429", + "410,429", + "411,429", + "412,429", + "413,429", + "414,429", + "415,429", + "416,429", + "417,429", + "418,429", + "419,429", + "420,429", + "421,429", + "422,429", + "423,429", + "424,429", + "425,429", + "426,429", + "427,429", + "428,429", + "429,429", + "430,429", + "431,429", + "432,429", + "433,429", + "434,429", + "435,429", + "436,429", + "437,429", + "438,429", + "439,429", + "375,430", + "376,430", + "377,430", + "378,430", + "379,430", + "380,430", + "381,430", + "382,430", + "383,430", + "384,430", + "385,430", + "386,430", + "387,430", + "388,430", + "389,430", + "390,430", + "391,430", + "392,430", + "393,430", + "394,430", + "395,430", + "396,430", + "397,430", + "398,430", + "399,430", + "400,430", + "401,430", + "402,430", + "403,430", + "404,430", + "405,430", + "406,430", + "407,430", + "408,430", + "409,430", + "410,430", + "411,430", + "412,430", + "413,430", + "414,430", + "415,430", + "416,430", + "417,430", + "418,430", + "419,430", + "420,430", + "421,430", + "422,430", + "423,430", + "424,430", + "425,430", + "426,430", + "427,430", + "428,430", + "429,430", + "430,430", + "431,430", + "432,430", + "433,430", + "434,430", + "435,430", + "436,430", + "437,430", + "438,430", + "439,430", + "375,431", + "376,431", + "377,431", + "378,431", + "379,431", + "380,431", + "381,431", + "382,431", + "383,431", + "384,431", + "385,431", + "386,431", + "387,431", + "388,431", + "389,431", + "390,431", + "391,431", + "392,431", + "393,431", + "394,431", + "395,431", + "396,431", + "397,431", + "398,431", + "399,431", + "400,431", + "401,431", + "402,431", + "403,431", + "404,431", + "405,431", + "406,431", + "407,431", + "408,431", + "409,431", + "410,431", + "411,431", + "412,431", + "413,431", + "414,431", + "415,431", + "416,431", + "417,431", + "418,431", + "419,431", + "420,431", + "421,431", + "422,431", + "423,431", + "424,431", + "425,431", + "426,431", + "427,431", + "428,431", + "429,431", + "430,431", + "431,431", + "432,431", + "433,431", + "434,431", + "435,431", + "436,431", + "437,431", + "438,431", + "439,431", + "375,432", + "376,432", + "377,432", + "378,432", + "379,432", + "380,432", + "381,432", + "382,432", + "383,432", + "384,432", + "385,432", + "386,432", + "387,432", + "388,432", + "389,432", + "390,432", + "391,432", + "392,432", + "393,432", + "394,432", + "395,432", + "396,432", + "397,432", + "398,432", + "399,432", + "400,432", + "401,432", + "402,432", + "403,432", + "404,432", + "405,432", + "406,432", + "407,432", + "408,432", + "409,432", + "410,432", + "411,432", + "412,432", + "413,432", + "414,432", + "415,432", + "416,432", + "417,432", + "418,432", + "419,432", + "420,432", + "421,432", + "422,432", + "423,432", + "424,432", + "425,432", + "426,432", + "427,432", + "428,432", + "429,432", + "430,432", + "431,432", + "432,432", + "433,432", + "434,432", + "435,432", + "436,432", + "437,432", + "438,432", + "439,432", + "375,433", + "376,433", + "377,433", + "378,433", + "379,433", + "380,433", + "381,433", + "382,433", + "383,433", + "384,433", + "385,433", + "386,433", + "387,433", + "388,433", + "389,433", + "390,433", + "391,433", + "392,433", + "393,433", + "394,433", + "395,433", + "396,433", + "397,433", + "398,433", + "399,433", + "400,433", + "401,433", + "402,433", + "403,433", + "404,433", + "405,433", + "406,433", + "407,433", + "408,433", + "409,433", + "410,433", + "411,433", + "412,433", + "413,433", + "414,433", + "415,433", + "416,433", + "417,433", + "418,433", + "419,433", + "420,433", + "421,433", + "422,433", + "423,433", + "424,433", + "425,433", + "426,433", + "427,433", + "428,433", + "429,433", + "430,433", + "431,433", + "432,433", + "433,433", + "434,433", + "435,433", + "436,433", + "437,433", + "438,433", + "439,433", + "375,434", + "376,434", + "377,434", + "378,434", + "379,434", + "380,434", + "381,434", + "382,434", + "383,434", + "384,434", + "385,434", + "386,434", + "387,434", + "388,434", + "389,434", + "390,434", + "391,434", + "392,434", + "393,434", + "394,434", + "395,434", + "396,434", + "397,434", + "398,434", + "399,434", + "400,434", + "401,434", + "402,434", + "403,434", + "404,434", + "405,434", + "406,434", + "407,434", + "408,434", + "409,434", + "410,434", + "411,434", + "412,434", + "413,434", + "414,434", + "415,434", + "416,434", + "417,434", + "418,434", + "419,434", + "420,434", + "421,434", + "422,434", + "423,434", + "424,434", + "425,434", + "426,434", + "427,434", + "428,434", + "429,434", + "430,434", + "431,434", + "432,434", + "433,434", + "434,434", + "435,434", + "436,434", + "437,434", + "438,434", + "439,434", + "375,435", + "376,435", + "377,435", + "378,435", + "379,435", + "380,435", + "381,435", + "382,435", + "383,435", + "384,435", + "385,435", + "386,435", + "387,435", + "388,435", + "389,435", + "390,435", + "391,435", + "392,435", + "393,435", + "394,435", + "395,435", + "396,435", + "397,435", + "398,435", + "399,435", + "400,435", + "401,435", + "402,435", + "403,435", + "404,435", + "405,435", + "406,435", + "407,435", + "408,435", + "409,435", + "410,435", + "411,435", + "412,435", + "413,435", + "414,435", + "415,435", + "416,435", + "417,435", + "418,435", + "419,435", + "420,435", + "421,435", + "422,435", + "423,435", + "424,435", + "425,435", + "426,435", + "427,435", + "428,435", + "429,435", + "430,435", + "431,435", + "432,435", + "433,435", + "434,435", + "435,435", + "436,435", + "437,435", + "438,435", + "439,435", + "375,436", + "376,436", + "377,436", + "378,436", + "379,436", + "380,436", + "381,436", + "382,436", + "383,436", + "384,436", + "385,436", + "386,436", + "387,436", + "388,436", + "389,436", + "390,436", + "391,436", + "392,436", + "393,436", + "394,436", + "395,436", + "396,436", + "397,436", + "398,436", + "399,436", + "400,436", + "401,436", + "402,436", + "403,436", + "404,436", + "405,436", + "406,436", + "407,436", + "408,436", + "409,436", + "410,436", + "411,436", + "412,436", + "413,436", + "414,436", + "415,436", + "416,436", + "417,436", + "418,436", + "419,436", + "420,436", + "421,436", + "422,436", + "423,436", + "424,436", + "425,436", + "426,436", + "427,436", + "428,436", + "429,436", + "430,436", + "431,436", + "432,436", + "433,436", + "434,436", + "435,436", + "436,436", + "437,436", + "438,436", + "439,436", + "375,437", + "376,437", + "377,437", + "378,437", + "379,437", + "380,437", + "381,437", + "382,437", + "383,437", + "384,437", + "385,437", + "386,437", + "387,437", + "388,437", + "389,437", + "390,437", + "391,437", + "392,437", + "393,437", + "394,437", + "395,437", + "396,437", + "397,437", + "398,437", + "399,437", + "400,437", + "401,437", + "402,437", + "403,437", + "404,437", + "405,437", + "406,437", + "407,437", + "408,437", + "409,437", + "410,437", + "411,437", + "412,437", + "413,437", + "414,437", + "415,437", + "416,437", + "417,437", + "418,437", + "419,437", + "420,437", + "421,437", + "422,437", + "423,437", + "424,437", + "425,437", + "426,437", + "427,437", + "428,437", + "429,437", + "430,437", + "431,437", + "432,437", + "433,437", + "434,437", + "435,437", + "436,437", + "437,437", + "438,437", + "439,437", + "375,438", + "376,438", + "377,438", + "378,438", + "379,438", + "380,438", + "381,438", + "382,438", + "383,438", + "384,438", + "385,438", + "386,438", + "387,438", + "388,438", + "389,438", + "390,438", + "391,438", + "392,438", + "393,438", + "394,438", + "395,438", + "396,438", + "397,438", + "398,438", + "399,438", + "400,438", + "401,438", + "402,438", + "403,438", + "404,438", + "405,438", + "406,438", + "407,438", + "408,438", + "409,438", + "410,438", + "411,438", + "412,438", + "413,438", + "414,438", + "415,438", + "416,438", + "417,438", + "418,438", + "419,438", + "420,438", + "421,438", + "422,438", + "423,438", + "424,438", + "425,438", + "426,438", + "427,438", + "428,438", + "429,438", + "430,438", + "431,438", + "432,438", + "433,438", + "434,438", + "435,438", + "436,438", + "437,438", + "438,438", + "439,438", + "375,439", + "376,439", + "377,439", + "378,439", + "379,439", + "380,439", + "381,439", + "382,439", + "383,439", + "384,439", + "385,439", + "386,439", + "387,439", + "388,439", + "389,439", + "390,439", + "391,439", + "392,439", + "393,439", + "394,439", + "395,439", + "396,439", + "397,439", + "398,439", + "399,439", + "400,439", + "401,439", + "402,439", + "403,439", + "404,439", + "405,439", + "406,439", + "407,439", + "408,439", + "409,439", + "410,439", + "411,439", + "412,439", + "413,439", + "414,439", + "415,439", + "416,439", + "417,439", + "418,439", + "419,439", + "420,439", + "421,439", + "422,439", + "423,439", + "424,439", + "425,439", + "426,439", + "427,439", + "428,439", + "429,439", + "430,439", + "431,439", + "432,439", + "433,439", + "434,439", + "435,439", + "436,439", + "437,439", + "438,439", + "439,439", + "275,650", + "276,650", + "277,650", + "278,650", + "279,650", + "280,650", + "281,650", + "282,650", + "283,650", + "284,650", + "285,650", + "286,650", + "287,650", + "288,650", + "289,650", + "290,650", + "291,650", + "292,650", + "293,650", + "294,650", + "295,650", + "296,650", + "297,650", + "298,650", + "299,650", + "300,650", + "301,650", + "302,650", + "303,650", + "304,650", + "305,650", + "306,650", + "307,650", + "308,650", + "309,650", + "310,650", + "311,650", + "312,650", + "313,650", + "314,650", + "315,650", + "316,650", + "317,650", + "318,650", + "319,650", + "320,650", + "321,650", + "322,650", + "323,650", + "324,650", + "325,650", + "326,650", + "327,650", + "328,650", + "329,650", + "330,650", + "331,650", + "332,650", + "333,650", + "334,650", + "335,650", + "336,650", + "337,650", + "338,650", + "339,650", + "275,651", + "276,651", + "277,651", + "278,651", + "279,651", + "280,651", + "281,651", + "282,651", + "283,651", + "284,651", + "285,651", + "286,651", + "287,651", + "288,651", + "289,651", + "290,651", + "291,651", + "292,651", + "293,651", + "294,651", + "295,651", + "296,651", + "297,651", + "298,651", + "299,651", + "300,651", + "301,651", + "302,651", + "303,651", + "304,651", + "305,651", + "306,651", + "307,651", + "308,651", + "309,651", + "310,651", + "311,651", + "312,651", + "313,651", + "314,651", + "315,651", + "316,651", + "317,651", + "318,651", + "319,651", + "320,651", + "321,651", + "322,651", + "323,651", + "324,651", + "325,651", + "326,651", + "327,651", + "328,651", + "329,651", + "330,651", + "331,651", + "332,651", + "333,651", + "334,651", + "335,651", + "336,651", + "337,651", + "338,651", + "339,651", + "275,652", + "276,652", + "277,652", + "278,652", + "279,652", + "280,652", + "281,652", + "282,652", + "283,652", + "284,652", + "285,652", + "286,652", + "287,652", + "288,652", + "289,652", + "290,652", + "291,652", + "292,652", + "293,652", + "294,652", + "295,652", + "296,652", + "297,652", + "298,652", + "299,652", + "300,652", + "301,652", + "302,652", + "303,652", + "304,652", + "305,652", + "306,652", + "307,652", + "308,652", + "309,652", + "310,652", + "311,652", + "312,652", + "313,652", + "314,652", + "315,652", + "316,652", + "317,652", + "318,652", + "319,652", + "320,652", + "321,652", + "322,652", + "323,652", + "324,652", + "325,652", + "326,652", + "327,652", + "328,652", + "329,652", + "330,652", + "331,652", + "332,652", + "333,652", + "334,652", + "335,652", + "336,652", + "337,652", + "338,652", + "339,652", + "275,653", + "276,653", + "277,653", + "278,653", + "279,653", + "280,653", + "281,653", + "282,653", + "283,653", + "284,653", + "285,653", + "286,653", + "287,653", + "288,653", + "289,653", + "290,653", + "291,653", + "292,653", + "293,653", + "294,653", + "295,653", + "296,653", + "297,653", + "298,653", + "299,653", + "300,653", + "301,653", + "302,653", + "303,653", + "304,653", + "305,653", + "306,653", + "307,653", + "308,653", + "309,653", + "310,653", + "311,653", + "312,653", + "313,653", + "314,653", + "315,653", + "316,653", + "317,653", + "318,653", + "319,653", + "320,653", + "321,653", + "322,653", + "323,653", + "324,653", + "325,653", + "326,653", + "327,653", + "328,653", + "329,653", + "330,653", + "331,653", + "332,653", + "333,653", + "334,653", + "335,653", + "336,653", + "337,653", + "338,653", + "339,653", + "275,654", + "276,654", + "277,654", + "278,654", + "279,654", + "280,654", + "281,654", + "282,654", + "283,654", + "284,654", + "285,654", + "286,654", + "287,654", + "288,654", + "289,654", + "290,654", + "291,654", + "292,654", + "293,654", + "294,654", + "295,654", + "296,654", + "297,654", + "298,654", + "299,654", + "300,654", + "301,654", + "302,654", + "303,654", + "304,654", + "305,654", + "306,654", + "307,654", + "308,654", + "309,654", + "310,654", + "311,654", + "312,654", + "313,654", + "314,654", + "315,654", + "316,654", + "317,654", + "318,654", + "319,654", + "320,654", + "321,654", + "322,654", + "323,654", + "324,654", + "325,654", + "326,654", + "327,654", + "328,654", + "329,654", + "330,654", + "331,654", + "332,654", + "333,654", + "334,654", + "335,654", + "336,654", + "337,654", + "338,654", + "339,654", + "275,655", + "276,655", + "277,655", + "278,655", + "279,655", + "280,655", + "281,655", + "282,655", + "283,655", + "284,655", + "285,655", + "286,655", + "287,655", + "288,655", + "289,655", + "290,655", + "291,655", + "292,655", + "293,655", + "294,655", + "295,655", + "296,655", + "297,655", + "298,655", + "299,655", + "300,655", + "301,655", + "302,655", + "303,655", + "304,655", + "305,655", + "306,655", + "307,655", + "308,655", + "309,655", + "310,655", + "311,655", + "312,655", + "313,655", + "314,655", + "315,655", + "316,655", + "317,655", + "318,655", + "319,655", + "320,655", + "321,655", + "322,655", + "323,655", + "324,655", + "325,655", + "326,655", + "327,655", + "328,655", + "329,655", + "330,655", + "331,655", + "332,655", + "333,655", + "334,655", + "335,655", + "336,655", + "337,655", + "338,655", + "339,655", + "275,656", + "276,656", + "277,656", + "278,656", + "279,656", + "280,656", + "281,656", + "282,656", + "283,656", + "284,656", + "285,656", + "286,656", + "287,656", + "288,656", + "289,656", + "290,656", + "291,656", + "292,656", + "293,656", + "294,656", + "295,656", + "296,656", + "297,656", + "298,656", + "299,656", + "300,656", + "301,656", + "302,656", + "303,656", + "304,656", + "305,656", + "306,656", + "307,656", + "308,656", + "309,656", + "310,656", + "311,656", + "312,656", + "313,656", + "314,656", + "315,656", + "316,656", + "317,656", + "318,656", + "319,656", + "320,656", + "321,656", + "322,656", + "323,656", + "324,656", + "325,656", + "326,656", + "327,656", + "328,656", + "329,656", + "330,656", + "331,656", + "332,656", + "333,656", + "334,656", + "335,656", + "336,656", + "337,656", + "338,656", + "339,656", + "275,657", + "276,657", + "277,657", + "278,657", + "279,657", + "280,657", + "281,657", + "282,657", + "283,657", + "284,657", + "285,657", + "286,657", + "287,657", + "288,657", + "289,657", + "290,657", + "291,657", + "292,657", + "293,657", + "294,657", + "295,657", + "296,657", + "297,657", + "298,657", + "299,657", + "300,657", + "301,657", + "302,657", + "303,657", + "304,657", + "305,657", + "306,657", + "307,657", + "308,657", + "309,657", + "310,657", + "311,657", + "312,657", + "313,657", + "314,657", + "315,657", + "316,657", + "317,657", + "318,657", + "319,657", + "320,657", + "321,657", + "322,657", + "323,657", + "324,657", + "325,657", + "326,657", + "327,657", + "328,657", + "329,657", + "330,657", + "331,657", + "332,657", + "333,657", + "334,657", + "335,657", + "336,657", + "337,657", + "338,657", + "339,657", + "275,658", + "276,658", + "277,658", + "278,658", + "279,658", + "280,658", + "281,658", + "282,658", + "283,658", + "284,658", + "285,658", + "286,658", + "287,658", + "288,658", + "289,658", + "290,658", + "291,658", + "292,658", + "293,658", + "294,658", + "295,658", + "296,658", + "297,658", + "298,658", + "299,658", + "300,658", + "301,658", + "302,658", + "303,658", + "304,658", + "305,658", + "306,658", + "307,658", + "308,658", + "309,658", + "310,658", + "311,658", + "312,658", + "313,658", + "314,658", + "315,658", + "316,658", + "317,658", + "318,658", + "319,658", + "320,658", + "321,658", + "322,658", + "323,658", + "324,658", + "325,658", + "326,658", + "327,658", + "328,658", + "329,658", + "330,658", + "331,658", + "332,658", + "333,658", + "334,658", + "335,658", + "336,658", + "337,658", + "338,658", + "339,658", + "275,659", + "276,659", + "277,659", + "278,659", + "279,659", + "280,659", + "281,659", + "282,659", + "283,659", + "284,659", + "285,659", + "286,659", + "287,659", + "288,659", + "289,659", + "290,659", + "291,659", + "292,659", + "293,659", + "294,659", + "295,659", + "296,659", + "297,659", + "298,659", + "299,659", + "300,659", + "301,659", + "302,659", + "303,659", + "304,659", + "305,659", + "306,659", + "307,659", + "308,659", + "309,659", + "310,659", + "311,659", + "312,659", + "313,659", + "314,659", + "315,659", + "316,659", + "317,659", + "318,659", + "319,659", + "320,659", + "321,659", + "322,659", + "323,659", + "324,659", + "325,659", + "326,659", + "327,659", + "328,659", + "329,659", + "330,659", + "331,659", + "332,659", + "333,659", + "334,659", + "335,659", + "336,659", + "337,659", + "338,659", + "339,659", + "275,660", + "276,660", + "277,660", + "278,660", + "279,660", + "280,660", + "281,660", + "282,660", + "283,660", + "284,660", + "285,660", + "286,660", + "287,660", + "288,660", + "289,660", + "290,660", + "291,660", + "292,660", + "293,660", + "294,660", + "295,660", + "296,660", + "297,660", + "298,660", + "299,660", + "300,660", + "301,660", + "302,660", + "303,660", + "304,660", + "305,660", + "306,660", + "307,660", + "308,660", + "309,660", + "310,660", + "311,660", + "312,660", + "313,660", + "314,660", + "315,660", + "316,660", + "317,660", + "318,660", + "319,660", + "320,660", + "321,660", + "322,660", + "323,660", + "324,660", + "325,660", + "326,660", + "327,660", + "328,660", + "329,660", + "330,660", + "331,660", + "332,660", + "333,660", + "334,660", + "335,660", + "336,660", + "337,660", + "338,660", + "339,660", + "275,661", + "276,661", + "277,661", + "278,661", + "279,661", + "280,661", + "281,661", + "282,661", + "283,661", + "284,661", + "285,661", + "286,661", + "287,661", + "288,661", + "289,661", + "290,661", + "291,661", + "292,661", + "293,661", + "294,661", + "295,661", + "296,661", + "297,661", + "298,661", + "299,661", + "300,661", + "301,661", + "302,661", + "303,661", + "304,661", + "305,661", + "306,661", + "307,661", + "308,661", + "309,661", + "310,661", + "311,661", + "312,661", + "313,661", + "314,661", + "315,661", + "316,661", + "317,661", + "318,661", + "319,661", + "320,661", + "321,661", + "322,661", + "323,661", + "324,661", + "325,661", + "326,661", + "327,661", + "328,661", + "329,661", + "330,661", + "331,661", + "332,661", + "333,661", + "334,661", + "335,661", + "336,661", + "337,661", + "338,661", + "339,661", + "275,662", + "276,662", + "277,662", + "278,662", + "279,662", + "280,662", + "281,662", + "282,662", + "283,662", + "284,662", + "285,662", + "286,662", + "287,662", + "288,662", + "289,662", + "290,662", + "291,662", + "292,662", + "293,662", + "294,662", + "295,662", + "296,662", + "297,662", + "298,662", + "299,662", + "300,662", + "301,662", + "302,662", + "303,662", + "304,662", + "305,662", + "306,662", + "307,662", + "308,662", + "309,662", + "310,662", + "311,662", + "312,662", + "313,662", + "314,662", + "315,662", + "316,662", + "317,662", + "318,662", + "319,662", + "320,662", + "321,662", + "322,662", + "323,662", + "324,662", + "325,662", + "326,662", + "327,662", + "328,662", + "329,662", + "330,662", + "331,662", + "332,662", + "333,662", + "334,662", + "335,662", + "336,662", + "337,662", + "338,662", + "339,662", + "275,663", + "276,663", + "277,663", + "278,663", + "279,663", + "280,663", + "281,663", + "282,663", + "283,663", + "284,663", + "285,663", + "286,663", + "287,663", + "288,663", + "289,663", + "290,663", + "291,663", + "292,663", + "293,663", + "294,663", + "295,663", + "296,663", + "297,663", + "298,663", + "299,663", + "300,663", + "301,663", + "302,663", + "303,663", + "304,663", + "305,663", + "306,663", + "307,663", + "308,663", + "309,663", + "310,663", + "311,663", + "312,663", + "313,663", + "314,663", + "315,663", + "316,663", + "317,663", + "318,663", + "319,663", + "320,663", + "321,663", + "322,663", + "323,663", + "324,663", + "325,663", + "326,663", + "327,663", + "328,663", + "329,663", + "330,663", + "331,663", + "332,663", + "333,663", + "334,663", + "335,663", + "336,663", + "337,663", + "338,663", + "339,663", + "275,664", + "276,664", + "277,664", + "278,664", + "279,664", + "280,664", + "281,664", + "282,664", + "283,664", + "284,664", + "285,664", + "286,664", + "287,664", + "288,664", + "289,664", + "290,664", + "291,664", + "292,664", + "293,664", + "294,664", + "295,664", + "296,664", + "297,664", + "298,664", + "299,664", + "300,664", + "301,664", + "302,664", + "303,664", + "304,664", + "305,664", + "306,664", + "307,664", + "308,664", + "309,664", + "310,664", + "311,664", + "312,664", + "313,664", + "314,664", + "315,664", + "316,664", + "317,664", + "318,664", + "319,664", + "320,664", + "321,664", + "322,664", + "323,664", + "324,664", + "325,664", + "326,664", + "327,664", + "328,664", + "329,664", + "330,664", + "331,664", + "332,664", + "333,664", + "334,664", + "335,664", + "336,664", + "337,664", + "338,664", + "339,664", + "275,665", + "276,665", + "277,665", + "278,665", + "279,665", + "280,665", + "281,665", + "282,665", + "283,665", + "284,665", + "285,665", + "286,665", + "287,665", + "288,665", + "289,665", + "290,665", + "291,665", + "292,665", + "293,665", + "294,665", + "295,665", + "296,665", + "297,665", + "298,665", + "299,665", + "300,665", + "301,665", + "302,665", + "303,665", + "304,665", + "305,665", + "306,665", + "307,665", + "308,665", + "309,665", + "310,665", + "311,665", + "312,665", + "313,665", + "314,665", + "315,665", + "316,665", + "317,665", + "318,665", + "319,665", + "320,665", + "321,665", + "322,665", + "323,665", + "324,665", + "325,665", + "326,665", + "327,665", + "328,665", + "329,665", + "330,665", + "331,665", + "332,665", + "333,665", + "334,665", + "335,665", + "336,665", + "337,665", + "338,665", + "339,665", + "275,666", + "276,666", + "277,666", + "278,666", + "279,666", + "280,666", + "281,666", + "282,666", + "283,666", + "284,666", + "285,666", + "286,666", + "287,666", + "288,666", + "289,666", + "290,666", + "291,666", + "292,666", + "293,666", + "294,666", + "295,666", + "296,666", + "297,666", + "298,666", + "299,666", + "300,666", + "301,666", + "302,666", + "303,666", + "304,666", + "305,666", + "306,666", + "307,666", + "308,666", + "309,666", + "310,666", + "311,666", + "312,666", + "313,666", + "314,666", + "315,666", + "316,666", + "317,666", + "318,666", + "319,666", + "320,666", + "321,666", + "322,666", + "323,666", + "324,666", + "325,666", + "326,666", + "327,666", + "328,666", + "329,666", + "330,666", + "331,666", + "332,666", + "333,666", + "334,666", + "335,666", + "336,666", + "337,666", + "338,666", + "339,666", + "275,667", + "276,667", + "277,667", + "278,667", + "279,667", + "280,667", + "281,667", + "282,667", + "283,667", + "284,667", + "285,667", + "286,667", + "287,667", + "288,667", + "289,667", + "290,667", + "291,667", + "292,667", + "293,667", + "294,667", + "295,667", + "296,667", + "297,667", + "298,667", + "299,667", + "300,667", + "301,667", + "302,667", + "303,667", + "304,667", + "305,667", + "306,667", + "307,667", + "308,667", + "309,667", + "310,667", + "311,667", + "312,667", + "313,667", + "314,667", + "315,667", + "316,667", + "317,667", + "318,667", + "319,667", + "320,667", + "321,667", + "322,667", + "323,667", + "324,667", + "325,667", + "326,667", + "327,667", + "328,667", + "329,667", + "330,667", + "331,667", + "332,667", + "333,667", + "334,667", + "335,667", + "336,667", + "337,667", + "338,667", + "339,667", + "275,668", + "276,668", + "277,668", + "278,668", + "279,668", + "280,668", + "281,668", + "282,668", + "283,668", + "284,668", + "285,668", + "286,668", + "287,668", + "288,668", + "289,668", + "290,668", + "291,668", + "292,668", + "293,668", + "294,668", + "295,668", + "296,668", + "297,668", + "298,668", + "299,668", + "300,668", + "301,668", + "302,668", + "303,668", + "304,668", + "305,668", + "306,668", + "307,668", + "308,668", + "309,668", + "310,668", + "311,668", + "312,668", + "313,668", + "314,668", + "315,668", + "316,668", + "317,668", + "318,668", + "319,668", + "320,668", + "321,668", + "322,668", + "323,668", + "324,668", + "325,668", + "326,668", + "327,668", + "328,668", + "329,668", + "330,668", + "331,668", + "332,668", + "333,668", + "334,668", + "335,668", + "336,668", + "337,668", + "338,668", + "339,668", + "275,669", + "276,669", + "277,669", + "278,669", + "279,669", + "280,669", + "281,669", + "282,669", + "283,669", + "284,669", + "285,669", + "286,669", + "287,669", + "288,669", + "289,669", + "290,669", + "291,669", + "292,669", + "293,669", + "294,669", + "295,669", + "296,669", + "297,669", + "298,669", + "299,669", + "300,669", + "301,669", + "302,669", + "303,669", + "304,669", + "305,669", + "306,669", + "307,669", + "308,669", + "309,669", + "310,669", + "311,669", + "312,669", + "313,669", + "314,669", + "315,669", + "316,669", + "317,669", + "318,669", + "319,669", + "320,669", + "321,669", + "322,669", + "323,669", + "324,669", + "325,669", + "326,669", + "327,669", + "328,669", + "329,669", + "330,669", + "331,669", + "332,669", + "333,669", + "334,669", + "335,669", + "336,669", + "337,669", + "338,669", + "339,669", + "275,670", + "276,670", + "277,670", + "278,670", + "279,670", + "280,670", + "281,670", + "282,670", + "283,670", + "284,670", + "285,670", + "286,670", + "287,670", + "288,670", + "289,670", + "290,670", + "291,670", + "292,670", + "293,670", + "294,670", + "295,670", + "296,670", + "297,670", + "298,670", + "299,670", + "300,670", + "301,670", + "302,670", + "303,670", + "304,670", + "305,670", + "306,670", + "307,670", + "308,670", + "309,670", + "310,670", + "311,670", + "312,670", + "313,670", + "314,670", + "315,670", + "316,670", + "317,670", + "318,670", + "319,670", + "320,670", + "321,670", + "322,670", + "323,670", + "324,670", + "325,670", + "326,670", + "327,670", + "328,670", + "329,670", + "330,670", + "331,670", + "332,670", + "333,670", + "334,670", + "335,670", + "336,670", + "337,670", + "338,670", + "339,670", + "275,671", + "276,671", + "277,671", + "278,671", + "279,671", + "280,671", + "281,671", + "282,671", + "283,671", + "284,671", + "285,671", + "286,671", + "287,671", + "288,671", + "289,671", + "290,671", + "291,671", + "292,671", + "293,671", + "294,671", + "295,671", + "296,671", + "297,671", + "298,671", + "299,671", + "300,671", + "301,671", + "302,671", + "303,671", + "304,671", + "305,671", + "306,671", + "307,671", + "308,671", + "309,671", + "310,671", + "311,671", + "312,671", + "313,671", + "314,671", + "315,671", + "316,671", + "317,671", + "318,671", + "319,671", + "320,671", + "321,671", + "322,671", + "323,671", + "324,671", + "325,671", + "326,671", + "327,671", + "328,671", + "329,671", + "330,671", + "331,671", + "332,671", + "333,671", + "334,671", + "335,671", + "336,671", + "337,671", + "338,671", + "339,671", + "275,672", + "276,672", + "277,672", + "278,672", + "279,672", + "280,672", + "281,672", + "282,672", + "283,672", + "284,672", + "285,672", + "286,672", + "287,672", + "288,672", + "289,672", + "290,672", + "291,672", + "292,672", + "293,672", + "294,672", + "295,672", + "296,672", + "297,672", + "298,672", + "299,672", + "300,672", + "301,672", + "302,672", + "303,672", + "304,672", + "305,672", + "306,672", + "307,672", + "308,672", + "309,672", + "310,672", + "311,672", + "312,672", + "313,672", + "314,672", + "315,672", + "316,672", + "317,672", + "318,672", + "319,672", + "320,672", + "321,672", + "322,672", + "323,672", + "324,672", + "325,672", + "326,672", + "327,672", + "328,672", + "329,672", + "330,672", + "331,672", + "332,672", + "333,672", + "334,672", + "335,672", + "336,672", + "337,672", + "338,672", + "339,672", + "275,673", + "276,673", + "277,673", + "278,673", + "279,673", + "280,673", + "281,673", + "282,673", + "283,673", + "284,673", + "285,673", + "286,673", + "287,673", + "288,673", + "289,673", + "290,673", + "291,673", + "292,673", + "293,673", + "294,673", + "295,673", + "296,673", + "297,673", + "298,673", + "299,673", + "300,673", + "301,673", + "302,673", + "303,673", + "304,673", + "305,673", + "306,673", + "307,673", + "308,673", + "309,673", + "310,673", + "311,673", + "312,673", + "313,673", + "314,673", + "315,673", + "316,673", + "317,673", + "318,673", + "319,673", + "320,673", + "321,673", + "322,673", + "323,673", + "324,673", + "325,673", + "326,673", + "327,673", + "328,673", + "329,673", + "330,673", + "331,673", + "332,673", + "333,673", + "334,673", + "335,673", + "336,673", + "337,673", + "338,673", + "339,673", + "275,674", + "276,674", + "277,674", + "278,674", + "279,674", + "280,674", + "281,674", + "282,674", + "283,674", + "284,674", + "285,674", + "286,674", + "287,674", + "288,674", + "289,674", + "290,674", + "291,674", + "292,674", + "293,674", + "294,674", + "295,674", + "296,674", + "297,674", + "298,674", + "299,674", + "300,674", + "301,674", + "302,674", + "303,674", + "304,674", + "305,674", + "306,674", + "307,674", + "308,674", + "309,674", + "310,674", + "311,674", + "312,674", + "313,674", + "314,674", + "315,674", + "316,674", + "317,674", + "318,674", + "319,674", + "320,674", + "321,674", + "322,674", + "323,674", + "324,674", + "325,674", + "326,674", + "327,674", + "328,674", + "329,674", + "330,674", + "331,674", + "332,674", + "333,674", + "334,674", + "335,674", + "336,674", + "337,674", + "338,674", + "339,674", + "275,675", + "276,675", + "277,675", + "278,675", + "279,675", + "280,675", + "281,675", + "282,675", + "283,675", + "284,675", + "285,675", + "286,675", + "287,675", + "288,675", + "289,675", + "290,675", + "291,675", + "292,675", + "293,675", + "294,675", + "295,675", + "296,675", + "297,675", + "298,675", + "299,675", + "300,675", + "301,675", + "302,675", + "303,675", + "304,675", + "305,675", + "306,675", + "307,675", + "308,675", + "309,675", + "310,675", + "311,675", + "312,675", + "313,675", + "314,675", + "315,675", + "316,675", + "317,675", + "318,675", + "319,675", + "320,675", + "321,675", + "322,675", + "323,675", + "324,675", + "325,675", + "326,675", + "327,675", + "328,675", + "329,675", + "330,675", + "331,675", + "332,675", + "333,675", + "334,675", + "335,675", + "336,675", + "337,675", + "338,675", + "339,675", + "275,676", + "276,676", + "277,676", + "278,676", + "279,676", + "280,676", + "281,676", + "282,676", + "283,676", + "284,676", + "285,676", + "286,676", + "287,676", + "288,676", + "289,676", + "290,676", + "291,676", + "292,676", + "293,676", + "294,676", + "295,676", + "296,676", + "297,676", + "298,676", + "299,676", + "300,676", + "301,676", + "302,676", + "303,676", + "304,676", + "305,676", + "306,676", + "307,676", + "308,676", + "309,676", + "310,676", + "311,676", + "312,676", + "313,676", + "314,676", + "315,676", + "316,676", + "317,676", + "318,676", + "319,676", + "320,676", + "321,676", + "322,676", + "323,676", + "324,676", + "325,676", + "326,676", + "327,676", + "328,676", + "329,676", + "330,676", + "331,676", + "332,676", + "333,676", + "334,676", + "335,676", + "336,676", + "337,676", + "338,676", + "339,676", + "275,677", + "276,677", + "277,677", + "278,677", + "279,677", + "280,677", + "281,677", + "282,677", + "283,677", + "284,677", + "285,677", + "286,677", + "287,677", + "288,677", + "289,677", + "290,677", + "291,677", + "292,677", + "293,677", + "294,677", + "295,677", + "296,677", + "297,677", + "298,677", + "299,677", + "300,677", + "301,677", + "302,677", + "303,677", + "304,677", + "305,677", + "306,677", + "307,677", + "308,677", + "309,677", + "310,677", + "311,677", + "312,677", + "313,677", + "314,677", + "315,677", + "316,677", + "317,677", + "318,677", + "319,677", + "320,677", + "321,677", + "322,677", + "323,677", + "324,677", + "325,677", + "326,677", + "327,677", + "328,677", + "329,677", + "330,677", + "331,677", + "332,677", + "333,677", + "334,677", + "335,677", + "336,677", + "337,677", + "338,677", + "339,677", + "275,678", + "276,678", + "277,678", + "278,678", + "279,678", + "280,678", + "281,678", + "282,678", + "283,678", + "284,678", + "285,678", + "286,678", + "287,678", + "288,678", + "289,678", + "290,678", + "291,678", + "292,678", + "293,678", + "294,678", + "295,678", + "296,678", + "297,678", + "298,678", + "299,678", + "300,678", + "301,678", + "302,678", + "303,678", + "304,678", + "305,678", + "306,678", + "307,678", + "308,678", + "309,678", + "310,678", + "311,678", + "312,678", + "313,678", + "314,678", + "315,678", + "316,678", + "317,678", + "318,678", + "319,678", + "320,678", + "321,678", + "322,678", + "323,678", + "324,678", + "325,678", + "326,678", + "327,678", + "328,678", + "329,678", + "330,678", + "331,678", + "332,678", + "333,678", + "334,678", + "335,678", + "336,678", + "337,678", + "338,678", + "339,678", + "275,679", + "276,679", + "277,679", + "278,679", + "279,679", + "280,679", + "281,679", + "282,679", + "283,679", + "284,679", + "285,679", + "286,679", + "287,679", + "288,679", + "289,679", + "290,679", + "291,679", + "292,679", + "293,679", + "294,679", + "295,679", + "296,679", + "297,679", + "298,679", + "299,679", + "300,679", + "301,679", + "302,679", + "303,679", + "304,679", + "305,679", + "306,679", + "307,679", + "308,679", + "309,679", + "310,679", + "311,679", + "312,679", + "313,679", + "314,679", + "315,679", + "316,679", + "317,679", + "318,679", + "319,679", + "320,679", + "321,679", + "322,679", + "323,679", + "324,679", + "325,679", + "326,679", + "327,679", + "328,679", + "329,679", + "330,679", + "331,679", + "332,679", + "333,679", + "334,679", + "335,679", + "336,679", + "337,679", + "338,679", + "339,679", + "275,680", + "276,680", + "277,680", + "278,680", + "279,680", + "280,680", + "281,680", + "282,680", + "283,680", + "284,680", + "285,680", + "286,680", + "287,680", + "288,680", + "289,680", + "290,680", + "291,680", + "292,680", + "293,680", + "294,680", + "295,680", + "296,680", + "297,680", + "298,680", + "299,680", + "300,680", + "301,680", + "302,680", + "303,680", + "304,680", + "305,680", + "306,680", + "307,680", + "308,680", + "309,680", + "310,680", + "311,680", + "312,680", + "313,680", + "314,680", + "315,680", + "316,680", + "317,680", + "318,680", + "319,680", + "320,680", + "321,680", + "322,680", + "323,680", + "324,680", + "325,680", + "326,680", + "327,680", + "328,680", + "329,680", + "330,680", + "331,680", + "332,680", + "333,680", + "334,680", + "335,680", + "336,680", + "337,680", + "338,680", + "339,680", + "275,681", + "276,681", + "277,681", + "278,681", + "279,681", + "280,681", + "281,681", + "282,681", + "283,681", + "284,681", + "285,681", + "286,681", + "287,681", + "288,681", + "289,681", + "290,681", + "291,681", + "292,681", + "293,681", + "294,681", + "295,681", + "296,681", + "297,681", + "298,681", + "299,681", + "300,681", + "301,681", + "302,681", + "303,681", + "304,681", + "305,681", + "306,681", + "307,681", + "308,681", + "309,681", + "310,681", + "311,681", + "312,681", + "313,681", + "314,681", + "315,681", + "316,681", + "317,681", + "318,681", + "319,681", + "320,681", + "321,681", + "322,681", + "323,681", + "324,681", + "325,681", + "326,681", + "327,681", + "328,681", + "329,681", + "330,681", + "331,681", + "332,681", + "333,681", + "334,681", + "335,681", + "336,681", + "337,681", + "338,681", + "339,681", + "275,682", + "276,682", + "277,682", + "278,682", + "279,682", + "280,682", + "281,682", + "282,682", + "283,682", + "284,682", + "285,682", + "286,682", + "287,682", + "288,682", + "289,682", + "290,682", + "291,682", + "292,682", + "293,682", + "294,682", + "295,682", + "296,682", + "297,682", + "298,682", + "299,682", + "300,682", + "301,682", + "302,682", + "303,682", + "304,682", + "305,682", + "306,682", + "307,682", + "308,682", + "309,682", + "310,682", + "311,682", + "312,682", + "313,682", + "314,682", + "315,682", + "316,682", + "317,682", + "318,682", + "319,682", + "320,682", + "321,682", + "322,682", + "323,682", + "324,682", + "325,682", + "326,682", + "327,682", + "328,682", + "329,682", + "330,682", + "331,682", + "332,682", + "333,682", + "334,682", + "335,682", + "336,682", + "337,682", + "338,682", + "339,682", + "275,683", + "276,683", + "277,683", + "278,683", + "279,683", + "280,683", + "281,683", + "282,683", + "283,683", + "284,683", + "285,683", + "286,683", + "287,683", + "288,683", + "289,683", + "290,683", + "291,683", + "292,683", + "293,683", + "294,683", + "295,683", + "296,683", + "297,683", + "298,683", + "299,683", + "300,683", + "301,683", + "302,683", + "303,683", + "304,683", + "305,683", + "306,683", + "307,683", + "308,683", + "309,683", + "310,683", + "311,683", + "312,683", + "313,683", + "314,683", + "315,683", + "316,683", + "317,683", + "318,683", + "319,683", + "320,683", + "321,683", + "322,683", + "323,683", + "324,683", + "325,683", + "326,683", + "327,683", + "328,683", + "329,683", + "330,683", + "331,683", + "332,683", + "333,683", + "334,683", + "335,683", + "336,683", + "337,683", + "338,683", + "339,683", + "275,684", + "276,684", + "277,684", + "278,684", + "279,684", + "280,684", + "281,684", + "282,684", + "283,684", + "284,684", + "285,684", + "286,684", + "287,684", + "288,684", + "289,684", + "290,684", + "291,684", + "292,684", + "293,684", + "294,684", + "295,684", + "296,684", + "297,684", + "298,684", + "299,684", + "300,684", + "301,684", + "302,684", + "303,684", + "304,684", + "305,684", + "306,684", + "307,684", + "308,684", + "309,684", + "310,684", + "311,684", + "312,684", + "313,684", + "314,684", + "315,684", + "316,684", + "317,684", + "318,684", + "319,684", + "320,684", + "321,684", + "322,684", + "323,684", + "324,684", + "325,684", + "326,684", + "327,684", + "328,684", + "329,684", + "330,684", + "331,684", + "332,684", + "333,684", + "334,684", + "335,684", + "336,684", + "337,684", + "338,684", + "339,684", + "275,685", + "276,685", + "277,685", + "278,685", + "279,685", + "280,685", + "281,685", + "282,685", + "283,685", + "284,685", + "285,685", + "286,685", + "287,685", + "288,685", + "289,685", + "290,685", + "291,685", + "292,685", + "293,685", + "294,685", + "295,685", + "296,685", + "297,685", + "298,685", + "299,685", + "300,685", + "301,685", + "302,685", + "303,685", + "304,685", + "305,685", + "306,685", + "307,685", + "308,685", + "309,685", + "310,685", + "311,685", + "312,685", + "313,685", + "314,685", + "315,685", + "316,685", + "317,685", + "318,685", + "319,685", + "320,685", + "321,685", + "322,685", + "323,685", + "324,685", + "325,685", + "326,685", + "327,685", + "328,685", + "329,685", + "330,685", + "331,685", + "332,685", + "333,685", + "334,685", + "335,685", + "336,685", + "337,685", + "338,685", + "339,685", + "275,686", + "276,686", + "277,686", + "278,686", + "279,686", + "280,686", + "281,686", + "282,686", + "283,686", + "284,686", + "285,686", + "286,686", + "287,686", + "288,686", + "289,686", + "290,686", + "291,686", + "292,686", + "293,686", + "294,686", + "295,686", + "296,686", + "297,686", + "298,686", + "299,686", + "300,686", + "301,686", + "302,686", + "303,686", + "304,686", + "305,686", + "306,686", + "307,686", + "308,686", + "309,686", + "310,686", + "311,686", + "312,686", + "313,686", + "314,686", + "315,686", + "316,686", + "317,686", + "318,686", + "319,686", + "320,686", + "321,686", + "322,686", + "323,686", + "324,686", + "325,686", + "326,686", + "327,686", + "328,686", + "329,686", + "330,686", + "331,686", + "332,686", + "333,686", + "334,686", + "335,686", + "336,686", + "337,686", + "338,686", + "339,686", + "275,687", + "276,687", + "277,687", + "278,687", + "279,687", + "280,687", + "281,687", + "282,687", + "283,687", + "284,687", + "285,687", + "286,687", + "287,687", + "288,687", + "289,687", + "290,687", + "291,687", + "292,687", + "293,687", + "294,687", + "295,687", + "296,687", + "297,687", + "298,687", + "299,687", + "300,687", + "301,687", + "302,687", + "303,687", + "304,687", + "305,687", + "306,687", + "307,687", + "308,687", + "309,687", + "310,687", + "311,687", + "312,687", + "313,687", + "314,687", + "315,687", + "316,687", + "317,687", + "318,687", + "319,687", + "320,687", + "321,687", + "322,687", + "323,687", + "324,687", + "325,687", + "326,687", + "327,687", + "328,687", + "329,687", + "330,687", + "331,687", + "332,687", + "333,687", + "334,687", + "335,687", + "336,687", + "337,687", + "338,687", + "339,687", + "275,688", + "276,688", + "277,688", + "278,688", + "279,688", + "280,688", + "281,688", + "282,688", + "283,688", + "284,688", + "285,688", + "286,688", + "287,688", + "288,688", + "289,688", + "290,688", + "291,688", + "292,688", + "293,688", + "294,688", + "295,688", + "296,688", + "297,688", + "298,688", + "299,688", + "300,688", + "301,688", + "302,688", + "303,688", + "304,688", + "305,688", + "306,688", + "307,688", + "308,688", + "309,688", + "310,688", + "311,688", + "312,688", + "313,688", + "314,688", + "315,688", + "316,688", + "317,688", + "318,688", + "319,688", + "320,688", + "321,688", + "322,688", + "323,688", + "324,688", + "325,688", + "326,688", + "327,688", + "328,688", + "329,688", + "330,688", + "331,688", + "332,688", + "333,688", + "334,688", + "335,688", + "336,688", + "337,688", + "338,688", + "339,688", + "275,689", + "276,689", + "277,689", + "278,689", + "279,689", + "280,689", + "281,689", + "282,689", + "283,689", + "284,689", + "285,689", + "286,689", + "287,689", + "288,689", + "289,689", + "290,689", + "291,689", + "292,689", + "293,689", + "294,689", + "295,689", + "296,689", + "297,689", + "298,689", + "299,689", + "300,689", + "301,689", + "302,689", + "303,689", + "304,689", + "305,689", + "306,689", + "307,689", + "308,689", + "309,689", + "310,689", + "311,689", + "312,689", + "313,689", + "314,689", + "315,689", + "316,689", + "317,689", + "318,689", + "319,689", + "320,689", + "321,689", + "322,689", + "323,689", + "324,689", + "325,689", + "326,689", + "327,689", + "328,689", + "329,689", + "330,689", + "331,689", + "332,689", + "333,689", + "334,689", + "335,689", + "336,689", + "337,689", + "338,689", + "339,689", + "275,690", + "276,690", + "277,690", + "278,690", + "279,690", + "280,690", + "281,690", + "282,690", + "283,690", + "284,690", + "285,690", + "286,690", + "287,690", + "288,690", + "289,690", + "290,690", + "291,690", + "292,690", + "293,690", + "294,690", + "295,690", + "296,690", + "297,690", + "298,690", + "299,690", + "300,690", + "301,690", + "302,690", + "303,690", + "304,690", + "305,690", + "306,690", + "307,690", + "308,690", + "309,690", + "310,690", + "311,690", + "312,690", + "313,690", + "314,690", + "315,690", + "316,690", + "317,690", + "318,690", + "319,690", + "320,690", + "321,690", + "322,690", + "323,690", + "324,690", + "325,690", + "326,690", + "327,690", + "328,690", + "329,690", + "330,690", + "331,690", + "332,690", + "333,690", + "334,690", + "335,690", + "336,690", + "337,690", + "338,690", + "339,690", + "275,691", + "276,691", + "277,691", + "278,691", + "279,691", + "280,691", + "281,691", + "282,691", + "283,691", + "284,691", + "285,691", + "286,691", + "287,691", + "288,691", + "289,691", + "290,691", + "291,691", + "292,691", + "293,691", + "294,691", + "295,691", + "296,691", + "297,691", + "298,691", + "299,691", + "300,691", + "301,691", + "302,691", + "303,691", + "304,691", + "305,691", + "306,691", + "307,691", + "308,691", + "309,691", + "310,691", + "311,691", + "312,691", + "313,691", + "314,691", + "315,691", + "316,691", + "317,691", + "318,691", + "319,691", + "320,691", + "321,691", + "322,691", + "323,691", + "324,691", + "325,691", + "326,691", + "327,691", + "328,691", + "329,691", + "330,691", + "331,691", + "332,691", + "333,691", + "334,691", + "335,691", + "336,691", + "337,691", + "338,691", + "339,691", + "275,692", + "276,692", + "277,692", + "278,692", + "279,692", + "280,692", + "281,692", + "282,692", + "283,692", + "284,692", + "285,692", + "286,692", + "287,692", + "288,692", + "289,692", + "290,692", + "291,692", + "292,692", + "293,692", + "294,692", + "295,692", + "296,692", + "297,692", + "298,692", + "299,692", + "300,692", + "301,692", + "302,692", + "303,692", + "304,692", + "305,692", + "306,692", + "307,692", + "308,692", + "309,692", + "310,692", + "311,692", + "312,692", + "313,692", + "314,692", + "315,692", + "316,692", + "317,692", + "318,692", + "319,692", + "320,692", + "321,692", + "322,692", + "323,692", + "324,692", + "325,692", + "326,692", + "327,692", + "328,692", + "329,692", + "330,692", + "331,692", + "332,692", + "333,692", + "334,692", + "335,692", + "336,692", + "337,692", + "338,692", + "339,692", + "275,693", + "276,693", + "277,693", + "278,693", + "279,693", + "280,693", + "281,693", + "282,693", + "283,693", + "284,693", + "285,693", + "286,693", + "287,693", + "288,693", + "289,693", + "290,693", + "291,693", + "292,693", + "293,693", + "294,693", + "295,693", + "296,693", + "297,693", + "298,693", + "299,693", + "300,693", + "301,693", + "302,693", + "303,693", + "304,693", + "305,693", + "306,693", + "307,693", + "308,693", + "309,693", + "310,693", + "311,693", + "312,693", + "313,693", + "314,693", + "315,693", + "316,693", + "317,693", + "318,693", + "319,693", + "320,693", + "321,693", + "322,693", + "323,693", + "324,693", + "325,693", + "326,693", + "327,693", + "328,693", + "329,693", + "330,693", + "331,693", + "332,693", + "333,693", + "334,693", + "335,693", + "336,693", + "337,693", + "338,693", + "339,693", + "275,694", + "276,694", + "277,694", + "278,694", + "279,694", + "280,694", + "281,694", + "282,694", + "283,694", + "284,694", + "285,694", + "286,694", + "287,694", + "288,694", + "289,694", + "290,694", + "291,694", + "292,694", + "293,694", + "294,694", + "295,694", + "296,694", + "297,694", + "298,694", + "299,694", + "300,694", + "301,694", + "302,694", + "303,694", + "304,694", + "305,694", + "306,694", + "307,694", + "308,694", + "309,694", + "310,694", + "311,694", + "312,694", + "313,694", + "314,694", + "315,694", + "316,694", + "317,694", + "318,694", + "319,694", + "320,694", + "321,694", + "322,694", + "323,694", + "324,694", + "325,694", + "326,694", + "327,694", + "328,694", + "329,694", + "330,694", + "331,694", + "332,694", + "333,694", + "334,694", + "335,694", + "336,694", + "337,694", + "338,694", + "339,694", + "275,695", + "276,695", + "277,695", + "278,695", + "279,695", + "280,695", + "281,695", + "282,695", + "283,695", + "284,695", + "285,695", + "286,695", + "287,695", + "288,695", + "289,695", + "290,695", + "291,695", + "292,695", + "293,695", + "294,695", + "295,695", + "296,695", + "297,695", + "298,695", + "299,695", + "300,695", + "301,695", + "302,695", + "303,695", + "304,695", + "305,695", + "306,695", + "307,695", + "308,695", + "309,695", + "310,695", + "311,695", + "312,695", + "313,695", + "314,695", + "315,695", + "316,695", + "317,695", + "318,695", + "319,695", + "320,695", + "321,695", + "322,695", + "323,695", + "324,695", + "325,695", + "326,695", + "327,695", + "328,695", + "329,695", + "330,695", + "331,695", + "332,695", + "333,695", + "334,695", + "335,695", + "336,695", + "337,695", + "338,695", + "339,695", + "275,696", + "276,696", + "277,696", + "278,696", + "279,696", + "280,696", + "281,696", + "282,696", + "283,696", + "284,696", + "285,696", + "286,696", + "287,696", + "288,696", + "289,696", + "290,696", + "291,696", + "292,696", + "293,696", + "294,696", + "295,696", + "296,696", + "297,696", + "298,696", + "299,696", + "300,696", + "301,696", + "302,696", + "303,696", + "304,696", + "305,696", + "306,696", + "307,696", + "308,696", + "309,696", + "310,696", + "311,696", + "312,696", + "313,696", + "314,696", + "315,696", + "316,696", + "317,696", + "318,696", + "319,696", + "320,696", + "321,696", + "322,696", + "323,696", + "324,696", + "325,696", + "326,696", + "327,696", + "328,696", + "329,696", + "330,696", + "331,696", + "332,696", + "333,696", + "334,696", + "335,696", + "336,696", + "337,696", + "338,696", + "339,696", + "275,697", + "276,697", + "277,697", + "278,697", + "279,697", + "280,697", + "281,697", + "282,697", + "283,697", + "284,697", + "285,697", + "286,697", + "287,697", + "288,697", + "289,697", + "290,697", + "291,697", + "292,697", + "293,697", + "294,697", + "295,697", + "296,697", + "297,697", + "298,697", + "299,697", + "300,697", + "301,697", + "302,697", + "303,697", + "304,697", + "305,697", + "306,697", + "307,697", + "308,697", + "309,697", + "310,697", + "311,697", + "312,697", + "313,697", + "314,697", + "315,697", + "316,697", + "317,697", + "318,697", + "319,697", + "320,697", + "321,697", + "322,697", + "323,697", + "324,697", + "325,697", + "326,697", + "327,697", + "328,697", + "329,697", + "330,697", + "331,697", + "332,697", + "333,697", + "334,697", + "335,697", + "336,697", + "337,697", + "338,697", + "339,697", + "275,698", + "276,698", + "277,698", + "278,698", + "279,698", + "280,698", + "281,698", + "282,698", + "283,698", + "284,698", + "285,698", + "286,698", + "287,698", + "288,698", + "289,698", + "290,698", + "291,698", + "292,698", + "293,698", + "294,698", + "295,698", + "296,698", + "297,698", + "298,698", + "299,698", + "300,698", + "301,698", + "302,698", + "303,698", + "304,698", + "305,698", + "306,698", + "307,698", + "308,698", + "309,698", + "310,698", + "311,698", + "312,698", + "313,698", + "314,698", + "315,698", + "316,698", + "317,698", + "318,698", + "319,698", + "320,698", + "321,698", + "322,698", + "323,698", + "324,698", + "325,698", + "326,698", + "327,698", + "328,698", + "329,698", + "330,698", + "331,698", + "332,698", + "333,698", + "334,698", + "335,698", + "336,698", + "337,698", + "338,698", + "339,698", + "275,699", + "276,699", + "277,699", + "278,699", + "279,699", + "280,699", + "281,699", + "282,699", + "283,699", + "284,699", + "285,699", + "286,699", + "287,699", + "288,699", + "289,699", + "290,699", + "291,699", + "292,699", + "293,699", + "294,699", + "295,699", + "296,699", + "297,699", + "298,699", + "299,699", + "300,699", + "301,699", + "302,699", + "303,699", + "304,699", + "305,699", + "306,699", + "307,699", + "308,699", + "309,699", + "310,699", + "311,699", + "312,699", + "313,699", + "314,699", + "315,699", + "316,699", + "317,699", + "318,699", + "319,699", + "320,699", + "321,699", + "322,699", + "323,699", + "324,699", + "325,699", + "326,699", + "327,699", + "328,699", + "329,699", + "330,699", + "331,699", + "332,699", + "333,699", + "334,699", + "335,699", + "336,699", + "337,699", + "338,699", + "339,699", + "275,700", + "276,700", + "277,700", + "278,700", + "279,700", + "280,700", + "281,700", + "282,700", + "283,700", + "284,700", + "285,700", + "286,700", + "287,700", + "288,700", + "289,700", + "290,700", + "291,700", + "292,700", + "293,700", + "294,700", + "295,700", + "296,700", + "297,700", + "298,700", + "299,700", + "300,700", + "301,700", + "302,700", + "303,700", + "304,700", + "305,700", + "306,700", + "307,700", + "308,700", + "309,700", + "310,700", + "311,700", + "312,700", + "313,700", + "314,700", + "315,700", + "316,700", + "317,700", + "318,700", + "319,700", + "320,700", + "321,700", + "322,700", + "323,700", + "324,700", + "325,700", + "326,700", + "327,700", + "328,700", + "329,700", + "330,700", + "331,700", + "332,700", + "333,700", + "334,700", + "335,700", + "336,700", + "337,700", + "338,700", + "339,700", + "275,701", + "276,701", + "277,701", + "278,701", + "279,701", + "280,701", + "281,701", + "282,701", + "283,701", + "284,701", + "285,701", + "286,701", + "287,701", + "288,701", + "289,701", + "290,701", + "291,701", + "292,701", + "293,701", + "294,701", + "295,701", + "296,701", + "297,701", + "298,701", + "299,701", + "300,701", + "301,701", + "302,701", + "303,701", + "304,701", + "305,701", + "306,701", + "307,701", + "308,701", + "309,701", + "310,701", + "311,701", + "312,701", + "313,701", + "314,701", + "315,701", + "316,701", + "317,701", + "318,701", + "319,701", + "320,701", + "321,701", + "322,701", + "323,701", + "324,701", + "325,701", + "326,701", + "327,701", + "328,701", + "329,701", + "330,701", + "331,701", + "332,701", + "333,701", + "334,701", + "335,701", + "336,701", + "337,701", + "338,701", + "339,701", + "275,702", + "276,702", + "277,702", + "278,702", + "279,702", + "280,702", + "281,702", + "282,702", + "283,702", + "284,702", + "285,702", + "286,702", + "287,702", + "288,702", + "289,702", + "290,702", + "291,702", + "292,702", + "293,702", + "294,702", + "295,702", + "296,702", + "297,702", + "298,702", + "299,702", + "300,702", + "301,702", + "302,702", + "303,702", + "304,702", + "305,702", + "306,702", + "307,702", + "308,702", + "309,702", + "310,702", + "311,702", + "312,702", + "313,702", + "314,702", + "315,702", + "316,702", + "317,702", + "318,702", + "319,702", + "320,702", + "321,702", + "322,702", + "323,702", + "324,702", + "325,702", + "326,702", + "327,702", + "328,702", + "329,702", + "330,702", + "331,702", + "332,702", + "333,702", + "334,702", + "335,702", + "336,702", + "337,702", + "338,702", + "339,702", + "275,703", + "276,703", + "277,703", + "278,703", + "279,703", + "280,703", + "281,703", + "282,703", + "283,703", + "284,703", + "285,703", + "286,703", + "287,703", + "288,703", + "289,703", + "290,703", + "291,703", + "292,703", + "293,703", + "294,703", + "295,703", + "296,703", + "297,703", + "298,703", + "299,703", + "300,703", + "301,703", + "302,703", + "303,703", + "304,703", + "305,703", + "306,703", + "307,703", + "308,703", + "309,703", + "310,703", + "311,703", + "312,703", + "313,703", + "314,703", + "315,703", + "316,703", + "317,703", + "318,703", + "319,703", + "320,703", + "321,703", + "322,703", + "323,703", + "324,703", + "325,703", + "326,703", + "327,703", + "328,703", + "329,703", + "330,703", + "331,703", + "332,703", + "333,703", + "334,703", + "335,703", + "336,703", + "337,703", + "338,703", + "339,703", + "275,704", + "276,704", + "277,704", + "278,704", + "279,704", + "280,704", + "281,704", + "282,704", + "283,704", + "284,704", + "285,704", + "286,704", + "287,704", + "288,704", + "289,704", + "290,704", + "291,704", + "292,704", + "293,704", + "294,704", + "295,704", + "296,704", + "297,704", + "298,704", + "299,704", + "300,704", + "301,704", + "302,704", + "303,704", + "304,704", + "305,704", + "306,704", + "307,704", + "308,704", + "309,704", + "310,704", + "311,704", + "312,704", + "313,704", + "314,704", + "315,704", + "316,704", + "317,704", + "318,704", + "319,704", + "320,704", + "321,704", + "322,704", + "323,704", + "324,704", + "325,704", + "326,704", + "327,704", + "328,704", + "329,704", + "330,704", + "331,704", + "332,704", + "333,704", + "334,704", + "335,704", + "336,704", + "337,704", + "338,704", + "339,704", + "275,705", + "276,705", + "277,705", + "278,705", + "279,705", + "280,705", + "281,705", + "282,705", + "283,705", + "284,705", + "285,705", + "286,705", + "287,705", + "288,705", + "289,705", + "290,705", + "291,705", + "292,705", + "293,705", + "294,705", + "295,705", + "296,705", + "297,705", + "298,705", + "299,705", + "300,705", + "301,705", + "302,705", + "303,705", + "304,705", + "305,705", + "306,705", + "307,705", + "308,705", + "309,705", + "310,705", + "311,705", + "312,705", + "313,705", + "314,705", + "315,705", + "316,705", + "317,705", + "318,705", + "319,705", + "320,705", + "321,705", + "322,705", + "323,705", + "324,705", + "325,705", + "326,705", + "327,705", + "328,705", + "329,705", + "330,705", + "331,705", + "332,705", + "333,705", + "334,705", + "335,705", + "336,705", + "337,705", + "338,705", + "339,705", + "275,706", + "276,706", + "277,706", + "278,706", + "279,706", + "280,706", + "281,706", + "282,706", + "283,706", + "284,706", + "285,706", + "286,706", + "287,706", + "288,706", + "289,706", + "290,706", + "291,706", + "292,706", + "293,706", + "294,706", + "295,706", + "296,706", + "297,706", + "298,706", + "299,706", + "300,706", + "301,706", + "302,706", + "303,706", + "304,706", + "305,706", + "306,706", + "307,706", + "308,706", + "309,706", + "310,706", + "311,706", + "312,706", + "313,706", + "314,706", + "315,706", + "316,706", + "317,706", + "318,706", + "319,706", + "320,706", + "321,706", + "322,706", + "323,706", + "324,706", + "325,706", + "326,706", + "327,706", + "328,706", + "329,706", + "330,706", + "331,706", + "332,706", + "333,706", + "334,706", + "335,706", + "336,706", + "337,706", + "338,706", + "339,706", + "275,707", + "276,707", + "277,707", + "278,707", + "279,707", + "280,707", + "281,707", + "282,707", + "283,707", + "284,707", + "285,707", + "286,707", + "287,707", + "288,707", + "289,707", + "290,707", + "291,707", + "292,707", + "293,707", + "294,707", + "295,707", + "296,707", + "297,707", + "298,707", + "299,707", + "300,707", + "301,707", + "302,707", + "303,707", + "304,707", + "305,707", + "306,707", + "307,707", + "308,707", + "309,707", + "310,707", + "311,707", + "312,707", + "313,707", + "314,707", + "315,707", + "316,707", + "317,707", + "318,707", + "319,707", + "320,707", + "321,707", + "322,707", + "323,707", + "324,707", + "325,707", + "326,707", + "327,707", + "328,707", + "329,707", + "330,707", + "331,707", + "332,707", + "333,707", + "334,707", + "335,707", + "336,707", + "337,707", + "338,707", + "339,707", + "275,708", + "276,708", + "277,708", + "278,708", + "279,708", + "280,708", + "281,708", + "282,708", + "283,708", + "284,708", + "285,708", + "286,708", + "287,708", + "288,708", + "289,708", + "290,708", + "291,708", + "292,708", + "293,708", + "294,708", + "295,708", + "296,708", + "297,708", + "298,708", + "299,708", + "300,708", + "301,708", + "302,708", + "303,708", + "304,708", + "305,708", + "306,708", + "307,708", + "308,708", + "309,708", + "310,708", + "311,708", + "312,708", + "313,708", + "314,708", + "315,708", + "316,708", + "317,708", + "318,708", + "319,708", + "320,708", + "321,708", + "322,708", + "323,708", + "324,708", + "325,708", + "326,708", + "327,708", + "328,708", + "329,708", + "330,708", + "331,708", + "332,708", + "333,708", + "334,708", + "335,708", + "336,708", + "337,708", + "338,708", + "339,708", + "275,709", + "276,709", + "277,709", + "278,709", + "279,709", + "280,709", + "281,709", + "282,709", + "283,709", + "284,709", + "285,709", + "286,709", + "287,709", + "288,709", + "289,709", + "290,709", + "291,709", + "292,709", + "293,709", + "294,709", + "295,709", + "296,709", + "297,709", + "298,709", + "299,709", + "300,709", + "301,709", + "302,709", + "303,709", + "304,709", + "305,709", + "306,709", + "307,709", + "308,709", + "309,709", + "310,709", + "311,709", + "312,709", + "313,709", + "314,709", + "315,709", + "316,709", + "317,709", + "318,709", + "319,709", + "320,709", + "321,709", + "322,709", + "323,709", + "324,709", + "325,709", + "326,709", + "327,709", + "328,709", + "329,709", + "330,709", + "331,709", + "332,709", + "333,709", + "334,709", + "335,709", + "336,709", + "337,709", + "338,709", + "339,709", + "275,710", + "276,710", + "277,710", + "278,710", + "279,710", + "280,710", + "281,710", + "282,710", + "283,710", + "284,710", + "285,710", + "286,710", + "287,710", + "288,710", + "289,710", + "290,710", + "291,710", + "292,710", + "293,710", + "294,710", + "295,710", + "296,710", + "297,710", + "298,710", + "299,710", + "300,710", + "301,710", + "302,710", + "303,710", + "304,710", + "305,710", + "306,710", + "307,710", + "308,710", + "309,710", + "310,710", + "311,710", + "312,710", + "313,710", + "314,710", + "315,710", + "316,710", + "317,710", + "318,710", + "319,710", + "320,710", + "321,710", + "322,710", + "323,710", + "324,710", + "325,710", + "326,710", + "327,710", + "328,710", + "329,710", + "330,710", + "331,710", + "332,710", + "333,710", + "334,710", + "335,710", + "336,710", + "337,710", + "338,710", + "339,710", + "275,711", + "276,711", + "277,711", + "278,711", + "279,711", + "280,711", + "281,711", + "282,711", + "283,711", + "284,711", + "285,711", + "286,711", + "287,711", + "288,711", + "289,711", + "290,711", + "291,711", + "292,711", + "293,711", + "294,711", + "295,711", + "296,711", + "297,711", + "298,711", + "299,711", + "300,711", + "301,711", + "302,711", + "303,711", + "304,711", + "305,711", + "306,711", + "307,711", + "308,711", + "309,711", + "310,711", + "311,711", + "312,711", + "313,711", + "314,711", + "315,711", + "316,711", + "317,711", + "318,711", + "319,711", + "320,711", + "321,711", + "322,711", + "323,711", + "324,711", + "325,711", + "326,711", + "327,711", + "328,711", + "329,711", + "330,711", + "331,711", + "332,711", + "333,711", + "334,711", + "335,711", + "336,711", + "337,711", + "338,711", + "339,711", + "275,712", + "276,712", + "277,712", + "278,712", + "279,712", + "280,712", + "281,712", + "282,712", + "283,712", + "284,712", + "285,712", + "286,712", + "287,712", + "288,712", + "289,712", + "290,712", + "291,712", + "292,712", + "293,712", + "294,712", + "295,712", + "296,712", + "297,712", + "298,712", + "299,712", + "300,712", + "301,712", + "302,712", + "303,712", + "304,712", + "305,712", + "306,712", + "307,712", + "308,712", + "309,712", + "310,712", + "311,712", + "312,712", + "313,712", + "314,712", + "315,712", + "316,712", + "317,712", + "318,712", + "319,712", + "320,712", + "321,712", + "322,712", + "323,712", + "324,712", + "325,712", + "326,712", + "327,712", + "328,712", + "329,712", + "330,712", + "331,712", + "332,712", + "333,712", + "334,712", + "335,712", + "336,712", + "337,712", + "338,712", + "339,712", + "275,713", + "276,713", + "277,713", + "278,713", + "279,713", + "280,713", + "281,713", + "282,713", + "283,713", + "284,713", + "285,713", + "286,713", + "287,713", + "288,713", + "289,713", + "290,713", + "291,713", + "292,713", + "293,713", + "294,713", + "295,713", + "296,713", + "297,713", + "298,713", + "299,713", + "300,713", + "301,713", + "302,713", + "303,713", + "304,713", + "305,713", + "306,713", + "307,713", + "308,713", + "309,713", + "310,713", + "311,713", + "312,713", + "313,713", + "314,713", + "315,713", + "316,713", + "317,713", + "318,713", + "319,713", + "320,713", + "321,713", + "322,713", + "323,713", + "324,713", + "325,713", + "326,713", + "327,713", + "328,713", + "329,713", + "330,713", + "331,713", + "332,713", + "333,713", + "334,713", + "335,713", + "336,713", + "337,713", + "338,713", + "339,713", + "275,714", + "276,714", + "277,714", + "278,714", + "279,714", + "280,714", + "281,714", + "282,714", + "283,714", + "284,714", + "285,714", + "286,714", + "287,714", + "288,714", + "289,714", + "290,714", + "291,714", + "292,714", + "293,714", + "294,714", + "295,714", + "296,714", + "297,714", + "298,714", + "299,714", + "300,714", + "301,714", + "302,714", + "303,714", + "304,714", + "305,714", + "306,714", + "307,714", + "308,714", + "309,714", + "310,714", + "311,714", + "312,714", + "313,714", + "314,714", + "315,714", + "316,714", + "317,714", + "318,714", + "319,714", + "320,714", + "321,714", + "322,714", + "323,714", + "324,714", + "325,714", + "326,714", + "327,714", + "328,714", + "329,714", + "330,714", + "331,714", + "332,714", + "333,714", + "334,714", + "335,714", + "336,714", + "337,714", + "338,714", + "339,714", + "-425,475", + "-424,475", + "-423,475", + "-422,475", + "-421,475", + "-420,475", + "-419,475", + "-418,475", + "-417,475", + "-416,475", + "-415,475", + "-414,475", + "-413,475", + "-412,475", + "-411,475", + "-410,475", + "-409,475", + "-408,475", + "-407,475", + "-406,475", + "-405,475", + "-404,475", + "-403,475", + "-402,475", + "-401,475", + "-400,475", + "-399,475", + "-398,475", + "-397,475", + "-396,475", + "-395,475", + "-394,475", + "-393,475", + "-392,475", + "-391,475", + "-390,475", + "-389,475", + "-388,475", + "-387,475", + "-386,475", + "-385,475", + "-384,475", + "-383,475", + "-382,475", + "-381,475", + "-380,475", + "-379,475", + "-378,475", + "-377,475", + "-376,475", + "-375,475", + "-374,475", + "-373,475", + "-372,475", + "-371,475", + "-370,475", + "-369,475", + "-368,475", + "-367,475", + "-366,475", + "-365,475", + "-364,475", + "-363,475", + "-362,475", + "-361,475", + "-425,476", + "-424,476", + "-423,476", + "-422,476", + "-421,476", + "-420,476", + "-419,476", + "-418,476", + "-417,476", + "-416,476", + "-415,476", + "-414,476", + "-413,476", + "-412,476", + "-411,476", + "-410,476", + "-409,476", + "-408,476", + "-407,476", + "-406,476", + "-405,476", + "-404,476", + "-403,476", + "-402,476", + "-401,476", + "-400,476", + "-399,476", + "-398,476", + "-397,476", + "-396,476", + "-395,476", + "-394,476", + "-393,476", + "-392,476", + "-391,476", + "-390,476", + "-389,476", + "-388,476", + "-387,476", + "-386,476", + "-385,476", + "-384,476", + "-383,476", + "-382,476", + "-381,476", + "-380,476", + "-379,476", + "-378,476", + "-377,476", + "-376,476", + "-375,476", + "-374,476", + "-373,476", + "-372,476", + "-371,476", + "-370,476", + "-369,476", + "-368,476", + "-367,476", + "-366,476", + "-365,476", + "-364,476", + "-363,476", + "-362,476", + "-361,476", + "-425,477", + "-424,477", + "-423,477", + "-422,477", + "-421,477", + "-420,477", + "-419,477", + "-418,477", + "-417,477", + "-416,477", + "-415,477", + "-414,477", + "-413,477", + "-412,477", + "-411,477", + "-410,477", + "-409,477", + "-408,477", + "-407,477", + "-406,477", + "-405,477", + "-404,477", + "-403,477", + "-402,477", + "-401,477", + "-400,477", + "-399,477", + "-398,477", + "-397,477", + "-396,477", + "-395,477", + "-394,477", + "-393,477", + "-392,477", + "-391,477", + "-390,477", + "-389,477", + "-388,477", + "-387,477", + "-386,477", + "-385,477", + "-384,477", + "-383,477", + "-382,477", + "-381,477", + "-380,477", + "-379,477", + "-378,477", + "-377,477", + "-376,477", + "-375,477", + "-374,477", + "-373,477", + "-372,477", + "-371,477", + "-370,477", + "-369,477", + "-368,477", + "-367,477", + "-366,477", + "-365,477", + "-364,477", + "-363,477", + "-362,477", + "-361,477", + "-425,478", + "-424,478", + "-423,478", + "-422,478", + "-421,478", + "-420,478", + "-419,478", + "-418,478", + "-417,478", + "-416,478", + "-415,478", + "-414,478", + "-413,478", + "-412,478", + "-411,478", + "-410,478", + "-409,478", + "-408,478", + "-407,478", + "-406,478", + "-405,478", + "-404,478", + "-403,478", + "-402,478", + "-401,478", + "-400,478", + "-399,478", + "-398,478", + "-397,478", + "-396,478", + "-395,478", + "-394,478", + "-393,478", + "-392,478", + "-391,478", + "-390,478", + "-389,478", + "-388,478", + "-387,478", + "-386,478", + "-385,478", + "-384,478", + "-383,478", + "-382,478", + "-381,478", + "-380,478", + "-379,478", + "-378,478", + "-377,478", + "-376,478", + "-375,478", + "-374,478", + "-373,478", + "-372,478", + "-371,478", + "-370,478", + "-369,478", + "-368,478", + "-367,478", + "-366,478", + "-365,478", + "-364,478", + "-363,478", + "-362,478", + "-361,478", + "-425,479", + "-424,479", + "-423,479", + "-422,479", + "-421,479", + "-420,479", + "-419,479", + "-418,479", + "-417,479", + "-416,479", + "-415,479", + "-414,479", + "-413,479", + "-412,479", + "-411,479", + "-410,479", + "-409,479", + "-408,479", + "-407,479", + "-406,479", + "-405,479", + "-404,479", + "-403,479", + "-402,479", + "-401,479", + "-400,479", + "-399,479", + "-398,479", + "-397,479", + "-396,479", + "-395,479", + "-394,479", + "-393,479", + "-392,479", + "-391,479", + "-390,479", + "-389,479", + "-388,479", + "-387,479", + "-386,479", + "-385,479", + "-384,479", + "-383,479", + "-382,479", + "-381,479", + "-380,479", + "-379,479", + "-378,479", + "-377,479", + "-376,479", + "-375,479", + "-374,479", + "-373,479", + "-372,479", + "-371,479", + "-370,479", + "-369,479", + "-368,479", + "-367,479", + "-366,479", + "-365,479", + "-364,479", + "-363,479", + "-362,479", + "-361,479", + "-425,480", + "-424,480", + "-423,480", + "-422,480", + "-421,480", + "-420,480", + "-419,480", + "-418,480", + "-417,480", + "-416,480", + "-415,480", + "-414,480", + "-413,480", + "-412,480", + "-411,480", + "-410,480", + "-409,480", + "-408,480", + "-407,480", + "-406,480", + "-405,480", + "-404,480", + "-403,480", + "-402,480", + "-401,480", + "-400,480", + "-399,480", + "-398,480", + "-397,480", + "-396,480", + "-395,480", + "-394,480", + "-393,480", + "-392,480", + "-391,480", + "-390,480", + "-389,480", + "-388,480", + "-387,480", + "-386,480", + "-385,480", + "-384,480", + "-383,480", + "-382,480", + "-381,480", + "-380,480", + "-379,480", + "-378,480", + "-377,480", + "-376,480", + "-375,480", + "-374,480", + "-373,480", + "-372,480", + "-371,480", + "-370,480", + "-369,480", + "-368,480", + "-367,480", + "-366,480", + "-365,480", + "-364,480", + "-363,480", + "-362,480", + "-361,480", + "-425,481", + "-424,481", + "-423,481", + "-422,481", + "-421,481", + "-420,481", + "-419,481", + "-418,481", + "-417,481", + "-416,481", + "-415,481", + "-414,481", + "-413,481", + "-412,481", + "-411,481", + "-410,481", + "-409,481", + "-408,481", + "-407,481", + "-406,481", + "-405,481", + "-404,481", + "-403,481", + "-402,481", + "-401,481", + "-400,481", + "-399,481", + "-398,481", + "-397,481", + "-396,481", + "-395,481", + "-394,481", + "-393,481", + "-392,481", + "-391,481", + "-390,481", + "-389,481", + "-388,481", + "-387,481", + "-386,481", + "-385,481", + "-384,481", + "-383,481", + "-382,481", + "-381,481", + "-380,481", + "-379,481", + "-378,481", + "-377,481", + "-376,481", + "-375,481", + "-374,481", + "-373,481", + "-372,481", + "-371,481", + "-370,481", + "-369,481", + "-368,481", + "-367,481", + "-366,481", + "-365,481", + "-364,481", + "-363,481", + "-362,481", + "-361,481", + "-425,482", + "-424,482", + "-423,482", + "-422,482", + "-421,482", + "-420,482", + "-419,482", + "-418,482", + "-417,482", + "-416,482", + "-415,482", + "-414,482", + "-413,482", + "-412,482", + "-411,482", + "-410,482", + "-409,482", + "-408,482", + "-407,482", + "-406,482", + "-405,482", + "-404,482", + "-403,482", + "-402,482", + "-401,482", + "-400,482", + "-399,482", + "-398,482", + "-397,482", + "-396,482", + "-395,482", + "-394,482", + "-393,482", + "-392,482", + "-391,482", + "-390,482", + "-389,482", + "-388,482", + "-387,482", + "-386,482", + "-385,482", + "-384,482", + "-383,482", + "-382,482", + "-381,482", + "-380,482", + "-379,482", + "-378,482", + "-377,482", + "-376,482", + "-375,482", + "-374,482", + "-373,482", + "-372,482", + "-371,482", + "-370,482", + "-369,482", + "-368,482", + "-367,482", + "-366,482", + "-365,482", + "-364,482", + "-363,482", + "-362,482", + "-361,482", + "-425,483", + "-424,483", + "-423,483", + "-422,483", + "-421,483", + "-420,483", + "-419,483", + "-418,483", + "-417,483", + "-416,483", + "-415,483", + "-414,483", + "-413,483", + "-412,483", + "-411,483", + "-410,483", + "-409,483", + "-408,483", + "-407,483", + "-406,483", + "-405,483", + "-404,483", + "-403,483", + "-402,483", + "-401,483", + "-400,483", + "-399,483", + "-398,483", + "-397,483", + "-396,483", + "-395,483", + "-394,483", + "-393,483", + "-392,483", + "-391,483", + "-390,483", + "-389,483", + "-388,483", + "-387,483", + "-386,483", + "-385,483", + "-384,483", + "-383,483", + "-382,483", + "-381,483", + "-380,483", + "-379,483", + "-378,483", + "-377,483", + "-376,483", + "-375,483", + "-374,483", + "-373,483", + "-372,483", + "-371,483", + "-370,483", + "-369,483", + "-368,483", + "-367,483", + "-366,483", + "-365,483", + "-364,483", + "-363,483", + "-362,483", + "-361,483", + "-425,484", + "-424,484", + "-423,484", + "-422,484", + "-421,484", + "-420,484", + "-419,484", + "-418,484", + "-417,484", + "-416,484", + "-415,484", + "-414,484", + "-413,484", + "-412,484", + "-411,484", + "-410,484", + "-409,484", + "-408,484", + "-407,484", + "-406,484", + "-405,484", + "-404,484", + "-403,484", + "-402,484", + "-401,484", + "-400,484", + "-399,484", + "-398,484", + "-397,484", + "-396,484", + "-395,484", + "-394,484", + "-393,484", + "-392,484", + "-391,484", + "-390,484", + "-389,484", + "-388,484", + "-387,484", + "-386,484", + "-385,484", + "-384,484", + "-383,484", + "-382,484", + "-381,484", + "-380,484", + "-379,484", + "-378,484", + "-377,484", + "-376,484", + "-375,484", + "-374,484", + "-373,484", + "-372,484", + "-371,484", + "-370,484", + "-369,484", + "-368,484", + "-367,484", + "-366,484", + "-365,484", + "-364,484", + "-363,484", + "-362,484", + "-361,484", + "-425,485", + "-424,485", + "-423,485", + "-422,485", + "-421,485", + "-420,485", + "-419,485", + "-418,485", + "-417,485", + "-416,485", + "-415,485", + "-414,485", + "-413,485", + "-412,485", + "-411,485", + "-410,485", + "-409,485", + "-408,485", + "-407,485", + "-406,485", + "-405,485", + "-404,485", + "-403,485", + "-402,485", + "-401,485", + "-400,485", + "-399,485", + "-398,485", + "-397,485", + "-396,485", + "-395,485", + "-394,485", + "-393,485", + "-392,485", + "-391,485", + "-390,485", + "-389,485", + "-388,485", + "-387,485", + "-386,485", + "-385,485", + "-384,485", + "-383,485", + "-382,485", + "-381,485", + "-380,485", + "-379,485", + "-378,485", + "-377,485", + "-376,485", + "-375,485", + "-374,485", + "-373,485", + "-372,485", + "-371,485", + "-370,485", + "-369,485", + "-368,485", + "-367,485", + "-366,485", + "-365,485", + "-364,485", + "-363,485", + "-362,485", + "-361,485", + "-425,486", + "-424,486", + "-423,486", + "-422,486", + "-421,486", + "-420,486", + "-419,486", + "-418,486", + "-417,486", + "-416,486", + "-415,486", + "-414,486", + "-413,486", + "-412,486", + "-411,486", + "-410,486", + "-409,486", + "-408,486", + "-407,486", + "-406,486", + "-405,486", + "-404,486", + "-403,486", + "-402,486", + "-401,486", + "-400,486", + "-399,486", + "-398,486", + "-397,486", + "-396,486", + "-395,486", + "-394,486", + "-393,486", + "-392,486", + "-391,486", + "-390,486", + "-389,486", + "-388,486", + "-387,486", + "-386,486", + "-385,486", + "-384,486", + "-383,486", + "-382,486", + "-381,486", + "-380,486", + "-379,486", + "-378,486", + "-377,486", + "-376,486", + "-375,486", + "-374,486", + "-373,486", + "-372,486", + "-371,486", + "-370,486", + "-369,486", + "-368,486", + "-367,486", + "-366,486", + "-365,486", + "-364,486", + "-363,486", + "-362,486", + "-361,486", + "-425,487", + "-424,487", + "-423,487", + "-422,487", + "-421,487", + "-420,487", + "-419,487", + "-418,487", + "-417,487", + "-416,487", + "-415,487", + "-414,487", + "-413,487", + "-412,487", + "-411,487", + "-410,487", + "-409,487", + "-408,487", + "-407,487", + "-406,487", + "-405,487", + "-404,487", + "-403,487", + "-402,487", + "-401,487", + "-400,487", + "-399,487", + "-398,487", + "-397,487", + "-396,487", + "-395,487", + "-394,487", + "-393,487", + "-392,487", + "-391,487", + "-390,487", + "-389,487", + "-388,487", + "-387,487", + "-386,487", + "-385,487", + "-384,487", + "-383,487", + "-382,487", + "-381,487", + "-380,487", + "-379,487", + "-378,487", + "-377,487", + "-376,487", + "-375,487", + "-374,487", + "-373,487", + "-372,487", + "-371,487", + "-370,487", + "-369,487", + "-368,487", + "-367,487", + "-366,487", + "-365,487", + "-364,487", + "-363,487", + "-362,487", + "-361,487", + "-425,488", + "-424,488", + "-423,488", + "-422,488", + "-421,488", + "-420,488", + "-419,488", + "-418,488", + "-417,488", + "-416,488", + "-415,488", + "-414,488", + "-413,488", + "-412,488", + "-411,488", + "-410,488", + "-409,488", + "-408,488", + "-407,488", + "-406,488", + "-405,488", + "-404,488", + "-403,488", + "-402,488", + "-401,488", + "-400,488", + "-399,488", + "-398,488", + "-397,488", + "-396,488", + "-395,488", + "-394,488", + "-393,488", + "-392,488", + "-391,488", + "-390,488", + "-389,488", + "-388,488", + "-387,488", + "-386,488", + "-385,488", + "-384,488", + "-383,488", + "-382,488", + "-381,488", + "-380,488", + "-379,488", + "-378,488", + "-377,488", + "-376,488", + "-375,488", + "-374,488", + "-373,488", + "-372,488", + "-371,488", + "-370,488", + "-369,488", + "-368,488", + "-367,488", + "-366,488", + "-365,488", + "-364,488", + "-363,488", + "-362,488", + "-361,488", + "-425,489", + "-424,489", + "-423,489", + "-422,489", + "-421,489", + "-420,489", + "-419,489", + "-418,489", + "-417,489", + "-416,489", + "-415,489", + "-414,489", + "-413,489", + "-412,489", + "-411,489", + "-410,489", + "-409,489", + "-408,489", + "-407,489", + "-406,489", + "-405,489", + "-404,489", + "-403,489", + "-402,489", + "-401,489", + "-400,489", + "-399,489", + "-398,489", + "-397,489", + "-396,489", + "-395,489", + "-394,489", + "-393,489", + "-392,489", + "-391,489", + "-390,489", + "-389,489", + "-388,489", + "-387,489", + "-386,489", + "-385,489", + "-384,489", + "-383,489", + "-382,489", + "-381,489", + "-380,489", + "-379,489", + "-378,489", + "-377,489", + "-376,489", + "-375,489", + "-374,489", + "-373,489", + "-372,489", + "-371,489", + "-370,489", + "-369,489", + "-368,489", + "-367,489", + "-366,489", + "-365,489", + "-364,489", + "-363,489", + "-362,489", + "-361,489", + "-425,490", + "-424,490", + "-423,490", + "-422,490", + "-421,490", + "-420,490", + "-419,490", + "-418,490", + "-417,490", + "-416,490", + "-415,490", + "-414,490", + "-413,490", + "-412,490", + "-411,490", + "-410,490", + "-409,490", + "-408,490", + "-407,490", + "-406,490", + "-405,490", + "-404,490", + "-403,490", + "-402,490", + "-401,490", + "-400,490", + "-399,490", + "-398,490", + "-397,490", + "-396,490", + "-395,490", + "-394,490", + "-393,490", + "-392,490", + "-391,490", + "-390,490", + "-389,490", + "-388,490", + "-387,490", + "-386,490", + "-385,490", + "-384,490", + "-383,490", + "-382,490", + "-381,490", + "-380,490", + "-379,490", + "-378,490", + "-377,490", + "-376,490", + "-375,490", + "-374,490", + "-373,490", + "-372,490", + "-371,490", + "-370,490", + "-369,490", + "-368,490", + "-367,490", + "-366,490", + "-365,490", + "-364,490", + "-363,490", + "-362,490", + "-361,490", + "-425,491", + "-424,491", + "-423,491", + "-422,491", + "-421,491", + "-420,491", + "-419,491", + "-418,491", + "-417,491", + "-416,491", + "-415,491", + "-414,491", + "-413,491", + "-412,491", + "-411,491", + "-410,491", + "-409,491", + "-408,491", + "-407,491", + "-406,491", + "-405,491", + "-404,491", + "-403,491", + "-402,491", + "-401,491", + "-400,491", + "-399,491", + "-398,491", + "-397,491", + "-396,491", + "-395,491", + "-394,491", + "-393,491", + "-392,491", + "-391,491", + "-390,491", + "-389,491", + "-388,491", + "-387,491", + "-386,491", + "-385,491", + "-384,491", + "-383,491", + "-382,491", + "-381,491", + "-380,491", + "-379,491", + "-378,491", + "-377,491", + "-376,491", + "-375,491", + "-374,491", + "-373,491", + "-372,491", + "-371,491", + "-370,491", + "-369,491", + "-368,491", + "-367,491", + "-366,491", + "-365,491", + "-364,491", + "-363,491", + "-362,491", + "-361,491", + "-425,492", + "-424,492", + "-423,492", + "-422,492", + "-421,492", + "-420,492", + "-419,492", + "-418,492", + "-417,492", + "-416,492", + "-415,492", + "-414,492", + "-413,492", + "-412,492", + "-411,492", + "-410,492", + "-409,492", + "-408,492", + "-407,492", + "-406,492", + "-405,492", + "-404,492", + "-403,492", + "-402,492", + "-401,492", + "-400,492", + "-399,492", + "-398,492", + "-397,492", + "-396,492", + "-395,492", + "-394,492", + "-393,492", + "-392,492", + "-391,492", + "-390,492", + "-389,492", + "-388,492", + "-387,492", + "-386,492", + "-385,492", + "-384,492", + "-383,492", + "-382,492", + "-381,492", + "-380,492", + "-379,492", + "-378,492", + "-377,492", + "-376,492", + "-375,492", + "-374,492", + "-373,492", + "-372,492", + "-371,492", + "-370,492", + "-369,492", + "-368,492", + "-367,492", + "-366,492", + "-365,492", + "-364,492", + "-363,492", + "-362,492", + "-361,492", + "-425,493", + "-424,493", + "-423,493", + "-422,493", + "-421,493", + "-420,493", + "-419,493", + "-418,493", + "-417,493", + "-416,493", + "-415,493", + "-414,493", + "-413,493", + "-412,493", + "-411,493", + "-410,493", + "-409,493", + "-408,493", + "-407,493", + "-406,493", + "-405,493", + "-404,493", + "-403,493", + "-402,493", + "-401,493", + "-400,493", + "-399,493", + "-398,493", + "-397,493", + "-396,493", + "-395,493", + "-394,493", + "-393,493", + "-392,493", + "-391,493", + "-390,493", + "-389,493", + "-388,493", + "-387,493", + "-386,493", + "-385,493", + "-384,493", + "-383,493", + "-382,493", + "-381,493", + "-380,493", + "-379,493", + "-378,493", + "-377,493", + "-376,493", + "-375,493", + "-374,493", + "-373,493", + "-372,493", + "-371,493", + "-370,493", + "-369,493", + "-368,493", + "-367,493", + "-366,493", + "-365,493", + "-364,493", + "-363,493", + "-362,493", + "-361,493", + "-425,494", + "-424,494", + "-423,494", + "-422,494", + "-421,494", + "-420,494", + "-419,494", + "-418,494", + "-417,494", + "-416,494", + "-415,494", + "-414,494", + "-413,494", + "-412,494", + "-411,494", + "-410,494", + "-409,494", + "-408,494", + "-407,494", + "-406,494", + "-405,494", + "-404,494", + "-403,494", + "-402,494", + "-401,494", + "-400,494", + "-399,494", + "-398,494", + "-397,494", + "-396,494", + "-395,494", + "-394,494", + "-393,494", + "-392,494", + "-391,494", + "-390,494", + "-389,494", + "-388,494", + "-387,494", + "-386,494", + "-385,494", + "-384,494", + "-383,494", + "-382,494", + "-381,494", + "-380,494", + "-379,494", + "-378,494", + "-377,494", + "-376,494", + "-375,494", + "-374,494", + "-373,494", + "-372,494", + "-371,494", + "-370,494", + "-369,494", + "-368,494", + "-367,494", + "-366,494", + "-365,494", + "-364,494", + "-363,494", + "-362,494", + "-361,494", + "-425,495", + "-424,495", + "-423,495", + "-422,495", + "-421,495", + "-420,495", + "-419,495", + "-418,495", + "-417,495", + "-416,495", + "-415,495", + "-414,495", + "-413,495", + "-412,495", + "-411,495", + "-410,495", + "-409,495", + "-408,495", + "-407,495", + "-406,495", + "-405,495", + "-404,495", + "-403,495", + "-402,495", + "-401,495", + "-400,495", + "-399,495", + "-398,495", + "-397,495", + "-396,495", + "-395,495", + "-394,495", + "-393,495", + "-392,495", + "-391,495", + "-390,495", + "-389,495", + "-388,495", + "-387,495", + "-386,495", + "-385,495", + "-384,495", + "-383,495", + "-382,495", + "-381,495", + "-380,495", + "-379,495", + "-378,495", + "-377,495", + "-376,495", + "-375,495", + "-374,495", + "-373,495", + "-372,495", + "-371,495", + "-370,495", + "-369,495", + "-368,495", + "-367,495", + "-366,495", + "-365,495", + "-364,495", + "-363,495", + "-362,495", + "-361,495", + "-425,496", + "-424,496", + "-423,496", + "-422,496", + "-421,496", + "-420,496", + "-419,496", + "-418,496", + "-417,496", + "-416,496", + "-415,496", + "-414,496", + "-413,496", + "-412,496", + "-411,496", + "-410,496", + "-409,496", + "-408,496", + "-407,496", + "-406,496", + "-405,496", + "-404,496", + "-403,496", + "-402,496", + "-401,496", + "-400,496", + "-399,496", + "-398,496", + "-397,496", + "-396,496", + "-395,496", + "-394,496", + "-393,496", + "-392,496", + "-391,496", + "-390,496", + "-389,496", + "-388,496", + "-387,496", + "-386,496", + "-385,496", + "-384,496", + "-383,496", + "-382,496", + "-381,496", + "-380,496", + "-379,496", + "-378,496", + "-377,496", + "-376,496", + "-375,496", + "-374,496", + "-373,496", + "-372,496", + "-371,496", + "-370,496", + "-369,496", + "-368,496", + "-367,496", + "-366,496", + "-365,496", + "-364,496", + "-363,496", + "-362,496", + "-361,496", + "-425,497", + "-424,497", + "-423,497", + "-422,497", + "-421,497", + "-420,497", + "-419,497", + "-418,497", + "-417,497", + "-416,497", + "-415,497", + "-414,497", + "-413,497", + "-412,497", + "-411,497", + "-410,497", + "-409,497", + "-408,497", + "-407,497", + "-406,497", + "-405,497", + "-404,497", + "-403,497", + "-402,497", + "-401,497", + "-400,497", + "-399,497", + "-398,497", + "-397,497", + "-396,497", + "-395,497", + "-394,497", + "-393,497", + "-392,497", + "-391,497", + "-390,497", + "-389,497", + "-388,497", + "-387,497", + "-386,497", + "-385,497", + "-384,497", + "-383,497", + "-382,497", + "-381,497", + "-380,497", + "-379,497", + "-378,497", + "-377,497", + "-376,497", + "-375,497", + "-374,497", + "-373,497", + "-372,497", + "-371,497", + "-370,497", + "-369,497", + "-368,497", + "-367,497", + "-366,497", + "-365,497", + "-364,497", + "-363,497", + "-362,497", + "-361,497", + "-425,498", + "-424,498", + "-423,498", + "-422,498", + "-421,498", + "-420,498", + "-419,498", + "-418,498", + "-417,498", + "-416,498", + "-415,498", + "-414,498", + "-413,498", + "-412,498", + "-411,498", + "-410,498", + "-409,498", + "-408,498", + "-407,498", + "-406,498", + "-405,498", + "-404,498", + "-403,498", + "-402,498", + "-401,498", + "-400,498", + "-399,498", + "-398,498", + "-397,498", + "-396,498", + "-395,498", + "-394,498", + "-393,498", + "-392,498", + "-391,498", + "-390,498", + "-389,498", + "-388,498", + "-387,498", + "-386,498", + "-385,498", + "-384,498", + "-383,498", + "-382,498", + "-381,498", + "-380,498", + "-379,498", + "-378,498", + "-377,498", + "-376,498", + "-375,498", + "-374,498", + "-373,498", + "-372,498", + "-371,498", + "-370,498", + "-369,498", + "-368,498", + "-367,498", + "-366,498", + "-365,498", + "-364,498", + "-363,498", + "-362,498", + "-361,498", + "-425,499", + "-424,499", + "-423,499", + "-422,499", + "-421,499", + "-420,499", + "-419,499", + "-418,499", + "-417,499", + "-416,499", + "-415,499", + "-414,499", + "-413,499", + "-412,499", + "-411,499", + "-410,499", + "-409,499", + "-408,499", + "-407,499", + "-406,499", + "-405,499", + "-404,499", + "-403,499", + "-402,499", + "-401,499", + "-400,499", + "-399,499", + "-398,499", + "-397,499", + "-396,499", + "-395,499", + "-394,499", + "-393,499", + "-392,499", + "-391,499", + "-390,499", + "-389,499", + "-388,499", + "-387,499", + "-386,499", + "-385,499", + "-384,499", + "-383,499", + "-382,499", + "-381,499", + "-380,499", + "-379,499", + "-378,499", + "-377,499", + "-376,499", + "-375,499", + "-374,499", + "-373,499", + "-372,499", + "-371,499", + "-370,499", + "-369,499", + "-368,499", + "-367,499", + "-366,499", + "-365,499", + "-364,499", + "-363,499", + "-362,499", + "-361,499", + "-425,500", + "-424,500", + "-423,500", + "-422,500", + "-421,500", + "-420,500", + "-419,500", + "-418,500", + "-417,500", + "-416,500", + "-415,500", + "-414,500", + "-413,500", + "-412,500", + "-411,500", + "-410,500", + "-409,500", + "-408,500", + "-407,500", + "-406,500", + "-405,500", + "-404,500", + "-403,500", + "-402,500", + "-401,500", + "-400,500", + "-399,500", + "-398,500", + "-397,500", + "-396,500", + "-395,500", + "-394,500", + "-393,500", + "-392,500", + "-391,500", + "-390,500", + "-389,500", + "-388,500", + "-387,500", + "-386,500", + "-385,500", + "-384,500", + "-383,500", + "-382,500", + "-381,500", + "-380,500", + "-379,500", + "-378,500", + "-377,500", + "-376,500", + "-375,500", + "-374,500", + "-373,500", + "-372,500", + "-371,500", + "-370,500", + "-369,500", + "-368,500", + "-367,500", + "-366,500", + "-365,500", + "-364,500", + "-363,500", + "-362,500", + "-361,500", + "-425,501", + "-424,501", + "-423,501", + "-422,501", + "-421,501", + "-420,501", + "-419,501", + "-418,501", + "-417,501", + "-416,501", + "-415,501", + "-414,501", + "-413,501", + "-412,501", + "-411,501", + "-410,501", + "-409,501", + "-408,501", + "-407,501", + "-406,501", + "-405,501", + "-404,501", + "-403,501", + "-402,501", + "-401,501", + "-400,501", + "-399,501", + "-398,501", + "-397,501", + "-396,501", + "-395,501", + "-394,501", + "-393,501", + "-392,501", + "-391,501", + "-390,501", + "-389,501", + "-388,501", + "-387,501", + "-386,501", + "-385,501", + "-384,501", + "-383,501", + "-382,501", + "-381,501", + "-380,501", + "-379,501", + "-378,501", + "-377,501", + "-376,501", + "-375,501", + "-374,501", + "-373,501", + "-372,501", + "-371,501", + "-370,501", + "-369,501", + "-368,501", + "-367,501", + "-366,501", + "-365,501", + "-364,501", + "-363,501", + "-362,501", + "-361,501", + "-425,502", + "-424,502", + "-423,502", + "-422,502", + "-421,502", + "-420,502", + "-419,502", + "-418,502", + "-417,502", + "-416,502", + "-415,502", + "-414,502", + "-413,502", + "-412,502", + "-411,502", + "-410,502", + "-409,502", + "-408,502", + "-407,502", + "-406,502", + "-405,502", + "-404,502", + "-403,502", + "-402,502", + "-401,502", + "-400,502", + "-399,502", + "-398,502", + "-397,502", + "-396,502", + "-395,502", + "-394,502", + "-393,502", + "-392,502", + "-391,502", + "-390,502", + "-389,502", + "-388,502", + "-387,502", + "-386,502", + "-385,502", + "-384,502", + "-383,502", + "-382,502", + "-381,502", + "-380,502", + "-379,502", + "-378,502", + "-377,502", + "-376,502", + "-375,502", + "-374,502", + "-373,502", + "-372,502", + "-371,502", + "-370,502", + "-369,502", + "-368,502", + "-367,502", + "-366,502", + "-365,502", + "-364,502", + "-363,502", + "-362,502", + "-361,502", + "-425,503", + "-424,503", + "-423,503", + "-422,503", + "-421,503", + "-420,503", + "-419,503", + "-418,503", + "-417,503", + "-416,503", + "-415,503", + "-414,503", + "-413,503", + "-412,503", + "-411,503", + "-410,503", + "-409,503", + "-408,503", + "-407,503", + "-406,503", + "-405,503", + "-404,503", + "-403,503", + "-402,503", + "-401,503", + "-400,503", + "-399,503", + "-398,503", + "-397,503", + "-396,503", + "-395,503", + "-394,503", + "-393,503", + "-392,503", + "-391,503", + "-390,503", + "-389,503", + "-388,503", + "-387,503", + "-386,503", + "-385,503", + "-384,503", + "-383,503", + "-382,503", + "-381,503", + "-380,503", + "-379,503", + "-378,503", + "-377,503", + "-376,503", + "-375,503", + "-374,503", + "-373,503", + "-372,503", + "-371,503", + "-370,503", + "-369,503", + "-368,503", + "-367,503", + "-366,503", + "-365,503", + "-364,503", + "-363,503", + "-362,503", + "-361,503", + "-425,504", + "-424,504", + "-423,504", + "-422,504", + "-421,504", + "-420,504", + "-419,504", + "-418,504", + "-417,504", + "-416,504", + "-415,504", + "-414,504", + "-413,504", + "-412,504", + "-411,504", + "-410,504", + "-409,504", + "-408,504", + "-407,504", + "-406,504", + "-405,504", + "-404,504", + "-403,504", + "-402,504", + "-401,504", + "-400,504", + "-399,504", + "-398,504", + "-397,504", + "-396,504", + "-395,504", + "-394,504", + "-393,504", + "-392,504", + "-391,504", + "-390,504", + "-389,504", + "-388,504", + "-387,504", + "-386,504", + "-385,504", + "-384,504", + "-383,504", + "-382,504", + "-381,504", + "-380,504", + "-379,504", + "-378,504", + "-377,504", + "-376,504", + "-375,504", + "-374,504", + "-373,504", + "-372,504", + "-371,504", + "-370,504", + "-369,504", + "-368,504", + "-367,504", + "-366,504", + "-365,504", + "-364,504", + "-363,504", + "-362,504", + "-361,504", + "-425,505", + "-424,505", + "-423,505", + "-422,505", + "-421,505", + "-420,505", + "-419,505", + "-418,505", + "-417,505", + "-416,505", + "-415,505", + "-414,505", + "-413,505", + "-412,505", + "-411,505", + "-410,505", + "-409,505", + "-408,505", + "-407,505", + "-406,505", + "-405,505", + "-404,505", + "-403,505", + "-402,505", + "-401,505", + "-400,505", + "-399,505", + "-398,505", + "-397,505", + "-396,505", + "-395,505", + "-394,505", + "-393,505", + "-392,505", + "-391,505", + "-390,505", + "-389,505", + "-388,505", + "-387,505", + "-386,505", + "-385,505", + "-384,505", + "-383,505", + "-382,505", + "-381,505", + "-380,505", + "-379,505", + "-378,505", + "-377,505", + "-376,505", + "-375,505", + "-374,505", + "-373,505", + "-372,505", + "-371,505", + "-370,505", + "-369,505", + "-368,505", + "-367,505", + "-366,505", + "-365,505", + "-364,505", + "-363,505", + "-362,505", + "-361,505", + "-425,506", + "-424,506", + "-423,506", + "-422,506", + "-421,506", + "-420,506", + "-419,506", + "-418,506", + "-417,506", + "-416,506", + "-415,506", + "-414,506", + "-413,506", + "-412,506", + "-411,506", + "-410,506", + "-409,506", + "-408,506", + "-407,506", + "-406,506", + "-405,506", + "-404,506", + "-403,506", + "-402,506", + "-401,506", + "-400,506", + "-399,506", + "-398,506", + "-397,506", + "-396,506", + "-395,506", + "-394,506", + "-393,506", + "-392,506", + "-391,506", + "-390,506", + "-389,506", + "-388,506", + "-387,506", + "-386,506", + "-385,506", + "-384,506", + "-383,506", + "-382,506", + "-381,506", + "-380,506", + "-379,506", + "-378,506", + "-377,506", + "-376,506", + "-375,506", + "-374,506", + "-373,506", + "-372,506", + "-371,506", + "-370,506", + "-369,506", + "-368,506", + "-367,506", + "-366,506", + "-365,506", + "-364,506", + "-363,506", + "-362,506", + "-361,506", + "-425,507", + "-424,507", + "-423,507", + "-422,507", + "-421,507", + "-420,507", + "-419,507", + "-418,507", + "-417,507", + "-416,507", + "-415,507", + "-414,507", + "-413,507", + "-412,507", + "-411,507", + "-410,507", + "-409,507", + "-408,507", + "-407,507", + "-406,507", + "-405,507", + "-404,507", + "-403,507", + "-402,507", + "-401,507", + "-400,507", + "-399,507", + "-398,507", + "-397,507", + "-396,507", + "-395,507", + "-394,507", + "-393,507", + "-392,507", + "-391,507", + "-390,507", + "-389,507", + "-388,507", + "-387,507", + "-386,507", + "-385,507", + "-384,507", + "-383,507", + "-382,507", + "-381,507", + "-380,507", + "-379,507", + "-378,507", + "-377,507", + "-376,507", + "-375,507", + "-374,507", + "-373,507", + "-372,507", + "-371,507", + "-370,507", + "-369,507", + "-368,507", + "-367,507", + "-366,507", + "-365,507", + "-364,507", + "-363,507", + "-362,507", + "-361,507", + "-425,508", + "-424,508", + "-423,508", + "-422,508", + "-421,508", + "-420,508", + "-419,508", + "-418,508", + "-417,508", + "-416,508", + "-415,508", + "-414,508", + "-413,508", + "-412,508", + "-411,508", + "-410,508", + "-409,508", + "-408,508", + "-407,508", + "-406,508", + "-405,508", + "-404,508", + "-403,508", + "-402,508", + "-401,508", + "-400,508", + "-399,508", + "-398,508", + "-397,508", + "-396,508", + "-395,508", + "-394,508", + "-393,508", + "-392,508", + "-391,508", + "-390,508", + "-389,508", + "-388,508", + "-387,508", + "-386,508", + "-385,508", + "-384,508", + "-383,508", + "-382,508", + "-381,508", + "-380,508", + "-379,508", + "-378,508", + "-377,508", + "-376,508", + "-375,508", + "-374,508", + "-373,508", + "-372,508", + "-371,508", + "-370,508", + "-369,508", + "-368,508", + "-367,508", + "-366,508", + "-365,508", + "-364,508", + "-363,508", + "-362,508", + "-361,508", + "-425,509", + "-424,509", + "-423,509", + "-422,509", + "-421,509", + "-420,509", + "-419,509", + "-418,509", + "-417,509", + "-416,509", + "-415,509", + "-414,509", + "-413,509", + "-412,509", + "-411,509", + "-410,509", + "-409,509", + "-408,509", + "-407,509", + "-406,509", + "-405,509", + "-404,509", + "-403,509", + "-402,509", + "-401,509", + "-400,509", + "-399,509", + "-398,509", + "-397,509", + "-396,509", + "-395,509", + "-394,509", + "-393,509", + "-392,509", + "-391,509", + "-390,509", + "-389,509", + "-388,509", + "-387,509", + "-386,509", + "-385,509", + "-384,509", + "-383,509", + "-382,509", + "-381,509", + "-380,509", + "-379,509", + "-378,509", + "-377,509", + "-376,509", + "-375,509", + "-374,509", + "-373,509", + "-372,509", + "-371,509", + "-370,509", + "-369,509", + "-368,509", + "-367,509", + "-366,509", + "-365,509", + "-364,509", + "-363,509", + "-362,509", + "-361,509", + "-425,510", + "-424,510", + "-423,510", + "-422,510", + "-421,510", + "-420,510", + "-419,510", + "-418,510", + "-417,510", + "-416,510", + "-415,510", + "-414,510", + "-413,510", + "-412,510", + "-411,510", + "-410,510", + "-409,510", + "-408,510", + "-407,510", + "-406,510", + "-405,510", + "-404,510", + "-403,510", + "-402,510", + "-401,510", + "-400,510", + "-399,510", + "-398,510", + "-397,510", + "-396,510", + "-395,510", + "-394,510", + "-393,510", + "-392,510", + "-391,510", + "-390,510", + "-389,510", + "-388,510", + "-387,510", + "-386,510", + "-385,510", + "-384,510", + "-383,510", + "-382,510", + "-381,510", + "-380,510", + "-379,510", + "-378,510", + "-377,510", + "-376,510", + "-375,510", + "-374,510", + "-373,510", + "-372,510", + "-371,510", + "-370,510", + "-369,510", + "-368,510", + "-367,510", + "-366,510", + "-365,510", + "-364,510", + "-363,510", + "-362,510", + "-361,510", + "-425,511", + "-424,511", + "-423,511", + "-422,511", + "-421,511", + "-420,511", + "-419,511", + "-418,511", + "-417,511", + "-416,511", + "-415,511", + "-414,511", + "-413,511", + "-412,511", + "-411,511", + "-410,511", + "-409,511", + "-408,511", + "-407,511", + "-406,511", + "-405,511", + "-404,511", + "-403,511", + "-402,511", + "-401,511", + "-400,511", + "-399,511", + "-398,511", + "-397,511", + "-396,511", + "-395,511", + "-394,511", + "-393,511", + "-392,511", + "-391,511", + "-390,511", + "-389,511", + "-388,511", + "-387,511", + "-386,511", + "-385,511", + "-384,511", + "-383,511", + "-382,511", + "-381,511", + "-380,511", + "-379,511", + "-378,511", + "-377,511", + "-376,511", + "-375,511", + "-374,511", + "-373,511", + "-372,511", + "-371,511", + "-370,511", + "-369,511", + "-368,511", + "-367,511", + "-366,511", + "-365,511", + "-364,511", + "-363,511", + "-362,511", + "-361,511", + "-425,512", + "-424,512", + "-423,512", + "-422,512", + "-421,512", + "-420,512", + "-419,512", + "-418,512", + "-417,512", + "-416,512", + "-415,512", + "-414,512", + "-413,512", + "-412,512", + "-411,512", + "-410,512", + "-409,512", + "-408,512", + "-407,512", + "-406,512", + "-405,512", + "-404,512", + "-403,512", + "-402,512", + "-401,512", + "-400,512", + "-399,512", + "-398,512", + "-397,512", + "-396,512", + "-395,512", + "-394,512", + "-393,512", + "-392,512", + "-391,512", + "-390,512", + "-389,512", + "-388,512", + "-387,512", + "-386,512", + "-385,512", + "-384,512", + "-383,512", + "-382,512", + "-381,512", + "-380,512", + "-379,512", + "-378,512", + "-377,512", + "-376,512", + "-375,512", + "-374,512", + "-373,512", + "-372,512", + "-371,512", + "-370,512", + "-369,512", + "-368,512", + "-367,512", + "-366,512", + "-365,512", + "-364,512", + "-363,512", + "-362,512", + "-361,512", + "-425,513", + "-424,513", + "-423,513", + "-422,513", + "-421,513", + "-420,513", + "-419,513", + "-418,513", + "-417,513", + "-416,513", + "-415,513", + "-414,513", + "-413,513", + "-412,513", + "-411,513", + "-410,513", + "-409,513", + "-408,513", + "-407,513", + "-406,513", + "-405,513", + "-404,513", + "-403,513", + "-402,513", + "-401,513", + "-400,513", + "-399,513", + "-398,513", + "-397,513", + "-396,513", + "-395,513", + "-394,513", + "-393,513", + "-392,513", + "-391,513", + "-390,513", + "-389,513", + "-388,513", + "-387,513", + "-386,513", + "-385,513", + "-384,513", + "-383,513", + "-382,513", + "-381,513", + "-380,513", + "-379,513", + "-378,513", + "-377,513", + "-376,513", + "-375,513", + "-374,513", + "-373,513", + "-372,513", + "-371,513", + "-370,513", + "-369,513", + "-368,513", + "-367,513", + "-366,513", + "-365,513", + "-364,513", + "-363,513", + "-362,513", + "-361,513", + "-425,514", + "-424,514", + "-423,514", + "-422,514", + "-421,514", + "-420,514", + "-419,514", + "-418,514", + "-417,514", + "-416,514", + "-415,514", + "-414,514", + "-413,514", + "-412,514", + "-411,514", + "-410,514", + "-409,514", + "-408,514", + "-407,514", + "-406,514", + "-405,514", + "-404,514", + "-403,514", + "-402,514", + "-401,514", + "-400,514", + "-399,514", + "-398,514", + "-397,514", + "-396,514", + "-395,514", + "-394,514", + "-393,514", + "-392,514", + "-391,514", + "-390,514", + "-389,514", + "-388,514", + "-387,514", + "-386,514", + "-385,514", + "-384,514", + "-383,514", + "-382,514", + "-381,514", + "-380,514", + "-379,514", + "-378,514", + "-377,514", + "-376,514", + "-375,514", + "-374,514", + "-373,514", + "-372,514", + "-371,514", + "-370,514", + "-369,514", + "-368,514", + "-367,514", + "-366,514", + "-365,514", + "-364,514", + "-363,514", + "-362,514", + "-361,514", + "-425,515", + "-424,515", + "-423,515", + "-422,515", + "-421,515", + "-420,515", + "-419,515", + "-418,515", + "-417,515", + "-416,515", + "-415,515", + "-414,515", + "-413,515", + "-412,515", + "-411,515", + "-410,515", + "-409,515", + "-408,515", + "-407,515", + "-406,515", + "-405,515", + "-404,515", + "-403,515", + "-402,515", + "-401,515", + "-400,515", + "-399,515", + "-398,515", + "-397,515", + "-396,515", + "-395,515", + "-394,515", + "-393,515", + "-392,515", + "-391,515", + "-390,515", + "-389,515", + "-388,515", + "-387,515", + "-386,515", + "-385,515", + "-384,515", + "-383,515", + "-382,515", + "-381,515", + "-380,515", + "-379,515", + "-378,515", + "-377,515", + "-376,515", + "-375,515", + "-374,515", + "-373,515", + "-372,515", + "-371,515", + "-370,515", + "-369,515", + "-368,515", + "-367,515", + "-366,515", + "-365,515", + "-364,515", + "-363,515", + "-362,515", + "-361,515", + "-425,516", + "-424,516", + "-423,516", + "-422,516", + "-421,516", + "-420,516", + "-419,516", + "-418,516", + "-417,516", + "-416,516", + "-415,516", + "-414,516", + "-413,516", + "-412,516", + "-411,516", + "-410,516", + "-409,516", + "-408,516", + "-407,516", + "-406,516", + "-405,516", + "-404,516", + "-403,516", + "-402,516", + "-401,516", + "-400,516", + "-399,516", + "-398,516", + "-397,516", + "-396,516", + "-395,516", + "-394,516", + "-393,516", + "-392,516", + "-391,516", + "-390,516", + "-389,516", + "-388,516", + "-387,516", + "-386,516", + "-385,516", + "-384,516", + "-383,516", + "-382,516", + "-381,516", + "-380,516", + "-379,516", + "-378,516", + "-377,516", + "-376,516", + "-375,516", + "-374,516", + "-373,516", + "-372,516", + "-371,516", + "-370,516", + "-369,516", + "-368,516", + "-367,516", + "-366,516", + "-365,516", + "-364,516", + "-363,516", + "-362,516", + "-361,516", + "-425,517", + "-424,517", + "-423,517", + "-422,517", + "-421,517", + "-420,517", + "-419,517", + "-418,517", + "-417,517", + "-416,517", + "-415,517", + "-414,517", + "-413,517", + "-412,517", + "-411,517", + "-410,517", + "-409,517", + "-408,517", + "-407,517", + "-406,517", + "-405,517", + "-404,517", + "-403,517", + "-402,517", + "-401,517", + "-400,517", + "-399,517", + "-398,517", + "-397,517", + "-396,517", + "-395,517", + "-394,517", + "-393,517", + "-392,517", + "-391,517", + "-390,517", + "-389,517", + "-388,517", + "-387,517", + "-386,517", + "-385,517", + "-384,517", + "-383,517", + "-382,517", + "-381,517", + "-380,517", + "-379,517", + "-378,517", + "-377,517", + "-376,517", + "-375,517", + "-374,517", + "-373,517", + "-372,517", + "-371,517", + "-370,517", + "-369,517", + "-368,517", + "-367,517", + "-366,517", + "-365,517", + "-364,517", + "-363,517", + "-362,517", + "-361,517", + "-425,518", + "-424,518", + "-423,518", + "-422,518", + "-421,518", + "-420,518", + "-419,518", + "-418,518", + "-417,518", + "-416,518", + "-415,518", + "-414,518", + "-413,518", + "-412,518", + "-411,518", + "-410,518", + "-409,518", + "-408,518", + "-407,518", + "-406,518", + "-405,518", + "-404,518", + "-403,518", + "-402,518", + "-401,518", + "-400,518", + "-399,518", + "-398,518", + "-397,518", + "-396,518", + "-395,518", + "-394,518", + "-393,518", + "-392,518", + "-391,518", + "-390,518", + "-389,518", + "-388,518", + "-387,518", + "-386,518", + "-385,518", + "-384,518", + "-383,518", + "-382,518", + "-381,518", + "-380,518", + "-379,518", + "-378,518", + "-377,518", + "-376,518", + "-375,518", + "-374,518", + "-373,518", + "-372,518", + "-371,518", + "-370,518", + "-369,518", + "-368,518", + "-367,518", + "-366,518", + "-365,518", + "-364,518", + "-363,518", + "-362,518", + "-361,518", + "-425,519", + "-424,519", + "-423,519", + "-422,519", + "-421,519", + "-420,519", + "-419,519", + "-418,519", + "-417,519", + "-416,519", + "-415,519", + "-414,519", + "-413,519", + "-412,519", + "-411,519", + "-410,519", + "-409,519", + "-408,519", + "-407,519", + "-406,519", + "-405,519", + "-404,519", + "-403,519", + "-402,519", + "-401,519", + "-400,519", + "-399,519", + "-398,519", + "-397,519", + "-396,519", + "-395,519", + "-394,519", + "-393,519", + "-392,519", + "-391,519", + "-390,519", + "-389,519", + "-388,519", + "-387,519", + "-386,519", + "-385,519", + "-384,519", + "-383,519", + "-382,519", + "-381,519", + "-380,519", + "-379,519", + "-378,519", + "-377,519", + "-376,519", + "-375,519", + "-374,519", + "-373,519", + "-372,519", + "-371,519", + "-370,519", + "-369,519", + "-368,519", + "-367,519", + "-366,519", + "-365,519", + "-364,519", + "-363,519", + "-362,519", + "-361,519", + "-425,520", + "-424,520", + "-423,520", + "-422,520", + "-421,520", + "-420,520", + "-419,520", + "-418,520", + "-417,520", + "-416,520", + "-415,520", + "-414,520", + "-413,520", + "-412,520", + "-411,520", + "-410,520", + "-409,520", + "-408,520", + "-407,520", + "-406,520", + "-405,520", + "-404,520", + "-403,520", + "-402,520", + "-401,520", + "-400,520", + "-399,520", + "-398,520", + "-397,520", + "-396,520", + "-395,520", + "-394,520", + "-393,520", + "-392,520", + "-391,520", + "-390,520", + "-389,520", + "-388,520", + "-387,520", + "-386,520", + "-385,520", + "-384,520", + "-383,520", + "-382,520", + "-381,520", + "-380,520", + "-379,520", + "-378,520", + "-377,520", + "-376,520", + "-375,520", + "-374,520", + "-373,520", + "-372,520", + "-371,520", + "-370,520", + "-369,520", + "-368,520", + "-367,520", + "-366,520", + "-365,520", + "-364,520", + "-363,520", + "-362,520", + "-361,520", + "-425,521", + "-424,521", + "-423,521", + "-422,521", + "-421,521", + "-420,521", + "-419,521", + "-418,521", + "-417,521", + "-416,521", + "-415,521", + "-414,521", + "-413,521", + "-412,521", + "-411,521", + "-410,521", + "-409,521", + "-408,521", + "-407,521", + "-406,521", + "-405,521", + "-404,521", + "-403,521", + "-402,521", + "-401,521", + "-400,521", + "-399,521", + "-398,521", + "-397,521", + "-396,521", + "-395,521", + "-394,521", + "-393,521", + "-392,521", + "-391,521", + "-390,521", + "-389,521", + "-388,521", + "-387,521", + "-386,521", + "-385,521", + "-384,521", + "-383,521", + "-382,521", + "-381,521", + "-380,521", + "-379,521", + "-378,521", + "-377,521", + "-376,521", + "-375,521", + "-374,521", + "-373,521", + "-372,521", + "-371,521", + "-370,521", + "-369,521", + "-368,521", + "-367,521", + "-366,521", + "-365,521", + "-364,521", + "-363,521", + "-362,521", + "-361,521", + "-425,522", + "-424,522", + "-423,522", + "-422,522", + "-421,522", + "-420,522", + "-419,522", + "-418,522", + "-417,522", + "-416,522", + "-415,522", + "-414,522", + "-413,522", + "-412,522", + "-411,522", + "-410,522", + "-409,522", + "-408,522", + "-407,522", + "-406,522", + "-405,522", + "-404,522", + "-403,522", + "-402,522", + "-401,522", + "-400,522", + "-399,522", + "-398,522", + "-397,522", + "-396,522", + "-395,522", + "-394,522", + "-393,522", + "-392,522", + "-391,522", + "-390,522", + "-389,522", + "-388,522", + "-387,522", + "-386,522", + "-385,522", + "-384,522", + "-383,522", + "-382,522", + "-381,522", + "-380,522", + "-379,522", + "-378,522", + "-377,522", + "-376,522", + "-375,522", + "-374,522", + "-373,522", + "-372,522", + "-371,522", + "-370,522", + "-369,522", + "-368,522", + "-367,522", + "-366,522", + "-365,522", + "-364,522", + "-363,522", + "-362,522", + "-361,522", + "-425,523", + "-424,523", + "-423,523", + "-422,523", + "-421,523", + "-420,523", + "-419,523", + "-418,523", + "-417,523", + "-416,523", + "-415,523", + "-414,523", + "-413,523", + "-412,523", + "-411,523", + "-410,523", + "-409,523", + "-408,523", + "-407,523", + "-406,523", + "-405,523", + "-404,523", + "-403,523", + "-402,523", + "-401,523", + "-400,523", + "-399,523", + "-398,523", + "-397,523", + "-396,523", + "-395,523", + "-394,523", + "-393,523", + "-392,523", + "-391,523", + "-390,523", + "-389,523", + "-388,523", + "-387,523", + "-386,523", + "-385,523", + "-384,523", + "-383,523", + "-382,523", + "-381,523", + "-380,523", + "-379,523", + "-378,523", + "-377,523", + "-376,523", + "-375,523", + "-374,523", + "-373,523", + "-372,523", + "-371,523", + "-370,523", + "-369,523", + "-368,523", + "-367,523", + "-366,523", + "-365,523", + "-364,523", + "-363,523", + "-362,523", + "-361,523", + "-425,524", + "-424,524", + "-423,524", + "-422,524", + "-421,524", + "-420,524", + "-419,524", + "-418,524", + "-417,524", + "-416,524", + "-415,524", + "-414,524", + "-413,524", + "-412,524", + "-411,524", + "-410,524", + "-409,524", + "-408,524", + "-407,524", + "-406,524", + "-405,524", + "-404,524", + "-403,524", + "-402,524", + "-401,524", + "-400,524", + "-399,524", + "-398,524", + "-397,524", + "-396,524", + "-395,524", + "-394,524", + "-393,524", + "-392,524", + "-391,524", + "-390,524", + "-389,524", + "-388,524", + "-387,524", + "-386,524", + "-385,524", + "-384,524", + "-383,524", + "-382,524", + "-381,524", + "-380,524", + "-379,524", + "-378,524", + "-377,524", + "-376,524", + "-375,524", + "-374,524", + "-373,524", + "-372,524", + "-371,524", + "-370,524", + "-369,524", + "-368,524", + "-367,524", + "-366,524", + "-365,524", + "-364,524", + "-363,524", + "-362,524", + "-361,524", + "-425,525", + "-424,525", + "-423,525", + "-422,525", + "-421,525", + "-420,525", + "-419,525", + "-418,525", + "-417,525", + "-416,525", + "-415,525", + "-414,525", + "-413,525", + "-412,525", + "-411,525", + "-410,525", + "-409,525", + "-408,525", + "-407,525", + "-406,525", + "-405,525", + "-404,525", + "-403,525", + "-402,525", + "-401,525", + "-400,525", + "-399,525", + "-398,525", + "-397,525", + "-396,525", + "-395,525", + "-394,525", + "-393,525", + "-392,525", + "-391,525", + "-390,525", + "-389,525", + "-388,525", + "-387,525", + "-386,525", + "-385,525", + "-384,525", + "-383,525", + "-382,525", + "-381,525", + "-380,525", + "-379,525", + "-378,525", + "-377,525", + "-376,525", + "-375,525", + "-374,525", + "-373,525", + "-372,525", + "-371,525", + "-370,525", + "-369,525", + "-368,525", + "-367,525", + "-366,525", + "-365,525", + "-364,525", + "-363,525", + "-362,525", + "-361,525", + "-425,526", + "-424,526", + "-423,526", + "-422,526", + "-421,526", + "-420,526", + "-419,526", + "-418,526", + "-417,526", + "-416,526", + "-415,526", + "-414,526", + "-413,526", + "-412,526", + "-411,526", + "-410,526", + "-409,526", + "-408,526", + "-407,526", + "-406,526", + "-405,526", + "-404,526", + "-403,526", + "-402,526", + "-401,526", + "-400,526", + "-399,526", + "-398,526", + "-397,526", + "-396,526", + "-395,526", + "-394,526", + "-393,526", + "-392,526", + "-391,526", + "-390,526", + "-389,526", + "-388,526", + "-387,526", + "-386,526", + "-385,526", + "-384,526", + "-383,526", + "-382,526", + "-381,526", + "-380,526", + "-379,526", + "-378,526", + "-377,526", + "-376,526", + "-375,526", + "-374,526", + "-373,526", + "-372,526", + "-371,526", + "-370,526", + "-369,526", + "-368,526", + "-367,526", + "-366,526", + "-365,526", + "-364,526", + "-363,526", + "-362,526", + "-361,526", + "-425,527", + "-424,527", + "-423,527", + "-422,527", + "-421,527", + "-420,527", + "-419,527", + "-418,527", + "-417,527", + "-416,527", + "-415,527", + "-414,527", + "-413,527", + "-412,527", + "-411,527", + "-410,527", + "-409,527", + "-408,527", + "-407,527", + "-406,527", + "-405,527", + "-404,527", + "-403,527", + "-402,527", + "-401,527", + "-400,527", + "-399,527", + "-398,527", + "-397,527", + "-396,527", + "-395,527", + "-394,527", + "-393,527", + "-392,527", + "-391,527", + "-390,527", + "-389,527", + "-388,527", + "-387,527", + "-386,527", + "-385,527", + "-384,527", + "-383,527", + "-382,527", + "-381,527", + "-380,527", + "-379,527", + "-378,527", + "-377,527", + "-376,527", + "-375,527", + "-374,527", + "-373,527", + "-372,527", + "-371,527", + "-370,527", + "-369,527", + "-368,527", + "-367,527", + "-366,527", + "-365,527", + "-364,527", + "-363,527", + "-362,527", + "-361,527", + "-425,528", + "-424,528", + "-423,528", + "-422,528", + "-421,528", + "-420,528", + "-419,528", + "-418,528", + "-417,528", + "-416,528", + "-415,528", + "-414,528", + "-413,528", + "-412,528", + "-411,528", + "-410,528", + "-409,528", + "-408,528", + "-407,528", + "-406,528", + "-405,528", + "-404,528", + "-403,528", + "-402,528", + "-401,528", + "-400,528", + "-399,528", + "-398,528", + "-397,528", + "-396,528", + "-395,528", + "-394,528", + "-393,528", + "-392,528", + "-391,528", + "-390,528", + "-389,528", + "-388,528", + "-387,528", + "-386,528", + "-385,528", + "-384,528", + "-383,528", + "-382,528", + "-381,528", + "-380,528", + "-379,528", + "-378,528", + "-377,528", + "-376,528", + "-375,528", + "-374,528", + "-373,528", + "-372,528", + "-371,528", + "-370,528", + "-369,528", + "-368,528", + "-367,528", + "-366,528", + "-365,528", + "-364,528", + "-363,528", + "-362,528", + "-361,528", + "-425,529", + "-424,529", + "-423,529", + "-422,529", + "-421,529", + "-420,529", + "-419,529", + "-418,529", + "-417,529", + "-416,529", + "-415,529", + "-414,529", + "-413,529", + "-412,529", + "-411,529", + "-410,529", + "-409,529", + "-408,529", + "-407,529", + "-406,529", + "-405,529", + "-404,529", + "-403,529", + "-402,529", + "-401,529", + "-400,529", + "-399,529", + "-398,529", + "-397,529", + "-396,529", + "-395,529", + "-394,529", + "-393,529", + "-392,529", + "-391,529", + "-390,529", + "-389,529", + "-388,529", + "-387,529", + "-386,529", + "-385,529", + "-384,529", + "-383,529", + "-382,529", + "-381,529", + "-380,529", + "-379,529", + "-378,529", + "-377,529", + "-376,529", + "-375,529", + "-374,529", + "-373,529", + "-372,529", + "-371,529", + "-370,529", + "-369,529", + "-368,529", + "-367,529", + "-366,529", + "-365,529", + "-364,529", + "-363,529", + "-362,529", + "-361,529", + "-425,530", + "-424,530", + "-423,530", + "-422,530", + "-421,530", + "-420,530", + "-419,530", + "-418,530", + "-417,530", + "-416,530", + "-415,530", + "-414,530", + "-413,530", + "-412,530", + "-411,530", + "-410,530", + "-409,530", + "-408,530", + "-407,530", + "-406,530", + "-405,530", + "-404,530", + "-403,530", + "-402,530", + "-401,530", + "-400,530", + "-399,530", + "-398,530", + "-397,530", + "-396,530", + "-395,530", + "-394,530", + "-393,530", + "-392,530", + "-391,530", + "-390,530", + "-389,530", + "-388,530", + "-387,530", + "-386,530", + "-385,530", + "-384,530", + "-383,530", + "-382,530", + "-381,530", + "-380,530", + "-379,530", + "-378,530", + "-377,530", + "-376,530", + "-375,530", + "-374,530", + "-373,530", + "-372,530", + "-371,530", + "-370,530", + "-369,530", + "-368,530", + "-367,530", + "-366,530", + "-365,530", + "-364,530", + "-363,530", + "-362,530", + "-361,530", + "-425,531", + "-424,531", + "-423,531", + "-422,531", + "-421,531", + "-420,531", + "-419,531", + "-418,531", + "-417,531", + "-416,531", + "-415,531", + "-414,531", + "-413,531", + "-412,531", + "-411,531", + "-410,531", + "-409,531", + "-408,531", + "-407,531", + "-406,531", + "-405,531", + "-404,531", + "-403,531", + "-402,531", + "-401,531", + "-400,531", + "-399,531", + "-398,531", + "-397,531", + "-396,531", + "-395,531", + "-394,531", + "-393,531", + "-392,531", + "-391,531", + "-390,531", + "-389,531", + "-388,531", + "-387,531", + "-386,531", + "-385,531", + "-384,531", + "-383,531", + "-382,531", + "-381,531", + "-380,531", + "-379,531", + "-378,531", + "-377,531", + "-376,531", + "-375,531", + "-374,531", + "-373,531", + "-372,531", + "-371,531", + "-370,531", + "-369,531", + "-368,531", + "-367,531", + "-366,531", + "-365,531", + "-364,531", + "-363,531", + "-362,531", + "-361,531", + "-425,532", + "-424,532", + "-423,532", + "-422,532", + "-421,532", + "-420,532", + "-419,532", + "-418,532", + "-417,532", + "-416,532", + "-415,532", + "-414,532", + "-413,532", + "-412,532", + "-411,532", + "-410,532", + "-409,532", + "-408,532", + "-407,532", + "-406,532", + "-405,532", + "-404,532", + "-403,532", + "-402,532", + "-401,532", + "-400,532", + "-399,532", + "-398,532", + "-397,532", + "-396,532", + "-395,532", + "-394,532", + "-393,532", + "-392,532", + "-391,532", + "-390,532", + "-389,532", + "-388,532", + "-387,532", + "-386,532", + "-385,532", + "-384,532", + "-383,532", + "-382,532", + "-381,532", + "-380,532", + "-379,532", + "-378,532", + "-377,532", + "-376,532", + "-375,532", + "-374,532", + "-373,532", + "-372,532", + "-371,532", + "-370,532", + "-369,532", + "-368,532", + "-367,532", + "-366,532", + "-365,532", + "-364,532", + "-363,532", + "-362,532", + "-361,532", + "-425,533", + "-424,533", + "-423,533", + "-422,533", + "-421,533", + "-420,533", + "-419,533", + "-418,533", + "-417,533", + "-416,533", + "-415,533", + "-414,533", + "-413,533", + "-412,533", + "-411,533", + "-410,533", + "-409,533", + "-408,533", + "-407,533", + "-406,533", + "-405,533", + "-404,533", + "-403,533", + "-402,533", + "-401,533", + "-400,533", + "-399,533", + "-398,533", + "-397,533", + "-396,533", + "-395,533", + "-394,533", + "-393,533", + "-392,533", + "-391,533", + "-390,533", + "-389,533", + "-388,533", + "-387,533", + "-386,533", + "-385,533", + "-384,533", + "-383,533", + "-382,533", + "-381,533", + "-380,533", + "-379,533", + "-378,533", + "-377,533", + "-376,533", + "-375,533", + "-374,533", + "-373,533", + "-372,533", + "-371,533", + "-370,533", + "-369,533", + "-368,533", + "-367,533", + "-366,533", + "-365,533", + "-364,533", + "-363,533", + "-362,533", + "-361,533", + "-425,534", + "-424,534", + "-423,534", + "-422,534", + "-421,534", + "-420,534", + "-419,534", + "-418,534", + "-417,534", + "-416,534", + "-415,534", + "-414,534", + "-413,534", + "-412,534", + "-411,534", + "-410,534", + "-409,534", + "-408,534", + "-407,534", + "-406,534", + "-405,534", + "-404,534", + "-403,534", + "-402,534", + "-401,534", + "-400,534", + "-399,534", + "-398,534", + "-397,534", + "-396,534", + "-395,534", + "-394,534", + "-393,534", + "-392,534", + "-391,534", + "-390,534", + "-389,534", + "-388,534", + "-387,534", + "-386,534", + "-385,534", + "-384,534", + "-383,534", + "-382,534", + "-381,534", + "-380,534", + "-379,534", + "-378,534", + "-377,534", + "-376,534", + "-375,534", + "-374,534", + "-373,534", + "-372,534", + "-371,534", + "-370,534", + "-369,534", + "-368,534", + "-367,534", + "-366,534", + "-365,534", + "-364,534", + "-363,534", + "-362,534", + "-361,534", + "-425,535", + "-424,535", + "-423,535", + "-422,535", + "-421,535", + "-420,535", + "-419,535", + "-418,535", + "-417,535", + "-416,535", + "-415,535", + "-414,535", + "-413,535", + "-412,535", + "-411,535", + "-410,535", + "-409,535", + "-408,535", + "-407,535", + "-406,535", + "-405,535", + "-404,535", + "-403,535", + "-402,535", + "-401,535", + "-400,535", + "-399,535", + "-398,535", + "-397,535", + "-396,535", + "-395,535", + "-394,535", + "-393,535", + "-392,535", + "-391,535", + "-390,535", + "-389,535", + "-388,535", + "-387,535", + "-386,535", + "-385,535", + "-384,535", + "-383,535", + "-382,535", + "-381,535", + "-380,535", + "-379,535", + "-378,535", + "-377,535", + "-376,535", + "-375,535", + "-374,535", + "-373,535", + "-372,535", + "-371,535", + "-370,535", + "-369,535", + "-368,535", + "-367,535", + "-366,535", + "-365,535", + "-364,535", + "-363,535", + "-362,535", + "-361,535", + "-425,536", + "-424,536", + "-423,536", + "-422,536", + "-421,536", + "-420,536", + "-419,536", + "-418,536", + "-417,536", + "-416,536", + "-415,536", + "-414,536", + "-413,536", + "-412,536", + "-411,536", + "-410,536", + "-409,536", + "-408,536", + "-407,536", + "-406,536", + "-405,536", + "-404,536", + "-403,536", + "-402,536", + "-401,536", + "-400,536", + "-399,536", + "-398,536", + "-397,536", + "-396,536", + "-395,536", + "-394,536", + "-393,536", + "-392,536", + "-391,536", + "-390,536", + "-389,536", + "-388,536", + "-387,536", + "-386,536", + "-385,536", + "-384,536", + "-383,536", + "-382,536", + "-381,536", + "-380,536", + "-379,536", + "-378,536", + "-377,536", + "-376,536", + "-375,536", + "-374,536", + "-373,536", + "-372,536", + "-371,536", + "-370,536", + "-369,536", + "-368,536", + "-367,536", + "-366,536", + "-365,536", + "-364,536", + "-363,536", + "-362,536", + "-361,536", + "-425,537", + "-424,537", + "-423,537", + "-422,537", + "-421,537", + "-420,537", + "-419,537", + "-418,537", + "-417,537", + "-416,537", + "-415,537", + "-414,537", + "-413,537", + "-412,537", + "-411,537", + "-410,537", + "-409,537", + "-408,537", + "-407,537", + "-406,537", + "-405,537", + "-404,537", + "-403,537", + "-402,537", + "-401,537", + "-400,537", + "-399,537", + "-398,537", + "-397,537", + "-396,537", + "-395,537", + "-394,537", + "-393,537", + "-392,537", + "-391,537", + "-390,537", + "-389,537", + "-388,537", + "-387,537", + "-386,537", + "-385,537", + "-384,537", + "-383,537", + "-382,537", + "-381,537", + "-380,537", + "-379,537", + "-378,537", + "-377,537", + "-376,537", + "-375,537", + "-374,537", + "-373,537", + "-372,537", + "-371,537", + "-370,537", + "-369,537", + "-368,537", + "-367,537", + "-366,537", + "-365,537", + "-364,537", + "-363,537", + "-362,537", + "-361,537", + "-425,538", + "-424,538", + "-423,538", + "-422,538", + "-421,538", + "-420,538", + "-419,538", + "-418,538", + "-417,538", + "-416,538", + "-415,538", + "-414,538", + "-413,538", + "-412,538", + "-411,538", + "-410,538", + "-409,538", + "-408,538", + "-407,538", + "-406,538", + "-405,538", + "-404,538", + "-403,538", + "-402,538", + "-401,538", + "-400,538", + "-399,538", + "-398,538", + "-397,538", + "-396,538", + "-395,538", + "-394,538", + "-393,538", + "-392,538", + "-391,538", + "-390,538", + "-389,538", + "-388,538", + "-387,538", + "-386,538", + "-385,538", + "-384,538", + "-383,538", + "-382,538", + "-381,538", + "-380,538", + "-379,538", + "-378,538", + "-377,538", + "-376,538", + "-375,538", + "-374,538", + "-373,538", + "-372,538", + "-371,538", + "-370,538", + "-369,538", + "-368,538", + "-367,538", + "-366,538", + "-365,538", + "-364,538", + "-363,538", + "-362,538", + "-361,538", + "-425,539", + "-424,539", + "-423,539", + "-422,539", + "-421,539", + "-420,539", + "-419,539", + "-418,539", + "-417,539", + "-416,539", + "-415,539", + "-414,539", + "-413,539", + "-412,539", + "-411,539", + "-410,539", + "-409,539", + "-408,539", + "-407,539", + "-406,539", + "-405,539", + "-404,539", + "-403,539", + "-402,539", + "-401,539", + "-400,539", + "-399,539", + "-398,539", + "-397,539", + "-396,539", + "-395,539", + "-394,539", + "-393,539", + "-392,539", + "-391,539", + "-390,539", + "-389,539", + "-388,539", + "-387,539", + "-386,539", + "-385,539", + "-384,539", + "-383,539", + "-382,539", + "-381,539", + "-380,539", + "-379,539", + "-378,539", + "-377,539", + "-376,539", + "-375,539", + "-374,539", + "-373,539", + "-372,539", + "-371,539", + "-370,539", + "-369,539", + "-368,539", + "-367,539", + "-366,539", + "-365,539", + "-364,539", + "-363,539", + "-362,539", + "-361,539" + ], + "elevation": [ + 71.77410888671875, + 65.66248321533203, + 129.42251586914062, + 128.03076171875, + 164.73361206054688, + 176.3885040283203, + 208.8218536376953, + 205.93914794921875, + 246.57394409179688, + 595.653076171875, + 613.0567626953125, + 642.2803955078125, + 686.7089233398438, + 699.510986328125, + 728.8782958984375, + 812.6783447265625, + 850.1428833007812, + 852.3629150390625, + 761.3076171875, + 740.8619384765625, + 774.0595092773438, + 765.8978271484375, + 814.34521484375, + 774.4046020507812, + 797.604248046875, + 923.4085693359375, + 950.9255981445312, + 880.0905151367188, + 885.279541015625, + 873.0197143554688, + 945.4263916015625, + 978.2322998046875, + 969.0299682617188, + 973.8243408203125, + 964.1838989257812, + 975.6466674804688, + 871.0965576171875, + 861.740478515625, + 869.2396850585938, + 839.4100341796875, + 865.0467529296875, + 904.46533203125, + 818.8726806640625, + 763.3925170898438, + 816.2049560546875, + 775.0415649414062, + 831.3355712890625, + 738.1511840820312, + 717.7623291015625, + 724.8394165039062, + 700.450927734375, + 742.2777709960938, + 664.6797485351562, + 654.5958251953125, + 715.0618896484375, + 716.1817626953125, + 713.6766357421875, + 671.61767578125, + 633.7909545898438, + 709.3687744140625, + 694.1267700195312, + 666.507568359375, + 583.6920166015625, + 506.3106384277344, + 502.2762451171875, + 20.724525451660156, + 111.93025207519531, + 140.8629608154297, + 146.63299560546875, + 154.94647216796875, + 204.56497192382812, + 225.66891479492188, + 230.59963989257812, + 247.2489013671875, + 627.8517456054688, + 656.1050415039062, + 716.8067016601562, + 733.7479858398438, + 787.829833984375, + 765.107666015625, + 793.953125, + 911.0263671875, + 886.62109375, + 827.0576171875, + 751.0624389648438, + 762.9586791992188, + 798.983642578125, + 831.332275390625, + 795.6602783203125, + 838.6680297851562, + 921.5986938476562, + 967.4566650390625, + 916.9774780273438, + 916.369873046875, + 888.938232421875, + 928.161376953125, + 976.9269409179688, + 996.6671752929688, + 992.702392578125, + 996.880126953125, + 977.8486328125, + 893.237548828125, + 861.283935546875, + 864.671630859375, + 817.737548828125, + 842.4210205078125, + 884.29541015625, + 866.1114501953125, + 836.123046875, + 842.1041259765625, + 776.13525390625, + 777.7637329101562, + 769.7581787109375, + 744.9711303710938, + 773.6971435546875, + 729.4812622070312, + 733.0303344726562, + 686.6087646484375, + 720.377685546875, + 724.05517578125, + 688.7547607421875, + 711.720947265625, + 754.5435791015625, + 688.5410766601562, + 703.4135131835938, + 725.0645141601562, + 738.3977661132812, + 674.250244140625, + 578.2798461914062, + 536.8330078125, + 93.51461791992188, + 104.78659057617188, + 109.43824005126953, + 178.21929931640625, + 173.90289306640625, + 221.19082641601562, + 237.26287841796875, + 357.12847900390625, + 557.5621337890625, + 662.8563232421875, + 707.137939453125, + 714.8593139648438, + 734.6903686523438, + 736.2757568359375, + 831.5276489257812, + 790.0152587890625, + 870.4678955078125, + 885.3482055664062, + 805.17236328125, + 776.11279296875, + 816.307861328125, + 855.458251953125, + 852.08544921875, + 867.9180908203125, + 939.71875, + 1026.384033203125, + 1026.0108642578125, + 1018.3018798828125, + 921.2113037109375, + 913.0770263671875, + 906.6722412109375, + 961.4442138671875, + 1019.8973388671875, + 1035.002197265625, + 960.6375732421875, + 934.3223876953125, + 955.9346923828125, + 863.6468505859375, + 869.1783447265625, + 826.9144897460938, + 873.26513671875, + 834.2460327148438, + 863.399658203125, + 827.70703125, + 858.915283203125, + 804.583251953125, + 795.3819580078125, + 770.7227172851562, + 745.966796875, + 723.0830078125, + 714.6980590820312, + 733.9625244140625, + 687.2269897460938, + 692.9336547851562, + 733.9357299804688, + 715.3516235351562, + 742.271728515625, + 772.423095703125, + 712.38232421875, + 711.2373046875, + 760.6696166992188, + 692.9932861328125, + 679.1729736328125, + 603.4049682617188, + 554.870849609375, + 109.40446472167969, + 151.7388458251953, + 133.46217346191406, + 171.8363037109375, + 206.8512725830078, + 234.211181640625, + 265.6483459472656, + 515.7200927734375, + 578.7896728515625, + 640.2931518554688, + 623.8062744140625, + 698.9910888671875, + 718.4374389648438, + 758.1798095703125, + 829.03759765625, + 785.0877685546875, + 899.7164916992188, + 849.078369140625, + 780.9069213867188, + 773.7582397460938, + 839.7586059570312, + 951.6693115234375, + 974.7868041992188, + 993.6744384765625, + 1102.29833984375, + 1087.988037109375, + 1021.63720703125, + 994.5387573242188, + 955.369140625, + 900.4895629882812, + 862.917724609375, + 916.666259765625, + 1029.088623046875, + 1036.848876953125, + 985.1077270507812, + 953.7747192382812, + 919.6369018554688, + 937.6735229492188, + 932.6134033203125, + 908.3154907226562, + 914.7314453125, + 894.9923095703125, + 899.7274780273438, + 900.401611328125, + 849.668212890625, + 810.156005859375, + 840.8350830078125, + 794.4884033203125, + 761.5370483398438, + 761.8699340820312, + 742.531005859375, + 769.60302734375, + 692.6193237304688, + 701.1766967773438, + 705.0096435546875, + 731.9013671875, + 775.1223754882812, + 792.190673828125, + 734.6710205078125, + 755.3876953125, + 698.2173461914062, + 704.3323974609375, + 686.9232177734375, + 627.5452880859375, + 621.3317260742188, + 97.17514038085938, + 139.20875549316406, + 174.86819458007812, + 146.98092651367188, + 211.28651428222656, + 233.9323272705078, + 300.830810546875, + 540.2935791015625, + 558.393798828125, + 600.7345581054688, + 586.0308837890625, + 610.11865234375, + 640.1435546875, + 758.0353393554688, + 813.73779296875, + 805.7418212890625, + 860.53125, + 834.4917602539062, + 811.1077270507812, + 788.6655883789062, + 913.1483764648438, + 1045.7186279296875, + 1054.3485107421875, + 1075.447021484375, + 1080.318115234375, + 1078.8572998046875, + 1023.2982177734375, + 976.2362060546875, + 947.8341064453125, + 928.23486328125, + 843.62255859375, + 963.1024169921875, + 977.449462890625, + 923.5439453125, + 861.7376708984375, + 902.800048828125, + 880.9725341796875, + 901.7652587890625, + 927.0621948242188, + 938.658447265625, + 952.9679565429688, + 970.0333251953125, + 969.43408203125, + 923.105224609375, + 834.07421875, + 849.1217041015625, + 886.1466064453125, + 813.0103759765625, + 821.0787353515625, + 808.0125122070312, + 769.9774169921875, + 753.9483642578125, + 740.6331787109375, + 710.7781982421875, + 693.8427124023438, + 701.0450439453125, + 762.0404052734375, + 840.645263671875, + 786.2193603515625, + 755.802978515625, + 716.107666015625, + 699.8261108398438, + 678.4305419921875, + 635.6185302734375, + 635.6370849609375, + 124.28939056396484, + 103.56838989257812, + 134.96376037597656, + 191.88833618164062, + 196.8147430419922, + 219.02491760253906, + 301.6325988769531, + 597.069580078125, + 569.8021240234375, + 631.578857421875, + 675.6495361328125, + 711.570556640625, + 641.9217529296875, + 718.0646362304688, + 786.6627807617188, + 847.935302734375, + 883.4058227539062, + 864.771484375, + 826.27490234375, + 853.1864624023438, + 959.025146484375, + 1040.3841552734375, + 1013.6280517578125, + 982.814208984375, + 1010.3385620117188, + 1060.601806640625, + 994.7196655273438, + 926.31591796875, + 944.3096313476562, + 839.3538818359375, + 783.5067749023438, + 912.2838134765625, + 935.5630493164062, + 884.7655639648438, + 851.534423828125, + 832.6309814453125, + 865.4852905273438, + 953.078369140625, + 916.6226806640625, + 873.2771606445312, + 973.8685302734375, + 972.436767578125, + 965.5692138671875, + 922.444091796875, + 870.3071899414062, + 874.164306640625, + 886.472900390625, + 849.0477294921875, + 824.3193359375, + 776.7844848632812, + 765.4659423828125, + 746.4732055664062, + 778.976318359375, + 736.1207885742188, + 721.01904296875, + 743.5695190429688, + 767.0118408203125, + 812.13623046875, + 793.803955078125, + 769.2076416015625, + 671.6939697265625, + 648.4142456054688, + 639.135498046875, + 658.5069580078125, + 617.318359375, + 113.93197631835938, + 116.40192413330078, + 130.71395874023438, + 196.5214385986328, + 220.99969482421875, + 257.5084533691406, + 593.3291625976562, + 635.9413452148438, + 684.06494140625, + 680.546875, + 721.1907348632812, + 773.84814453125, + 721.62744140625, + 732.649169921875, + 769.165771484375, + 837.7228393554688, + 864.9930419921875, + 837.255615234375, + 814.5643920898438, + 860.5194091796875, + 976.308349609375, + 1000.6961669921875, + 931.1524658203125, + 903.4525756835938, + 964.90185546875, + 975.6474609375, + 928.937744140625, + 901.9423217773438, + 848.4242553710938, + 771.7861328125, + 782.133056640625, + 870.85693359375, + 910.423828125, + 908.0816650390625, + 826.3741455078125, + 789.314208984375, + 849.5499267578125, + 905.9395751953125, + 856.4339599609375, + 830.7451171875, + 911.6871948242188, + 946.7967529296875, + 899.22705078125, + 922.044921875, + 866.2352294921875, + 888.052490234375, + 909.2825927734375, + 869.19580078125, + 844.2227172851562, + 812.2962646484375, + 792.771484375, + 788.820556640625, + 761.3009033203125, + 769.3079833984375, + 741.455810546875, + 753.7266235351562, + 751.5772705078125, + 745.2027587890625, + 742.1395874023438, + 773.8836059570312, + 699.4089965820312, + 702.857421875, + 733.6812133789062, + 726.6264038085938, + 659.013916015625, + 96.87037658691406, + 120.8674087524414, + 156.33819580078125, + 209.51858520507812, + 260.3309631347656, + 318.4557800292969, + 649.9638671875, + 698.0419311523438, + 717.6328125, + 693.1732177734375, + 748.6205444335938, + 765.4357299804688, + 730.4237670898438, + 749.6385498046875, + 792.6104125976562, + 789.6141357421875, + 863.8135986328125, + 839.5592041015625, + 830.8823852539062, + 888.8668212890625, + 967.1585693359375, + 968.3348999023438, + 946.697021484375, + 967.4910888671875, + 942.812744140625, + 888.2899780273438, + 910.185546875, + 835.0930786132812, + 776.93701171875, + 717.0545654296875, + 768.1674194335938, + 841.286865234375, + 821.768798828125, + 818.176513671875, + 759.5541381835938, + 774.8983154296875, + 744.3080444335938, + 826.916015625, + 818.147216796875, + 809.368896484375, + 923.501953125, + 890.1802978515625, + 872.0068359375, + 947.6905517578125, + 902.6381225585938, + 952.81787109375, + 963.0609130859375, + 920.3755493164062, + 882.0654907226562, + 872.8507080078125, + 920.7919921875, + 896.1203002929688, + 797.9658813476562, + 728.2505493164062, + 728.976318359375, + 717.528076171875, + 718.0762939453125, + 755.641845703125, + 761.561279296875, + 740.4718627929688, + 710.9447021484375, + 752.622314453125, + 778.8864135742188, + 704.026123046875, + 693.432373046875, + 112.51113891601562, + 123.83912658691406, + 172.28993225097656, + 169.92410278320312, + 214.9962615966797, + 296.4098205566406, + 673.3548583984375, + 727.0125122070312, + 696.7279052734375, + 685.143310546875, + 788.2279663085938, + 796.515380859375, + 742.493408203125, + 757.0698852539062, + 819.55126953125, + 861.3115844726562, + 856.3150024414062, + 853.2294921875, + 861.6312866210938, + 940.0870361328125, + 1026.074462890625, + 1018.0846557617188, + 1010.802001953125, + 1008.322509765625, + 964.7269287109375, + 914.7256469726562, + 874.1974487304688, + 796.272216796875, + 715.8214111328125, + 671.5300903320312, + 703.8984985351562, + 764.269775390625, + 720.851318359375, + 738.0057983398438, + 770.8460693359375, + 812.1634521484375, + 746.5838623046875, + 763.8771362304688, + 815.7348022460938, + 806.440673828125, + 855.509521484375, + 837.9711303710938, + 867.12939453125, + 911.417724609375, + 894.67919921875, + 897.2669067382812, + 963.8737182617188, + 963.6810913085938, + 939.1057739257812, + 974.6053466796875, + 984.3431396484375, + 943.543701171875, + 847.56689453125, + 806.25830078125, + 739.5226440429688, + 735.810546875, + 768.5789794921875, + 709.5465698242188, + 754.4182739257812, + 735.91357421875, + 736.7359619140625, + 787.8853759765625, + 794.9556274414062, + 737.89013671875, + 693.8363647460938, + 126.80146026611328, + 126.48657989501953, + 153.1023406982422, + 184.27735900878906, + 222.89797973632812, + 254.65106201171875, + 607.7593383789062, + 698.6996459960938, + 662.89697265625, + 729.582763671875, + 789.41748046875, + 798.7711791992188, + 787.0594482421875, + 760.221435546875, + 787.8699340820312, + 800.67333984375, + 813.3104858398438, + 840.8802490234375, + 858.0040283203125, + 1015.1730346679688, + 1061.6280517578125, + 1012.1165161132812, + 966.3990478515625, + 933.91943359375, + 915.5953369140625, + 876.4244384765625, + 799.5482788085938, + 740.8258056640625, + 677.628662109375, + 655.9194946289062, + 616.3695678710938, + 625.6473388671875, + 620.8328857421875, + 644.7005004882812, + 783.4227294921875, + 808.5987548828125, + 723.1830444335938, + 733.7662963867188, + 840.048583984375, + 848.8795166015625, + 852.95849609375, + 795.53662109375, + 824.2841796875, + 816.8601684570312, + 842.9047241210938, + 920.6143188476562, + 933.8967895507812, + 930.377197265625, + 954.2718505859375, + 993.8892822265625, + 1021.4434814453125, + 993.6370849609375, + 911.5643310546875, + 803.353759765625, + 782.2931518554688, + 741.6171264648438, + 752.4374389648438, + 752.9991455078125, + 757.630615234375, + 736.1568603515625, + 752.3349609375, + 803.089599609375, + 741.4609375, + 737.1620483398438, + 714.3712158203125, + 130.55685424804688, + 150.00082397460938, + 196.11270141601562, + 191.8433074951172, + 184.12786865234375, + 181.18679809570312, + 510.134521484375, + 639.8706665039062, + 672.287353515625, + 681.75537109375, + 770.1350708007812, + 834.9404296875, + 819.89208984375, + 784.8270874023438, + 881.787841796875, + 821.4735107421875, + 867.595458984375, + 888.9026489257812, + 930.7158813476562, + 1044.491943359375, + 1007.1048583984375, + 979.5316162109375, + 1002.3135986328125, + 973.0963134765625, + 935.8684692382812, + 833.4209594726562, + 784.7686767578125, + 796.498046875, + 722.0807495117188, + 618.3026733398438, + 577.666259765625, + 583.4134521484375, + 646.118408203125, + 600.5004272460938, + 753.384033203125, + 806.3428955078125, + 713.0712890625, + 750.8930053710938, + 776.884521484375, + 864.4248046875, + 789.673583984375, + 800.9391479492188, + 826.3817138671875, + 797.8703002929688, + 886.90283203125, + 919.9420166015625, + 904.7513427734375, + 929.4476928710938, + 938.210205078125, + 998.3115234375, + 1028.9776611328125, + 976.316650390625, + 899.74755859375, + 880.297607421875, + 789.8651123046875, + 750.6336669921875, + 804.8868408203125, + 764.4300537109375, + 763.36376953125, + 756.5314331054688, + 793.2906494140625, + 858.9854125976562, + 842.1361083984375, + 743.81689453125, + 748.4293212890625, + 107.82561492919922, + 150.92706298828125, + 219.95855712890625, + 211.76577758789062, + 166.08816528320312, + 130.77291870117188, + 419.37567138671875, + 610.1474609375, + 623.2708129882812, + 618.119140625, + 720.1889038085938, + 803.9033203125, + 801.5250244140625, + 870.4408569335938, + 919.6369018554688, + 876.2511596679688, + 905.3634643554688, + 977.1700439453125, + 1002.4002685546875, + 1041.714111328125, + 986.6022338867188, + 1014.201171875, + 951.9188232421875, + 945.1072998046875, + 835.2115478515625, + 794.9544677734375, + 773.7764892578125, + 784.4468994140625, + 708.1309814453125, + 580.9052124023438, + 539.1048583984375, + 568.5116577148438, + 592.68798828125, + 645.8530883789062, + 753.6161499023438, + 780.8141479492188, + 740.7701416015625, + 661.3455810546875, + 776.0655517578125, + 733.0377197265625, + 787.6669921875, + 759.2423095703125, + 765.9293823242188, + 816.2650146484375, + 933.404052734375, + 925.079833984375, + 924.8177490234375, + 911.774658203125, + 933.0101928710938, + 996.0040283203125, + 1044.441162109375, + 946.638916015625, + 862.06201171875, + 856.3487548828125, + 777.0614013671875, + 783.3319091796875, + 780.983154296875, + 766.5169067382812, + 804.8104248046875, + 790.6680908203125, + 817.6514892578125, + 856.5472412109375, + 841.33154296875, + 768.8256225585938, + 849.8729248046875, + 111.9762954711914, + 154.3376007080078, + 201.6224365234375, + 171.7937469482422, + 152.17752075195312, + 523.5504150390625, + 553.3759155273438, + 577.8549194335938, + 581.25390625, + 621.15625, + 704.0128784179688, + 804.66357421875, + 827.1913452148438, + 896.52978515625, + 940.2271118164062, + 895.4974365234375, + 892.6940307617188, + 1002.153564453125, + 1053.6357421875, + 1106.44873046875, + 980.7093505859375, + 997.2371826171875, + 939.25244140625, + 881.4149169921875, + 845.3880615234375, + 775.7098999023438, + 762.44482421875, + 739.6727294921875, + 694.78271484375, + 628.3515625, + 513.4706420898438, + 527.6007080078125, + 519.9847412109375, + 585.918701171875, + 729.8428344726562, + 729.965576171875, + 666.9872436523438, + 711.749755859375, + 704.3494873046875, + 711.1530151367188, + 826.8320922851562, + 728.7225341796875, + 797.4118041992188, + 820.15966796875, + 935.7095947265625, + 942.9305419921875, + 928.0130615234375, + 907.0299072265625, + 929.7908325195312, + 992.1793212890625, + 1000.1007080078125, + 911.5180053710938, + 907.3372802734375, + 839.6450805664062, + 808.1132202148438, + 795.5234375, + 814.76025390625, + 793.9745483398438, + 856.6031494140625, + 846.40625, + 796.4970092773438, + 788.1571044921875, + 804.9940185546875, + 890.4722290039062, + 947.608154296875, + 104.04237365722656, + 113.47453308105469, + 148.06834411621094, + 164.90957641601562, + 335.11700439453125, + 566.7052001953125, + 624.008056640625, + 592.9405517578125, + 599.9102783203125, + 655.390380859375, + 777.5702514648438, + 808.7755126953125, + 886.8677978515625, + 912.507568359375, + 928.071533203125, + 895.1634521484375, + 887.4352416992188, + 973.2471923828125, + 1053.154541015625, + 1072.0660400390625, + 1014.2196655273438, + 939.8057861328125, + 904.31982421875, + 871.5550537109375, + 793.6434326171875, + 703.0582275390625, + 679.7861938476562, + 724.0239868164062, + 666.6334838867188, + 618.703125, + 612.7112426757812, + 500.92047119140625, + 488.1544494628906, + 581.407958984375, + 701.578125, + 760.36376953125, + 761.285400390625, + 742.6737060546875, + 656.8101806640625, + 746.5946044921875, + 793.4749755859375, + 740.2869873046875, + 741.0465087890625, + 788.6207275390625, + 861.6126098632812, + 916.0489501953125, + 914.5509643554688, + 926.5158081054688, + 952.564208984375, + 991.61572265625, + 950.6092529296875, + 905.6004638671875, + 894.5233154296875, + 834.693603515625, + 869.4861450195312, + 835.776611328125, + 821.1781005859375, + 845.4532470703125, + 902.66015625, + 905.2913818359375, + 886.4140625, + 852.0164794921875, + 894.8045654296875, + 917.6185302734375, + 918.2764282226562, + 75.83164978027344, + 106.21144104003906, + 148.2333526611328, + 167.7062225341797, + 526.59228515625, + 572.5149536132812, + 609.62890625, + 645.1448974609375, + 670.9071044921875, + 760.8961181640625, + 790.2662963867188, + 810.425048828125, + 886.9049682617188, + 870.9429931640625, + 901.2128295898438, + 914.791748046875, + 877.8231201171875, + 961.9676513671875, + 985.3385009765625, + 997.7149047851562, + 1020.8436279296875, + 888.2554931640625, + 934.1492919921875, + 880.6754150390625, + 813.103271484375, + 754.927978515625, + 692.263427734375, + 702.536376953125, + 611.0499267578125, + 552.2864990234375, + 534.64501953125, + 505.3465576171875, + 492.03857421875, + 653.6864624023438, + 735.39453125, + 741.900634765625, + 806.3023071289062, + 736.1636352539062, + 657.5433349609375, + 707.986328125, + 800.4532470703125, + 826.0565185546875, + 807.1460571289062, + 753.2379760742188, + 855.8160400390625, + 879.1031494140625, + 865.0388793945312, + 850.2935791015625, + 863.9959106445312, + 957.8843383789062, + 905.0715942382812, + 934.249267578125, + 922.8526000976562, + 863.2261352539062, + 919.8412475585938, + 877.87646484375, + 875.633056640625, + 889.4102172851562, + 895.6668701171875, + 899.348388671875, + 941.8640747070312, + 873.7061767578125, + 850.7324829101562, + 855.1453247070312, + 855.501708984375, + 54.32581329345703, + 101.58135986328125, + 138.22779846191406, + 259.6588134765625, + 519.1943359375, + 557.93212890625, + 614.6334838867188, + 628.04345703125, + 678.857666015625, + 716.8003540039062, + 781.9927978515625, + 843.8385009765625, + 900.41845703125, + 907.18017578125, + 897.811767578125, + 865.7420043945312, + 911.1858520507812, + 986.3114624023438, + 1011.4133911132812, + 981.2919921875, + 1012.4464111328125, + 848.939453125, + 938.08251953125, + 835.57421875, + 741.8528442382812, + 689.653076171875, + 657.1529541015625, + 543.0554809570312, + 537.1226806640625, + 533.7427978515625, + 539.2755126953125, + 531.1172485351562, + 520.16162109375, + 726.1888427734375, + 770.7303466796875, + 797.71435546875, + 781.639892578125, + 792.8623046875, + 676.1212158203125, + 676.7327880859375, + 698.7868041992188, + 737.5689697265625, + 753.4393920898438, + 721.583251953125, + 773.6874389648438, + 783.502197265625, + 796.300537109375, + 846.3919677734375, + 905.104736328125, + 915.6159057617188, + 902.805419921875, + 894.956787109375, + 913.150634765625, + 927.3912353515625, + 1006.199951171875, + 952.822998046875, + 932.3671875, + 893.5498046875, + 895.0679931640625, + 903.235595703125, + 878.8204345703125, + 852.1618041992188, + 860.8785400390625, + 843.9481201171875, + 817.78564453125, + 25.992172241210938, + 96.10161590576172, + 184.7628173828125, + 504.01715087890625, + 544.93310546875, + 579.634765625, + 632.852294921875, + 680.8958740234375, + 750.0071411132812, + 759.0822143554688, + 768.911376953125, + 839.6278686523438, + 953.9144287109375, + 952.0767822265625, + 915.3961181640625, + 866.717041015625, + 985.492431640625, + 1054.9381103515625, + 983.7805786132812, + 990.5778198242188, + 979.193359375, + 856.3294677734375, + 915.974365234375, + 831.2513427734375, + 781.5919799804688, + 697.3046875, + 627.873046875, + 619.339599609375, + 536.6557006835938, + 523.830810546875, + 497.55035400390625, + 435.259033203125, + 622.7799072265625, + 738.6748657226562, + 811.647216796875, + 855.0841064453125, + 769.0819091796875, + 710.8432006835938, + 670.7650146484375, + 743.8084716796875, + 706.380126953125, + 699.5767822265625, + 723.2523803710938, + 749.880615234375, + 784.7176513671875, + 810.1439208984375, + 846.7291259765625, + 841.5633544921875, + 855.2791748046875, + 852.72607421875, + 887.8329467773438, + 905.3114013671875, + 926.572998046875, + 896.180908203125, + 957.0828857421875, + 1001.261962890625, + 985.7047119140625, + 880.4973754882812, + 926.2078247070312, + 940.715576171875, + 860.2730102539062, + 916.5980834960938, + 885.484130859375, + 921.84765625, + 886.1640625, + 11.11296558380127, + 68.02558135986328, + 288.55584716796875, + 511.33917236328125, + 568.4373779296875, + 613.8465576171875, + 609.9037475585938, + 686.2058715820312, + 772.9688720703125, + 777.0589599609375, + 804.1285400390625, + 799.82421875, + 933.7755126953125, + 997.041015625, + 988.0513916015625, + 926.219970703125, + 980.6732788085938, + 1004.1637573242188, + 1012.0026245117188, + 960.1129150390625, + 887.4341430664062, + 860.882080078125, + 886.657958984375, + 868.3095092773438, + 851.5088500976562, + 743.0343627929688, + 685.2889404296875, + 646.6139526367188, + 583.566650390625, + 541.7960205078125, + 506.63531494140625, + 465.3378601074219, + 553.627685546875, + 695.1127319335938, + 780.3177490234375, + 850.89990234375, + 788.821533203125, + 715.8173828125, + 747.043212890625, + 766.1722412109375, + 712.4668579101562, + 702.6840209960938, + 730.9871826171875, + 753.457763671875, + 765.22216796875, + 804.2275390625, + 880.7625732421875, + 904.240234375, + 931.7371826171875, + 935.943115234375, + 967.0672607421875, + 947.4088745117188, + 924.2445678710938, + 888.865478515625, + 914.2716064453125, + 974.5963745117188, + 1024.9390869140625, + 983.3927612304688, + 918.490478515625, + 930.9122314453125, + 881.7786865234375, + 927.270751953125, + 919.173095703125, + 919.6351318359375, + 906.4266357421875, + -0.0894695520401001, + 30.348485946655273, + 182.13088989257812, + 523.7633056640625, + 498.20025634765625, + 526.2714233398438, + 573.1354370117188, + 629.3851928710938, + 710.4029541015625, + 786.0394287109375, + 783.56494140625, + 777.5848999023438, + 908.8402099609375, + 985.0062866210938, + 969.7462158203125, + 920.8047485351562, + 956.0867919921875, + 917.3645629882812, + 924.8579711914062, + 965.3006591796875, + 858.3177490234375, + 774.78515625, + 743.1656494140625, + 737.9473876953125, + 772.2559814453125, + 748.5889282226562, + 728.3736572265625, + 681.6710205078125, + 630.1160278320312, + 558.5877685546875, + 537.4923706054688, + 522.8621826171875, + 454.88262939453125, + 609.6687622070312, + 683.6900024414062, + 836.0408325195312, + 869.8545532226562, + 828.7649536132812, + 778.3074951171875, + 751.4696044921875, + 674.9375610351562, + 770.0438232421875, + 824.8763427734375, + 797.9434814453125, + 745.919677734375, + 802.5484619140625, + 886.12109375, + 969.97265625, + 1024.37548828125, + 1073.1185302734375, + 1049.9913330078125, + 1008.2613525390625, + 946.2996826171875, + 887.1243896484375, + 859.771484375, + 946.3609619140625, + 945.088623046875, + 992.51025390625, + 941.9907836914062, + 933.9146728515625, + 941.9169921875, + 892.9923095703125, + 880.40771484375, + 885.4072265625, + 895.0938720703125, + -12.245256423950195, + 47.17963790893555, + 239.6373291015625, + 494.3811340332031, + 523.9376220703125, + 532.7713623046875, + 556.4505615234375, + 636.350830078125, + 694.6873779296875, + 755.2532958984375, + 717.3016967773438, + 791.8637084960938, + 911.17529296875, + 972.9873046875, + 952.5032348632812, + 900.8421630859375, + 920.2400512695312, + 902.662841796875, + 923.2239990234375, + 881.4092407226562, + 838.915771484375, + 804.1448974609375, + 787.7570190429688, + 724.4998779296875, + 765.2054443359375, + 763.4921264648438, + 735.0662841796875, + 675.25341796875, + 647.2786254882812, + 598.0435791015625, + 678.928955078125, + 615.6445922851562, + 511.06243896484375, + 566.2298583984375, + 691.7911376953125, + 811.2003784179688, + 850.0465087890625, + 824.3436279296875, + 762.123779296875, + 698.3516235351562, + 782.9119873046875, + 776.1881103515625, + 832.6555786132812, + 842.343017578125, + 872.0601806640625, + 836.4161987304688, + 852.66796875, + 930.910888671875, + 1038.6881103515625, + 1108.02734375, + 1112.1820068359375, + 1056.2476806640625, + 975.963623046875, + 890.1506958007812, + 825.004150390625, + 886.268310546875, + 963.7791748046875, + 988.425537109375, + 912.5584716796875, + 883.6243896484375, + 939.7938232421875, + 968.6898193359375, + 948.8440551757812, + 924.0709228515625, + 893.6895751953125, + -16.900829315185547, + 87.18461608886719, + 242.8358917236328, + 492.9384460449219, + 534.85498046875, + 546.4594116210938, + 573.0391845703125, + 598.9458618164062, + 676.2425537109375, + 666.5372924804688, + 751.6593017578125, + 758.479248046875, + 857.728271484375, + 984.146240234375, + 964.171142578125, + 903.39453125, + 904.1192626953125, + 887.5723876953125, + 975.2060546875, + 919.6101684570312, + 849.1170654296875, + 839.42431640625, + 802.6368408203125, + 748.918701171875, + 788.1631469726562, + 832.7608642578125, + 781.3555908203125, + 728.9951171875, + 623.6107177734375, + 615.617919921875, + 625.60986328125, + 658.1522827148438, + 513.32666015625, + 620.585205078125, + 686.605224609375, + 787.1936645507812, + 778.4618530273438, + 747.0476684570312, + 717.4871826171875, + 779.6744384765625, + 821.3517456054688, + 849.1207885742188, + 890.11376953125, + 908.3817138671875, + 873.0578002929688, + 819.2987060546875, + 848.4569091796875, + 999.6869506835938, + 1029.45703125, + 1068.14892578125, + 1101.77294921875, + 1099.66650390625, + 1023.0130615234375, + 918.9564819335938, + 834.743896484375, + 821.54638671875, + 875.5443115234375, + 888.5258178710938, + 870.362060546875, + 861.9232177734375, + 898.4446411132812, + 936.8775634765625, + 929.6348266601562, + 924.2767333984375, + 914.9776000976562, + -34.67062759399414, + 60.059303283691406, + 215.822021484375, + 338.7745056152344, + 519.2752075195312, + 531.7308349609375, + 556.5299072265625, + 559.4464111328125, + 662.1083984375, + 722.43994140625, + 751.6874389648438, + 749.2691650390625, + 837.8978881835938, + 899.4697265625, + 879.1441650390625, + 909.4771728515625, + 873.3138427734375, + 864.779052734375, + 920.333740234375, + 930.416015625, + 892.41015625, + 815.24609375, + 846.9235229492188, + 814.4523315429688, + 856.1697998046875, + 905.626953125, + 800.505859375, + 789.519287109375, + 677.534423828125, + 617.69091796875, + 631.4778442382812, + 598.1481323242188, + 560.9315795898438, + 636.9544677734375, + 671.8858642578125, + 697.648681640625, + 696.8603515625, + 710.193603515625, + 785.493408203125, + 904.000732421875, + 882.8678588867188, + 897.5591430664062, + 994.9558715820312, + 905.8772583007812, + 849.38037109375, + 760.0472412109375, + 889.51416015625, + 993.356201171875, + 1065.1265869140625, + 1043.1085205078125, + 1063.86865234375, + 1054.03857421875, + 1013.0255126953125, + 912.8169555664062, + 828.4463500976562, + 787.05224609375, + 802.7633056640625, + 788.7353515625, + 799.2933959960938, + 838.29150390625, + 828.9330444335938, + 867.9569091796875, + 844.2320556640625, + 892.14501953125, + 893.6741943359375, + -5.063593864440918, + 71.42829895019531, + 209.6732940673828, + 298.2055969238281, + 411.06298828125, + 543.6847534179688, + 566.4072265625, + 569.7169189453125, + 673.6846923828125, + 752.8275146484375, + 744.773193359375, + 717.5857543945312, + 737.6995849609375, + 848.1405029296875, + 894.580322265625, + 905.548583984375, + 890.7752685546875, + 885.9942626953125, + 919.21533203125, + 946.830810546875, + 913.616455078125, + 865.7144775390625, + 819.2161865234375, + 835.0667114257812, + 902.36767578125, + 824.531982421875, + 748.9880981445312, + 781.3447265625, + 731.28466796875, + 624.7567749023438, + 649.7785034179688, + 617.2608642578125, + 535.0964965820312, + 560.1574096679688, + 717.5885009765625, + 873.29443359375, + 861.9827880859375, + 861.80859375, + 899.0723876953125, + 953.078125, + 955.0682373046875, + 898.220947265625, + 931.31982421875, + 880.0244140625, + 800.3455810546875, + 752.379638671875, + 872.7342529296875, + 913.6683959960938, + 1004.446533203125, + 1009.37060546875, + 945.311767578125, + 993.5911865234375, + 902.7073364257812, + 851.654541015625, + 804.4600830078125, + 761.79150390625, + 784.5693969726562, + 774.1334228515625, + 800.6837158203125, + 825.723388671875, + 857.3286743164062, + 848.1759643554688, + 859.53759765625, + 878.4363403320312, + 861.7788696289062, + 14.112812995910645, + 84.02446746826172, + 174.10562133789062, + 288.0945129394531, + 367.6536560058594, + 535.327392578125, + 604.71826171875, + 612.96923828125, + 605.134521484375, + 655.106201171875, + 648.9932250976562, + 637.2571411132812, + 692.6994018554688, + 798.4112548828125, + 909.8327026367188, + 954.0262451171875, + 892.7552490234375, + 913.4136962890625, + 907.9365234375, + 906.1846923828125, + 874.9741821289062, + 848.9407958984375, + 855.351806640625, + 860.645751953125, + 865.5489501953125, + 866.60791015625, + 805.2230834960938, + 808.0985717773438, + 787.5458374023438, + 681.1854858398438, + 652.263427734375, + 628.261962890625, + 577.165283203125, + 606.9136352539062, + 761.0230712890625, + 929.5667724609375, + 955.07470703125, + 939.9482421875, + 927.4810791015625, + 931.49609375, + 964.0454711914062, + 874.1138916015625, + 831.2164306640625, + 812.7197265625, + 710.9268798828125, + 794.05615234375, + 706.731689453125, + 778.999755859375, + 884.8142700195312, + 927.3519287109375, + 927.0588989257812, + 878.44873046875, + 869.4103393554688, + 778.52001953125, + 730.5367431640625, + 770.7149658203125, + 856.151123046875, + 824.8307495117188, + 846.9951171875, + 812.380859375, + 856.26513671875, + 879.1248168945312, + 829.1776123046875, + 853.958740234375, + 880.6646728515625, + -17.627368927001953, + 65.63577270507812, + 176.22280883789062, + 263.96429443359375, + 295.02203369140625, + 351.64971923828125, + 585.801025390625, + 619.5628662109375, + 643.607666015625, + 640.1305541992188, + 690.78369140625, + 651.8756103515625, + 691.1917724609375, + 736.1058349609375, + 841.715087890625, + 945.3470458984375, + 880.0135498046875, + 985.313720703125, + 1030.69189453125, + 971.9190673828125, + 900.76318359375, + 916.97607421875, + 945.64697265625, + 916.8499755859375, + 921.31005859375, + 868.9168701171875, + 913.7459716796875, + 845.84033203125, + 814.333251953125, + 695.0850219726562, + 631.32470703125, + 662.8406372070312, + 654.5673828125, + 690.934814453125, + 809.0474853515625, + 934.0211181640625, + 984.3569946289062, + 932.4414672851562, + 906.779541015625, + 878.867431640625, + 855.290283203125, + 802.9046020507812, + 808.2681884765625, + 766.0317993164062, + 671.2083740234375, + 704.7924194335938, + 610.2278442382812, + 690.5191650390625, + 778.1165161132812, + 815.0584106445312, + 808.5694580078125, + 733.778564453125, + 753.2972412109375, + 683.8458251953125, + 740.5039672851562, + 754.5289306640625, + 753.3416748046875, + 802.9481201171875, + 849.2236938476562, + 814.8855590820312, + 865.66455078125, + 873.5997314453125, + 899.3184814453125, + 884.7899169921875, + 854.9186401367188, + -18.839216232299805, + 74.92694091796875, + 168.796142578125, + 181.4234161376953, + 214.48013305664062, + 235.2086181640625, + 607.1342163085938, + 646.1618041992188, + 711.10888671875, + 695.7799682617188, + 706.4219970703125, + 686.52587890625, + 731.6092529296875, + 752.7509765625, + 852.056640625, + 887.7988891601562, + 889.6094360351562, + 996.1461181640625, + 1047.775390625, + 1128.677490234375, + 1039.632568359375, + 1071.1376953125, + 1031.2989501953125, + 1055.040771484375, + 1075.742431640625, + 976.29931640625, + 908.7509155273438, + 777.0826416015625, + 764.87646484375, + 753.2630004882812, + 693.9703979492188, + 679.632568359375, + 681.3171997070312, + 745.509033203125, + 876.3848266601562, + 996.88134765625, + 945.9484252929688, + 906.1434936523438, + 855.3765869140625, + 812.3634033203125, + 746.9091796875, + 725.0974731445312, + 727.0335083007812, + 701.681396484375, + 621.302001953125, + 561.7955322265625, + 581.3046875, + 640.8712768554688, + 775.3114624023438, + 721.8023681640625, + 646.8951416015625, + 705.6314086914062, + 701.5782470703125, + 712.8316650390625, + 661.6729736328125, + 721.754150390625, + 744.9149780273438, + 779.898681640625, + 783.6409301757812, + 813.6092529296875, + 844.5548095703125, + 824.0580444335938, + 834.65283203125, + 878.0323486328125, + 850.3014526367188, + 22.091981887817383, + 88.61567687988281, + 129.85484313964844, + 167.34933471679688, + 176.81881713867188, + 194.53912353515625, + 612.1900024414062, + 659.0513916015625, + 691.7344970703125, + 715.8004150390625, + 694.6262817382812, + 678.9373168945312, + 725.4473876953125, + 827.7181396484375, + 886.8994140625, + 827.1089477539062, + 911.3858032226562, + 1003.0663452148438, + 1097.7203369140625, + 1147.9365234375, + 1143.0733642578125, + 1182.717041015625, + 1204.462646484375, + 1144.58154296875, + 1112.1314697265625, + 1022.1973876953125, + 930.1591796875, + 785.5257568359375, + 779.17724609375, + 723.91455078125, + 706.2437744140625, + 673.7742919921875, + 756.520751953125, + 900.527099609375, + 897.523681640625, + 960.3511352539062, + 912.58642578125, + 896.2089233398438, + 817.684814453125, + 740.5089111328125, + 690.965576171875, + 695.4281005859375, + 665.9478759765625, + 636.2113037109375, + 577.822509765625, + 535.0875244140625, + 548.668212890625, + 632.9461669921875, + 658.5523681640625, + 634.5465087890625, + 558.7308349609375, + 687.97509765625, + 676.40966796875, + 673.9781494140625, + 756.6971435546875, + 820.8502197265625, + 818.0587768554688, + 834.2281494140625, + 832.2720947265625, + 822.6071166992188, + 820.526611328125, + 814.1951904296875, + 814.6823120117188, + 849.7210083007812, + 913.4365844726562, + 9.524787902832031, + 58.453369140625, + 78.8840103149414, + 140.8416290283203, + 188.23484802246094, + 205.78468322753906, + 564.1886596679688, + 663.0867919921875, + 701.4422607421875, + 702.0748901367188, + 670.2074584960938, + 648.0386962890625, + 707.7587890625, + 810.0819702148438, + 871.901123046875, + 792.633056640625, + 940.7511596679688, + 1037.3638916015625, + 1096.969482421875, + 1141.7637939453125, + 1212.06640625, + 1226.666259765625, + 1201.357421875, + 1192.0687255859375, + 1112.61328125, + 1017.7076416015625, + 900.8685913085938, + 836.28271484375, + 779.7029418945312, + 695.587890625, + 762.489990234375, + 692.4161987304688, + 808.5848388671875, + 903.867431640625, + 904.4945068359375, + 914.5333251953125, + 889.255615234375, + 865.315673828125, + 795.5543823242188, + 750.334716796875, + 692.1907348632812, + 687.3997802734375, + 652.6754150390625, + 576.9531860351562, + 524.5416870117188, + 505.577392578125, + 514.9009399414062, + 563.747802734375, + 646.8817749023438, + 589.3260498046875, + 608.616943359375, + 611.7894287109375, + 612.7438354492188, + 722.748779296875, + 841.7703857421875, + 838.5355224609375, + 774.8392333984375, + 784.3867797851562, + 835.32470703125, + 837.7825317382812, + 838.199462890625, + 819.46533203125, + 829.180419921875, + 850.9324951171875, + 865.3734130859375, + -31.433340072631836, + 23.405380249023438, + 95.85598754882812, + 161.27490234375, + 199.16802978515625, + 226.89813232421875, + 581.6953125, + 645.97412109375, + 705.2938842773438, + 699.81689453125, + 680.6370849609375, + 668.5341796875, + 688.7564086914062, + 713.3154296875, + 816.78662109375, + 788.0591430664062, + 932.8585205078125, + 1025.7239990234375, + 1079.9849853515625, + 1102.289794921875, + 1171.7740478515625, + 1225.1456298828125, + 1204.4376220703125, + 1184.3482666015625, + 1113.3797607421875, + 948.6573486328125, + 873.6689453125, + 871.4776611328125, + 845.044189453125, + 772.41748046875, + 740.0482177734375, + 738.1160888671875, + 771.8067016601562, + 912.3475341796875, + 966.0843505859375, + 897.5511474609375, + 871.3028564453125, + 790.1051635742188, + 745.2650146484375, + 738.0805053710938, + 689.309326171875, + 651.6590576171875, + 558.8057250976562, + 534.009765625, + 558.0372314453125, + 558.3790283203125, + 490.9798583984375, + 532.7886352539062, + 569.8289184570312, + 566.1665649414062, + 599.994873046875, + 590.7393798828125, + 696.8829345703125, + 797.84033203125, + 798.0200805664062, + 828.7264404296875, + 769.2387084960938, + 710.3851318359375, + 752.7120361328125, + 829.279052734375, + 831.4564208984375, + 856.4300537109375, + 851.9256591796875, + 892.2415771484375, + 941.686279296875, + -18.57527732849121, + 10.317268371582031, + 85.57278442382812, + 124.74553680419922, + 170.90866088867188, + 208.41098022460938, + 285.7470397949219, + 559.7112426757812, + 598.6549682617188, + 636.4873046875, + 674.8175048828125, + 675.7579956054688, + 657.2520751953125, + 734.2130126953125, + 776.124755859375, + 778.452392578125, + 865.223388671875, + 976.9723510742188, + 1036.857177734375, + 1072.7257080078125, + 1147.2957763671875, + 1204.0516357421875, + 1199.418701171875, + 1159.053466796875, + 1037.41650390625, + 882.1754150390625, + 912.1874389648438, + 868.0069580078125, + 872.6417846679688, + 811.128173828125, + 804.2749633789062, + 730.4005126953125, + 804.5428466796875, + 899.6436157226562, + 879.8292236328125, + 848.2994384765625, + 830.3663330078125, + 779.466552734375, + 743.9505615234375, + 752.11083984375, + 682.1406860351562, + 647.6814575195312, + 613.876953125, + 573.7533569335938, + 522.9752197265625, + 476.03790283203125, + 498.4588928222656, + 535.1796264648438, + 546.6494140625, + 519.0569458007812, + 611.9124755859375, + 709.9603271484375, + 798.4141235351562, + 857.915771484375, + 824.81494140625, + 742.1256713867188, + 712.6671142578125, + 722.4208984375, + 709.6923828125, + 840.704345703125, + 833.5703735351562, + 916.6580810546875, + 926.6151123046875, + 923.38623046875, + 925.219482421875, + -16.786357879638672, + 2.232114791870117, + 57.47030258178711, + 102.48485565185547, + 171.99993896484375, + 245.5745086669922, + 308.535888671875, + 561.6484375, + 557.6983642578125, + 593.59716796875, + 599.3521728515625, + 575.369873046875, + 657.9473876953125, + 782.0321044921875, + 757.3674926757812, + 785.1171264648438, + 836.71826171875, + 951.0621948242188, + 1037.949462890625, + 1072.40966796875, + 1126.9774169921875, + 1161.110595703125, + 1167.357177734375, + 1125.228271484375, + 1002.1024780273438, + 955.4500732421875, + 856.0722045898438, + 837.09765625, + 831.65234375, + 779.888427734375, + 769.4653930664062, + 779.3004150390625, + 816.1870727539062, + 846.111328125, + 850.3924560546875, + 835.3494262695312, + 800.16748046875, + 762.5291748046875, + 742.520751953125, + 732.0134887695312, + 700.7164916992188, + 647.36962890625, + 616.5885620117188, + 567.8702392578125, + 481.86767578125, + 455.9881591796875, + 443.96343994140625, + 453.385009765625, + 537.0786743164062, + 645.2105712890625, + 740.890380859375, + 770.3809814453125, + 842.277587890625, + 823.0799560546875, + 847.5274047851562, + 776.8619384765625, + 712.4340209960938, + 697.696044921875, + 757.8017578125, + 802.8975830078125, + 836.284423828125, + 924.0653076171875, + 865.9130249023438, + 899.2850952148438, + 918.250244140625, + -16.063583374023438, + -18.381820678710938, + 50.26646041870117, + 113.70071411132812, + 162.6766357421875, + 263.6178283691406, + 331.5601806640625, + 372.59539794921875, + 533.1639404296875, + 553.3181762695312, + 549.4097290039062, + 609.7503662109375, + 699.4085693359375, + 792.332275390625, + 756.5958251953125, + 757.1342163085938, + 834.7894897460938, + 861.9052734375, + 957.009033203125, + 1006.7418212890625, + 1076.4921875, + 1095.5408935546875, + 1076.454345703125, + 1014.12255859375, + 940.5120239257812, + 990.8843994140625, + 955.1832275390625, + 841.659423828125, + 789.2669677734375, + 767.4083251953125, + 782.6524047851562, + 802.2440185546875, + 821.2242431640625, + 795.2742919921875, + 854.9285278320312, + 822.8802490234375, + 803.200927734375, + 834.2738037109375, + 687.134765625, + 688.3032836914062, + 669.4304809570312, + 635.662353515625, + 578.4104614257812, + 541.625244140625, + 499.3989562988281, + 476.2884826660156, + 440.0821228027344, + 456.774658203125, + 578.8687133789062, + 733.14306640625, + 793.125732421875, + 803.8399658203125, + 783.3970336914062, + 833.3045043945312, + 863.12158203125, + 788.7083740234375, + 764.5630493164062, + 715.3408203125, + 789.5481567382812, + 737.9246215820312, + 913.6123657226562, + 929.937255859375, + 922.7822875976562, + 872.10107421875, + 942.908935546875, + -6.740008354187012, + -4.350576877593994, + 60.5366325378418, + 121.39503479003906, + 187.35244750976562, + 278.21990966796875, + 346.4210205078125, + 450.7935791015625, + 483.4316101074219, + 525.679443359375, + 565.3878173828125, + 628.7748413085938, + 692.0570678710938, + 728.842529296875, + 734.22802734375, + 686.3045043945312, + 805.89794921875, + 806.658447265625, + 819.5364379882812, + 933.4829711914062, + 969.94189453125, + 1007.5830078125, + 977.51220703125, + 907.289306640625, + 969.2101440429688, + 1002.982666015625, + 1035.070556640625, + 953.834228515625, + 880.212158203125, + 821.89111328125, + 824.81298828125, + 800.8911743164062, + 835.8214111328125, + 851.53125, + 829.69140625, + 828.2890625, + 840.207275390625, + 849.6997680664062, + 741.9566040039062, + 736.09423828125, + 682.5322265625, + 615.6009521484375, + 606.812255859375, + 601.625, + 575.0206298828125, + 524.2447509765625, + 404.1639404296875, + 487.26763916015625, + 536.75146484375, + 573.38232421875, + 697.4630126953125, + 748.561767578125, + 811.0158081054688, + 829.993896484375, + 754.2061767578125, + 758.647216796875, + 763.1512451171875, + 779.8839721679688, + 763.6701049804688, + 804.3114013671875, + 945.6500244140625, + 962.8602294921875, + 961.487060546875, + 889.9677734375, + 928.2738037109375, + -3.853837251663208, + 2.299978256225586, + 46.45904541015625, + 125.52775573730469, + 198.0404052734375, + 267.70379638671875, + 310.23388671875, + 424.7649841308594, + 465.6934509277344, + 548.9196166992188, + 617.8724365234375, + 616.402099609375, + 673.9696044921875, + 678.3294677734375, + 700.0994262695312, + 660.1369018554688, + 733.7090454101562, + 776.4532470703125, + 773.346923828125, + 811.2882080078125, + 885.8380126953125, + 887.4843139648438, + 844.2320556640625, + 913.7665405273438, + 985.78369140625, + 999.5269775390625, + 976.628173828125, + 942.119873046875, + 919.6151123046875, + 904.4173583984375, + 952.4241943359375, + 894.1859130859375, + 842.8072509765625, + 835.7584228515625, + 860.9583740234375, + 865.1824340820312, + 852.678955078125, + 801.8425903320312, + 768.28955078125, + 706.556640625, + 679.3668823242188, + 649.768310546875, + 676.5602416992188, + 691.2531127929688, + 654.8840942382812, + 545.6689453125, + 422.6790771484375, + 393.2574768066406, + 418.2403869628906, + 470.4207763671875, + 550.478271484375, + 593.9698486328125, + 682.4357299804688, + 720.4246826171875, + 686.9061279296875, + 656.03759765625, + 801.4046020507812, + 815.881103515625, + 710.7769775390625, + 863.7150268554688, + 953.3046875, + 953.7307739257812, + 916.3773193359375, + 917.2279663085938, + 936.833740234375, + -29.993141174316406, + -2.055171012878418, + 42.33332443237305, + 97.34001159667969, + 164.9192352294922, + 212.97621154785156, + 295.855224609375, + 421.2100830078125, + 502.2246398925781, + 571.0570678710938, + 607.070068359375, + 626.473388671875, + 647.67333984375, + 628.2659912109375, + 666.4141845703125, + 665.2678833007812, + 699.3863525390625, + 730.6948852539062, + 749.2330932617188, + 778.182861328125, + 784.3764038085938, + 798.4080810546875, + 847.4302978515625, + 925.802734375, + 958.202392578125, + 934.5274047851562, + 896.9069213867188, + 915.3253173828125, + 911.8765258789062, + 926.4140625, + 912.1571044921875, + 927.2381591796875, + 900.4390869140625, + 919.208251953125, + 873.5538330078125, + 880.869140625, + 870.44580078125, + 796.6760864257812, + 838.3404541015625, + 757.2548217773438, + 679.3475952148438, + 643.3930053710938, + 698.6316528320312, + 745.4420166015625, + 689.2994995117188, + 548.7711791992188, + 468.076416015625, + 497.6832580566406, + 523.7117309570312, + 494.7406005859375, + 539.4848022460938, + 554.3338623046875, + 586.4509887695312, + 591.8113403320312, + 574.7003173828125, + 637.3087158203125, + 720.8980102539062, + 796.3501586914062, + 712.3981323242188, + 818.7589721679688, + 920.4993286132812, + 888.4124755859375, + 913.9222412109375, + 1014.9337158203125, + 962.7747192382812, + -14.371603012084961, + 41.23147201538086, + 100.68193054199219, + 120.88368225097656, + 183.32720947265625, + 216.26614379882812, + 267.48712158203125, + 332.0090026855469, + 403.53790283203125, + 483.37261962890625, + 538.3878173828125, + 586.9306640625, + 557.6481323242188, + 571.087890625, + 643.6474609375, + 653.4660034179688, + 688.4574584960938, + 729.67236328125, + 744.8763427734375, + 784.941162109375, + 758.745361328125, + 742.570556640625, + 844.0337524414062, + 919.4063720703125, + 929.6608276367188, + 885.51611328125, + 886.3818359375, + 967.58837890625, + 934.9395751953125, + 896.1566162109375, + 958.1205444335938, + 982.8663330078125, + 990.564453125, + 989.1016845703125, + 941.44970703125, + 884.049072265625, + 884.1602172851562, + 809.7685546875, + 806.1201171875, + 722.7530517578125, + 699.3119506835938, + 636.95654296875, + 733.99853515625, + 783.2860107421875, + 720.8455200195312, + 566.8631591796875, + 499.4795837402344, + 472.6250915527344, + 498.8016662597656, + 516.3280029296875, + 512.7739868164062, + 545.356201171875, + 597.1627807617188, + 617.1656494140625, + 648.2234497070312, + 643.0384521484375, + 640.6365966796875, + 683.56640625, + 720.8886108398438, + 734.9837646484375, + 839.469482421875, + 896.672607421875, + 929.4400024414062, + 1002.54736328125, + 894.5650634765625, + 7.428955554962158, + 74.72401428222656, + 127.55924987792969, + 134.77713012695312, + 159.82733154296875, + 187.03623962402344, + 233.09121704101562, + 288.58489990234375, + 388.27142333984375, + 450.2808837890625, + 469.82330322265625, + 477.00628662109375, + 505.874755859375, + 558.0306396484375, + 613.6763305664062, + 586.0185546875, + 673.9910888671875, + 723.6966552734375, + 715.975341796875, + 805.2758178710938, + 786.7207641601562, + 749.1663818359375, + 803.5841064453125, + 884.13916015625, + 914.238037109375, + 897.3434448242188, + 856.3259887695312, + 917.1380615234375, + 972.5174560546875, + 863.2139892578125, + 901.410400390625, + 971.9706420898438, + 1001.262939453125, + 1010.4310913085938, + 953.463134765625, + 913.4525146484375, + 889.3406372070312, + 818.9727783203125, + 757.5457153320312, + 755.4114990234375, + 763.3419189453125, + 687.7647705078125, + 686.2689208984375, + 764.1600952148438, + 710.9960327148438, + 607.6991577148438, + 518.4772338867188, + 500.8531188964844, + 542.6901245117188, + 538.275634765625, + 536.2468872070312, + 529.758056640625, + 580.7196655273438, + 614.109375, + 660.5159912109375, + 685.2529907226562, + 721.7330322265625, + 768.3595581054688, + 752.3120727539062, + 731.0799560546875, + 739.81884765625, + 841.4178466796875, + 872.4852294921875, + 967.193115234375, + 869.1331176757812, + 29.974056243896484, + 92.95850372314453, + 141.71697998046875, + 148.44021606445312, + 167.7432403564453, + 193.88479614257812, + 234.18231201171875, + 261.1148376464844, + 335.1552429199219, + 403.73663330078125, + 440.2774658203125, + 478.7685546875, + 499.4388732910156, + 545.677978515625, + 581.6561279296875, + 579.0319213867188, + 611.0115356445312, + 665.5439453125, + 707.5809936523438, + 770.55029296875, + 713.8177490234375, + 724.3815307617188, + 785.2802734375, + 855.8341674804688, + 896.2064208984375, + 891.6185302734375, + 861.236328125, + 841.1553955078125, + 893.7027587890625, + 831.7357177734375, + 838.025634765625, + 942.3668823242188, + 987.3947143554688, + 994.9540405273438, + 1009.5339965820312, + 916.2392578125, + 861.6880493164062, + 803.585205078125, + 811.4435424804688, + 743.115234375, + 723.8605346679688, + 711.177001953125, + 724.80615234375, + 812.0232543945312, + 737.882080078125, + 637.1929321289062, + 524.7073364257812, + 570.0142211914062, + 675.0731811523438, + 636.7422485351562, + 635.6655883789062, + 673.2596435546875, + 688.6904907226562, + 649.9881591796875, + 687.523681640625, + 705.2139892578125, + 702.0820922851562, + 846.1947021484375, + 827.3846435546875, + 755.9366455078125, + 691.4951171875, + 778.4974365234375, + 860.06201171875, + 928.5994873046875, + 932.6340942382812, + 47.81996154785156, + 69.17935180664062, + 107.26752471923828, + 137.97805786132812, + 158.30581665039062, + 193.71356201171875, + 203.43389892578125, + 236.46395874023438, + 318.26495361328125, + 345.1560363769531, + 437.389404296875, + 500.5528869628906, + 537.3472900390625, + 564.0601806640625, + 554.052490234375, + 560.399658203125, + 627.2775268554688, + 677.8853149414062, + 681.2662353515625, + 644.8336791992188, + 668.4876708984375, + 688.53955078125, + 771.3646240234375, + 806.9281005859375, + 793.36865234375, + 786.7041625976562, + 777.04150390625, + 820.4882202148438, + 868.3007202148438, + 865.3853149414062, + 850.44287109375, + 863.7278442382812, + 890.131591796875, + 944.661376953125, + 992.3697509765625, + 967.0145263671875, + 830.22021484375, + 812.6241455078125, + 784.8483276367188, + 793.3472290039062, + 720.2642822265625, + 756.5306396484375, + 708.3182373046875, + 784.4735107421875, + 760.123779296875, + 771.2062377929688, + 639.2808837890625, + 681.927490234375, + 712.879638671875, + 709.903076171875, + 671.4772338867188, + 681.7022705078125, + 671.0994873046875, + 635.3242797851562, + 739.587646484375, + 743.44970703125, + 714.1691284179688, + 794.0345458984375, + 868.7921752929688, + 847.541748046875, + 754.6467895507812, + 734.9581909179688, + 833.011962890625, + 902.1649780273438, + 902.6531982421875, + 40.224525451660156, + 77.9568099975586, + 94.51751708984375, + 116.81827545166016, + 114.10343933105469, + 145.43748474121094, + 151.697021484375, + 206.99461364746094, + 292.697265625, + 345.6549987792969, + 407.4442443847656, + 422.5216979980469, + 451.9168701171875, + 584.3143920898438, + 565.340576171875, + 541.9349365234375, + 583.708251953125, + 616.7988891601562, + 602.155029296875, + 670.2567749023438, + 702.23193359375, + 702.6859741210938, + 711.7423706054688, + 748.931396484375, + 775.9437866210938, + 811.1298828125, + 838.6796875, + 836.767578125, + 768.5506591796875, + 756.2249755859375, + 790.3168334960938, + 766.8966674804688, + 821.5956420898438, + 885.15283203125, + 944.884033203125, + 940.2388305664062, + 867.4161376953125, + 790.7830810546875, + 816.5989990234375, + 783.9364013671875, + 752.465576171875, + 686.2674560546875, + 714.55908203125, + 763.995849609375, + 699.5747680664062, + 695.6990966796875, + 709.9710693359375, + 710.5457763671875, + 702.7938232421875, + 709.8202514648438, + 681.0531616210938, + 651.726806640625, + 640.0318603515625, + 666.8539428710938, + 725.7333374023438, + 753.7340698242188, + 752.5633544921875, + 786.87451171875, + 757.352294921875, + 787.2063598632812, + 755.02587890625, + 781.4884033203125, + 849.848388671875, + 852.4620361328125, + 904.7418212890625, + 46.40607833862305, + 63.97607421875, + 90.8725357055664, + 73.34135437011719, + 83.57621765136719, + 102.24077606201172, + 156.86245727539062, + 175.36277770996094, + 222.52227783203125, + 287.7950439453125, + 356.8057556152344, + 387.6802673339844, + 448.1961669921875, + 497.393798828125, + 572.4825439453125, + 530.0266723632812, + 572.4241943359375, + 571.6324462890625, + 617.657470703125, + 662.9053955078125, + 696.3961181640625, + 674.8986206054688, + 763.5701904296875, + 759.2606811523438, + 807.3206787109375, + 837.381591796875, + 865.915771484375, + 821.203369140625, + 817.286865234375, + 831.4820556640625, + 791.0997314453125, + 763.531982421875, + 787.4547729492188, + 847.4735717773438, + 929.935302734375, + 977.587646484375, + 929.55908203125, + 860.5526123046875, + 929.9948120117188, + 781.7176513671875, + 808.5933837890625, + 764.2821655273438, + 735.3822021484375, + 710.67431640625, + 653.0286865234375, + 614.55322265625, + 634.102294921875, + 657.4525146484375, + 671.5885620117188, + 644.4974365234375, + 649.812255859375, + 725.5923461914062, + 749.2123413085938, + 773.373046875, + 726.7933959960938, + 839.8490600585938, + 835.515869140625, + 810.7294921875, + 806.52392578125, + 843.640625, + 823.7910766601562, + 817.7198486328125, + 844.9375610351562, + 918.0303344726562, + 932.0145263671875, + 44.9857063293457, + 60.32433319091797, + 85.45121765136719, + 87.74043273925781, + 87.46039581298828, + 89.73003387451172, + 119.80548858642578, + 153.38694763183594, + 186.53514099121094, + 240.5884246826172, + 281.2737121582031, + 303.8489074707031, + 339.8024597167969, + 393.2088317871094, + 411.52874755859375, + 541.5166015625, + 551.2720947265625, + 556.8726806640625, + 620.6785888671875, + 616.9567260742188, + 635.3294067382812, + 695.221923828125, + 699.662109375, + 762.2388916015625, + 819.28076171875, + 866.7557373046875, + 843.77294921875, + 830.8677368164062, + 854.7655639648438, + 854.0750732421875, + 816.95263671875, + 743.9028930664062, + 744.48486328125, + 802.37548828125, + 904.0883178710938, + 956.1056518554688, + 988.4661865234375, + 993.2476806640625, + 915.1243896484375, + 810.6902465820312, + 893.369384765625, + 851.8233642578125, + 837.3900146484375, + 696.8892822265625, + 694.8287963867188, + 699.0130615234375, + 683.1386108398438, + 655.122802734375, + 661.59716796875, + 749.0652465820312, + 779.6085815429688, + 755.8771362304688, + 758.3941650390625, + 696.7828369140625, + 768.4303588867188, + 854.8536376953125, + 899.69921875, + 899.1322021484375, + 862.11669921875, + 834.6568603515625, + 885.0036010742188, + 836.34912109375, + 896.6809692382812, + 873.4730834960938, + 926.017578125, + 33.37065124511719, + 32.30844497680664, + 28.441755294799805, + 45.64439392089844, + 53.34900665283203, + 74.45494842529297, + 119.198974609375, + 150.21974182128906, + 182.97003173828125, + 220.88050842285156, + 260.4821472167969, + 290.8301086425781, + 307.3316345214844, + 359.71923828125, + 382.04180908203125, + 506.3614501953125, + 520.79052734375, + 528.97216796875, + 553.7076416015625, + 587.3782958984375, + 633.937744140625, + 690.6009521484375, + 705.53955078125, + 764.54638671875, + 813.0679931640625, + 850.8468017578125, + 786.423095703125, + 862.407470703125, + 866.6539306640625, + 834.9627075195312, + 847.6815185546875, + 766.3267211914062, + 736.140869140625, + 815.7018432617188, + 867.2097778320312, + 902.746337890625, + 963.3269653320312, + 983.8871459960938, + 907.5241088867188, + 900.0194091796875, + 930.622802734375, + 916.9139404296875, + 845.431884765625, + 719.1077880859375, + 751.28759765625, + 771.9658203125, + 762.2155151367188, + 735.1019287109375, + 705.007568359375, + 755.4553833007812, + 807.5162963867188, + 743.6320190429688, + 739.2517700195312, + 689.096923828125, + 817.9254760742188, + 891.4552001953125, + 928.81005859375, + 950.056640625, + 927.5338745117188, + 882.4437866210938, + 906.5708618164062, + 893.7569580078125, + 903.7535400390625, + 913.8927001953125, + 903.9810180664062, + 38.82594299316406, + 2.283842086791992, + -20.49568748474121, + -14.760724067687988, + -8.669063568115234, + 30.656421661376953, + 114.95278930664062, + 144.1493682861328, + 188.5689697265625, + 214.34817504882812, + 265.2497253417969, + 297.5875244140625, + 316.45458984375, + 325.1632995605469, + 313.21038818359375, + 346.1960144042969, + 364.0444030761719, + 525.1828002929688, + 543.5047607421875, + 543.2962036132812, + 606.6123046875, + 645.848876953125, + 643.356689453125, + 706.314453125, + 802.8888549804688, + 811.1619262695312, + 803.59765625, + 879.8513793945312, + 859.251220703125, + 821.4588623046875, + 759.4077758789062, + 793.230224609375, + 794.595458984375, + 834.65380859375, + 841.2849731445312, + 830.0419311523438, + 872.877685546875, + 936.63037109375, + 890.3572387695312, + 938.3951416015625, + 922.2095947265625, + 922.6220703125, + 834.7623901367188, + 738.0064697265625, + 726.5726318359375, + 733.0697631835938, + 769.0223388671875, + 813.3445434570312, + 790.4410400390625, + 750.7116088867188, + 828.73193359375, + 775.0814208984375, + 770.3023681640625, + 713.2250366210938, + 850.930419921875, + 852.8858642578125, + 941.9439086914062, + 962.302734375, + 947.5853271484375, + 891.7059936523438, + 894.795166015625, + 897.188720703125, + 968.0203857421875, + 954.6319580078125, + 902.7018432617188, + 35.193931579589844, + 4.276462078094482, + -2.0961570739746094, + -0.17502307891845703, + -0.037593841552734375, + -17.894596099853516, + 93.7013931274414, + 159.7775115966797, + 175.04010009765625, + 231.07012939453125, + 277.9337463378906, + 252.0908660888672, + 257.8182067871094, + 263.1492614746094, + 306.3417053222656, + 364.414794921875, + 400.1327209472656, + 496.54669189453125, + 505.2960510253906, + 526.9918212890625, + 541.05859375, + 575.5794067382812, + 578.2485961914062, + 636.1666870117188, + 754.1788330078125, + 765.1583251953125, + 778.8753662109375, + 830.5436401367188, + 797.9993896484375, + 711.7791748046875, + 710.9309692382812, + 734.2440185546875, + 735.366455078125, + 781.6033935546875, + 803.0152587890625, + 855.7178955078125, + 895.9556884765625, + 917.9595947265625, + 914.544921875, + 929.9087524414062, + 939.2544555664062, + 925.2169189453125, + 830.3973388671875, + 749.6822509765625, + 730.3878784179688, + 728.3509521484375, + 722.181396484375, + 740.4354248046875, + 830.1021728515625, + 755.603759765625, + 754.5758666992188, + 779.9950561523438, + 784.5116577148438, + 798.2647094726562, + 862.7262573242188, + 962.3546142578125, + 945.4842529296875, + 936.505859375, + 914.4095458984375, + 890.212646484375, + 902.150146484375, + 966.8177490234375, + 1004.2156982421875, + 990.0584716796875, + 970.4190063476562, + 24.278398513793945, + 3.256396770477295, + 19.94089126586914, + 31.924467086791992, + 25.39106559753418, + -11.18758487701416, + 51.37736892700195, + 131.70469665527344, + 175.5909423828125, + 227.02532958984375, + 283.45855712890625, + 278.6705627441406, + 281.5018310546875, + 262.8905029296875, + 291.4623107910156, + 364.10113525390625, + 448.2381591796875, + 460.83587646484375, + 497.9819030761719, + 493.4224853515625, + 492.62225341796875, + 532.7286987304688, + 561.6041259765625, + 591.2794189453125, + 692.3908081054688, + 726.193359375, + 683.2141723632812, + 720.7123413085938, + 693.927001953125, + 659.774169921875, + 672.0289306640625, + 689.4775390625, + 748.7398681640625, + 811.8585205078125, + 883.918212890625, + 881.859130859375, + 928.7117919921875, + 928.7888793945312, + 940.7705688476562, + 920.0679931640625, + 907.9697265625, + 880.9891357421875, + 807.0242919921875, + 829.8875732421875, + 817.505126953125, + 805.077392578125, + 818.0313110351562, + 743.5023803710938, + 827.526123046875, + 724.5479736328125, + 792.3474731445312, + 831.248291015625, + 809.414306640625, + 879.3692626953125, + 891.8653564453125, + 957.228271484375, + 919.8570556640625, + 904.6109008789062, + 887.9845581054688, + 874.1904907226562, + 929.5723876953125, + 971.1305541992188, + 1000.153076171875, + 1002.0537719726562, + 976.358642578125, + -8.545283317565918, + 11.8509521484375, + 9.062556266784668, + 36.41403579711914, + 33.42192840576172, + 8.084948539733887, + -5.551967144012451, + 84.15642547607422, + 170.4429931640625, + 206.66705322265625, + 292.330078125, + 297.8853454589844, + 243.54275512695312, + 249.88278198242188, + 274.66595458984375, + 375.95587158203125, + 459.310791015625, + 485.95452880859375, + 468.92999267578125, + 477.46514892578125, + 500.6025085449219, + 541.19921875, + 608.14697265625, + 566.7142944335938, + 615.3316650390625, + 621.0691528320312, + 606.6887817382812, + 630.9560546875, + 595.0009765625, + 645.465576171875, + 659.3411865234375, + 709.6533203125, + 799.593994140625, + 834.68896484375, + 849.4654541015625, + 863.835693359375, + 891.3095703125, + 903.0997314453125, + 886.9408569335938, + 924.2366943359375, + 880.7841186523438, + 862.1560668945312, + 780.389892578125, + 841.891845703125, + 892.390625, + 900.2423095703125, + 841.8009643554688, + 780.1091918945312, + 839.059814453125, + 777.6253662109375, + 814.6558837890625, + 840.5799560546875, + 807.4408569335938, + 916.5333251953125, + 951.6001586914062, + 925.91162109375, + 876.7525634765625, + 887.7064208984375, + 916.236083984375, + 935.3246459960938, + 932.0687255859375, + 911.32373046875, + 905.824951171875, + 899.7512817382812, + 902.532470703125, + -36.84754943847656, + -14.077783584594727, + 21.081119537353516, + 17.7987117767334, + 37.411170959472656, + 24.545454025268555, + -8.743552207946777, + 41.76637268066406, + 122.03633117675781, + 195.11087036132812, + 305.5058898925781, + 308.23779296875, + 273.16925048828125, + 269.6716003417969, + 270.02020263671875, + 317.8986511230469, + 384.638916015625, + 419.8248291015625, + 429.159912109375, + 434.2320861816406, + 512.69921875, + 565.3547973632812, + 577.853515625, + 546.1905517578125, + 549.6224365234375, + 554.7467041015625, + 603.224365234375, + 601.7347412109375, + 634.9229736328125, + 678.036376953125, + 672.5, + 774.5399780273438, + 810.3306884765625, + 861.179443359375, + 865.199951171875, + 893.2946166992188, + 888.51513671875, + 870.3163452148438, + 882.4417724609375, + 922.0955810546875, + 953.6491088867188, + 921.0687255859375, + 889.8837890625, + 868.2672119140625, + 889.0888671875, + 901.1043701171875, + 891.7191772460938, + 808.1795043945312, + 828.576416015625, + 829.9267578125, + 836.7201538085938, + 830.5798950195312, + 865.093994140625, + 959.1481323242188, + 973.140869140625, + 898.7890625, + 892.432861328125, + 944.4354248046875, + 973.87548828125, + 953.7889404296875, + 901.5660400390625, + 869.95751953125, + 912.2009887695312, + 959.2037963867188, + 970.69287109375, + -18.301767349243164, + -15.804803848266602, + 20.10097312927246, + 13.110177993774414, + 15.29556655883789, + 14.222461700439453, + 15.856083869934082, + 11.596578598022461, + 85.8251953125, + 153.88906860351562, + 251.46206665039062, + 262.62255859375, + 232.76406860351562, + 270.4311828613281, + 312.819580078125, + 286.6128845214844, + 353.40838623046875, + 381.2989807128906, + 397.14935302734375, + 438.97900390625, + 523.9590454101562, + 526.8265380859375, + 542.47412109375, + 527.0682983398438, + 528.2310791015625, + 539.0264892578125, + 555.454345703125, + 604.512451171875, + 587.5155639648438, + 646.87548828125, + 655.142822265625, + 718.739990234375, + 790.6914672851562, + 834.1874389648438, + 907.2619018554688, + 887.3245849609375, + 949.594482421875, + 890.2030029296875, + 861.3634033203125, + 904.600830078125, + 975.083740234375, + 1025.784423828125, + 975.013427734375, + 934.533447265625, + 899.8182983398438, + 901.3644409179688, + 899.2789306640625, + 830.7175903320312, + 853.42578125, + 854.546630859375, + 899.9278564453125, + 895.5064697265625, + 902.91064453125, + 999.027587890625, + 972.1987915039062, + 901.338623046875, + 941.8746948242188, + 960.46240234375, + 957.7738037109375, + 919.3922729492188, + 868.3096923828125, + 879.2056884765625, + 931.4992065429688, + 917.69677734375, + 915.884521484375, + 6.371628761291504, + -15.75878620147705, + 15.890877723693848, + 9.986663818359375, + 11.624795913696289, + 12.320392608642578, + 28.422691345214844, + 7.761048793792725, + 54.33623504638672, + 125.32563018798828, + 185.5135040283203, + 238.08946228027344, + 251.91842651367188, + 303.024658203125, + 350.30224609375, + 312.422607421875, + 317.87371826171875, + 352.15802001953125, + 388.9776916503906, + 400.49102783203125, + 468.9573974609375, + 476.70367431640625, + 522.8300170898438, + 543.7882690429688, + 584.4728393554688, + 541.1102294921875, + 510.54766845703125, + 566.50146484375, + 552.2801513671875, + 597.5968017578125, + 642.101318359375, + 711.4434814453125, + 792.224609375, + 823.80615234375, + 931.04443359375, + 936.7288818359375, + 935.1671752929688, + 932.9312744140625, + 926.0166625976562, + 862.6632690429688, + 974.781982421875, + 1034.7547607421875, + 1010.235595703125, + 969.3780517578125, + 956.9119873046875, + 963.556884765625, + 948.5595703125, + 883.10302734375, + 917.7227783203125, + 917.9962768554688, + 933.486328125, + 877.5823364257812, + 939.7546997070312, + 972.237060546875, + 949.8255615234375, + 921.2828369140625, + 950.3804931640625, + 937.1058349609375, + 927.9627075195312, + 891.8553466796875, + 875.05517578125, + 903.038818359375, + 919.8679809570312, + 937.1231689453125, + 942.4712524414062, + 16.198076248168945, + -17.05471420288086, + 8.474255561828613, + 43.88412094116211, + 33.042884826660156, + 30.245439529418945, + 30.178340911865234, + 35.09515380859375, + 34.1908073425293, + 88.2166976928711, + 156.67501831054688, + 195.31784057617188, + 238.18844604492188, + 278.4501953125, + 369.05877685546875, + 334.5435485839844, + 295.3473815917969, + 384.2046203613281, + 351.0022888183594, + 375.3795166015625, + 418.96978759765625, + 426.84283447265625, + 480.7412414550781, + 501.21209716796875, + 566.6953735351562, + 506.3262939453125, + 485.7687683105469, + 515.0457763671875, + 545.25244140625, + 577.3753051757812, + 642.9150390625, + 703.1353149414062, + 707.2890625, + 778.869140625, + 889.22412109375, + 920.93115234375, + 919.911865234375, + 926.1364135742188, + 952.2816772460938, + 872.9094848632812, + 945.6307373046875, + 1009.2450561523438, + 951.4964599609375, + 959.295166015625, + 927.284423828125, + 983.1397705078125, + 994.7232666015625, + 884.9215698242188, + 897.4306030273438, + 885.4364013671875, + 882.0340576171875, + 974.7625732421875, + 1026.295166015625, + 947.1424560546875, + 945.450439453125, + 991.9454345703125, + 997.0926513671875, + 950.1580200195312, + 911.31103515625, + 869.1386108398438, + 866.21044921875, + 895.3814697265625, + 910.8345947265625, + 910.69775390625, + 885.410888671875, + 11.693260192871094, + 21.360239028930664, + 28.856897354125977, + 63.302127838134766, + 58.24835968017578, + 53.898597717285156, + 67.4322738647461, + 57.59099578857422, + 20.272798538208008, + 59.92484664916992, + 124.79869079589844, + 192.22662353515625, + 228.60870361328125, + 261.2415771484375, + 322.4566650390625, + 367.7203369140625, + 260.36639404296875, + 362.9421081542969, + 348.568359375, + 343.8274230957031, + 393.91778564453125, + 412.535400390625, + 412.67340087890625, + 443.29205322265625, + 460.1444091796875, + 414.31988525390625, + 433.5160217285156, + 532.7927856445312, + 606.59423828125, + 612.7791137695312, + 640.603515625, + 618.7034912109375, + 635.097412109375, + 712.0341186523438, + 863.2913818359375, + 915.0806884765625, + 874.332275390625, + 869.894287109375, + 891.6749267578125, + 866.3870849609375, + 915.7672119140625, + 931.8897705078125, + 946.7132568359375, + 880.2077026367188, + 881.2880249023438, + 906.7730102539062, + 933.8396606445312, + 925.221435546875, + 945.81494140625, + 920.059814453125, + 975.4232788085938, + 1008.5772705078125, + 916.3975830078125, + 961.5892333984375, + 1040.3763427734375, + 1074.375244140625, + 1068.083984375, + 1022.6066284179688, + 962.7135009765625, + 922.8245849609375, + 858.7310791015625, + 864.1398315429688, + 881.9427490234375, + 866.9065551757812, + 841.4183349609375, + 27.300315856933594, + 47.373985290527344, + 65.68025207519531, + 68.37598419189453, + 82.99124145507812, + 69.087890625, + 69.48677062988281, + 61.59467697143555, + 82.97056579589844, + 66.24369049072266, + 119.38362121582031, + 175.0511474609375, + 203.1009521484375, + 238.94168090820312, + 293.1066589355469, + 355.5163879394531, + 270.4676513671875, + 260.663818359375, + 286.2088623046875, + 318.06048583984375, + 356.28009033203125, + 365.79229736328125, + 358.47796630859375, + 333.65533447265625, + 326.7893981933594, + 306.8206787109375, + 312.9336853027344, + 512.147705078125, + 561.8549194335938, + 562.8680419921875, + 593.4039916992188, + 572.8201904296875, + 593.4785766601562, + 718.2219848632812, + 790.1124877929688, + 839.912353515625, + 819.8446044921875, + 854.3541259765625, + 941.029541015625, + 845.8010864257812, + 890.1473999023438, + 860.1071166992188, + 838.3177490234375, + 887.6632080078125, + 851.8190307617188, + 920.498291015625, + 899.5333251953125, + 894.4924926757812, + 917.101806640625, + 896.8990478515625, + 953.07568359375, + 909.0940551757812, + 954.880859375, + 1038.5576171875, + 1114.31494140625, + 1079.95361328125, + 1097.533203125, + 1096.7109375, + 1036.932373046875, + 987.41162109375, + 919.544921875, + 873.7960815429688, + 845.2918701171875, + 846.5177612304688, + 839.788818359375, + 40.04428482055664, + 62.04536056518555, + 84.04064178466797, + 85.67249298095703, + 84.27827453613281, + 87.9157943725586, + 72.14224243164062, + 99.52462768554688, + 129.94552612304688, + 131.68089294433594, + 109.69375610351562, + 165.37802124023438, + 200.28732299804688, + 247.6380615234375, + 308.5172119140625, + 325.7768249511719, + 292.05560302734375, + 257.75103759765625, + 219.38217163085938, + 231.59689331054688, + 309.2511901855469, + 325.6861877441406, + 295.02862548828125, + 301.9481506347656, + 253.37294006347656, + 253.05755615234375, + 316.5126647949219, + 472.5596008300781, + 520.7470703125, + 539.1532592773438, + 589.4021606445312, + 589.3894653320312, + 617.529541015625, + 675.8886108398438, + 711.9651489257812, + 766.0322875976562, + 829.195556640625, + 894.6260986328125, + 886.8431396484375, + 795.7138671875, + 859.737548828125, + 796.4285888671875, + 813.7147827148438, + 840.0013427734375, + 850.2401123046875, + 886.1805419921875, + 933.3646240234375, + 894.3585205078125, + 890.579345703125, + 920.523193359375, + 872.2503051757812, + 978.3424072265625, + 1020.6539916992188, + 1090.0538330078125, + 1039.335693359375, + 1065.3173828125, + 978.16357421875, + 999.5909423828125, + 1079.423095703125, + 1049.2628173828125, + 988.8001708984375, + 916.5135498046875, + 871.2950439453125, + 865.832763671875, + 853.9013671875, + 36.49995040893555, + 36.985565185546875, + 63.87371826171875, + 55.11406707763672, + 64.76371002197266, + 55.244781494140625, + 64.31221771240234, + 129.55038452148438, + 161.80905151367188, + 165.43446350097656, + 153.8319854736328, + 178.53964233398438, + 183.6483154296875, + 235.09280395507812, + 288.01092529296875, + 331.1471862792969, + 309.127685546875, + 307.270751953125, + 211.38735961914062, + 183.32102966308594, + 209.13941955566406, + 247.9277801513672, + 247.43101501464844, + 238.1087646484375, + 215.66650390625, + 217.9503936767578, + 252.0189208984375, + 349.83489990234375, + 462.15350341796875, + 541.7665405273438, + 568.4188232421875, + 626.583251953125, + 659.3070068359375, + 671.9336547851562, + 738.470703125, + 756.079833984375, + 804.4390258789062, + 832.8187255859375, + 808.3116455078125, + 827.3685913085938, + 835.0020751953125, + 828.471435546875, + 875.5679931640625, + 819.7308959960938, + 843.937255859375, + 920.3985595703125, + 883.2811279296875, + 864.7130126953125, + 908.2056274414062, + 909.2365112304688, + 822.34716796875, + 883.6369018554688, + 1003.85546875, + 1028.5927734375, + 1000.003173828125, + 986.1505126953125, + 929.878173828125, + 877.7350463867188, + 961.9998779296875, + 930.7852783203125, + 945.02783203125, + 932.5820922851562, + 854.5407104492188, + 739.4520263671875, + 705.2714233398438, + 21.223846435546875, + 27.721050262451172, + 31.87671661376953, + 25.165802001953125, + 33.96579360961914, + 45.518280029296875, + 72.2188720703125, + 123.17306518554688, + 189.59266662597656, + 227.6199951171875, + 211.3158721923828, + 209.74346923828125, + 223.69000244140625, + 224.6526336669922, + 249.25009155273438, + 276.9798278808594, + 303.6921691894531, + 251.61834716796875, + 192.0757598876953, + 171.67982482910156, + 128.00942993164062, + 163.9736785888672, + 201.7379608154297, + 259.2795715332031, + 244.7284393310547, + 233.42750549316406, + 250.954345703125, + 355.951904296875, + 436.2434997558594, + 483.7379150390625, + 569.2159423828125, + 638.9166259765625, + 612.4209594726562, + 652.16015625, + 722.310302734375, + 689.6416015625, + 676.0028076171875, + 698.8939208984375, + 744.4778442382812, + 797.5052490234375, + 837.2409057617188, + 919.2225341796875, + 928.8844604492188, + 849.5726318359375, + 874.387451171875, + 904.8360595703125, + 888.8878173828125, + 907.2659301757812, + 892.3726806640625, + 849.697998046875, + 864.5350341796875, + 808.96923828125, + 843.7283325195312, + 932.21728515625, + 861.438232421875, + 856.20361328125, + 862.9881591796875, + 840.5804443359375, + 899.333984375, + 875.7215576171875, + 859.684326171875, + 835.8961791992188, + 781.8405151367188, + 688.272705078125, + 651.8865966796875, + 42.752601623535156, + 45.287254333496094, + 36.10903549194336, + 25.838380813598633, + 58.61814498901367, + 91.453125, + 141.77560424804688, + 201.2411346435547, + 216.3783721923828, + 259.5943298339844, + 290.2288818359375, + 274.91766357421875, + 269.4201354980469, + 256.44140625, + 205.99020385742188, + 204.54954528808594, + 230.63552856445312, + 220.8645477294922, + 205.83755493164062, + 176.76878356933594, + 153.1442413330078, + 169.16563415527344, + 186.4346160888672, + 271.9440002441406, + 238.52371215820312, + 259.5817565917969, + 255.55625915527344, + 380.6590270996094, + 472.5412292480469, + 474.97076416015625, + 560.5721435546875, + 581.726318359375, + 643.6917114257812, + 670.217041015625, + 673.29833984375, + 630.843994140625, + 671.1723022460938, + 700.9283447265625, + 769.72216796875, + 822.9371337890625, + 862.8865966796875, + 950.13037109375, + 944.5919799804688, + 913.679443359375, + 915.79052734375, + 939.9129638671875, + 878.7100830078125, + 878.0910034179688, + 926.3484497070312, + 870.291015625, + 881.077880859375, + 815.6986083984375, + 802.3785400390625, + 770.431640625, + 771.2822265625, + 781.4459838867188, + 796.3931884765625, + 856.5423583984375, + 763.4212036132812, + 793.8815307617188, + 757.4048461914062, + 745.29052734375, + 711.952392578125, + 651.7939453125, + 635.8115234375, + 74.82856750488281, + 76.64984893798828, + 64.30339050292969, + 91.15423583984375, + 123.17048645019531, + 152.83265686035156, + 198.333251953125, + 264.3778076171875, + 312.5157165527344, + 312.67730712890625, + 340.98455810546875, + 334.92059326171875, + 261.9373779296875, + 235.04310607910156, + 173.69161987304688, + 170.08482360839844, + 211.63558959960938, + 201.7959442138672, + 210.74649047851562, + 195.24642944335938, + 198.26321411132812, + 157.635009765625, + 143.0962677001953, + 212.98464965820312, + 250.07550048828125, + 243.62339782714844, + 248.6107940673828, + 359.07318115234375, + 506.49114990234375, + 481.84771728515625, + 497.3458251953125, + 516.5094604492188, + 590.5816650390625, + 698.4591064453125, + 636.8019409179688, + 599.6136474609375, + 672.7396850585938, + 723.9827880859375, + 757.6748046875, + 804.43310546875, + 834.9923706054688, + 890.62109375, + 942.3994140625, + 935.6157836914062, + 905.36767578125, + 829.036865234375, + 834.74755859375, + 903.0955200195312, + 899.9837646484375, + 850.8251342773438, + 843.5661010742188, + 814.5559692382812, + 798.9616088867188, + 800.8343505859375, + 714.96240234375, + 760.2799682617188, + 740.281005859375, + 756.6869506835938, + 712.406494140625, + 681.6549682617188, + 707.444580078125, + 740.5819702148438, + 675.7352905273438, + 611.64599609375, + 636.2294921875, + 106.74079895019531, + 111.35688781738281, + 109.42793273925781, + 116.71598815917969, + 174.2328338623047, + 241.33811950683594, + 302.7193298339844, + 299.22900390625, + 305.2086181640625, + 294.3673400878906, + 288.06982421875, + 288.50390625, + 245.27406311035156, + 231.8006591796875, + 210.30120849609375, + 218.08401489257812, + 218.69595336914062, + 234.39137268066406, + 237.27679443359375, + 228.25404357910156, + 193.54476928710938, + 157.0595245361328, + 155.72923278808594, + 169.48348999023438, + 208.433349609375, + 219.56015014648438, + 225.03683471679688, + 298.31256103515625, + 402.96026611328125, + 431.6118469238281, + 508.3784484863281, + 510.71282958984375, + 530.4436645507812, + 612.1649780273438, + 634.7047729492188, + 603.231201171875, + 674.5847778320312, + 715.582275390625, + 717.0530395507812, + 751.2537841796875, + 811.8057861328125, + 865.5303344726562, + 888.0125732421875, + 839.7838134765625, + 757.7691650390625, + 765.747314453125, + 882.8428955078125, + 943.5698852539062, + 902.7780151367188, + 782.5993041992188, + 785.059814453125, + 761.4572143554688, + 769.6976318359375, + 788.627197265625, + 751.228759765625, + 692.5787353515625, + 666.110595703125, + 691.2532958984375, + 690.7408447265625, + 647.5451049804688, + 696.306884765625, + 676.3717651367188, + 636.0241088867188, + 600.5291748046875, + 600.601318359375, + 164.3526611328125, + 165.43118286132812, + 162.46266174316406, + 165.7957763671875, + 219.8592529296875, + 257.65997314453125, + 325.35626220703125, + 344.7345275878906, + 326.40325927734375, + 274.47442626953125, + 285.26947021484375, + 289.17669677734375, + 227.58688354492188, + 211.9315185546875, + 257.8480529785156, + 277.77490234375, + 226.05389404296875, + 221.35015869140625, + 232.65701293945312, + 226.92019653320312, + 188.17987060546875, + 123.04835510253906, + 123.891845703125, + 152.39059448242188, + 208.64109802246094, + 217.2412109375, + 207.68252563476562, + 177.5001220703125, + 216.6558837890625, + 386.9576110839844, + 538.4337158203125, + 526.9331665039062, + 494.05694580078125, + 544.6542358398438, + 559.65234375, + 594.0068969726562, + 651.2669677734375, + 685.625244140625, + 675.922119140625, + 685.6867065429688, + 723.948486328125, + 746.13720703125, + 768.8677978515625, + 725.3377075195312, + 718.7361450195312, + 826.2716064453125, + 922.1739501953125, + 938.1994018554688, + 862.3360595703125, + 755.4663696289062, + 755.911376953125, + 737.877685546875, + 705.4851684570312, + 694.2112426757812, + 678.5279541015625, + 637.8983154296875, + 674.9332275390625, + 656.2424926757812, + 643.24267578125, + 632.2628173828125, + 655.2349243164062, + 656.7572021484375, + 674.5052490234375, + 607.8798217773438, + 592.47265625, + 213.85443115234375, + 269.0678405761719, + 242.62957763671875, + 261.1941833496094, + 276.62750244140625, + 303.47869873046875, + 345.8265686035156, + 345.45159912109375, + 347.1167297363281, + 305.3296813964844, + 330.2550964355469, + 314.56622314453125, + 283.6729736328125, + 241.883056640625, + 289.997314453125, + 275.14019775390625, + 221.94825744628906, + 260.1704406738281, + 251.10382080078125, + 225.68496704101562, + 214.3582000732422, + 182.57481384277344, + 190.0132598876953, + 191.76156616210938, + 193.16331481933594, + 203.43353271484375, + 197.10174560546875, + 150.40396118164062, + 168.75296020507812, + 275.6398620605469, + 410.5287780761719, + 485.24371337890625, + 412.76092529296875, + 531.5927734375, + 546.4274291992188, + 617.996826171875, + 688.75927734375, + 674.3887329101562, + 643.815673828125, + 629.7847900390625, + 626.153564453125, + 651.3929443359375, + 683.157470703125, + 733.1286010742188, + 793.2296752929688, + 848.4449462890625, + 898.5616455078125, + 859.8731079101562, + 770.8004760742188, + 741.5712890625, + 740.9189453125, + 697.06884765625, + 681.2381591796875, + 668.0806884765625, + 645.4514770507812, + 640.0506591796875, + 621.4539794921875, + 599.055419921875, + 600.9002685546875, + 627.89599609375, + 660.1571044921875, + 669.2999877929688, + 609.2159423828125, + 537.2962036132812, + 555.426513671875, + 262.6873779296875, + 280.31671142578125, + 289.23358154296875, + 327.89178466796875, + 337.4330749511719, + 345.21063232421875, + 378.24615478515625, + 416.4410400390625, + 370.5255126953125, + 364.2585144042969, + 310.9388732910156, + 305.4145202636719, + 346.2995910644531, + 304.2185363769531, + 291.33203125, + 291.203125, + 245.96116638183594, + 226.572509765625, + 246.726318359375, + 226.0899200439453, + 249.98544311523438, + 268.7579650878906, + 300.3629455566406, + 256.0747375488281, + 246.61178588867188, + 244.56703186035156, + 203.66903686523438, + 174.11691284179688, + 177.10037231445312, + 229.63186645507812, + 339.8497619628906, + 442.08538818359375, + 429.92022705078125, + 493.6551208496094, + 567.7906494140625, + 627.3795166015625, + 625.652587890625, + 622.9652709960938, + 623.6981811523438, + 582.1552734375, + 638.7385864257812, + 712.104736328125, + 765.08740234375, + 749.5838623046875, + 765.634521484375, + 771.1563110351562, + 783.1029052734375, + 774.2216796875, + 720.3098754882812, + 705.4559326171875, + 681.4839477539062, + 676.0994873046875, + 643.7913818359375, + 622.1480712890625, + 606.525634765625, + 613.489990234375, + 596.0924072265625, + 608.220458984375, + 615.1723022460938, + 625.845703125, + 621.7899169921875, + 611.9522705078125, + 554.2243041992188, + 523.2911376953125, + 492.92242431640625, + 242.51626586914062, + 294.4490966796875, + 314.1874084472656, + 334.35809326171875, + 361.1363525390625, + 399.92742919921875, + 405.9906005859375, + 437.7189636230469, + 434.3157958984375, + 379.47271728515625, + 344.7390441894531, + 343.14678955078125, + 358.67681884765625, + 399.2404479980469, + 357.72552490234375, + 309.1448669433594, + 246.76727294921875, + 261.8514709472656, + 308.9884948730469, + 307.714599609375, + 263.90631103515625, + 304.763916015625, + 288.9300537109375, + 294.8481750488281, + 298.1210021972656, + 289.3878173828125, + 323.7919006347656, + 235.66238403320312, + 195.1415252685547, + 229.3261260986328, + 248.7330322265625, + 378.9810485839844, + 477.24652099609375, + 455.8489074707031, + 539.4501953125, + 607.1473388671875, + 628.4603881835938, + 614.1795654296875, + 630.4873657226562, + 567.97412109375, + 649.146728515625, + 654.142333984375, + 703.9661254882812, + 680.8099365234375, + 655.942138671875, + 638.1927490234375, + 643.4574584960938, + 673.28125, + 682.2734375, + 644.1912231445312, + 660.7218627929688, + 650.0965576171875, + 618.0240478515625, + 614.7320556640625, + 578.6865234375, + 583.0921020507812, + 556.3171997070312, + 573.586181640625, + 608.5731201171875, + 554.92236328125, + 562.0794067382812, + 582.84619140625, + 540.808837890625, + 486.771240234375, + 472.30316162109375, + 309.72845458984375, + 264.9714050292969, + 316.3711853027344, + 329.9358825683594, + 341.7830810546875, + 400.85833740234375, + 403.687744140625, + 424.3499755859375, + 420.89910888671875, + 372.63037109375, + 396.4639892578125, + 397.6123962402344, + 398.9505310058594, + 407.1531982421875, + 336.8375244140625, + 329.6886291503906, + 283.1030578613281, + 316.53948974609375, + 341.0194091796875, + 308.7398376464844, + 321.4370422363281, + 304.5954284667969, + 293.4726867675781, + 301.96661376953125, + 322.04864501953125, + 367.70635986328125, + 303.4858093261719, + 291.822021484375, + 256.62615966796875, + 235.257568359375, + 208.9102783203125, + 320.43292236328125, + 386.70184326171875, + 458.75482177734375, + 480.8692321777344, + 524.5433349609375, + 581.1137084960938, + 590.095703125, + 613.0072021484375, + 570.72314453125, + 625.9163208007812, + 646.2545166015625, + 706.923583984375, + 676.1378173828125, + 615.2022705078125, + 548.138671875, + 553.0526733398438, + 620.04443359375, + 621.4942016601562, + 609.744873046875, + 597.687744140625, + 572.9908447265625, + 602.6126708984375, + 599.828857421875, + 563.4697265625, + 588.5570068359375, + 591.5374755859375, + 555.7415771484375, + 468.3011779785156, + 205.33145141601562, + 377.15057373046875, + 461.4532470703125, + 500.2044982910156, + 524.5579833984375, + 503.70037841796875, + 339.96527099609375, + 328.9422607421875, + 327.9173889160156, + 359.3281555175781, + 376.3829345703125, + 399.11151123046875, + 422.0493469238281, + 469.1435546875, + 444.2583923339844, + 415.761474609375, + 443.9489440917969, + 458.4676513671875, + 463.1407775878906, + 421.1353759765625, + 392.2740478515625, + 413.30108642578125, + 383.51873779296875, + 380.2462158203125, + 355.0267028808594, + 320.55145263671875, + 342.94122314453125, + 341.67938232421875, + 340.17535400390625, + 335.16168212890625, + 307.2967529296875, + 312.2449951171875, + 353.118408203125, + 365.48388671875, + 278.4283752441406, + 257.20941162109375, + 288.74530029296875, + 327.6320495605469, + 326.6934814453125, + 351.84912109375, + 404.3970947265625, + 517.841064453125, + 510.21502685546875, + 515.0196533203125, + 555.0513916015625, + 566.4274291992188, + 581.1146240234375, + 677.1458129882812, + 674.218017578125, + 647.8216552734375, + 630.3072509765625, + 578.202392578125, + 550.5178833007812, + 593.861572265625, + 558.6236572265625, + 555.710205078125, + 572.334228515625, + 582.8356323242188, + 573.4180297851562, + 578.6810302734375, + 544.3088989257812, + 533.5831909179688, + 525.3897705078125, + 329.8625183105469, + 113.02801513671875, + 92.07698059082031, + 133.88131713867188, + 223.70314025878906, + 327.3150939941406, + 467.06048583984375, + 494.125, + 77.89866638183594, + 8.201249122619629, + 110.54463958740234, + 122.11795043945312, + 26.56098747253418, + 58.134376525878906, + 84.90630340576172, + 128.92430114746094, + 154.97637939453125, + 143.6931610107422, + 106.02425384521484, + 108.40931701660156, + 141.80950927734375, + 219.57302856445312, + 300.05096435546875, + 300.06231689453125, + 300.07257080078125, + 300.0817565917969, + 300.0897521972656, + 300.0965270996094, + 300.1021423339844, + 300.10662841796875, + 300.1102294921875, + 300.1131286621094, + 300.1156311035156, + 293.88629150390625, + 248.70465087890625, + 180.77603149414062, + 114.91527557373047, + 37.7496337890625, + 9.229010581970215, + 24.12503433227539, + 41.945045471191406, + 79.18744659423828, + 163.23867797851562, + 210.97158813476562, + 241.56214904785156, + 289.1180114746094, + 361.349365234375, + 404.59307861328125, + 478.7107849121094, + 530.1331787109375, + 544.657958984375, + 513.0972900390625, + 509.33502197265625, + 516.2357177734375, + 532.1820678710938, + 658.32958984375, + 680.5698852539062, + 676.9348754882812, + 627.8641357421875, + 651.5760498046875, + 730.4146728515625, + 733.845703125, + 840.1829833984375, + 896.1155395507812, + 976.10791015625, + 943.7460327148438, + 946.379638671875, + 965.1993408203125, + 911.8504638671875, + 934.3310546875, + 930.8510131835938, + 1042.163818359375, + 1131.03466796875, + 142.2161407470703, + 86.67921447753906, + 46.31110382080078, + 58.89711380004883, + 86.29299926757812, + 106.4293212890625, + 123.87039184570312, + 142.62625122070312, + 164.57896423339844, + 175.79095458984375, + 148.94607543945312, + 149.8232879638672, + 178.01283264160156, + 244.53933715820312, + 300.04669189453125, + 300.057861328125, + 300.0679016113281, + 300.0768737792969, + 300.0847473144531, + 300.0915222167969, + 300.09722900390625, + 300.1019592285156, + 300.10589599609375, + 300.109375, + 300.1124572753906, + 300.1151123046875, + 300.1172790527344, + 269.8072204589844, + 205.91250610351562, + 141.2794952392578, + 65.2953109741211, + 10.655914306640625, + 36.97195816040039, + 88.4200439453125, + 132.3896026611328, + 185.61012268066406, + 256.953369140625, + 373.135498046875, + 373.5884704589844, + 482.84765625, + 526.7811279296875, + 575.7109375, + 535.5010986328125, + 490.1805114746094, + 534.109130859375, + 522.9052124023438, + 554.61669921875, + 618.8355102539062, + 650.5507202148438, + 626.2008056640625, + 617.55859375, + 642.3106689453125, + 687.1185913085938, + 702.1270141601562, + 804.0028686523438, + 844.5321655273438, + 939.0431518554688, + 956.5704345703125, + 946.80322265625, + 948.240966796875, + 919.3662719726562, + 885.9720458984375, + 1048.9521484375, + 1086.4290771484375, + 1115.0670166015625, + 174.63845825195312, + 171.95193481445312, + 147.39913940429688, + 142.4102783203125, + 153.55177307128906, + 150.2664031982422, + 131.6137237548828, + 129.5958709716797, + 152.5399169921875, + 171.74627685546875, + 174.7236328125, + 196.41488647460938, + 230.56228637695312, + 280.5251159667969, + 300.0403137207031, + 300.05133056640625, + 300.061279296875, + 300.0700378417969, + 300.0777893066406, + 300.08453369140625, + 300.0903625488281, + 300.0953674316406, + 300.0997619628906, + 300.10382080078125, + 300.1075439453125, + 300.1108093261719, + 300.1136169433594, + 300.1158447265625, + 296.9615783691406, + 232.2822265625, + 154.5319061279297, + 43.713523864746094, + 21.059452056884766, + 77.14779663085938, + 134.39404296875, + 182.80140686035156, + 272.2978515625, + 338.9211730957031, + 454.50787353515625, + 480.9098815917969, + 536.3221435546875, + 585.645751953125, + 544.5443115234375, + 526.25146484375, + 528.0006713867188, + 529.0045776367188, + 552.8868408203125, + 570.1337890625, + 593.7391357421875, + 633.4393920898438, + 629.879638671875, + 671.3201904296875, + 719.484375, + 704.6702880859375, + 787.5496826171875, + 829.90576171875, + 908.3396606445312, + 950.0071411132812, + 951.3133544921875, + 899.255126953125, + 920.794677734375, + 996.3201904296875, + 1026.65576171875, + 1076.5736083984375, + 1135.997314453125, + 174.25009155273438, + 198.78707885742188, + 210.18038940429688, + 203.74050903320312, + 187.34725952148438, + 162.18309020996094, + 136.76222229003906, + 105.6899185180664, + 124.07289123535156, + 166.6845703125, + 187.7717742919922, + 226.7886962890625, + 267.3563537597656, + 300.01983642578125, + 300.0318603515625, + 300.0428466796875, + 300.05267333984375, + 300.06134033203125, + 300.0689697265625, + 300.07574462890625, + 300.0816955566406, + 300.0870666503906, + 300.0920104980469, + 300.0966796875, + 300.1010437011719, + 300.10498046875, + 300.1084289550781, + 300.111328125, + 300.1136169433594, + 300.1152038574219, + 226.26345825195312, + 110.72781372070312, + 0.8636837005615234, + 41.600807189941406, + 123.269775390625, + 174.37982177734375, + 264.1514892578125, + 367.6180725097656, + 445.4039306640625, + 497.80255126953125, + 549.625, + 565.8612670898438, + 568.2307739257812, + 524.647705078125, + 527.9564208984375, + 528.5247192382812, + 560.3232421875, + 585.08837890625, + 595.231689453125, + 632.1593017578125, + 642.729736328125, + 715.0904541015625, + 738.9888916015625, + 762.2682495117188, + 837.9510498046875, + 863.5798950195312, + 883.7225341796875, + 944.024169921875, + 951.7984619140625, + 926.8260498046875, + 925.35498046875, + 913.6099853515625, + 946.30712890625, + 1030.875, + 1106.1878662109375, + 148.73385620117188, + 191.82015991210938, + 216.84445190429688, + 220.2059326171875, + 205.95285034179688, + 167.9918975830078, + 123.98833465576172, + 82.3748779296875, + 114.66093444824219, + 171.17953491210938, + 215.4709930419922, + 262.7349548339844, + 289.635498046875, + 300.00958251953125, + 300.021484375, + 300.03240966796875, + 300.0422058105469, + 300.0508728027344, + 300.0585021972656, + 300.0652770996094, + 300.07147216796875, + 300.0772399902344, + 300.082763671875, + 300.0881042480469, + 300.0931396484375, + 300.0977478027344, + 300.1018981933594, + 300.1054992675781, + 300.10845947265625, + 300.1107482910156, + 263.48284912109375, + 172.8656005859375, + 93.4825439453125, + 23.051044464111328, + 65.27333068847656, + 144.11158752441406, + 325.7916564941406, + 376.48004150390625, + 464.7861633300781, + 551.738525390625, + 554.8328857421875, + 545.1927490234375, + 591.8642578125, + 509.8700256347656, + 489.0299072265625, + 543.131591796875, + 600.8516845703125, + 660.9518432617188, + 674.6793212890625, + 659.334228515625, + 664.705810546875, + 708.2174072265625, + 715.6824951171875, + 772.5035400390625, + 853.7012939453125, + 847.916015625, + 930.83447265625, + 966.761962890625, + 908.6340942382812, + 913.5515747070312, + 932.129638671875, + 870.77490234375, + 912.210693359375, + 983.9277954101562, + 1008.8818359375, + 113.05708312988281, + 168.22640991210938, + 206.6226806640625, + 205.73321533203125, + 188.609130859375, + 145.22695922851562, + 102.28657531738281, + 76.19576263427734, + 129.6706085205078, + 196.05838012695312, + 257.2178649902344, + 299.9717712402344, + 299.98492431640625, + 299.99749755859375, + 300.0093078613281, + 300.0201721191406, + 300.02996826171875, + 300.0386962890625, + 300.04644775390625, + 300.05340576171875, + 300.0598449707031, + 300.06610107421875, + 300.0722961425781, + 300.0782775878906, + 300.083984375, + 300.0893249511719, + 300.0942077636719, + 300.0985412597656, + 300.10223388671875, + 300.1051940917969, + 300.1073913574219, + 222.85263061523438, + 148.18045043945312, + 102.60564422607422, + 52.92192459106445, + 140.98374938964844, + 333.5928649902344, + 360.5101318359375, + 415.94525146484375, + 490.01373291015625, + 522.6466674804688, + 512.052978515625, + 508.11566162109375, + 483.23638916015625, + 542.870361328125, + 615.21630859375, + 646.6829223632812, + 681.525146484375, + 739.351806640625, + 665.8590087890625, + 629.0455322265625, + 674.4072265625, + 755.1958618164062, + 833.7529296875, + 813.948974609375, + 845.7802124023438, + 885.6697387695312, + 1006.596923828125, + 952.219970703125, + 920.567626953125, + 883.8321533203125, + 827.3458862304688, + 841.932861328125, + 933.580078125, + 973.1727294921875, + 91.55884552001953, + 132.31190490722656, + 178.09072875976562, + 178.80474853515625, + 152.072021484375, + 109.15059661865234, + 87.83412170410156, + 101.98785400390625, + 154.4991455078125, + 242.4556427001953, + 299.9455871582031, + 299.9586486816406, + 299.9714660644531, + 299.98382568359375, + 299.9954833984375, + 300.0063171386719, + 300.01617431640625, + 300.02508544921875, + 300.0330505371094, + 300.040283203125, + 300.0471496582031, + 300.053955078125, + 300.0607604980469, + 300.0674133300781, + 300.0738525390625, + 300.0799255371094, + 300.0855407714844, + 300.0906066894531, + 300.0950622558594, + 300.0987854003906, + 300.1016845703125, + 235.6336669921875, + 185.3629608154297, + 142.81495666503906, + 74.0138168334961, + 146.76397705078125, + 342.9588928222656, + 399.64959716796875, + 402.92803955078125, + 471.1993408203125, + 515.0205078125, + 491.68115234375, + 497.7181396484375, + 549.6000366210938, + 607.4483642578125, + 678.5408935546875, + 694.9962158203125, + 705.8099365234375, + 718.6787109375, + 724.5941772460938, + 700.9930419921875, + 710.0155029296875, + 728.0306396484375, + 769.7581787109375, + 804.130615234375, + 840.67431640625, + 941.0628662109375, + 1036.190185546875, + 955.4629516601562, + 868.7614135742188, + 851.139892578125, + 788.3843383789062, + 754.889892578125, + 884.3134765625, + 895.1553955078125, + 71.36145782470703, + 87.75689697265625, + 108.41909790039062, + 105.25727844238281, + 67.72428894042969, + 45.95661544799805, + 95.51591491699219, + 134.0695037841797, + 214.3318328857422, + 299.919189453125, + 299.9316101074219, + 299.9441833496094, + 299.9566345214844, + 299.9687194824219, + 299.98028564453125, + 299.9910888671875, + 300.0010681152344, + 300.01019287109375, + 300.01849365234375, + 300.02618408203125, + 300.03363037109375, + 300.041015625, + 300.0484619140625, + 300.0557861328125, + 300.0628967285156, + 300.0697326660156, + 300.07611083984375, + 300.0819396972656, + 300.087158203125, + 300.0916442871094, + 300.0953369140625, + 235.26695251464844, + 191.39971923828125, + 159.69554138183594, + 101.31025695800781, + 102.24906921386719, + 264.32196044921875, + 421.03350830078125, + 443.81298828125, + 467.340087890625, + 526.9197998046875, + 486.9459228515625, + 565.7269897460938, + 601.3201293945312, + 678.6654052734375, + 705.4038696289062, + 712.0982666015625, + 682.9921264648438, + 701.6090698242188, + 710.7887573242188, + 714.0975952148438, + 749.7122802734375, + 748.125244140625, + 783.5064697265625, + 813.3071899414062, + 825.9425048828125, + 916.5372314453125, + 986.4039306640625, + 1019.5205688476562, + 931.8687744140625, + 865.8968505859375, + 786.8162841796875, + 747.0977783203125, + 815.497802734375, + 868.7989501953125, + 2.757614850997925, + 16.982017517089844, + 18.616132736206055, + 11.715564727783203, + 23.346513748168945, + 77.128173828125, + 131.86184692382812, + 197.13681030273438, + 264.18280029296875, + 299.9048767089844, + 299.9166259765625, + 299.92864990234375, + 299.940673828125, + 299.9525146484375, + 299.96392822265625, + 299.9747619628906, + 299.9848937988281, + 299.99432373046875, + 300.00311279296875, + 300.0114440917969, + 300.01953125, + 300.0275573730469, + 300.03558349609375, + 300.0436096191406, + 300.0514221191406, + 300.0589904785156, + 300.0661315917969, + 300.07275390625, + 300.0787658691406, + 300.08404541015625, + 300.0885009765625, + 259.936767578125, + 213.62744140625, + 187.75852966308594, + 95.13184356689453, + 48.48566436767578, + 235.08143615722656, + 386.6256103515625, + 473.152587890625, + 543.806640625, + 518.6838989257812, + 510.5859680175781, + 580.09716796875, + 650.0234985351562, + 728.795654296875, + 711.3571166992188, + 747.0873413085938, + 742.5691528320312, + 724.420654296875, + 665.4563598632812, + 724.50927734375, + 726.4119873046875, + 752.3783569335938, + 859.0934448242188, + 904.8646850585938, + 928.3299560546875, + 965.2337646484375, + 934.326904296875, + 969.36572265625, + 917.6929931640625, + 824.2142333984375, + 819.804443359375, + 789.2031860351562, + 775.6141967773438, + 815.3319091796875, + 63.83168029785156, + 43.80364227294922, + 32.68090057373047, + 46.15810012817383, + 88.62936401367188, + 142.49755859375, + 197.97024536132812, + 246.6872100830078, + 288.3042297363281, + 299.88983154296875, + 299.9008483886719, + 299.91229248046875, + 299.92388916015625, + 299.9354248046875, + 299.94671630859375, + 299.9576110839844, + 299.9679870605469, + 299.9778137207031, + 299.9872131347656, + 299.99627685546875, + 300.005126953125, + 300.0138244628906, + 300.0224609375, + 300.0311279296875, + 300.0396728515625, + 300.0479736328125, + 300.0558776855469, + 300.06329345703125, + 300.0700988769531, + 300.076171875, + 300.08135986328125, + 300.08538818359375, + 224.21311950683594, + 159.17953491210938, + 16.664640426635742, + 107.02542877197266, + 301.17132568359375, + 345.6731262207031, + 429.92437744140625, + 437.920654296875, + 465.87640380859375, + 509.04437255859375, + 605.001953125, + 648.4501342773438, + 675.4854125976562, + 691.9871215820312, + 704.1239013671875, + 774.5933837890625, + 760.5899047851562, + 693.214111328125, + 702.2098999023438, + 751.975830078125, + 736.5840454101562, + 830.5616455078125, + 940.8818359375, + 958.6339721679688, + 969.4150390625, + 952.03564453125, + 968.19873046875, + 928.6083984375, + 838.069580078125, + 875.0276489257812, + 827.8798217773438, + 740.8663330078125, + 795.8004150390625, + 153.2154541015625, + 141.10885620117188, + 128.37933349609375, + 138.38232421875, + 162.12132263183594, + 201.58348083496094, + 250.6346893310547, + 284.0096130371094, + 298.91278076171875, + 299.87432861328125, + 299.88458251953125, + 299.8954162597656, + 299.90655517578125, + 299.9178466796875, + 299.9290466308594, + 299.9400329589844, + 299.9507141113281, + 299.9610595703125, + 299.9711608886719, + 299.9810485839844, + 299.99066162109375, + 300.00006103515625, + 300.0093688964844, + 300.0186767578125, + 300.02789306640625, + 300.03692626953125, + 300.04559326171875, + 300.0538024902344, + 300.0614013671875, + 300.0682678222656, + 300.07415771484375, + 300.07879638671875, + 222.17474365234375, + 95.85868835449219, + 27.028366088867188, + 197.7701873779297, + 384.796142578125, + 373.9878234863281, + 390.53057861328125, + 416.0425720214844, + 430.3663330078125, + 470.343505859375, + 599.3192138671875, + 646.3627319335938, + 669.3681640625, + 681.455322265625, + 704.602783203125, + 757.8338012695312, + 803.6063232421875, + 723.4849853515625, + 780.3638916015625, + 744.64697265625, + 760.9210205078125, + 826.7490234375, + 908.8348388671875, + 959.3770751953125, + 986.2406005859375, + 1039.80859375, + 988.5118408203125, + 925.9515380859375, + 865.2587890625, + 867.6122436523438, + 844.2553100585938, + 744.3076782226562, + 746.2396240234375, + 199.3325653076172, + 203.48953247070312, + 196.62820434570312, + 192.29037475585938, + 204.62176513671875, + 237.44268798828125, + 281.4508056640625, + 299.8426818847656, + 298.88104248046875, + 291.89910888671875, + 299.86810302734375, + 299.8782958984375, + 299.8890380859375, + 299.9000549316406, + 299.91119384765625, + 299.92236328125, + 299.9334411621094, + 299.9444274902344, + 299.955322265625, + 299.96600341796875, + 299.9764099121094, + 299.9865417480469, + 299.99652099609375, + 300.0064392089844, + 300.016357421875, + 300.0260925292969, + 300.0355224609375, + 300.04449462890625, + 300.0528869628906, + 300.0605163574219, + 300.06707763671875, + 300.0723876953125, + 194.05508422851562, + 31.649213790893555, + 123.94937133789062, + 299.04229736328125, + 360.8583068847656, + 342.37060546875, + 361.42449951171875, + 450.8868103027344, + 480.5262756347656, + 481.7225341796875, + 567.7708740234375, + 635.471435546875, + 678.1446533203125, + 736.1912841796875, + 722.9060668945312, + 798.836669921875, + 785.4496459960938, + 760.60791015625, + 762.5529174804688, + 725.1470336914062, + 771.4119262695312, + 852.350341796875, + 860.7362670898438, + 911.1818237304688, + 1026.9560546875, + 1039.8416748046875, + 1009.9086303710938, + 940.8185424804688, + 901.274169921875, + 856.90869140625, + 844.4435424804688, + 779.9434814453125, + 717.1075439453125, + 217.17462158203125, + 223.6015625, + 223.16053771972656, + 219.3338623046875, + 226.0618896484375, + 242.371337890625, + 277.2831726074219, + 292.17950439453125, + 283.7039794921875, + 278.26495361328125, + 292.53509521484375, + 299.8613586425781, + 299.87164306640625, + 299.8824768066406, + 299.8936462402344, + 299.905029296875, + 299.9166259765625, + 299.9283142089844, + 299.9399719238281, + 299.9514465332031, + 299.962646484375, + 299.9735412597656, + 299.9842224121094, + 299.9947814941406, + 300.00531005859375, + 300.0157470703125, + 300.0259094238281, + 300.03564453125, + 300.0447998046875, + 300.0531311035156, + 300.0603942871094, + 252.288818359375, + 122.16670989990234, + 18.081180572509766, + 233.94149780273438, + 326.09613037109375, + 356.29541015625, + 339.58349609375, + 330.6413269042969, + 390.70709228515625, + 466.90606689453125, + 490.0278015136719, + 531.1227416992188, + 596.5791015625, + 652.5556640625, + 700.2008056640625, + 745.114990234375, + 759.5426635742188, + 758.9669189453125, + 778.9943237304688, + 732.4545288085938, + 697.1630249023438, + 813.6715087890625, + 809.6514892578125, + 816.3648681640625, + 902.9246826171875, + 987.4683227539062, + 988.8643798828125, + 905.4835205078125, + 884.8457641601562, + 951.01171875, + 906.508544921875, + 867.8085327148438, + 832.0374755859375, + 722.2703857421875, + 201.67343139648438, + 214.203857421875, + 216.5474853515625, + 229.7700653076172, + 238.50732421875, + 242.19384765625, + 252.89248657226562, + 264.516357421875, + 267.5540466308594, + 279.4910888671875, + 299.8357849121094, + 299.8448486328125, + 299.8547668457031, + 299.8654479980469, + 299.8767395019531, + 299.88848876953125, + 299.9006652832031, + 299.9130554199219, + 299.9254455566406, + 299.93768310546875, + 299.9496765136719, + 299.96136474609375, + 299.9726867675781, + 280.7665100097656, + 289.0332336425781, + 300.0061340332031, + 300.0169982910156, + 300.0274658203125, + 300.037353515625, + 300.04638671875, + 263.23602294921875, + 151.99578857421875, + 17.58278465270996, + 115.90647888183594, + 249.71763610839844, + 298.38824462890625, + 326.0941467285156, + 331.76727294921875, + 340.8994140625, + 411.30718994140625, + 475.5875549316406, + 471.734375, + 522.3345336914062, + 570.7911987304688, + 572.21533203125, + 567.4767456054688, + 649.3792114257812, + 723.544189453125, + 709.525634765625, + 715.6930541992188, + 722.9642333984375, + 729.9660034179688, + 807.4930419921875, + 825.6873779296875, + 854.0057373046875, + 920.7978515625, + 873.8748168945312, + 894.7960205078125, + 919.178955078125, + 984.04248046875, + 1046.8822021484375, + 919.5277709960938, + 916.3837890625, + 890.841552734375, + 817.9169921875, + 213.9958953857422, + 222.66940307617188, + 226.6354522705078, + 251.15090942382812, + 261.2485656738281, + 249.87738037109375, + 245.7861785888672, + 242.0428009033203, + 255.8635711669922, + 287.2558288574219, + 299.8205871582031, + 299.8291320800781, + 299.83880615234375, + 299.8494567871094, + 299.8609619140625, + 299.8731689453125, + 299.88592529296875, + 299.8989562988281, + 299.91204833984375, + 299.9250183105469, + 299.937744140625, + 299.95013427734375, + 276.7915954589844, + 256.7517395019531, + 274.6462097167969, + 299.9975280761719, + 300.009033203125, + 300.02020263671875, + 300.03076171875, + 283.0133972167969, + 169.01637268066406, + 75.43051147460938, + 55.64725112915039, + 183.7967987060547, + 299.1100158691406, + 296.9815673828125, + 315.8536682128906, + 327.0928955078125, + 385.0777587890625, + 422.20245361328125, + 485.0809326171875, + 473.14520263671875, + 498.997802734375, + 554.1149291992188, + 577.7237548828125, + 591.5310668945312, + 574.1495971679688, + 647.74853515625, + 661.5446166992188, + 674.39599609375, + 706.459228515625, + 789.63330078125, + 849.2708740234375, + 903.90234375, + 902.6842651367188, + 814.1773071289062, + 810.2855834960938, + 873.0521240234375, + 968.8658447265625, + 1013.7176513671875, + 1028.5498046875, + 1006.6207275390625, + 977.3359985351562, + 883.4473876953125, + 843.0252685546875, + 263.7854919433594, + 259.6749267578125, + 271.9549255371094, + 295.8287048339844, + 299.79168701171875, + 286.60614013671875, + 258.6177978515625, + 238.61859130859375, + 247.5838623046875, + 291.0989990234375, + 299.80645751953125, + 299.81463623046875, + 299.82415771484375, + 299.83489990234375, + 299.8467102050781, + 299.859375, + 270.2394714355469, + 279.2258605957031, + 299.9000244140625, + 299.9136962890625, + 299.9271240234375, + 299.9402160644531, + 254.87557983398438, + 255.25247192382812, + 296.0195007324219, + 299.9900817871094, + 300.0022277832031, + 300.0140380859375, + 300.0252685546875, + 255.86672973632812, + 112.2568130493164, + 19.314971923828125, + 80.41513061523438, + 186.071533203125, + 252.10885620117188, + 243.2003173828125, + 296.8152160644531, + 355.0193786621094, + 419.6298828125, + 429.64141845703125, + 498.59246826171875, + 497.0568542480469, + 511.2664794921875, + 556.9351806640625, + 559.271484375, + 560.5716552734375, + 599.655517578125, + 611.5173950195312, + 624.297607421875, + 682.347900390625, + 714.2802124023438, + 751.1488037109375, + 877.2017822265625, + 933.7894287109375, + 912.1318359375, + 772.5711669921875, + 820.5036010742188, + 811.4713134765625, + 912.5491943359375, + 975.567626953125, + 1023.1044921875, + 999.9909057617188, + 966.052490234375, + 911.1594848632812, + 946.687744140625, + 295.49322509765625, + 289.2640380859375, + 299.7951354980469, + 299.7884826660156, + 299.7835693359375, + 299.7805480957031, + 271.2301330566406, + 237.40745544433594, + 244.09930419921875, + 284.0877380371094, + 299.7937316894531, + 299.8016662597656, + 299.8111877441406, + 299.8221435546875, + 299.83428955078125, + 283.4712829589844, + 236.56475830078125, + 222.29953002929688, + 260.2829284667969, + 299.9039611816406, + 291.8127746582031, + 288.29730224609375, + 268.8168640136719, + 285.02142333984375, + 299.9711608886719, + 299.9840393066406, + 299.99676513671875, + 300.00921630859375, + 300.0210266113281, + 236.4828338623047, + 102.23465728759766, + 45.475616455078125, + 98.61882781982422, + 134.02276611328125, + 164.84226989746094, + 197.42236328125, + 296.72705078125, + 378.83551025390625, + 403.605712890625, + 447.27081298828125, + 477.34771728515625, + 474.0546875, + 495.674072265625, + 525.1187133789062, + 512.3341674804688, + 555.9696044921875, + 613.04296875, + 620.465576171875, + 668.9105224609375, + 653.74462890625, + 737.83740234375, + 769.272216796875, + 847.2000122070312, + 915.5325927734375, + 857.3792114257812, + 779.5699462890625, + 763.3345947265625, + 789.452880859375, + 857.6062622070312, + 949.6173095703125, + 994.57568359375, + 1004.628173828125, + 1033.5185546875, + 992.3642578125, + 993.1515502929688, + 282.9439697265625, + 280.611572265625, + 289.6702880859375, + 299.2514343261719, + 296.2183532714844, + 279.0576477050781, + 259.0567321777344, + 228.62762451171875, + 202.51931762695312, + 246.18753051757812, + 298.1689453125, + 299.7906188964844, + 299.80029296875, + 299.81146240234375, + 299.82391357421875, + 270.63720703125, + 216.11898803710938, + 217.84349060058594, + 246.82147216796875, + 276.7775573730469, + 298.1261291503906, + 294.4544372558594, + 299.93914794921875, + 299.9527587890625, + 299.9661560058594, + 299.97955322265625, + 299.9927978515625, + 300.00579833984375, + 300.0181579589844, + 193.53662109375, + 55.69538879394531, + 89.09638214111328, + 121.25994873046875, + 117.14443969726562, + 136.90667724609375, + 186.10597229003906, + 261.4087219238281, + 315.91943359375, + 385.0973205566406, + 426.7756652832031, + 486.2913513183594, + 487.53173828125, + 510.52813720703125, + 507.5644836425781, + 503.917236328125, + 563.0411376953125, + 605.6617431640625, + 642.04541015625, + 666.8179321289062, + 655.2288208007812, + 749.5927734375, + 759.4327392578125, + 838.8485107421875, + 886.7298583984375, + 833.5029296875, + 856.45556640625, + 821.8265380859375, + 820.43310546875, + 861.7379150390625, + 991.632568359375, + 995.06982421875, + 1004.175537109375, + 1023.2636108398438, + 1045.53759765625, + 1027.93505859375, + 253.84268188476562, + 254.29751586914062, + 240.05348205566406, + 231.6077880859375, + 217.67884826660156, + 220.74786376953125, + 216.8712921142578, + 191.8328094482422, + 144.69769287109375, + 177.92262268066406, + 236.0962677001953, + 292.36163330078125, + 299.79156494140625, + 299.8029479980469, + 284.3815612792969, + 250.12965393066406, + 223.39663696289062, + 219.44119262695312, + 242.94482421875, + 269.2236022949219, + 299.90533447265625, + 299.9202880859375, + 299.9348449707031, + 299.9490051269531, + 299.962890625, + 299.9767150878906, + 299.990478515625, + 300.0039367675781, + 261.4099426269531, + 152.54782104492188, + 29.8037109375, + 128.07861328125, + 187.59024047851562, + 165.36883544921875, + 145.35562133789062, + 186.90325927734375, + 229.01959228515625, + 259.531982421875, + 320.078857421875, + 341.0917663574219, + 409.85223388671875, + 425.1326904296875, + 491.172119140625, + 527.635498046875, + 585.906494140625, + 581.7017822265625, + 581.7078857421875, + 630.9200439453125, + 677.9854736328125, + 694.5860595703125, + 780.7853393554688, + 777.6869506835938, + 806.888671875, + 834.8837890625, + 848.9912109375, + 875.3674926757812, + 848.6251220703125, + 827.1008911132812, + 850.669921875, + 945.0831298828125, + 989.9273681640625, + 1029.243408203125, + 1054.5762939453125, + 1019.2306518554688, + 1025.082763671875, + 229.98548889160156, + 233.25827026367188, + 210.144775390625, + 176.0355682373047, + 154.49391174316406, + 161.20384216308594, + 168.5201873779297, + 151.16575622558594, + 113.03070068359375, + 109.3290023803711, + 172.0184783935547, + 235.04031372070312, + 282.97003173828125, + 280.61529541015625, + 257.69097900390625, + 215.4071044921875, + 185.45608520507812, + 179.27532958984375, + 206.31298828125, + 232.9946746826172, + 253.43185424804688, + 254.37562561035156, + 272.2870178222656, + 272.8849792480469, + 297.6492919921875, + 299.97564697265625, + 293.9291687011719, + 273.4991760253906, + 217.32801818847656, + 129.73915100097656, + 67.68367004394531, + 138.3050994873047, + 218.0006103515625, + 202.8002471923828, + 192.79592895507812, + 208.78018188476562, + 218.49813842773438, + 244.82518005371094, + 272.642822265625, + 277.46295166015625, + 348.0028381347656, + 388.5124816894531, + 489.86163330078125, + 533.7418212890625, + 572.8253173828125, + 569.0756225585938, + 563.3560791015625, + 599.3967895507812, + 611.80029296875, + 642.340087890625, + 696.5739135742188, + 747.2943725585938, + 773.28955078125, + 812.93896484375, + 806.22021484375, + 870.565673828125, + 868.1154174804688, + 847.6524658203125, + 872.848876953125, + 947.245361328125, + 1030.4217529296875, + 1051.920654296875, + 1103.3089599609375, + 1046.019287109375, + 1028.3594970703125, + 229.2015380859375, + 225.8590545654297, + 182.04281616210938, + 150.6693878173828, + 123.30538177490234, + 123.0347900390625, + 134.06838989257812, + 107.48588562011719, + 78.56399536132812, + 87.36458587646484, + 125.09014892578125, + 200.28794860839844, + 234.36997985839844, + 227.22348022460938, + 195.66058349609375, + 140.87838745117188, + 112.00750732421875, + 118.75592041015625, + 137.09048461914062, + 153.82745361328125, + 174.02255249023438, + 182.99978637695312, + 213.20643615722656, + 249.9844207763672, + 287.56292724609375, + 291.2775573730469, + 267.37115478515625, + 229.22103881835938, + 180.65516662597656, + 88.5243148803711, + 36.17829132080078, + 151.69227600097656, + 200.3212890625, + 220.68289184570312, + 218.59422302246094, + 228.458251953125, + 219.2766571044922, + 264.655517578125, + 235.4242706298828, + 251.74977111816406, + 266.3919677734375, + 362.59979248046875, + 429.7813415527344, + 485.9449157714844, + 560.5363159179688, + 540.7902221679688, + 533.611572265625, + 545.7783203125, + 560.102783203125, + 579.355712890625, + 662.5193481445312, + 710.0162353515625, + 758.4027099609375, + 757.06591796875, + 783.9840087890625, + 809.0730590820312, + 852.10693359375, + 824.8237915039062, + 825.88720703125, + 937.3359375, + 1092.429931640625, + 1132.5888671875, + 1121.64794921875, + 1073.628662109375, + 1063.0540771484375, + 233.49920654296875, + 218.86309814453125, + 166.3462371826172, + 111.09010314941406, + 89.16973876953125, + 92.69487762451172, + 95.8442611694336, + 71.41365051269531, + 32.263641357421875, + 54.293251037597656, + 103.47359466552734, + 155.12432861328125, + 190.5716552734375, + 177.64651489257812, + 121.40670776367188, + 74.89584350585938, + 34.951602935791016, + 59.67587661743164, + 93.46082305908203, + 101.48302459716797, + 120.89044189453125, + 131.9033966064453, + 159.5451202392578, + 213.2142333984375, + 267.2762451171875, + 267.0772399902344, + 229.43963623046875, + 185.47662353515625, + 130.61688232421875, + 15.427194595336914, + 85.05455017089844, + 173.3867645263672, + 205.00686645507812, + 204.79647827148438, + 235.3074951171875, + 266.543212890625, + 247.2900390625, + 258.1328125, + 232.77249145507812, + 231.24964904785156, + 310.0966796875, + 362.79339599609375, + 439.9693298339844, + 480.41485595703125, + 496.9252624511719, + 516.6517333984375, + 526.084716796875, + 577.3656005859375, + 617.054931640625, + 602.6473388671875, + 593.5865478515625, + 651.995361328125, + 664.0277709960938, + 766.6278076171875, + 802.8125, + 789.7891235351562, + 799.8683471679688, + 827.4198608398438, + 820.035400390625, + 927.982421875, + 1040.2861328125, + 1155.3494873046875, + 1139.34130859375, + 1109.5047607421875, + 1097.515869140625, + 214.64540100097656, + 201.8732452392578, + 134.83787536621094, + 50.743106842041016, + 30.71265411376953, + 25.543899536132812, + 70.63601684570312, + 26.44209098815918, + -11.145031929016113, + 20.63547706604004, + 60.817955017089844, + 106.05976867675781, + 130.3077850341797, + 83.69609069824219, + 80.81144714355469, + 37.18645477294922, + 33.5968132019043, + 18.24342155456543, + 57.71552276611328, + 85.1800765991211, + 53.1244010925293, + 66.94862365722656, + 105.64427947998047, + 169.00233459472656, + 224.07626342773438, + 233.44076538085938, + 196.4772186279297, + 139.6757354736328, + 44.64302062988281, + 41.002830505371094, + 171.03237915039062, + 254.76705932617188, + 260.9776611328125, + 259.2913513183594, + 276.31842041015625, + 307.38140869140625, + 292.50830078125, + 232.36026000976562, + 248.56784057617188, + 244.2611846923828, + 252.7686767578125, + 348.70037841796875, + 372.33990478515625, + 424.1942138671875, + 482.8643798828125, + 488.84283447265625, + 518.4195556640625, + 563.5037841796875, + 625.135009765625, + 605.809814453125, + 601.1866455078125, + 641.206298828125, + 727.884033203125, + 799.156494140625, + 838.3596801757812, + 806.3284912109375, + 819.20849609375, + 811.0176391601562, + 850.88720703125, + 908.6674194335938, + 1037.4296875, + 1124.7589111328125, + 1157.6688232421875, + 1128.8310546875, + 1115.037109375, + 146.59127807617188, + 128.90284729003906, + 64.90362548828125, + -22.365501403808594, + -2.5932188034057617, + -3.718466281890869, + 16.51053810119629, + -19.480106353759766, + -21.82268714904785, + 24.186328887939453, + 57.58400344848633, + 62.42415237426758, + 62.62485122680664, + 62.43217849731445, + 51.50519943237305, + 19.31007957458496, + 22.487947463989258, + 25.461952209472656, + 29.098968505859375, + 81.03289794921875, + 79.61524963378906, + 34.47706604003906, + 45.012245178222656, + 109.21037292480469, + 153.64134216308594, + 148.02340698242188, + 126.89936065673828, + 57.910736083984375, + 77.93888854980469, + 178.69813537597656, + 273.4330139160156, + 303.6161804199219, + 252.59185791015625, + 251.57217407226562, + 299.33831787109375, + 292.3067321777344, + 251.8020782470703, + 265.84063720703125, + 248.34515380859375, + 227.02694702148438, + 241.73736572265625, + 331.56646728515625, + 399.714599609375, + 409.4151611328125, + 478.0942687988281, + 462.30291748046875, + 456.7575378417969, + 504.840576171875, + 553.1492309570312, + 612.1817016601562, + 710.463134765625, + 728.0384521484375, + 792.56494140625, + 830.6212158203125, + 837.7059936523438, + 766.9622802734375, + 823.754638671875, + 815.645751953125, + 862.3882446289062, + 956.7125244140625, + 1087.2247314453125, + 1088.2587890625, + 1095.9365234375, + 1124.412109375, + 1087.102294921875, + 40.4954719543457, + 25.676305770874023, + -15.307915687561035, + -19.542543411254883, + -28.626953125, + -24.393156051635742, + -19.041452407836914, + -2.8369367122650146, + 13.452613830566406, + 40.69924545288086, + 53.08125305175781, + 34.27881622314453, + 19.435667037963867, + 10.633455276489258, + 6.190486431121826, + 14.2407865524292, + 21.278244018554688, + 53.56034851074219, + 65.86228942871094, + 82.72144317626953, + 83.18586730957031, + 69.57215881347656, + 64.88985443115234, + 43.124481201171875, + 73.38426971435547, + 45.8857536315918, + 3.1735191345214844, + 65.39762878417969, + 146.93338012695312, + 249.55035400390625, + 345.1385192871094, + 343.82025146484375, + 286.13006591796875, + 280.2054138183594, + 288.629638671875, + 296.2229919433594, + 292.8594970703125, + 257.3020324707031, + 230.23422241210938, + 253.88497924804688, + 234.51918029785156, + 267.3876647949219, + 348.4698181152344, + 389.701416015625, + 407.44390869140625, + 412.6168212890625, + 474.924560546875, + 461.1595458984375, + 486.3482971191406, + 624.1177978515625, + 732.28125, + 761.117919921875, + 822.446044921875, + 818.5247802734375, + 826.8628540039062, + 752.2400512695312, + 729.1455688476562, + 810.072021484375, + 899.1137084960938, + 932.35986328125, + 1009.2220458984375, + 1100.244873046875, + 1043.72802734375, + 1081.4830322265625, + 1068.251220703125, + -17.68343162536621, + -15.772809028625488, + -3.6064517498016357, + -28.934356689453125, + 0.9197384119033813, + -4.454233646392822, + 6.320716857910156, + 19.879898071289062, + 31.886014938354492, + 64.6991195678711, + 40.70709991455078, + 11.999153137207031, + -13.785157203674316, + 5.500944137573242, + -10.224665641784668, + 23.03763771057129, + 81.80673217773438, + 107.1330795288086, + 89.51034545898438, + 87.09606170654297, + 71.50601196289062, + 87.99563598632812, + 127.42851257324219, + 156.2394256591797, + 158.67922973632812, + 152.00155639648438, + 148.8526611328125, + 207.48568725585938, + 260.167236328125, + 293.6094665527344, + 329.4409484863281, + 299.353271484375, + 238.83758544921875, + 235.66880798339844, + 237.66232299804688, + 221.00177001953125, + 215.65890502929688, + 244.10421752929688, + 226.90272521972656, + 227.30694580078125, + 237.99693298339844, + 274.5328369140625, + 332.5300598144531, + 407.85784912109375, + 387.29541015625, + 431.8812255859375, + 471.55670166015625, + 469.5426025390625, + 513.651123046875, + 592.7508544921875, + 700.1973266601562, + 758.297119140625, + 774.2679443359375, + 766.097900390625, + 785.0626220703125, + 670.3934326171875, + 683.0162963867188, + 760.6668701171875, + 888.5443115234375, + 926.665283203125, + 1015.83056640625, + 1042.185302734375, + 1026.7757568359375, + 1001.8125, + 1012.4926147460938, + 10.945996284484863, + 11.48224925994873, + 9.784954071044922, + -10.312723159790039, + -18.568424224853516, + 25.79071044921875, + 56.566951751708984, + 67.06565856933594, + 73.90686798095703, + 65.69537353515625, + 56.87123489379883, + 5.523996829986572, + -24.113895416259766, + 18.3338623046875, + 29.537601470947266, + 58.119667053222656, + 107.88243103027344, + 190.96725463867188, + 142.53402709960938, + 109.28436279296875, + 108.6097412109375, + 123.37553405761719, + 190.61277770996094, + 275.3517150878906, + 323.4354248046875, + 369.0946960449219, + 395.41748046875, + 380.19000244140625, + 392.83050537109375, + 371.9093322753906, + 296.1531677246094, + 279.2314453125, + 284.8941345214844, + 275.3607482910156, + 235.64358520507812, + 245.51878356933594, + 239.28427124023438, + 259.6409912109375, + 294.692138671875, + 257.6805419921875, + 232.1185302734375, + 290.09661865234375, + 330.0919494628906, + 352.99072265625, + 382.9854431152344, + 434.41864013671875, + 461.074951171875, + 533.4736938476562, + 520.2970581054688, + 572.2320556640625, + 675.0538330078125, + 697.761474609375, + 699.4692993164062, + 676.7036743164062, + 713.5946044921875, + 682.8373413085938, + 654.6407470703125, + 702.8966064453125, + 826.5042724609375, + 898.3720703125, + 948.318359375, + 982.327880859375, + 988.1425170898438, + 1038.271240234375, + 1039.0240478515625, + 2.01840877532959, + 4.176689147949219, + 12.83854866027832, + 34.07855987548828, + -22.677453994750977, + -10.263298988342285, + 33.720428466796875, + 82.0405044555664, + 106.29627990722656, + 118.14091491699219, + 83.90228271484375, + 47.515045166015625, + 26.985143661499023, + 61.30064010620117, + 96.80482482910156, + 126.35259246826172, + 209.22195434570312, + 255.20758056640625, + 263.96746826171875, + 231.5790557861328, + 172.93092346191406, + 179.5928192138672, + 250.2021942138672, + 343.5144348144531, + 436.27435302734375, + 431.7137451171875, + 424.2481689453125, + 391.2989501953125, + 418.54132080078125, + 420.653564453125, + 326.9228820800781, + 299.166259765625, + 287.93402099609375, + 280.98175048828125, + 296.6537170410156, + 303.653076171875, + 287.7731628417969, + 285.91259765625, + 322.16107177734375, + 306.841064453125, + 256.62799072265625, + 260.7973327636719, + 311.98370361328125, + 395.9755554199219, + 409.0101318359375, + 426.0877380371094, + 464.7543029785156, + 509.50811767578125, + 529.5343017578125, + 533.9049072265625, + 659.1064453125, + 712.4777221679688, + 667.3494873046875, + 684.9446411132812, + 682.2395629882812, + 682.6051025390625, + 721.001708984375, + 728.9612426757812, + 731.9168090820312, + 812.556884765625, + 919.7557373046875, + 976.9425048828125, + 978.961181640625, + 970.3021240234375, + 1015.50634765625, + 19.319387435913086, + 11.578890800476074, + 29.69275665283203, + 40.28173828125, + 12.273250579833984, + -15.215003967285156, + -5.777383804321289, + 60.37046813964844, + 107.021240234375, + 108.15384674072266, + 116.67890930175781, + 83.80348205566406, + 76.97063446044922, + 203.81614685058594, + 353.0563049316406, + 420.9876708984375, + 292.27386474609375, + 371.6527099609375, + 422.9400939941406, + 448.3643493652344, + 389.19830322265625, + 328.99810791015625, + 377.2681579589844, + 469.9978942871094, + 436.7030944824219, + 465.115478515625, + 476.131103515625, + 406.037841796875, + 422.26861572265625, + 416.378173828125, + 368.491455078125, + 351.6224365234375, + 337.1534423828125, + 341.2143859863281, + 363.2301940917969, + 363.8352355957031, + 335.4622802734375, + 315.4874267578125, + 321.7683410644531, + 289.94354248046875, + 243.201904296875, + 255.5209197998047, + 290.09893798828125, + 373.11981201171875, + 377.06146240234375, + 404.5126953125, + 465.00018310546875, + 467.5126953125, + 460.1416015625, + 502.7894287109375, + 587.509521484375, + 686.74365234375, + 669.9869995117188, + 651.8185424804688, + 611.8671875, + 630.6158447265625, + 725.84814453125, + 696.5687866210938, + 688.6937255859375, + 777.5968017578125, + 924.62158203125, + 983.5203857421875, + 1001.296630859375, + 957.162353515625, + 916.5794067382812, + 18.093320846557617, + 11.454507827758789, + 28.654504776000977, + 43.583534240722656, + 42.83294677734375, + 50.688255310058594, + 53.503074645996094, + 53.42994689941406, + 57.01183319091797, + 79.75590515136719, + 107.1379165649414, + 507.910400390625, + 546.2261962890625, + 493.58428955078125, + 575.01171875, + 608.8607788085938, + 559.31494140625, + 497.11383056640625, + 569.612548828125, + 518.1705322265625, + 490.82135009765625, + 505.844970703125, + 543.4882202148438, + 538.8453369140625, + 531.029052734375, + 537.6819458007812, + 494.53515625, + 415.95599365234375, + 424.26080322265625, + 437.872802734375, + 435.0181884765625, + 335.0969543457031, + 367.27252197265625, + 389.9842529296875, + 415.00543212890625, + 408.96844482421875, + 378.8385009765625, + 348.785888671875, + 319.7046203613281, + 298.8193664550781, + 241.5653533935547, + 266.45721435546875, + 297.892333984375, + 301.3796691894531, + 379.82891845703125, + 403.50164794921875, + 452.3143005371094, + 449.18292236328125, + 461.6632995605469, + 476.48541259765625, + 545.2996826171875, + 576.9183349609375, + 599.5736083984375, + 608.0575561523438, + 615.9163818359375, + 640.4361572265625, + 653.7257690429688, + 650.2395629882812, + 713.705078125, + 728.3757934570312, + 795.4053955078125, + 895.18212890625, + 942.39990234375, + 947.9193115234375, + 888.9605712890625, + 84.51313781738281, + 59.441837310791016, + 50.68768310546875, + 71.60458374023438, + 109.29410552978516, + 129.66537475585938, + 104.3661117553711, + 124.67630767822266, + 151.66456604003906, + 133.36082458496094, + 321.1266784667969, + 503.0399475097656, + 503.79925537109375, + 501.1894226074219, + 537.072998046875, + 602.43359375, + 662.6000366210938, + 590.6465454101562, + 603.18017578125, + 581.2122192382812, + 530.7542114257812, + 539.7944946289062, + 566.8504028320312, + 595.2803955078125, + 579.7183227539062, + 530.633544921875, + 523.5242309570312, + 451.6743469238281, + 442.82666015625, + 460.2244873046875, + 444.10760498046875, + 401.3520202636719, + 357.7901611328125, + 402.3349609375, + 402.52728271484375, + 418.68499755859375, + 396.15948486328125, + 358.6488342285156, + 320.83929443359375, + 297.89642333984375, + 225.35433959960938, + 290.41802978515625, + 284.8833923339844, + 306.6893005371094, + 361.5877380371094, + 398.87274169921875, + 412.57733154296875, + 446.92486572265625, + 494.5083923339844, + 520.529541015625, + 519.0779418945312, + 524.377685546875, + 561.3878173828125, + 567.213134765625, + 629.0220336914062, + 672.5404052734375, + 708.939697265625, + 628.9320068359375, + 709.3983764648438, + 666.3072509765625, + 732.010986328125, + 794.97314453125, + 827.3984375, + 879.5975341796875, + 846.6144409179688, + 217.3378448486328, + 175.71665954589844, + 202.365966796875, + 213.6103515625, + 496.4891662597656, + 535.3252563476562, + 330.8557434082031, + 215.5986328125, + 514.8017578125, + 523.1743774414062, + 537.3048095703125, + 534.655517578125, + 526.705078125, + 510.16943359375, + 553.4578857421875, + 577.2681884765625, + 641.9056396484375, + 601.5040283203125, + 541.1629028320312, + 605.6423950195312, + 545.7517700195312, + 582.43896484375, + 595.057861328125, + 682.370361328125, + 622.2369995117188, + 584.7431030273438, + 537.8436279296875, + 551.3063354492188, + 513.0098876953125, + 489.2795104980469, + 454.9776611328125, + 429.75067138671875, + 373.6000061035156, + 358.4512939453125, + 377.23406982421875, + 376.88525390625, + 357.1566162109375, + 326.6611328125, + 303.75347900390625, + 290.33343505859375, + 247.98704528808594, + 264.64617919921875, + 335.8602600097656, + 348.8868408203125, + 375.64874267578125, + 448.7320556640625, + 434.771484375, + 450.00299072265625, + 515.1547241210938, + 562.7830810546875, + 599.1751708984375, + 557.4547119140625, + 578.246337890625, + 604.791748046875, + 677.4639282226562, + 678.863037109375, + 702.364501953125, + 680.6158447265625, + 633.414794921875, + 669.2839965820312, + 687.2332763671875, + 723.8549194335938, + 761.0457763671875, + 775.6976318359375, + 785.454345703125, + 413.72662353515625, + 537.6814575195312, + 577.9922485351562, + 609.6691284179688, + 606.8655395507812, + 590.8402099609375, + 579.23486328125, + 527.4819946289062, + 554.9117431640625, + 543.7052001953125, + 602.4525146484375, + 560.0180053710938, + 566.633544921875, + 539.8864135742188, + 581.0822143554688, + 597.34326171875, + 639.2642211914062, + 594.9435424804688, + 558.7936401367188, + 604.0885009765625, + 592.6044921875, + 622.5, + 679.5651245117188, + 725.7103271484375, + 657.5836181640625, + 625.1309204101562, + 566.2496337890625, + 562.2041625976562, + 580.51904296875, + 536.628173828125, + 434.52191162109375, + 422.54876708984375, + 390.5926513671875, + 415.5673828125, + 401.5923156738281, + 397.6940002441406, + 394.59619140625, + 392.9178161621094, + 396.6716613769531, + 353.848388671875, + 305.2450866699219, + 259.57598876953125, + 289.05126953125, + 349.6729736328125, + 364.59564208984375, + 443.59149169921875, + 453.54522705078125, + 474.0998229980469, + 490.597412109375, + 590.9981079101562, + 560.7640380859375, + 578.09716796875, + 646.2889404296875, + 682.8485107421875, + 675.2553100585938, + 661.6376953125, + 663.7484130859375, + 709.859130859375, + 703.7416381835938, + 669.858154296875, + 640.7467041015625, + 697.0045166015625, + 705.7804565429688, + 743.5068359375, + 743.2323608398438, + 583.8331298828125, + 627.4324951171875, + 687.18798828125, + 685.4808959960938, + 670.4829711914062, + 621.0167236328125, + 579.4073486328125, + 563.6068725585938, + 555.9083862304688, + 575.3187255859375, + 574.3265380859375, + 582.76171875, + 597.0315551757812, + 598.601318359375, + 651.7972412109375, + 634.4227294921875, + 598.4366455078125, + 587.6375122070312, + 580.615966796875, + 595.4754638671875, + 625.193115234375, + 653.3836059570312, + 656.3311767578125, + 669.3566284179688, + 614.6798095703125, + 589.041748046875, + 557.2646484375, + 557.3614501953125, + 536.1429443359375, + 504.0736999511719, + 458.50146484375, + 418.659912109375, + 443.3672180175781, + 453.066650390625, + 428.87530517578125, + 447.78076171875, + 441.4945983886719, + 422.62261962890625, + 403.9623107910156, + 353.19622802734375, + 309.2266845703125, + 277.9676818847656, + 258.2583923339844, + 303.1579895019531, + 357.10137939453125, + 360.401611328125, + 412.3775634765625, + 462.73126220703125, + 539.0055541992188, + 614.5078735351562, + 621.6982421875, + 599.21484375, + 664.1224975585938, + 662.947998046875, + 638.8378295898438, + 644.3569946289062, + 634.0071411132812, + 676.9088745117188, + 671.46923828125, + 671.6887817382812, + 631.3096923828125, + 641.7652587890625, + 682.3662109375, + 691.58935546875, + 675.3284912109375, + 616.5706787109375, + 629.023193359375, + 721.8092651367188, + 706.2966918945312, + 645.8916625976562, + 613.2694091796875, + 636.9927978515625, + 584.523193359375, + 613.7842407226562, + 666.8753662109375, + 621.9500122070312, + 593.5116577148438, + 604.83251953125, + 630.343505859375, + 657.8060302734375, + 624.4114990234375, + 628.6013793945312, + 614.8863525390625, + 641.6981811523438, + 639.7392578125, + 637.7218017578125, + 648.7627563476562, + 653.712890625, + 623.5576171875, + 617.9589233398438, + 589.404541015625, + 569.7784423828125, + 555.96044921875, + 569.8579711914062, + 558.8882446289062, + 499.21270751953125, + 437.0174560546875, + 484.4727478027344, + 504.5174865722656, + 466.6192321777344, + 410.8447570800781, + 433.0771484375, + 422.6497802734375, + 411.4901123046875, + 349.49212646484375, + 323.1455078125, + 309.3953552246094, + 237.39727783203125, + 298.8624267578125, + 326.36505126953125, + 357.11102294921875, + 398.9959716796875, + 432.2877197265625, + 520.4332275390625, + 552.2691650390625, + 603.3748779296875, + 665.4341430664062, + 677.3079223632812, + 648.4403686523438, + 605.66552734375, + 567.019287109375, + 602.2167358398438, + 666.8642578125, + 664.8623046875, + 638.0975341796875, + 641.1797485351562, + 627.966796875, + 653.2315673828125, + 622.82470703125, + 648.9948120117188, + 562.0152587890625, + 617.744873046875, + 704.8348388671875, + 705.0448608398438, + 651.0123901367188, + 670.301025390625, + 711.915283203125, + 656.6201171875, + 703.2534790039062, + 743.9883422851562, + 676.9256591796875, + 642.7188720703125, + 673.582275390625, + 681.5372314453125, + 725.4886474609375, + 644.2574462890625, + 653.68359375, + 627.2079467773438, + 691.4421997070312, + 666.6890869140625, + 652.6722412109375, + 664.5281372070312, + 655.2564697265625, + 645.2913818359375, + 669.706298828125, + 643.9950561523438, + 613.19482421875, + 619.9456787109375, + 561.710693359375, + 556.6697998046875, + 479.64215087890625, + 482.00311279296875, + 503.767822265625, + 538.935302734375, + 482.3341064453125, + 456.69976806640625, + 423.0452575683594, + 417.65618896484375, + 380.146484375, + 387.9912109375, + 354.86334228515625, + 304.75799560546875, + 250.5700225830078, + 337.2108459472656, + 332.7488098144531, + 379.9874267578125, + 399.2219543457031, + 403.6505126953125, + 440.37225341796875, + 539.3763427734375, + 628.40478515625, + 646.6536865234375, + 621.4949951171875, + 644.3309326171875, + 611.7491455078125, + 586.1826171875, + 569.2970581054688, + 652.0325927734375, + 600.7920532226562, + 574.9656982421875, + 585.2064208984375, + 640.1438598632812, + 648.97705078125, + 597.8270263671875, + 637.9637451171875, + 582.495849609375, + 634.1911010742188, + 656.5072631835938, + 669.529052734375, + 697.23876953125, + 692.2789306640625, + 722.7249755859375, + 665.4371337890625, + 706.5238037109375, + 744.9750366210938, + 719.6986083984375, + 738.7078247070312, + 730.9540405273438, + 773.5770263671875, + 714.3921508789062, + 659.65380859375, + 678.9763793945312, + 659.4038696289062, + 706.1492919921875, + 703.9879150390625, + 679.9295654296875, + 642.7232666015625, + 698.6437377929688, + 690.61328125, + 745.69873046875, + 671.1507568359375, + 633.563232421875, + 610.4342651367188, + 592.2518920898438, + 527.4945068359375, + 539.0810546875, + 507.37103271484375, + 502.38531494140625, + 489.7075500488281, + 525.1836547851562, + 465.17742919921875, + 426.75115966796875, + 413.49224853515625, + 393.86419677734375, + 404.8423767089844, + 342.04486083984375, + 291.6535339355469, + 327.8497009277344, + 320.08221435546875, + 382.83087158203125, + 396.7348937988281, + 406.11016845703125, + 376.1049499511719, + 394.11590576171875, + 445.323974609375, + 553.29736328125, + 631.8131713867188, + 584.0955200195312, + 560.9630126953125, + 588.6591796875, + 563.4797973632812, + 574.1144409179688, + 604.78564453125, + 595.3255615234375, + 550.6251220703125, + 592.2567138671875, + 609.470458984375, + 621.5973510742188, + 628.7632446289062, + 632.3550415039062, + 628.6118774414062, + 656.297119140625, + 707.1607055664062, + 768.8699340820312, + 792.230712890625, + 786.9570922851562, + 727.4678955078125, + 693.43212890625, + 728.7747192382812, + 759.8463134765625, + 770.4319458007812, + 781.626220703125, + 785.3876953125, + 755.4619750976562, + 714.9487915039062, + 704.4896240234375, + 721.4417724609375, + 737.120361328125, + 717.6220703125, + 734.0355224609375, + 684.9884033203125, + 682.86572265625, + 685.1549682617188, + 769.3283081054688, + 712.4739990234375, + 685.5867919921875, + 640.4486694335938, + 640.1575927734375, + 576.426513671875, + 550.1231079101562, + 523.9142456054688, + 542.0853881835938, + 570.171630859375, + 539.1656494140625, + 518.730712890625, + 484.28948974609375, + 445.11248779296875, + 406.62200927734375, + 402.91021728515625, + 379.1304931640625, + 353.0089111328125, + 340.4442138671875, + 336.11492919921875, + 327.98974609375, + 351.68817138671875, + 387.7445983886719, + 348.55517578125, + 330.67559814453125, + 347.46832275390625, + 425.29779052734375, + 481.8648681640625, + 567.45556640625, + 556.3925170898438, + 503.8869323730469, + 529.5921020507812, + 540.8358154296875, + 563.6285400390625, + 567.2877197265625, + 561.9517822265625, + 540.2588500976562, + 578.186279296875, + 547.4398193359375, + 606.0499877929688, + 638.6844482421875, + 637.7587890625, + 655.3067626953125, + 695.209228515625, + 725.6680908203125, + 785.9483642578125, + 862.6424560546875, + 873.51123046875, + 772.7025146484375, + 699.93798828125, + 718.4971923828125, + 754.5995483398438, + 824.8036499023438, + 835.1732788085938, + 783.118408203125, + 762.6036376953125, + 749.0970458984375, + 721.4842529296875, + 761.98828125, + 716.8392944335938, + 757.2882080078125, + 800.2415161132812, + 758.4851684570312, + 742.730712890625, + 710.702392578125, + 722.1294555664062, + 684.9853515625, + 639.7620239257812, + 641.4334716796875, + 663.641357421875, + 630.6091918945312, + 573.7059326171875, + 586.8584594726562, + 598.9375610351562, + 579.0604248046875, + 594.6056518554688, + 571.9365234375, + 540.84375, + 460.4798583984375, + 429.4303283691406, + 414.10089111328125, + 384.5460205078125, + 411.6712951660156, + 355.5099182128906, + 335.9927062988281, + 322.79156494140625, + 282.8251953125, + 296.79644775390625, + 300.24725341796875, + 302.35430908203125, + 307.22576904296875, + 374.0516052246094, + 416.4129943847656, + 423.5538330078125, + 441.81634521484375, + 447.7647705078125, + 508.9771728515625, + 572.0474243164062, + 530.4942626953125, + 537.297607421875, + 531.7590942382812, + 514.2880859375, + 523.6322021484375, + 555.8665771484375, + 560.3673706054688, + 609.9379272460938, + 596.1015014648438, + 711.1513671875, + 735.7181396484375, + 774.2471923828125, + 849.65966796875, + 897.7034301757812, + 896.279052734375, + 820.6358642578125, + 753.1376953125, + 787.0917358398438, + 828.389892578125, + 788.3607177734375, + 797.8746948242188, + 823.355712890625, + 809.1771240234375, + 772.13037109375, + 770.4964599609375, + 781.2237548828125, + 756.5731201171875, + 803.2886962890625, + 774.0438842773438, + 764.8731689453125, + 742.9554443359375, + 725.6685791015625, + 713.9549560546875, + 700.906005859375, + 654.380859375, + 672.5037841796875, + 670.9346313476562, + 658.925048828125, + 601.2152099609375, + 593.513916015625, + 581.3204956054688, + 546.561279296875, + 552.697509765625, + 563.6116943359375, + 526.39599609375, + 469.5773010253906, + 451.1016845703125, + 409.9674072265625, + 424.66571044921875, + 415.2284851074219, + 409.22479248046875, + 342.4190673828125, + 306.14874267578125, + 269.6171875, + 276.3084716796875, + 254.04998779296875, + 261.397216796875, + 293.80706787109375, + 297.07220458984375, + 298.992919921875, + 322.9317626953125, + 375.3067626953125, + 416.1072082519531, + 470.15655517578125, + 490.3115234375, + 574.4679565429688, + 539.0294799804688, + 526.738525390625, + 544.3632202148438, + 498.26849365234375, + 550.7684936523438, + 509.9181823730469, + 538.3800048828125, + 555.47314453125, + 711.7470092773438, + 751.427734375, + 774.3223266601562, + 909.2639770507812, + 857.3153076171875, + 862.30126953125, + 862.463134765625, + 808.8980102539062, + 790.232421875, + 846.31884765625, + 842.0909423828125, + 803.6007080078125, + 825.4672241210938, + 844.338623046875, + 838.258056640625, + 817.1963500976562, + 808.48828125, + 827.6820068359375, + 789.4826049804688, + 794.0948486328125, + 772.97314453125, + 770.5034790039062, + 757.41943359375, + 793.35546875, + 710.0517578125, + 671.9146728515625, + 655.3226928710938, + 683.0621337890625, + 675.2462158203125, + 613.8968505859375, + 633.9612426757812, + 576.7637939453125, + 580.928466796875, + 537.5975341796875, + 529.210693359375, + 486.37945556640625, + 474.1026611328125, + 456.76275634765625, + 426.02032470703125, + 414.3148193359375, + 434.16302490234375, + 412.2578125, + 366.38555908203125, + 318.84588623046875, + 300.2723388671875, + 268.05426025390625, + 228.75845336914062, + 216.62606811523438, + 247.98809814453125, + 273.7840576171875, + 230.76608276367188, + 298.20880126953125, + 353.58380126953125, + 392.03826904296875, + 388.85137939453125, + 435.46142578125, + 511.4591064453125, + 496.0235900878906, + 496.84088134765625, + 503.74249267578125, + 493.8160705566406, + 557.2813720703125, + 555.694091796875, + 518.52978515625, + 536.3292236328125, + 770.7817993164062, + 769.730224609375, + 796.9356689453125, + 806.4522705078125, + 840.2806396484375, + 847.588623046875, + 942.89111328125, + 926.9669189453125, + 863.8035888671875, + 908.5136108398438, + 856.9593505859375, + 887.3138427734375, + 818.4282836914062, + 875.217041015625, + 840.198486328125, + 827.89990234375, + 880.20556640625, + 878.9834594726562, + 897.316650390625, + 829.3382568359375, + 818.7618408203125, + 804.4765625, + 802.6302490234375, + 787.0870361328125, + 716.4435424804688, + 702.116455078125, + 698.7344970703125, + 724.4293823242188, + 678.77734375, + 641.9351806640625, + 637.2728881835938, + 607.6567993164062, + 599.985107421875, + 577.3242797851562, + 498.7401428222656, + 478.17999267578125, + 482.8694763183594, + 457.342529296875, + 429.23651123046875, + 453.02020263671875, + 474.5519104003906, + 438.793212890625, + 344.32232666015625, + 344.83343505859375, + 299.1220703125, + 275.6322326660156, + 256.1484375, + 211.69906616210938, + 190.48944091796875, + 194.64596557617188, + 228.2274932861328, + 270.7122802734375, + 330.50714111328125, + 334.0960998535156, + 302.8848876953125, + 342.5674133300781, + 412.04058837890625, + 381.10296630859375, + 373.4102783203125, + 436.152099609375, + 392.3285217285156, + 441.8724365234375, + 491.7255554199219, + 499.25848388671875, + 472.3968505859375, + 787.332763671875, + 800.378662109375, + 787.8549194335938, + 825.4375, + 847.4296875, + 925.6412963867188, + 1009.5563354492188, + 984.928466796875, + 952.1279296875, + 885.2955322265625, + 938.8707275390625, + 948.49072265625, + 913.08935546875, + 871.5801391601562, + 910.106201171875, + 919.4024658203125, + 890.9434814453125, + 906.5664672851562, + 860.9208984375, + 853.2058715820312, + 846.85888671875, + 802.2989501953125, + 783.767822265625, + 827.2843627929688, + 772.1893920898438, + 737.0863037109375, + 759.591796875, + 710.6519775390625, + 689.4559326171875, + 685.69140625, + 614.00927734375, + 630.6103515625, + 586.8221435546875, + 558.71923828125, + 524.5001220703125, + 499.52947998046875, + 474.47711181640625, + 484.4273376464844, + 475.25537109375, + 481.93304443359375, + 474.0224609375, + 438.6409912109375, + 355.9510498046875, + 324.57501220703125, + 271.5145263671875, + 267.7830810546875, + 248.9969482421875, + 281.0954284667969, + 208.05116271972656, + 208.09255981445312, + 281.2802734375, + 286.55767822265625, + 305.9969177246094, + 262.841064453125, + 268.16461181640625, + 253.47845458984375, + 279.6984558105469, + 320.819580078125, + 343.4832458496094, + 344.0524597167969, + 300.6728515625, + 352.38238525390625, + 395.0054016113281, + 413.13787841796875, + 436.7874755859375, + 794.8681030273438, + 793.4834594726562, + 795.36474609375, + 818.367431640625, + 917.43603515625, + 1035.3695068359375, + 1025.3131103515625, + 991.8132934570312, + 977.8732299804688, + 919.3494873046875, + 1030.3533935546875, + 996.3502197265625, + 985.8326416015625, + 955.5892944335938, + 996.8460693359375, + 1016.851806640625, + 952.9813232421875, + 927.9560546875, + 909.5320434570312, + 932.8819580078125, + 943.8304443359375, + 863.7750244140625, + 828.1640625, + 878.556884765625, + 821.7772827148438, + 749.5860595703125, + 787.6520385742188, + 742.9522705078125, + 698.3945922851562, + 654.6737670898438, + 622.5228271484375, + 638.475341796875, + 640.6502075195312, + 598.0615234375, + 555.765380859375, + 525.1808471679688, + 507.1785583496094, + 469.0224609375, + 475.60894775390625, + 455.8409118652344, + 434.8302001953125, + 440.9090576171875, + 380.920166015625, + 395.9906921386719, + 341.68121337890625, + 273.5265808105469, + 298.07586669921875, + 307.5359802246094, + 241.57208251953125, + 219.92587280273438, + 234.98023986816406, + 262.40814208984375, + 243.10720825195312, + 205.43458557128906, + 227.35220336914062, + 259.7882080078125, + 264.97064208984375, + 323.30828857421875, + 306.47216796875, + 281.2606506347656, + 287.93975830078125, + 323.7293701171875, + 385.1377258300781, + 366.3576354980469, + 432.6263427734375, + 844.1962890625, + 865.4190673828125, + 892.8650512695312, + 831.3099365234375, + 943.6630859375, + 977.9885864257812, + 990.4126586914062, + 994.2755126953125, + 952.2340087890625, + 948.486083984375, + 954.8359985351562, + 895.3622436523438, + 933.56640625, + 929.6483154296875, + 1060.932373046875, + 974.6533203125, + 895.746337890625, + 915.9222412109375, + 926.9466552734375, + 961.1568603515625, + 1024.906494140625, + 959.4910888671875, + 877.1531372070312, + 854.1097412109375, + 865.1728515625, + 845.14794921875, + 752.376953125, + 820.05908203125, + 800.46533203125, + 718.5322265625, + 631.0048828125, + 646.9271240234375, + 676.751953125, + 623.3845825195312, + 568.1846923828125, + 540.8304443359375, + 527.892333984375, + 512.8827514648438, + 469.6970520019531, + 430.271240234375, + 474.6387939453125, + 455.7174072265625, + 379.256591796875, + 428.20013427734375, + 398.55377197265625, + 303.7571716308594, + 297.8507385253906, + 266.40606689453125, + 242.4017333984375, + 232.1100616455078, + 208.78724670410156, + 188.46485900878906, + 182.20953369140625, + 211.89932250976562, + 197.78421020507812, + 216.3359832763672, + 244.81500244140625, + 295.20928955078125, + 293.6956481933594, + 284.6816101074219, + 270.3193664550781, + 280.6315002441406, + 298.883056640625, + 386.0601806640625, + 401.0036315917969, + 919.9642944335938, + 918.273681640625, + 902.6650390625, + 867.9103393554688, + 912.0200805664062, + 961.8026123046875, + 968.8641357421875, + 952.798583984375, + 937.1854248046875, + 955.4490966796875, + 923.1668090820312, + 885.7230224609375, + 957.9261474609375, + 954.2771606445312, + 1015.6629638671875, + 939.4734497070312, + 888.49267578125, + 867.9978637695312, + 881.785888671875, + 939.1987915039062, + 1063.388427734375, + 1041.1751708984375, + 969.919677734375, + 928.2747192382812, + 893.8394775390625, + 881.55078125, + 813.307373046875, + 862.0330200195312, + 833.725341796875, + 711.0054931640625, + 688.7950439453125, + 639.6495361328125, + 722.6720581054688, + 652.456298828125, + 590.2282104492188, + 571.3764038085938, + 573.3909912109375, + 553.622314453125, + 495.90081787109375, + 483.965576171875, + 497.40283203125, + 479.0040283203125, + 423.7432556152344, + 434.17742919921875, + 404.4747314453125, + 330.03558349609375, + 279.61798095703125, + 280.4397888183594, + 264.49737548828125, + 214.28143310546875, + 205.93417358398438, + 168.74095153808594, + 202.87904357910156, + 198.33433532714844, + 179.37167358398438, + 204.50259399414062, + 207.38833618164062, + 311.053955078125, + 295.24365234375, + 286.3458251953125, + 247.01051330566406, + 277.9256591796875, + 311.29119873046875, + 427.2381896972656, + 366.584228515625, + 935.2048950195312, + 950.6077880859375, + 948.7407836914062, + 938.5498657226562, + 909.5240478515625, + 898.80126953125, + 975.0350952148438, + 936.2020263671875, + 959.9874877929688, + 894.704345703125, + 850.6634521484375, + 879.5819091796875, + 952.724609375, + 974.052001953125, + 939.3154296875, + 894.48583984375, + 843.7523193359375, + 834.9498291015625, + 847.986083984375, + 905.4422607421875, + 1036.1605224609375, + 1071.465087890625, + 1044.4486083984375, + 1036.310791015625, + 997.2259521484375, + 943.962890625, + 820.0165405273438, + 847.939697265625, + 833.949462890625, + 715.9228515625, + 734.5567626953125, + 691.693115234375, + 697.9619140625, + 630.7849731445312, + 576.84619140625, + 549.7513427734375, + 589.7916259765625, + 581.4971923828125, + 476.01019287109375, + 481.70989990234375, + 508.07440185546875, + 465.46136474609375, + 452.76800537109375, + 450.5181884765625, + 452.1366882324219, + 376.1990966796875, + 298.47003173828125, + 254.7034454345703, + 225.87014770507812, + 198.48780822753906, + 213.25946044921875, + 179.7529296875, + 164.66798400878906, + 190.15243530273438, + 138.8667449951172, + 156.6669464111328, + 202.48406982421875, + 282.9955139160156, + 272.4469299316406, + 268.6065673828125, + 256.7145690917969, + 272.75543212890625, + 334.87347412109375, + 422.9231262207031, + 350.0164794921875, + 1009.336181640625, + 991.34423828125, + 965.3663330078125, + 1052.89111328125, + 996.4737548828125, + 914.840087890625, + 903.601318359375, + 867.6078491210938, + 899.817138671875, + 824.4824829101562, + 816.4193115234375, + 835.348876953125, + 897.0018310546875, + 876.5623779296875, + 863.3465576171875, + 828.3677978515625, + 792.5646362304688, + 854.9154052734375, + 874.198486328125, + 913.977294921875, + 998.465087890625, + 1096.1522216796875, + 1059.236083984375, + 1033.3472900390625, + 1005.6728515625, + 958.6233520507812, + 868.9873046875, + 822.5606079101562, + 874.3521728515625, + 762.4228515625, + 741.0640258789062, + 759.002197265625, + 684.3214111328125, + 636.744384765625, + 586.9053955078125, + 559.6041870117188, + 600.9501953125, + 603.3174438476562, + 558.0050048828125, + 484.67437744140625, + 489.31085205078125, + 463.14239501953125, + 481.00885009765625, + 503.9378662109375, + 484.58990478515625, + 457.976318359375, + 363.7892150878906, + 285.5432434082031, + 255.206787109375, + 197.73684692382812, + 179.46759033203125, + 142.3310089111328, + 126.69606018066406, + 126.89956665039062, + 110.2340087890625, + 139.55377197265625, + 206.65792846679688, + 235.89144897460938, + 269.7804260253906, + 291.90997314453125, + 264.6181640625, + 280.1829833984375, + 283.2799377441406, + 348.86328125, + 331.2848205566406, + 1064.5684814453125, + 1024.5322265625, + 972.7180786132812, + 1014.0006713867188, + 1016.7567749023438, + 974.2297973632812, + 946.3043212890625, + 899.0908203125, + 802.3457641601562, + 794.510986328125, + 786.276611328125, + 764.8547973632812, + 802.9339599609375, + 798.6282958984375, + 757.782470703125, + 735.251708984375, + 805.490478515625, + 876.4315185546875, + 912.2496948242188, + 946.3084106445312, + 999.3738403320312, + 1070.870361328125, + 1059.2498779296875, + 1020.27099609375, + 1001.037353515625, + 913.823486328125, + 873.6160888671875, + 816.916015625, + 813.4755859375, + 772.216064453125, + 767.8558349609375, + 714.6817016601562, + 707.480224609375, + 704.4008178710938, + 673.37353515625, + 624.73828125, + 598.9523315429688, + 623.44580078125, + 601.0479125976562, + 519.3170166015625, + 522.1553955078125, + 478.7099609375, + 508.37847900390625, + 546.5601806640625, + 512.9806518554688, + 477.0899353027344, + 435.4096374511719, + 345.4993896484375, + 263.6927490234375, + 189.36761474609375, + 130.95318603515625, + 122.31948852539062, + 94.61412048339844, + 75.33395385742188, + 93.72230529785156, + 136.67178344726562, + 167.15194702148438, + 192.4072265625, + 251.10684204101562, + 223.29058837890625, + 220.80728149414062, + 267.5601806640625, + 251.52281188964844, + 234.78262329101562, + 212.28955078125, + 1031.713623046875, + 1003.9068603515625, + 946.0993041992188, + 959.5256958007812, + 954.1717529296875, + 939.8411865234375, + 897.1822509765625, + 843.9053955078125, + 810.5069580078125, + 807.2794189453125, + 757.7009887695312, + 718.2329711914062, + 733.8953857421875, + 711.6886596679688, + 753.4249267578125, + 796.34912109375, + 833.3544921875, + 833.5630493164062, + 906.7958984375, + 946.486083984375, + 986.0966796875, + 1037.89404296875, + 1083.6732177734375, + 1081.0594482421875, + 991.0374755859375, + 978.1322021484375, + 976.205322265625, + 897.8792724609375, + 783.982666015625, + 809.3736572265625, + 777.8046264648438, + 781.6915283203125, + 746.7874145507812, + 683.993408203125, + 634.8848876953125, + 687.2195434570312, + 706.7338256835938, + 667.0700073242188, + 582.646484375, + 584.2254638671875, + 543.6337890625, + 503.0524597167969, + 480.980224609375, + 530.59130859375, + 584.3980712890625, + 531.0382690429688, + 444.20086669921875, + 341.5943908691406, + 234.07464599609375, + 184.20127868652344, + 159.61573791503906, + 131.56320190429688, + 113.62751770019531, + 107.6051025390625, + 111.8779296875, + 122.06455993652344, + 109.35401153564453, + 114.98873138427734, + 160.8612060546875, + 193.6313018798828, + 192.97607421875, + 230.73471069335938, + 212.97891235351562, + 155.33045959472656, + 113.913818359375, + 996.8465576171875, + 969.5069580078125, + 942.667724609375, + 943.3966064453125, + 927.981689453125, + 886.5786743164062, + 837.701416015625, + 814.70654296875, + 840.71240234375, + 859.9971923828125, + 844.3475341796875, + 781.11669921875, + 676.1290283203125, + 717.4630126953125, + 793.5446166992188, + 815.3693237304688, + 787.41455078125, + 759.917236328125, + 794.9505615234375, + 877.6200561523438, + 964.25927734375, + 996.9613037109375, + 1065.181884765625, + 1074.32958984375, + 1016.45166015625, + 1007.363037109375, + 990.0446166992188, + 952.4112548828125, + 828.92236328125, + 801.4644775390625, + 745.71533203125, + 717.0465087890625, + 742.7476806640625, + 681.1472778320312, + 657.6309814453125, + 685.7174072265625, + 667.1710815429688, + 622.2882690429688, + 647.3016357421875, + 662.5460815429688, + 582.574462890625, + 546.6075439453125, + 486.07366943359375, + 457.21502685546875, + 549.4766845703125, + 501.8895568847656, + 381.4332275390625, + 292.179931640625, + 236.7064666748047, + 233.75921630859375, + 190.19027709960938, + 167.88490295410156, + 126.0482177734375, + 139.57139587402344, + 123.8705825805664, + 119.48982238769531, + 108.08586883544922, + 117.92243957519531, + 110.58413696289062, + 100.97712707519531, + 125.94902038574219, + 145.42605590820312, + 147.11569213867188, + 124.01000213623047, + 112.64033508300781, + 967.4281616210938, + 958.2337646484375, + 952.2357177734375, + 940.98095703125, + 893.2023315429688, + 855.0643920898438, + 809.861083984375, + 803.295166015625, + 819.04638671875, + 838.53271484375, + 802.3111572265625, + 729.9893798828125, + 721.51708984375, + 677.9151611328125, + 757.0245361328125, + 748.3492431640625, + 712.59765625, + 742.1077880859375, + 761.2147827148438, + 785.8180541992188, + 893.349609375, + 944.531494140625, + 1007.4727783203125, + 1002.1548461914062, + 994.7960205078125, + 1022.204833984375, + 1028.541259765625, + 970.3519287109375, + 930.7271728515625, + 909.6748657226562, + 843.8817138671875, + 767.7420654296875, + 717.7978515625, + 734.8713989257812, + 669.2695922851562, + 676.4554443359375, + 693.5925903320312, + 662.4382934570312, + 676.0689697265625, + 653.576416015625, + 638.9659423828125, + 610.4725341796875, + 532.0673828125, + 489.8479919433594, + 485.167724609375, + 426.6737060546875, + 384.01983642578125, + 356.6935729980469, + 309.8670654296875, + 246.93539428710938, + 185.30130004882812, + 143.2672882080078, + 167.93081665039062, + 127.16251373291016, + 101.39370727539062, + 83.49505615234375, + 70.1124496459961, + 57.149688720703125, + 56.33777618408203, + 45.92738342285156, + 51.254119873046875, + 56.567588806152344, + 64.95724487304688, + 97.9100112915039, + 120.46527099609375, + 995.5274658203125, + 976.9700927734375, + 919.281982421875, + 892.7293701171875, + 845.910888671875, + 806.17041015625, + 780.3546752929688, + 788.76416015625, + 812.10498046875, + 783.6817626953125, + 744.6778564453125, + 696.6180419921875, + 713.872802734375, + 655.9759521484375, + 724.2740478515625, + 688.0974731445312, + 645.071044921875, + 634.66064453125, + 687.0687255859375, + 737.7410278320312, + 831.4183349609375, + 872.0733642578125, + 906.5396728515625, + 983.4685668945312, + 1023.2262573242188, + 1055.0762939453125, + 1064.918212890625, + 1010.700439453125, + 1005.6686401367188, + 941.726806640625, + 880.630859375, + 835.197998046875, + 736.6495361328125, + 746.424560546875, + 754.8806762695312, + 732.0999145507812, + 717.0678100585938, + 682.6294555664062, + 666.715087890625, + 623.5513916015625, + 639.042724609375, + 679.642333984375, + 599.2305908203125, + 528.708740234375, + 473.9482116699219, + 467.25506591796875, + 392.670166015625, + 318.1534729003906, + 270.0556945800781, + 208.10252380371094, + 202.46487426757812, + 142.93081665039062, + 154.97666931152344, + 185.4054718017578, + 142.63809204101562, + 102.7821044921875, + 54.13810729980469, + 30.608936309814453, + -2.8612098693847656, + 11.828672409057617, + -0.1476905345916748, + 6.866713523864746, + 6.193628311157227, + 44.571319580078125, + 93.02995300292969, + 963.83447265625, + 1003.4732666015625, + 974.8245849609375, + 951.1666259765625, + 913.1119384765625, + 857.9032592773438, + 807.3533325195312, + 753.3839721679688, + 760.5059814453125, + 756.3582763671875, + 722.7017822265625, + 668.716552734375, + 667.3104248046875, + 643.43701171875, + 627.1322021484375, + 610.4197998046875, + 591.5654296875, + 605.7725830078125, + 665.2189331054688, + 699.0079956054688, + 748.8941040039062, + 817.2835083007812, + 885.275390625, + 966.1936645507812, + 1026.0504150390625, + 1117.8697509765625, + 1098.2427978515625, + 1056.8597412109375, + 1033.48828125, + 967.9720458984375, + 939.9359130859375, + 936.4940185546875, + 885.30224609375, + 776.5027465820312, + 745.9891967773438, + 790.621337890625, + 810.5060424804688, + 771.6631469726562, + 706.289306640625, + 637.9925537109375, + 679.4347534179688, + 702.8455200195312, + 646.8424072265625, + 562.7857666015625, + 471.35540771484375, + 452.174560546875, + 394.4571533203125, + 372.8660888671875, + 304.62420654296875, + 217.15272521972656, + 201.55783081054688, + 192.9027862548828, + 185.24342346191406, + 210.15762329101562, + 162.00042724609375, + 85.27022552490234, + 88.00515747070312, + 55.74342346191406, + 5.721744537353516, + 3.6151771545410156, + -9.435979843139648, + 29.659099578857422, + 41.59318542480469, + 13.276430130004883, + 47.898197174072266, + 1029.9329833984375, + 1047.954345703125, + 1041.6976318359375, + 1043.6287841796875, + 989.216796875, + 919.3714599609375, + 851.2369384765625, + 776.7904052734375, + 742.4747314453125, + 737.5828247070312, + 692.1253662109375, + 642.191650390625, + 657.7745361328125, + 620.4677734375, + 626.9520874023438, + 637.7049560546875, + 574.1239624023438, + 610.7471923828125, + 638.3231201171875, + 727.054931640625, + 747.6017456054688, + 740.4168701171875, + 805.3237915039062, + 912.93798828125, + 1051.5447998046875, + 1101.16796875, + 1119.497314453125, + 1099.87451171875, + 1055.5980224609375, + 1007.552734375, + 947.986572265625, + 887.0525512695312, + 843.1295166015625, + 804.9649658203125, + 718.1888427734375, + 781.3807983398438, + 754.2890625, + 732.263916015625, + 738.9989013671875, + 664.1055908203125, + 681.64892578125, + 678.6166381835938, + 604.58642578125, + 550.6334838867188, + 516.2249145507812, + 421.6890869140625, + 413.90936279296875, + 400.58697509765625, + 326.03778076171875, + 272.83502197265625, + 260.7370300292969, + 226.5377197265625, + 237.5504608154297, + 205.6710205078125, + 143.7652587890625, + 84.55216979980469, + 98.02006530761719, + 74.54490661621094, + 40.888084411621094, + 6.704472541809082, + 14.163614273071289, + 34.134033203125, + 54.06766128540039, + 29.618404388427734, + 27.52641487121582, + 931.177978515625, + 932.7100830078125, + 973.10009765625, + 994.7665405273438, + 941.2107543945312, + 939.4903564453125, + 852.4735107421875, + 759.0196533203125, + 764.3250732421875, + 749.787841796875, + 686.0863647460938, + 639.232177734375, + 674.216552734375, + 607.47900390625, + 626.9636840820312, + 619.5435791015625, + 571.8253784179688, + 635.631591796875, + 621.47998046875, + 660.5, + 677.9061889648438, + 763.6620483398438, + 866.8666381835938, + 939.3505859375, + 992.551025390625, + 1030.348876953125, + 1070.643310546875, + 1093.7159423828125, + 1003.488525390625, + 939.6719360351562, + 890.0411987304688, + 810.9125366210938, + 864.683349609375, + 839.4576416015625, + 747.2700805664062, + 704.3187866210938, + 719.411865234375, + 670.944580078125, + 680.5849609375, + 651.8021240234375, + 616.4129028320312, + 625.654296875, + 562.3482666015625, + 524.6578979492188, + 502.3008117675781, + 478.0902099609375, + 449.16650390625, + 425.2138671875, + 334.5800476074219, + 299.29913330078125, + 265.3651428222656, + 256.1412353515625, + 249.38182067871094, + 212.60235595703125, + 109.56430053710938, + 101.6559829711914, + 136.854248046875, + 104.2709732055664, + 70.43109893798828, + 2.873744010925293, + 21.54840087890625, + 36.375709533691406, + 37.87898254394531, + 23.319190979003906, + 12.086545944213867, + 915.3716430664062, + 893.306884765625, + 873.7477416992188, + 934.2034912109375, + 845.3919677734375, + 831.2235107421875, + 773.4862060546875, + 810.5587768554688, + 737.47265625, + 700.8511352539062, + 687.8890991210938, + 665.9383544921875, + 652.2411499023438, + 639.168701171875, + 663.89599609375, + 617.6923828125, + 567.990234375, + 593.849853515625, + 626.5330200195312, + 655.3827514648438, + 691.0347900390625, + 755.0714111328125, + 780.9810180664062, + 826.4224853515625, + 871.4769287109375, + 901.752685546875, + 981.9876708984375, + 1002.780517578125, + 951.3779296875, + 930.9161987304688, + 840.7100830078125, + 894.903564453125, + 949.2468872070312, + 939.9806518554688, + 853.4955444335938, + 754.6239013671875, + 665.7640991210938, + 666.210205078125, + 649.3782958984375, + 659.87939453125, + 610.328369140625, + 602.568603515625, + 537.4193725585938, + 515.5150146484375, + 497.32305908203125, + 486.30474853515625, + 484.67340087890625, + 458.6563415527344, + 424.322998046875, + 359.9150390625, + 308.92987060546875, + 305.82989501953125, + 284.0108642578125, + 198.06768798828125, + 87.86219787597656, + 132.57809448242188, + 178.14207458496094, + 162.93185424804688, + 110.51177215576172, + 43.661529541015625, + -0.8164730072021484, + 29.71868133544922, + 26.138526916503906, + 29.000560760498047, + 0.9056720733642578, + 953.5326538085938, + 921.3928833007812, + 928.7830200195312, + 873.875, + 772.979736328125, + 757.1217041015625, + 692.5869140625, + 652.8491821289062, + 614.1937255859375, + 589.3056640625, + 610.69140625, + 629.54248046875, + 660.1326293945312, + 657.2171630859375, + 630.6181640625, + 505.15643310546875, + 585.7015991210938, + 609.534423828125, + 607.6055908203125, + 652.9512939453125, + 711.3131713867188, + 800.4207763671875, + 882.2828369140625, + 899.4102783203125, + 926.9409790039062, + 927.1558837890625, + 892.336669921875, + 955.2020263671875, + 977.8580322265625, + 905.5562744140625, + 882.829833984375, + 970.3795166015625, + 1012.5411987304688, + 999.1204223632812, + 928.8670654296875, + 813.7774658203125, + 719.7459716796875, + 714.8668823242188, + 701.6239013671875, + 664.6557006835938, + 604.0745239257812, + 588.34033203125, + 527.1258544921875, + 524.2755126953125, + 510.95404052734375, + 461.7048645019531, + 413.459716796875, + 389.75567626953125, + 389.3660583496094, + 366.2083435058594, + 344.38104248046875, + 313.4090576171875, + 283.50384521484375, + 188.41055297851562, + 90.08277893066406, + 144.95370483398438, + 199.31765747070312, + 191.00808715820312, + 135.8241729736328, + 75.27836608886719, + 7.060503005981445, + 10.77054214477539, + 24.34029197692871, + 21.951313018798828, + 0.8828544616699219, + 989.2019653320312, + 950.3359985351562, + 896.0816650390625, + 847.7840576171875, + 759.4515991210938, + 734.8612060546875, + 641.9884643554688, + 599.2223510742188, + 579.048828125, + 532.1800537109375, + 577.8405151367188, + 617.9855346679688, + 627.0184326171875, + 624.065673828125, + 558.4013671875, + 485.34942626953125, + 541.4896850585938, + 605.8468627929688, + 610.7244873046875, + 647.2399291992188, + 754.5018920898438, + 850.7357788085938, + 927.3496704101562, + 987.95751953125, + 1007.5807495117188, + 995.0706787109375, + 960.7371215820312, + 913.7012939453125, + 923.8201293945312, + 862.3250732421875, + 920.6005859375, + 976.0889892578125, + 1018.325439453125, + 1033.1785888671875, + 973.23291015625, + 858.9361572265625, + 781.5077514648438, + 701.498779296875, + 683.9769287109375, + 677.892333984375, + 618.1419677734375, + 551.104248046875, + 540.9385986328125, + 534.4515991210938, + 532.4654541015625, + 501.0064697265625, + 407.5404357910156, + 343.620849609375, + 341.76983642578125, + 351.80694580078125, + 316.01898193359375, + 293.41644287109375, + 246.612548828125, + 183.67111206054688, + 121.75747680664062, + 157.7943878173828, + 193.5704803466797, + 186.37921142578125, + 140.56784057617188, + 78.0969009399414, + 16.420543670654297, + -2.2598838806152344, + 15.251724243164062, + 9.174427032470703, + 6.197425842285156, + 1059.61083984375, + 1024.1038818359375, + 950.2609252929688, + 909.7092895507812, + 806.9395751953125, + 661.0428466796875, + 614.5668334960938, + 583.8690185546875, + 560.6112060546875, + 494.435302734375, + 511.97552490234375, + 606.7427978515625, + 553.5302124023438, + 559.0575561523438, + 565.738037109375, + 486.9329833984375, + 613.6364135742188, + 613.9144897460938, + 600.9428100585938, + 645.1121215820312, + 712.4004516601562, + 840.7962646484375, + 881.2088623046875, + 906.754150390625, + 993.0103759765625, + 976.36181640625, + 963.3877563476562, + 922.7042846679688, + 914.566162109375, + 889.0126953125, + 928.8892822265625, + 960.7825317382812, + 1006.9097290039062, + 1001.4260864257812, + 949.676025390625, + 891.8649291992188, + 809.4090576171875, + 748.65185546875, + 670.5414428710938, + 627.949951171875, + 577.6292724609375, + 578.0367431640625, + 541.0198974609375, + 542.9415893554688, + 569.123046875, + 539.54345703125, + 442.99737548828125, + 339.40411376953125, + 321.7926940917969, + 335.87310791015625, + 290.4442443847656, + 241.89120483398438, + 198.4951171875, + 134.7125244140625, + 128.98780822753906, + 144.85304260253906, + 154.6710968017578, + 130.093017578125, + 100.99654388427734, + 51.15742492675781, + 3.813934326171875, + -6.88221549987793, + 19.199169158935547, + 0.14754104614257812, + -1.2700004577636719, + 1079.159912109375, + 1019.21044921875, + 932.262939453125, + 908.7767333984375, + 818.634033203125, + 680.572998046875, + 620.4730224609375, + 623.7060546875, + 549.6104125976562, + 509.4776306152344, + 526.8004150390625, + 589.086181640625, + 554.020263671875, + 483.23095703125, + 435.79266357421875, + 480.80157470703125, + 588.834716796875, + 566.4298095703125, + 543.099609375, + 585.9132080078125, + 714.3544921875, + 762.804931640625, + 817.306884765625, + 817.8016967773438, + 941.2748413085938, + 927.46435546875, + 885.4356689453125, + 867.3411865234375, + 906.0830688476562, + 905.3228149414062, + 912.8875732421875, + 933.6407470703125, + 958.1696166992188, + 958.049560546875, + 913.544677734375, + 876.9052734375, + 821.18212890625, + 758.5604248046875, + 721.616943359375, + 594.454833984375, + 594.92138671875, + 605.4685668945312, + 587.1791381835938, + 581.743408203125, + 586.478271484375, + 551.8189086914062, + 455.54547119140625, + 347.67120361328125, + 320.93450927734375, + 311.61749267578125, + 269.8388671875, + 197.30154418945312, + 127.97649383544922, + 109.7850112915039, + 115.25492858886719, + 107.27226257324219, + 105.73174285888672, + 72.20225524902344, + 43.67804718017578, + 9.120885848999023, + -4.19921875, + -14.009761810302734, + -4.870979309082031, + 6.331485748291016, + -4.098812103271484, + 1041.3143310546875, + 981.9522705078125, + 892.63916015625, + 889.5675048828125, + 856.34814453125, + 744.3221435546875, + 640.65087890625, + 593.0508422851562, + 557.1185302734375, + 528.1818237304688, + 536.2267456054688, + 530.5234375, + 559.8995971679688, + 497.8572082519531, + 446.385498046875, + 458.0678405761719, + 527.766845703125, + 535.7417602539062, + 510.883056640625, + 655.639892578125, + 697.9441528320312, + 718.04541015625, + 673.1468505859375, + 818.2227783203125, + 863.416259765625, + 812.9234619140625, + 835.385498046875, + 915.629150390625, + 931.71044921875, + 927.629638671875, + 933.32861328125, + 945.1801147460938, + 925.9166870117188, + 906.5777587890625, + 890.970703125, + 872.2491455078125, + 831.6783447265625, + 797.8741455078125, + 656.2962036132812, + 612.6295776367188, + 633.15234375, + 646.9776000976562, + 636.4583740234375, + 618.1001586914062, + 577.8731689453125, + 515.946533203125, + 439.40673828125, + 379.4281311035156, + 365.0991516113281, + 319.14117431640625, + 249.62100219726562, + 179.98150634765625, + 135.97238159179688, + 128.6414794921875, + 112.4278564453125, + 93.731201171875, + 57.505706787109375, + 19.324678421020508, + 10.621057510375977, + 9.877580642700195, + 11.084846496582031, + -13.260997772216797, + 13.537471771240234, + 21.10808753967285, + 15.885917663574219, + 990.6483154296875, + 919.2359008789062, + 874.0079345703125, + 901.4931640625, + 834.7286987304688, + 638.9652099609375, + 641.5293579101562, + 566.19970703125, + 584.967041015625, + 568.547607421875, + 459.45428466796875, + 501.76983642578125, + 489.92901611328125, + 440.8943786621094, + 500.3401184082031, + 466.33502197265625, + 535.6964111328125, + 545.79736328125, + 584.525634765625, + 645.65380859375, + 697.6445922851562, + 695.1420288085938, + 758.6673583984375, + 804.9703979492188, + 849.6556396484375, + 812.1646728515625, + 921.271728515625, + 949.7352294921875, + 930.3724365234375, + 937.0682373046875, + 954.2251586914062, + 948.036865234375, + 909.6488037109375, + 881.6498413085938, + 860.25537109375, + 842.5152587890625, + 804.5748291015625, + 706.8092651367188, + 601.2468872070312, + 633.0416870117188, + 630.8861083984375, + 594.1900024414062, + 574.8297729492188, + 573.8395385742188, + 532.1280517578125, + 474.6848449707031, + 428.7440490722656, + 363.8652038574219, + 343.3548889160156, + 280.92608642578125, + 202.34686279296875, + 182.5230255126953, + 172.7428741455078, + 144.63876342773438, + 105.01264953613281, + 72.8106689453125, + 44.824188232421875, + 49.939659118652344, + 41.88770294189453, + 28.542720794677734, + -1.1148796081542969, + -11.002254486083984, + -13.318641662597656, + 0.5163326263427734, + -2.40338134765625, + 916.843017578125, + 913.8951416015625, + 877.6222534179688, + 904.9578857421875, + 782.07080078125, + 606.6407470703125, + 683.8154907226562, + 604.491455078125, + 599.02392578125, + 591.329345703125, + 532.9993896484375, + 467.49029541015625, + 480.47552490234375, + 515.3374633789062, + 563.548828125, + 559.7680053710938, + 589.4342651367188, + 666.2920532226562, + 680.5733642578125, + 641.8432006835938, + 721.113037109375, + 743.97900390625, + 837.7283325195312, + 899.5467529296875, + 880.9803466796875, + 868.3572998046875, + 936.0933227539062, + 947.07666015625, + 923.4385986328125, + 963.658203125, + 989.308349609375, + 968.58349609375, + 912.659912109375, + 858.3269653320312, + 809.6605224609375, + 782.135009765625, + 752.6513061523438, + 636.4085693359375, + 599.0244140625, + 619.1094360351562, + 543.7625122070312, + 525.8349609375, + 500.7779235839844, + 487.71893310546875, + 464.6224670410156, + 420.87890625, + 408.8212585449219, + 359.07281494140625, + 315.27545166015625, + 270.30999755859375, + 237.5065460205078, + 220.86953735351562, + 199.897216796875, + 158.3631591796875, + 96.17058563232422, + 45.74397277832031, + 62.38890075683594, + 66.95325469970703, + 51.46052169799805, + 33.09092712402344, + -20.482521057128906, + -19.392288208007812, + -9.002586364746094, + -9.103337287902832, + -1.3939977884292603, + 955.3329467773438, + 953.1087646484375, + 875.9815673828125, + 857.9300537109375, + 735.0279541015625, + 624.8953857421875, + 684.8836669921875, + 736.360107421875, + 744.1153564453125, + 716.3275146484375, + 550.9195556640625, + 550.0714111328125, + 534.1483764648438, + 588.2068481445312, + 604.745361328125, + 575.3878784179688, + 693.5196533203125, + 754.1304931640625, + 765.1446533203125, + 746.8790283203125, + 742.65625, + 763.4227905273438, + 798.2916259765625, + 882.8619995117188, + 894.203125, + 860.598388671875, + 929.5191040039062, + 954.9190673828125, + 913.7767944335938, + 967.370849609375, + 996.58203125, + 977.3232421875, + 923.7479248046875, + 843.8016357421875, + 763.062744140625, + 722.6947631835938, + 681.9091796875, + 629.2030639648438, + 593.2376708984375, + 606.1043701171875, + 618.614990234375, + 615.89599609375, + 596.083740234375, + 552.8740844726562, + 504.11456298828125, + 409.94549560546875, + 396.08026123046875, + 343.135498046875, + 306.7830810546875, + 264.2694091796875, + 227.85610961914062, + 211.011474609375, + 232.22512817382812, + 164.4747314453125, + 101.80989074707031, + 69.20088958740234, + 81.72594451904297, + 78.4342041015625, + 47.72032165527344, + 31.789291381835938, + -10.144710540771484, + -19.468307495117188, + -13.047464370727539, + -1.6157827377319336, + 14.073144912719727, + 97.72247314453125, + 45.735809326171875, + 76.77610778808594, + 54.93153381347656, + 82.29769897460938, + 83.1908187866211, + 48.17326354980469, + 66.71451568603516, + 45.47983932495117, + 44.51206970214844, + 35.684051513671875, + 39.312042236328125, + 37.016746520996094, + 23.123111724853516, + 36.39088821411133, + 8.160046577453613, + -15.586706161499023, + 32.24060821533203, + 6.866853713989258, + 7.0241169929504395, + 25.31229019165039, + 38.2354621887207, + 41.351966857910156, + 11.938425064086914, + -5.182108402252197, + -18.869972229003906, + 9.845603942871094, + 2.06716251373291, + -19.705286026000977, + -5.948426246643066, + 19.0076904296875, + 12.588584899902344, + 3.3942925930023193, + 5.976569652557373, + 38.95487976074219, + 38.76100158691406, + 69.94119262695312, + 65.3689956665039, + 59.58208465576172, + 52.2451171875, + 48.42804718017578, + 19.23395538330078, + -14.164331436157227, + -29.948007583618164, + -13.493152618408203, + 23.009374618530273, + 33.13432312011719, + 37.42710876464844, + 29.451196670532227, + 2.0664219856262207, + 23.759302139282227, + 27.788766860961914, + 26.46072006225586, + 45.208675384521484, + 55.81612014770508, + 35.65179443359375, + 1.2374764680862427, + -34.149051666259766, + -5.858369827270508, + 8.838266372680664, + 10.917332649230957, + 4.515985488891602, + -1.9917815923690796, + -5.636667728424072, + -36.30812072753906, + 106.2743148803711, + 104.60970306396484, + 89.50027465820312, + 74.69847869873047, + 143.9411163330078, + 131.40072631835938, + 146.02783203125, + 149.73208618164062, + 139.68557739257812, + 130.48191833496094, + 110.98210144042969, + 93.06502532958984, + 59.69905471801758, + 46.68034362792969, + 21.662511825561523, + 4.028447151184082, + -15.624457359313965, + 2.8150482177734375, + 15.871980667114258, + 32.98413848876953, + 10.185050010681152, + 57.34321975708008, + 47.34332275390625, + 26.179162979125977, + 9.159270286560059, + 25.057809829711914, + 20.51947593688965, + -17.39661407470703, + 4.449024677276611, + 38.68472671508789, + 41.100852966308594, + 40.4308967590332, + 40.47298049926758, + 56.97534942626953, + 66.17157745361328, + 97.23450469970703, + 114, + 103.1208724975586, + 93.55253601074219, + 64.73905944824219, + 46.68952560424805, + 18.70438575744629, + 1.9228863716125488, + -31.801692962646484, + -20.70888328552246, + -5.960569381713867, + 18.737302780151367, + 47.21403884887695, + 16.842626571655273, + -16.05580711364746, + -17.13994598388672, + 2.728743553161621, + 17.952058792114258, + 49.441314697265625, + 90.7081527709961, + 57.90762710571289, + 18.9578800201416, + 3.108726739883423, + 31.387325286865234, + -1.0557764768600464, + -4.871029376983643, + -12.245375633239746, + -18.363798141479492, + -31.029342651367188, + -23.342391967773438, + 120.48619079589844, + 113.81330108642578, + 107.86808776855469, + 112.69483184814453, + 141.601318359375, + 191.20382690429688, + 226.3811798095703, + 227.25843811035156, + 225.51910400390625, + 198.27801513671875, + 177.05740356445312, + 149.24891662597656, + 86.31371307373047, + 46.071170806884766, + 38.058494567871094, + 13.244463920593262, + -32.581241607666016, + 0.969611406326294, + 22.402658462524414, + -11.042964935302734, + 22.06058120727539, + 56.247169494628906, + 34.80778503417969, + 44.439361572265625, + 20.34119987487793, + -16.01567268371582, + -5.589839935302734, + 16.418628692626953, + 34.7248420715332, + 78.63981628417969, + 71.38623809814453, + 52.67265701293945, + 70.13565063476562, + 96.13626861572266, + 97.54182434082031, + 100.66606140136719, + 108.8809814453125, + 99.1562271118164, + 72.88927459716797, + 46.834110260009766, + 32.16743087768555, + 13.029354095458984, + -8.567313194274902, + -14.882391929626465, + -17.16912269592285, + -11.677006721496582, + 19.38051414489746, + 25.71828842163086, + 52.687862396240234, + -0.4638165235519409, + -2.392167568206787, + -4.516287326812744, + 24.198869705200195, + 55.58613586425781, + 80.23103332519531, + 84.1953125, + 63.5388069152832, + 40.040679931640625, + 14.995430946350098, + -5.27968168258667, + -17.28899383544922, + -32.46559524536133, + -36.28676986694336, + -16.094966888427734, + 1.435723900794983, + 193.954833984375, + 163.1703338623047, + 176.12994384765625, + 168.9444580078125, + 191.16294860839844, + 258.9168395996094, + 289.1773376464844, + 315.91473388671875, + 317.2162170410156, + 292.1908874511719, + 255.90365600585938, + 198.4614715576172, + 140.4453582763672, + 101.00276184082031, + 94.00004577636719, + 55.21923065185547, + -4.324697494506836, + -11.224881172180176, + -8.163471221923828, + -26.598716735839844, + 33.22475051879883, + 20.573871612548828, + 37.939762115478516, + 44.75413131713867, + 38.71476745605469, + 17.237987518310547, + -7.517856597900391, + 47.17512130737305, + 55.63228225708008, + 75.98439025878906, + 62.876731872558594, + 59.98131561279297, + 85.68527221679688, + 95.89058685302734, + 96.24614715576172, + 105.6223373413086, + 94.61998748779297, + 69.27143096923828, + 50.2791748046875, + 32.7729606628418, + 12.629973411560059, + -1.9119250774383545, + -10.65977668762207, + -17.437898635864258, + -35.00794982910156, + -11.67477035522461, + 3.112351417541504, + 17.330852508544922, + 48.240760803222656, + 67.8613510131836, + 21.528810501098633, + -12.774807929992676, + 2.0477824211120605, + 42.280677795410156, + 39.42009735107422, + 61.40558624267578, + 50.44523620605469, + 62.33460998535156, + 58.351600646972656, + 38.3908576965332, + 12.256219863891602, + 15.415140151977539, + 5.24283504486084, + 16.624576568603516, + 22.0669002532959, + 284.99945068359375, + 240.2864990234375, + 236.8157958984375, + 235.36380004882812, + 276.9320068359375, + 293.0114440917969, + 334.0864562988281, + 373.8453369140625, + 374.6428527832031, + 358.7452392578125, + 315.8704833984375, + 216.50381469726562, + 197.146728515625, + 178.10552978515625, + 150.09788513183594, + 126.5321044921875, + 97.07349395751953, + 57.21637725830078, + 33.43320083618164, + -11.078158378601074, + 20.804677963256836, + 23.03181266784668, + 27.79609489440918, + 48.784095764160156, + 37.55087661743164, + 35.476661682128906, + -22.222803115844727, + 39.38715362548828, + 51.92975616455078, + 68.89994812011719, + 61.676239013671875, + 57.84095001220703, + 53.809024810791016, + 103.59317016601562, + 114, + 114, + 83.23167419433594, + 52.39113235473633, + 16.666858673095703, + 7.388246536254883, + -7.331230163574219, + -17.043710708618164, + -19.999608993530273, + -17.571186065673828, + -30.782875061035156, + -12.040007591247559, + -20.758474349975586, + 4.6080169677734375, + 25.098161697387695, + 52.286659240722656, + 56.26043701171875, + 16.57040023803711, + -0.6091350317001343, + 1.828635334968567, + 16.88312339782715, + 11.76384162902832, + 8.891227722167969, + 29.445192337036133, + 83.72346496582031, + 79.10327911376953, + 57.776885986328125, + 59.25109100341797, + 39.497257232666016, + 28.07716941833496, + 30.623952865600586, + 313.9292907714844, + 267.83343505859375, + 275.109619140625, + 298.1549377441406, + 331.9937744140625, + 347.2435302734375, + 391.7744140625, + 409.177490234375, + 414.451171875, + 385.8498840332031, + 311.5911865234375, + 300.0697326660156, + 299.0590515136719, + 266.2060852050781, + 256.59222412109375, + 201.49932861328125, + 161.1050262451172, + 136.60720825195312, + 94.10830688476562, + 66.85234832763672, + 21.561969757080078, + 38.287410736083984, + 21.798442840576172, + 24.29269790649414, + 38.60070037841797, + 19.899282455444336, + -1.4937472343444824, + 19.84822654724121, + 40.11431121826172, + 37.71029281616211, + 30.50876808166504, + 35.50397872924805, + 44.20429992675781, + 71.91593933105469, + 97.25538635253906, + 93.5491714477539, + 48.89803695678711, + 13.2227201461792, + -9.379387855529785, + -16.687358856201172, + -27.476463317871094, + -30.21893310546875, + -22.708011627197266, + -7.648066997528076, + 1.2271428108215332, + 5.648065090179443, + -14.140666961669922, + -19.211883544921875, + 2.66983699798584, + 28.907184600830078, + 56.611820220947266, + 35.77113342285156, + 6.1282734870910645, + -1.9963949918746948, + 3.922560691833496, + 12.212654113769531, + -10.775962829589844, + -2.815441608428955, + 26.863008499145508, + 95.25254821777344, + 114, + 101.14735412597656, + 81.05348205566406, + 75.36739349365234, + 50.06927490234375, + 350.3863830566406, + 338.4557189941406, + 331.0569152832031, + 359.06494140625, + 387.5325012207031, + 400.8244323730469, + 404.25506591796875, + 414.1602783203125, + 418.326904296875, + 350.3966064453125, + 405.18157958984375, + 393.370849609375, + 367.25579833984375, + 377.7828063964844, + 351.0267333984375, + 295.76129150390625, + 255.08035278320312, + 204.52638244628906, + 163.74737548828125, + 124.34248352050781, + 65.3953628540039, + 42.35661315917969, + 25.158851623535156, + 4.319819927215576, + 6.3454108238220215, + 13.794119834899902, + -5.008688926696777, + 6.174768924713135, + 42.579769134521484, + 36.766170501708984, + 24.80899429321289, + 5.813970565795898, + 22.979759216308594, + 44.53650665283203, + 63.32284927368164, + 73.77488708496094, + 23.394880294799805, + -14.67379379272461, + -32.27090835571289, + -18.089244842529297, + -29.189722061157227, + -17.20827293395996, + -11.845001220703125, + -12.774402618408203, + 18.888225555419922, + 10.698858261108398, + 17.39222526550293, + 11.924949645996094, + -17.60833168029785, + -7.825725555419922, + 40.74685287475586, + 58.685089111328125, + 43.82318115234375, + 43.40135192871094, + 35.0331916809082, + 51.238468170166016, + 34.50239181518555, + 18.144216537475586, + 20.127195358276367, + 92.9449691772461, + 114, + 99.88378143310547, + 114, + 95.22515869140625, + 75.14803314208984, + 390.0964660644531, + 403.725830078125, + 409.3494873046875, + 427.3564147949219, + 439.848876953125, + 392.67047119140625, + 397.31597900390625, + 378.7154846191406, + 343.5673522949219, + 372.9638671875, + 413.9033203125, + 423.1791076660156, + 431.46551513671875, + 422.59832763671875, + 403.1597595214844, + 353.4560241699219, + 277.2571105957031, + 224.13999938964844, + 216.2923583984375, + 183.06973266601562, + 147.88795471191406, + 70.33505249023438, + 51.33921813964844, + 36.219749450683594, + 8.775460243225098, + 9.227115631103516, + -19.79323959350586, + 14.832381248474121, + 30.776145935058594, + 18.012475967407227, + 19.954710006713867, + -2.3611040115356445, + 15.310443878173828, + 18.114736557006836, + 46.2344970703125, + 51.05801010131836, + 6.820959568023682, + -27.680801391601562, + -11.931489944458008, + -33.043121337890625, + -16.852558135986328, + -7.2118754386901855, + -4.049978256225586, + 17.878938674926758, + 31.55414390563965, + 38.44244384765625, + 45.50971221923828, + 27.578092575073242, + 14.954107284545898, + -12.888726234436035, + 25.529016494750977, + 58.59271240234375, + 59.07094955444336, + 66.2710952758789, + 52.62992477416992, + 60.16603088378906, + 46.34666061401367, + 34.665103912353516, + -4.050543308258057, + 81.5887680053711, + 101.29379272460938, + 108.92961883544922, + 105.5063247680664, + 110.6463394165039, + 67.25828552246094, + 442.7926025390625, + 450.61566162109375, + 474.87200927734375, + 471.7158203125, + 433.24212646484375, + 383.3143310546875, + 404.3527526855469, + 359.1904296875, + 383.4516906738281, + 396.9156188964844, + 425.5210266113281, + 407.00067138671875, + 408.3302001953125, + 407.07965087890625, + 393.16705322265625, + 345.3450927734375, + 315.487060546875, + 346.87982177734375, + 326.1434326171875, + 299.8390197753906, + 219.3243408203125, + 153.18783569335938, + 94.09159088134766, + 38.5648193359375, + 9.30531120300293, + 14.938668251037598, + -3.270249366760254, + 9.137093544006348, + 23.446468353271484, + 13.407417297363281, + 18.716646194458008, + 30.01462173461914, + 32.828163146972656, + 65.01416015625, + 78.20921325683594, + 58.87721252441406, + 27.198074340820312, + 19.30760955810547, + 6.128486633300781, + 21.772132873535156, + 0.27313899993896484, + -14.000351905822754, + -2.055246353149414, + -1.3132059574127197, + 0.8868008852005005, + 23.094120025634766, + 14.03003978729248, + 28.57162094116211, + 36.59394836425781, + 5.899347305297852, + -0.3713393211364746, + 35.67746353149414, + 68.29483795166016, + 73.59113311767578, + 60.97518539428711, + 43.02115249633789, + 16.776317596435547, + 13.806407928466797, + 13.349370002746582, + 77.42881774902344, + 114, + 96.61344909667969, + 114, + 106.593994140625, + 74.87396240234375, + 494.1881408691406, + 525.7711181640625, + 501.74102783203125, + 459.99688720703125, + 411.31915283203125, + 392.58770751953125, + 385.23590087890625, + 374.73931884765625, + 426.6483154296875, + 424.8376770019531, + 419.340087890625, + 409.198486328125, + 421.938720703125, + 387.8063659667969, + 351.6893005371094, + 317.328125, + 367.1029052734375, + 392.6410827636719, + 419.7623291015625, + 413.97125244140625, + 325.6391906738281, + 212.65896606445312, + 106.32923889160156, + 50.495574951171875, + 30.71147918701172, + 21.293344497680664, + 21.058591842651367, + 15.300509452819824, + 2.9690141677856445, + 24.11975860595703, + 49.41388702392578, + 81.79236602783203, + 103.58921813964844, + 117.72817993164062, + 124.12910461425781, + 110.09574890136719, + 91.03105163574219, + 94.49128723144531, + 67.86431884765625, + 61.19148635864258, + 21.12442398071289, + -26.926239013671875, + 0.9334605932235718, + 9.53990364074707, + 11.98866081237793, + 30.39615249633789, + 21.320419311523438, + 14.862272262573242, + 36.46550369262695, + 9.4241361618042, + -7.521768569946289, + 25.45278549194336, + 68.84263610839844, + 75.06169128417969, + 38.71276092529297, + 13.891101837158203, + -10.112663269042969, + -9.688369750976562, + 23.971439361572266, + 81.89226531982422, + 99.66291046142578, + 113.97046661376953, + 99.91837310791016, + 91.4114761352539, + 53.86101531982422, + 544.9255981445312, + 527.7068481445312, + 493.9464416503906, + 447.6710205078125, + 388.78839111328125, + 408.59527587890625, + 386.90899658203125, + 368.19989013671875, + 449.78326416015625, + 466.6541748046875, + 467.3505554199219, + 440.99798583984375, + 369.95166015625, + 367.59197998046875, + 356.5978698730469, + 367.954345703125, + 400.052734375, + 417.78643798828125, + 440.8824462890625, + 446.77923583984375, + 381.46014404296875, + 227.53768920898438, + 147.44097900390625, + 78.20524597167969, + 54.226654052734375, + 34.98130416870117, + 42.35539627075195, + 39.29398727416992, + 60.27470779418945, + 89.60424041748047, + 119.29177856445312, + 165.1742706298828, + 195.88629150390625, + 198.43081665039062, + 164.16830444335938, + 147.9781036376953, + 164.23406982421875, + 140.27426147460938, + 119.12068939208984, + 83.11283874511719, + 41.50922393798828, + 10.06907844543457, + -2.336132049560547, + -2.4958598613739014, + 12.401835441589355, + 29.861982345581055, + 31.63250732421875, + 11.134549140930176, + 56.58099365234375, + 29.419485092163086, + -5.110827445983887, + 31.056232452392578, + 61.8599853515625, + 57.298362731933594, + 7.795563220977783, + -28.818273544311523, + -20.948196411132812, + -8.192952156066895, + 36.418212890625, + 77.84481048583984, + 97.6318130493164, + 102.71359252929688, + 96.34832763671875, + 81.65204620361328, + 34.59566879272461, + 509.02117919921875, + 510.6321105957031, + 488.824951171875, + 446.0322265625, + 385.0880126953125, + 431.013671875, + 391.77264404296875, + 365.284423828125, + 463.084228515625, + 467.8504333496094, + 483.037353515625, + 389.1340026855469, + 411.8492736816406, + 440.1009826660156, + 416.43603515625, + 395.5535888671875, + 387.4767761230469, + 412.9693603515625, + 452.8839416503906, + 460.1541748046875, + 433.1222229003906, + 248.8528289794922, + 144.47052001953125, + 89.75823211669922, + 55.414337158203125, + 54.13893127441406, + 78.26741027832031, + 99.75041198730469, + 127.01216888427734, + 165.38232421875, + 197.27041625976562, + 249.45181274414062, + 283.9296875, + 258.7747497558594, + 216.0731964111328, + 204.75511169433594, + 247.92066955566406, + 198.79385375976562, + 156.1182861328125, + 107.11891174316406, + 47.05303192138672, + 23.45996856689453, + 45.454345703125, + 27.775676727294922, + 48.240081787109375, + 57.603843688964844, + 31.954858779907227, + 15.563200950622559, + 63.26645278930664, + 19.371734619140625, + -9.233452796936035, + 13.853775978088379, + 54.22500991821289, + 24.327550888061523, + -16.60120391845703, + -9.717541694641113, + 22.15276336669922, + 26.79301643371582, + 37.77330017089844, + 82.64439392089844, + 114, + 114, + 85.01504516601562, + 49.21440887451172, + 14.997294425964355, + 466.56085205078125, + 489.61724853515625, + 494.9218444824219, + 468.01837158203125, + 410.2965087890625, + 408.17572021484375, + 374.53192138671875, + 445.085205078125, + 471.478271484375, + 531.7677001953125, + 476.403564453125, + 435.2882385253906, + 476.47821044921875, + 481.9537658691406, + 469.79083251953125, + 420.82098388671875, + 398.085205078125, + 432.3834228515625, + 454.67889404296875, + 500.2223815917969, + 504.43743896484375, + 364.64990234375, + 224.90760803222656, + 113.92195892333984, + 100.71708679199219, + 98.3489761352539, + 129.24876403808594, + 135.65919494628906, + 189.15525817871094, + 232.367431640625, + 286.1925354003906, + 351.92926025390625, + 378.7376708984375, + 363.80303955078125, + 310.44451904296875, + 268.3365783691406, + 316.1292419433594, + 277.5753173828125, + 224.66067504882812, + 131.38514709472656, + 77.61471557617188, + 43.68141174316406, + 62.6552734375, + 88.89604949951172, + 95.92573547363281, + 70.4453125, + 52.38694763183594, + 23.02383804321289, + 38.71415328979492, + 28.166282653808594, + -19.144908905029297, + 13.43122386932373, + 53.274715423583984, + -0.8869653940200806, + -11.46125316619873, + 34.475406646728516, + 24.492982864379883, + 30.520992279052734, + 42.06650161743164, + 66.39959716796875, + 106.69638061523438, + 81.7001953125, + 49.573150634765625, + 8.348377227783203, + 18.644041061401367, + 435.52398681640625, + 476.6730041503906, + 492.8498229980469, + 492.27392578125, + 441.57489013671875, + 365.00872802734375, + 435.58404541015625, + 512.1624755859375, + 549.3514404296875, + 526.1401977539062, + 466.84246826171875, + 481.7406005859375, + 549.9168701171875, + 555.1121215820312, + 516.0692749023438, + 475.3196716308594, + 447.69659423828125, + 469.0045471191406, + 493.83868408203125, + 531.0237426757812, + 518.9896240234375, + 444.75018310546875, + 301.0729675292969, + 205.01612854003906, + 175.81735229492188, + 181.41307067871094, + 211.25845336914062, + 244.05625915527344, + 281.654296875, + 295.5718078613281, + 368.69158935546875, + 416.6094055175781, + 446.8052062988281, + 442.35272216796875, + 404.206787109375, + 335.3802795410156, + 334.0790710449219, + 319.92938232421875, + 261.684814453125, + 201.66705322265625, + 148.6105194091797, + 64.80229949951172, + 75.922119140625, + 93.59352111816406, + 121.95840454101562, + 135.521240234375, + 74.026611328125, + 24.02605628967285, + 13.929153442382812, + 31.7962646484375, + -13.988436698913574, + 4.664692401885986, + 14.09607982635498, + -4.574870586395264, + 28.51400375366211, + 60.94537353515625, + 51.5908317565918, + 36.822818756103516, + 36.961578369140625, + 66.14458465576172, + 63.59303665161133, + 39.70117950439453, + 20.067481994628906, + -4.628357410430908, + -18.216262817382812, + 394.6726989746094, + 456.8121032714844, + 453.76409912109375, + 434.4952392578125, + 398.62042236328125, + 369.1025695800781, + 437.5429992675781, + 498.4863586425781, + 517.8732299804688, + 503.42120361328125, + 457.68572998046875, + 547.6409301757812, + 580.7376708984375, + 620.751708984375, + 574.06787109375, + 530.35107421875, + 491.4190673828125, + 504.1772766113281, + 512.6189575195312, + 505.072265625, + 483.5985107421875, + 493.01593017578125, + 466.3114929199219, + 317.0700378417969, + 258.46612548828125, + 242.7705535888672, + 288.94940185546875, + 311.8846435546875, + 322.4448547363281, + 336.216796875, + 385.1037902832031, + 437.587158203125, + 477.001220703125, + 477.0888671875, + 436.07000732421875, + 378.8351745605469, + 357.03936767578125, + 358.75494384765625, + 304.7170104980469, + 243.37896728515625, + 189.64910888671875, + 108.02056884765625, + 97.57011413574219, + 106.43136596679688, + 148.84658813476562, + 155.47938537597656, + 136.33343505859375, + 59.49864196777344, + 11.51593017578125, + 24.503110885620117, + 10.855352401733398, + 15.439702033996582, + 8.608562469482422, + 18.69769859313965, + 61.66962814331055, + 78.820556640625, + 63.59552764892578, + 40.501922607421875, + 19.84760856628418, + 34.32148742675781, + 22.915908813476562, + 1.3063377141952515, + -31.61313819885254, + -16.095436096191406, + 6.328366279602051, + 433.4542236328125, + 419.4295654296875, + 400.64306640625, + 377.6829833984375, + 387.6351318359375, + 381.91351318359375, + 431.01470947265625, + 488.1800842285156, + 492.5902099609375, + 469.16766357421875, + 506.33306884765625, + 534.140869140625, + 544.8340454101562, + 628.8976440429688, + 636.2904663085938, + 582.181884765625, + 558.4190673828125, + 543.5086669921875, + 526.621337890625, + 508.57025146484375, + 503.70025634765625, + 496.3531799316406, + 496.7174072265625, + 473.7552490234375, + 361.7972106933594, + 360.51702880859375, + 371.4566345214844, + 349.7593994140625, + 359.6663513183594, + 384.10296630859375, + 419.00201416015625, + 460.84332275390625, + 475.7543640136719, + 461.15118408203125, + 422.1602783203125, + 381.8843994140625, + 421.6188659667969, + 411.8680419921875, + 379.24652099609375, + 294.3660888671875, + 221.19921875, + 134.07296752929688, + 122.51655578613281, + 144.49635314941406, + 164.3656463623047, + 184.1822052001953, + 170.6057891845703, + 116.84101867675781, + 66.56244659423828, + 28.755321502685547, + -4.262478828430176, + -12.976868629455566, + 11.56307315826416, + 33.17924880981445, + 29.901708602905273, + 22.94964027404785, + 19.920867919921875, + 22.72439956665039, + 6.642127513885498, + 3.4859724044799805, + -10.793822288513184, + -19.159940719604492, + -1.7244940996170044, + 1.4895665645599365, + -27.256900787353516, + 421.6318359375, + 382.60565185546875, + 451.894287109375, + 437.9006042480469, + 425.8585205078125, + 399.5224304199219, + 442.8098449707031, + 466.9171142578125, + 479.19683837890625, + 486.0879211425781, + 529.7547607421875, + 494.9808349609375, + 499.47406005859375, + 547.512451171875, + 619.6072998046875, + 623.8678588867188, + 601.4083862304688, + 574.7738037109375, + 549.9140625, + 601.2169189453125, + 528.9454956054688, + 517.0079345703125, + 503.22900390625, + 522.0538330078125, + 488.065673828125, + 479.8878173828125, + 432.10198974609375, + 386.5471496582031, + 427.98272705078125, + 414.7137756347656, + 431.5802917480469, + 508.0013427734375, + 483.8794860839844, + 426.7537841796875, + 446.331787109375, + 458.1822509765625, + 464.83001708984375, + 456.475830078125, + 421.8971252441406, + 333.4981689453125, + 296.642333984375, + 201.2493896484375, + 167.13754272460938, + 148.27330017089844, + 158.9003448486328, + 218.43621826171875, + 191.05999755859375, + 133.73533630371094, + 79.39920043945312, + 43.248687744140625, + -16.481449127197266, + -34.089569091796875, + -3.9483957290649414, + 0.04336237907409668, + 14.801457405090332, + 22.261474609375, + -10.816912651062012, + -22.543487548828125, + -28.91963768005371, + -18.90924644470215, + -14.467676162719727, + -27.091543197631836, + -29.509090423583984, + -28.572078704833984, + -9.441896438598633, + 381.3080749511719, + 416.578125, + 420.86456298828125, + 448.1531982421875, + 439.21630859375, + 429.40771484375, + 455.0769958496094, + 493.73883056640625, + 491.546630859375, + 535.655517578125, + 538.7647705078125, + 533.6145629882812, + 522.537841796875, + 526.989990234375, + 571.9920654296875, + 627.114990234375, + 642.3681030273438, + 614.732177734375, + 606.3174438476562, + 563.7044677734375, + 556.7252197265625, + 567.1741333007812, + 547.7156372070312, + 505.057861328125, + 533.7080078125, + 513.3839721679688, + 487.7662353515625, + 454.48028564453125, + 443.3702392578125, + 470.7255859375, + 454.8073425292969, + 519.4503173828125, + 487.4586486816406, + 471.7484130859375, + 531.3822631835938, + 545.201904296875, + 518.442626953125, + 499.2498779296875, + 440.4103698730469, + 386.1089172363281, + 339.7309265136719, + 256.629638671875, + 255.97120666503906, + 239.97482299804688, + 183.99252319335938, + 206.83969116210938, + 209.2398223876953, + 150.6470947265625, + 111.04248809814453, + 76.46148681640625, + 23.847129821777344, + -16.355863571166992, + -31.52619171142578, + -13.996245384216309, + 4.25177001953125, + -18.5305233001709, + -5.2077555656433105, + -7.240478515625, + -18.1153507232666, + -13.72571849822998, + -20.333295822143555, + -12.197409629821777, + 3.176588535308838, + 12.892178535461426, + -26.891063690185547, + 429.75079345703125, + 454.3103332519531, + 421.2376403808594, + 439.83966064453125, + 454.3551940917969, + 454.84881591796875, + 495.84661865234375, + 520.7433471679688, + 507.419189453125, + 602.7989501953125, + 610.5303344726562, + 575.030517578125, + 558.5525512695312, + 575.52099609375, + 612.1959228515625, + 621.9955444335938, + 653.70849609375, + 610.6399536132812, + 649.8145751953125, + 611.846923828125, + 605.4310302734375, + 639.3880615234375, + 624.0809326171875, + 564.4498291015625, + 605.0946044921875, + 532.4849243164062, + 510.93121337890625, + 519.3322143554688, + 487.2773132324219, + 493.7994689941406, + 514.959228515625, + 535.9462890625, + 496.88934326171875, + 493.7675476074219, + 581.189208984375, + 601.41650390625, + 562.621826171875, + 518.07958984375, + 492.81182861328125, + 453.343017578125, + 373.4565734863281, + 350.1086730957031, + 387.943359375, + 357.1938781738281, + 284.5346374511719, + 239.0218505859375, + 217.96401977539062, + 180.71258544921875, + 147.96971130371094, + 93.39131164550781, + 54.43517303466797, + 24.002628326416016, + 5.489771842956543, + 15.908065795898438, + 7.571809768676758, + 26.65523338317871, + 31.192331314086914, + 18.75422477722168, + 25.87961769104004, + 10.188451766967773, + -17.88138771057129, + 22.648202896118164, + 41.179439544677734, + 22.24683380126953, + -20.874956130981445, + 478.63238525390625, + 470.4056396484375, + 444.7262268066406, + 455.85870361328125, + 491.5050048828125, + 529.1998291015625, + 523.4794311523438, + 536.1033935546875, + 575.1221313476562, + 582.7725830078125, + 613.785888671875, + 640.7019653320312, + 583.964111328125, + 640.1163330078125, + 613.7801513671875, + 666.8984375, + 634.19140625, + 664.0816040039062, + 645.6094360351562, + 585.2743530273438, + 597.5758056640625, + 683.1123046875, + 693.904052734375, + 611.9234619140625, + 588.9923706054688, + 591.3466796875, + 543.2977294921875, + 524.0444946289062, + 543.4818115234375, + 555.9091796875, + 560.159912109375, + 559.030029296875, + 520.6277465820312, + 510.3140869140625, + 552.28662109375, + 587.172607421875, + 574.23681640625, + 556.2139282226562, + 526.03564453125, + 458.6616516113281, + 390.8893737792969, + 399.36151123046875, + 411.98828125, + 367.7885437011719, + 342.9614562988281, + 304.9080810546875, + 282.53192138671875, + 257.5505065917969, + 211.46031188964844, + 119.90823364257812, + 82.50663757324219, + 64.21836853027344, + 42.57725524902344, + 39.420040130615234, + 26.47773551940918, + 24.911569595336914, + 22.495792388916016, + 34.1888313293457, + 27.677534103393555, + 3.604001998901367, + -25.961244583129883, + 18.002477645874023, + 30.309734344482422, + 17.79184913635254, + -25.55689239501953, + 456.7835693359375, + 425.6702880859375, + 457.1616516113281, + 456.42523193359375, + 519.4156494140625, + 568.8858642578125, + 566.9119873046875, + 588.8262939453125, + 627.5842895507812, + 637.1270141601562, + 676.4412231445312, + 695.7164306640625, + 662.3470458984375, + 634.2147827148438, + 721.1682739257812, + 707.1212768554688, + 670.7845458984375, + 711.5418090820312, + 628.712646484375, + 605.9783935546875, + 645.3552856445312, + 688.074951171875, + 675.0308227539062, + 616.3257446289062, + 624.8334350585938, + 614.703125, + 615.4395141601562, + 567.438232421875, + 583.2705078125, + 583.7052001953125, + 591.097900390625, + 580.8907470703125, + 517.540283203125, + 511.3683776855469, + 545.3497314453125, + 549.3956909179688, + 571.6447143554688, + 627.6400146484375, + 556.1715087890625, + 499.362548828125, + 433.1221923828125, + 406.427734375, + 420.28289794921875, + 355.9178771972656, + 315.3749694824219, + 307.5357360839844, + 268.52520751953125, + 276.9015197753906, + 242.16790771484375, + 177.94186401367188, + 127.95310974121094, + 99.40007019042969, + 83.9368667602539, + 85.78239440917969, + 25.447956085205078, + 38.648014068603516, + 31.65326499938965, + 40.397071838378906, + 28.568199157714844, + -7.04354190826416, + -15.635322570800781, + 23.545509338378906, + 25.669353485107422, + 18.43376922607422, + -32.00431823730469, + 466.39935302734375, + 459.275146484375, + 489.9589538574219, + 480.5006408691406, + 532.5238037109375, + 583.12646484375, + 587.6845703125, + 623.4780883789062, + 640.55224609375, + 668.1181030273438, + 719.8461303710938, + 716.1239624023438, + 744.0689697265625, + 763.0629272460938, + 825.8495483398438, + 731.5557861328125, + 686.598876953125, + 728.4667358398438, + 685.9189453125, + 688.7650146484375, + 689.53271484375, + 714.7017822265625, + 664.1444091796875, + 641.440673828125, + 644.208740234375, + 663.2926025390625, + 643.984619140625, + 606.3900146484375, + 565.7005615234375, + 559.0621337890625, + 570.9661865234375, + 539.58349609375, + 525.0318603515625, + 559.963623046875, + 553.9761962890625, + 520.2554321289062, + 557.4937744140625, + 604.9921875, + 559.9491577148438, + 545.7918701171875, + 497.308349609375, + 446.1689453125, + 388.0926208496094, + 370.8065490722656, + 361.678955078125, + 363.7060852050781, + 289.84552001953125, + 281.339111328125, + 173.74417114257812, + 182.47459411621094, + 176.80921936035156, + 139.13037109375, + 136.3889923095703, + 95.00477600097656, + 63.69999694824219, + 53.08307647705078, + 30.093708038330078, + 23.958383560180664, + 31.30449104309082, + 5.132270812988281, + -16.324787139892578, + 9.206058502197266, + 41.893394470214844, + 28.404373168945312, + 8.4373197555542, + 473.030517578125, + 480.9692077636719, + 539.4788208007812, + 533.1422119140625, + 548.621337890625, + 603.179931640625, + 626.1114501953125, + 639.2669677734375, + 667.0494995117188, + 657.9384155273438, + 684.7694091796875, + 688.1701049804688, + 791.7457885742188, + 877.8797607421875, + 886.5023193359375, + 805.8304443359375, + 707.5018310546875, + 754.5946655273438, + 656.4711303710938, + 669.2991943359375, + 710.7432250976562, + 677.0711669921875, + 694.029296875, + 670.5584716796875, + 684.7244262695312, + 729.0459594726562, + 740.2784423828125, + 689.44482421875, + 644.7430419921875, + 582.371826171875, + 564.501708984375, + 561.44921875, + 567.2933349609375, + 598.49951171875, + 581.6748046875, + 499.9054260253906, + 554.638427734375, + 507.68304443359375, + 485.4244384765625, + 466.7367858886719, + 467.55517578125, + 426.52496337890625, + 399.515625, + 411.59698486328125, + 395.31488037109375, + 409.11175537109375, + 339.879638671875, + 268.69830322265625, + 264.77606201171875, + 263.2810363769531, + 233.0880126953125, + 192.73989868164062, + 143.8520965576172, + 110.937744140625, + 80.37092590332031, + 40.53755187988281, + 38.2720832824707, + 20.423301696777344, + 4.042491436004639, + 5.675566673278809, + 5.696845531463623, + 38.068851470947266, + 53.769866943359375, + 69.38053131103516, + 62.104217529296875, + 476.266357421875, + 499.08880615234375, + 509.08392333984375, + 556.2406616210938, + 581.8575439453125, + 636.218017578125, + 711.6573486328125, + 700.3334350585938, + 693.4304809570312, + 687.746337890625, + 722.0601806640625, + 757.909423828125, + 850.9133911132812, + 891.7874755859375, + 848.5271606445312, + 809.0537109375, + 772.23486328125, + 775.0277099609375, + 721.425537109375, + 695.5374145507812, + 728.4239501953125, + 724.8345947265625, + 681.3301391601562, + 739.9628295898438, + 741.9937133789062, + 833.00634765625, + 764.3153686523438, + 745.9647216796875, + 684.56640625, + 607.1158447265625, + 572.7493896484375, + 551.7216796875, + 649.4371337890625, + 667.2037353515625, + 640.4215087890625, + 587.791259765625, + 535.5120849609375, + 575.7000122070312, + 550.4234619140625, + 511.862548828125, + 519.28662109375, + 459.303466796875, + 436.2459716796875, + 453.88983154296875, + 447.88104248046875, + 450.9854736328125, + 373.9469909667969, + 286.5560302734375, + 286.747802734375, + 286.1941223144531, + 254.74749755859375, + 241.69664001464844, + 165.9996795654297, + 115.69651794433594, + 70.07441711425781, + 76.62602233886719, + 37.70173645019531, + 9.68620491027832, + -19.486833572387695, + 13.466397285461426, + 39.65657424926758, + 77.13304138183594, + 75.37117004394531, + 72.79560852050781, + 76.32334899902344, + 468.26202392578125, + 481.7362365722656, + 516.0103759765625, + 569.3895263671875, + 603.48486328125, + 679.5671997070312, + 765.0465087890625, + 745.23095703125, + 738.0153198242188, + 752.83642578125, + 738.0610961914062, + 817.2724609375, + 876.7962646484375, + 874.0458984375, + 796.70458984375, + 770.9888916015625, + 811.0297241210938, + 770.94970703125, + 765.6700439453125, + 738.029052734375, + 732.924072265625, + 776.166748046875, + 810.6506958007812, + 750.2091064453125, + 795.68212890625, + 784.2777099609375, + 783.2589721679688, + 764.2767333984375, + 717.5614013671875, + 686.7398681640625, + 619.6529541015625, + 647.5132446289062, + 693.9336547851562, + 697.079345703125, + 647.0597534179688, + 614.2544555664062, + 573.7598876953125, + 560.567138671875, + 546.2416381835938, + 542.8726806640625, + 532.4724731445312, + 532.268798828125, + 494.30267333984375, + 474.0487365722656, + 480.8237609863281, + 431.7879943847656, + 381.8280029296875, + 327.5013732910156, + 310.57110595703125, + 319.0572814941406, + 258.1968994140625, + 244.52890014648438, + 240.5832061767578, + 146.62078857421875, + 85.91742706298828, + 83.58384704589844, + 59.18305969238281, + 2.314495086669922, + 22.162574768066406, + 60.51649475097656, + 92.34996032714844, + 103.34959411621094, + 99.45448303222656, + 71.66959381103516, + 87.12632751464844, + 511.21356201171875, + 508.0462951660156, + 533.6242065429688, + 562.698486328125, + 586.0667724609375, + 651.33154296875, + 686.0574340820312, + 691.967529296875, + 717.9039306640625, + 726.495361328125, + 751.9412841796875, + 790.2080688476562, + 835.0413818359375, + 817.1146240234375, + 785.587890625, + 812.4971923828125, + 837.883056640625, + 837.499267578125, + 833.2550048828125, + 807.7364501953125, + 786.0444946289062, + 777.8567504882812, + 840.347412109375, + 789.29833984375, + 816.4569702148438, + 766.9069213867188, + 803.908935546875, + 768.3624267578125, + 749.96630859375, + 721.9409790039062, + 660.43017578125, + 645.4991455078125, + 626.9608154296875, + 650.767822265625, + 615.88330078125, + 606.1162109375, + 624.6598510742188, + 607.870361328125, + 592.8636474609375, + 545.660400390625, + 509.3998107910156, + 520.53173828125, + 467.8020935058594, + 457.57122802734375, + 442.6097412109375, + 389.0465087890625, + 350.9129943847656, + 292.4834899902344, + 326.8305969238281, + 348.00885009765625, + 282.0131530761719, + 217.1009521484375, + 189.71160888671875, + 134.78195190429688, + 84.03805541992188, + 62.351219177246094, + 35.36320877075195, + 30.29465103149414, + 51.92707061767578, + 101.32352447509766, + 112.71312713623047, + 97.03975677490234, + 87.82022094726562, + 91.26177215576172, + 70.45752716064453, + 529.8057250976562, + 526.933837890625, + 542.0292358398438, + 557.6768798828125, + 617.3685913085938, + 622.4319458007812, + 652.1948852539062, + 706.3963012695312, + 771.4212036132812, + 759.4984130859375, + 745.4852294921875, + 812.7952880859375, + 837.56982421875, + 837.6323852539062, + 823.766357421875, + 841.5446166992188, + 847.703857421875, + 865.55029296875, + 847.4700927734375, + 819.597412109375, + 832.6281127929688, + 878.0064697265625, + 875.2237548828125, + 807.990966796875, + 830.3777465820312, + 876.4036865234375, + 786.2662963867188, + 781.1715698242188, + 780.9337158203125, + 764.4150390625, + 703.1823120117188, + 664.2881469726562, + 681.8642578125, + 684.9176025390625, + 685.0728759765625, + 668.440673828125, + 625.3968505859375, + 608.1224365234375, + 591.3907470703125, + 522.5398559570312, + 520.8233642578125, + 522.7826538085938, + 492.34490966796875, + 390.06109619140625, + 404.3880920410156, + 360.7329406738281, + 320.3191833496094, + 305.4776916503906, + 312.7362060546875, + 356.40179443359375, + 323.02362060546875, + 280.1639404296875, + 220.59210205078125, + 155.6548614501953, + 100.63374328613281, + 55.86909866333008, + 44.99173355102539, + 55.01769256591797, + 72.5538558959961, + 96.0826416015625, + 95.13771057128906, + 99.8121566772461, + 79.06932830810547, + 84.20692443847656, + 74.92127990722656, + 532.982421875, + 578.0864868164062, + 581.085693359375, + 628.0775146484375, + 664.510009765625, + 659.4971313476562, + 697.8461303710938, + 727.3985595703125, + 767.8530883789062, + 840.3118896484375, + 820.2842407226562, + 828.1256103515625, + 830.327392578125, + 869.5450439453125, + 901.4402465820312, + 868.1535034179688, + 877.03662109375, + 857.2429809570312, + 857.0877075195312, + 896.0335083007812, + 960.8194580078125, + 933.7911376953125, + 936.188232421875, + 884.747802734375, + 860.7227783203125, + 927.90625, + 832.1025390625, + 824.87744140625, + 828.1533203125, + 749.67431640625, + 775.581298828125, + 712.2454223632812, + 706.4923095703125, + 720.6744384765625, + 705.9620361328125, + 690.2263793945312, + 637.4354248046875, + 619.586181640625, + 596.568115234375, + 565.9766235351562, + 546.5872802734375, + 565.7299194335938, + 505.3557434082031, + 439.5978698730469, + 422.7702941894531, + 440.07366943359375, + 404.01470947265625, + 357.011474609375, + 348.8830871582031, + 364.48681640625, + 317.14892578125, + 316.62982177734375, + 232.81661987304688, + 134.44618225097656, + 166.16041564941406, + 103.51084899902344, + 72.07283782958984, + 74.1274185180664, + 93.48748016357422, + 84.54092407226562, + 86.57616424560547, + 85.09040832519531, + 71.74520111083984, + 78.03862762451172, + 55.33684539794922, + 578.1565551757812, + 612.870361328125, + 635.35595703125, + 664.1016235351562, + 712.111083984375, + 704.26904296875, + 693.27490234375, + 760.1849975585938, + 809.7120971679688, + 839.4764404296875, + 847.2959594726562, + 857.6114501953125, + 847.7222900390625, + 880.789794921875, + 896.7950439453125, + 915.4100952148438, + 940.5537109375, + 947.6214599609375, + 974.9475708007812, + 1023.0636596679688, + 1034.13427734375, + 1019.2991943359375, + 1014.2357177734375, + 929.5587158203125, + 887.0488891601562, + 932.82861328125, + 870.8709716796875, + 920.2320556640625, + 888.8327026367188, + 824.16796875, + 767.2158813476562, + 723.5912475585938, + 754.9806518554688, + 726.3134155273438, + 708.9769287109375, + 677.7655029296875, + 655.0923461914062, + 639.2733764648438, + 598.7657470703125, + 603.059326171875, + 579.0523681640625, + 550.3734741210938, + 539.055419921875, + 494.8128967285156, + 500.918701171875, + 514.9840087890625, + 406.1999816894531, + 400.406494140625, + 369.4817810058594, + 368.6741943359375, + 323.20751953125, + 250.98544311523438, + 219.22433471679688, + 185.39151000976562, + 170.38507080078125, + 121.11381530761719, + 87.76095581054688, + 93.747802734375, + 92.97801208496094, + 72.93462371826172, + 53.37749481201172, + 66.16752624511719, + 52.35680389404297, + 69.23992156982422, + 69.65205383300781, + 560.9259033203125, + 623.431640625, + 633.0728149414062, + 661.6978149414062, + 705.736328125, + 720.5682373046875, + 754.5321655273438, + 771.2847290039062, + 831.348876953125, + 937.3775634765625, + 972.2998046875, + 938.4759521484375, + 914.0438232421875, + 963.0127563476562, + 951.2579345703125, + 929.4052734375, + 931.6914672851562, + 995.9423828125, + 1035.5546875, + 1020.9696655273438, + 996.4173583984375, + 971.1622314453125, + 929.3441162109375, + 926.1387939453125, + 934.30224609375, + 931.35888671875, + 962.1118774414062, + 983.4102783203125, + 862.9814453125, + 833.2452392578125, + 785.912353515625, + 795.8308715820312, + 741.636474609375, + 744.8265380859375, + 720.51708984375, + 718.0601196289062, + 674.64453125, + 669.325439453125, + 667.9996948242188, + 647.0946044921875, + 595.9210205078125, + 567.4436645507812, + 543.7805786132812, + 556.76025390625, + 538.9349365234375, + 530.7705688476562, + 482.11224365234375, + 428.6059875488281, + 384.6451110839844, + 372.1661071777344, + 378.60858154296875, + 298.544921875, + 256.548095703125, + 273.2477722167969, + 200.11276245117188, + 125.41403198242188, + 60.094635009765625, + 69.59456634521484, + 93.1987075805664, + 60.139617919921875, + 59.3244743347168, + 44.07978820800781, + 55.777137756347656, + 41.596595764160156, + 52.45302200317383, + 574.614501953125, + 612.4689331054688, + 680.9138793945312, + 687.1806640625, + 696.7880859375, + 739.8815307617188, + 792.2613525390625, + 838.439697265625, + 858.111328125, + 845.4945678710938, + 920.4749755859375, + 1000.196533203125, + 1058.764404296875, + 1039.4517822265625, + 999.0216064453125, + 971.1168212890625, + 917.9500732421875, + 932.5389404296875, + 991.47021484375, + 1001.7743530273438, + 969.9308471679688, + 929.4806518554688, + 884.2356567382812, + 873.1513671875, + 884.4129028320312, + 970.1249389648438, + 1014.1731567382812, + 1011.8187255859375, + 879.5466918945312, + 820.703369140625, + 800.8952026367188, + 833.9673461914062, + 796.00390625, + 780.7242431640625, + 761.754638671875, + 744.44189453125, + 698.0375366210938, + 689.787841796875, + 729.552001953125, + 741.223876953125, + 669.3739624023438, + 580.755615234375, + 579.563720703125, + 597.0462036132812, + 617.4996337890625, + 603.6866455078125, + 531.0556640625, + 456.10986328125, + 369.68084716796875, + 381.8836669921875, + 349.5241394042969, + 308.24249267578125, + 321.31280517578125, + 302.46258544921875, + 235.48382568359375, + 138.8519287109375, + 83.42767333984375, + 76.43989562988281, + 50.52220153808594, + 47.45374298095703, + 68.34769439697266, + 59.02577209472656, + 50.46508026123047, + 38.834571838378906, + 31.18387222290039, + 584.2996826171875, + 641.2306518554688, + 691.181640625, + 692.998779296875, + 696.53271484375, + 750.25146484375, + 821.9869384765625, + 874.9287719726562, + 941.0137939453125, + 951.5009155273438, + 928.7431030273438, + 914.4595947265625, + 988.3911743164062, + 1014.07568359375, + 1004.50439453125, + 975.0733642578125, + 946.19384765625, + 879.9769897460938, + 899.762939453125, + 923.6904296875, + 932.113525390625, + 901.4918823242188, + 840.045654296875, + 799.7882080078125, + 848.907470703125, + 930.8326416015625, + 998.3594970703125, + 963.2593994140625, + 910.9912109375, + 834.9337768554688, + 851.8551025390625, + 881.1951904296875, + 882.1867065429688, + 842.6220703125, + 806.3944091796875, + 758.949462890625, + 723.329833984375, + 722.344482421875, + 737.9097900390625, + 713.559326171875, + 702.0098266601562, + 621.0555419921875, + 581.2716064453125, + 623.9017944335938, + 662.398681640625, + 652.8526611328125, + 595.8978881835938, + 486.6112365722656, + 395.3910827636719, + 384.750732421875, + 328.98419189453125, + 276.6498718261719, + 318.4886474609375, + 301.0421142578125, + 293.4781188964844, + 198.8232421875, + 132.0172882080078, + 90.31645202636719, + 54.57958984375, + 32.07646942138672, + 59.7203369140625, + 71.33523559570312, + 47.12605667114258, + 24.724124908447266, + 16.24627685546875, + 607.9285888671875, + 656.3825073242188, + 669.4789428710938, + 731.3978271484375, + 762.1253662109375, + 815.20068359375, + 820.480712890625, + 932.5454711914062, + 1017.888671875, + 1037.1473388671875, + 1029.487060546875, + 983.6749267578125, + 910.916259765625, + 948.209716796875, + 953.1752319335938, + 947.3762817382812, + 933.3363037109375, + 898.5145874023438, + 840.1319580078125, + 832.9759521484375, + 863.4235229492188, + 875.7362060546875, + 784.0767822265625, + 811.9349975585938, + 850.8057861328125, + 921.642578125, + 938.3770141601562, + 956.7131958007812, + 926.66796875, + 897.0826416015625, + 921.4620971679688, + 901.7940673828125, + 937.9463500976562, + 931.0286865234375, + 853.7728271484375, + 799.4483642578125, + 752.0006713867188, + 737.8267211914062, + 765.6470947265625, + 786.5309448242188, + 720.380126953125, + 673.4878540039062, + 639.5150756835938, + 616.6710815429688, + 646.7927856445312, + 624.9160766601562, + 622.5841064453125, + 514.3653564453125, + 418.48394775390625, + 386.38873291015625, + 374.59234619140625, + 332.03057861328125, + 309.8437194824219, + 287.47283935546875, + 290.99298095703125, + 241.94659423828125, + 201.30722045898438, + 120.32087707519531, + 62.889739990234375, + 58.925437927246094, + 39.768272399902344, + 66.81988525390625, + 41.37250900268555, + 26.290897369384766, + 28.790607452392578, + 658.828369140625, + 660.951904296875, + 671.3726806640625, + 741.9124755859375, + 839.6146240234375, + 853.5615234375, + 801.1370849609375, + 928.4830932617188, + 1038.5032958984375, + 1076.281494140625, + 1073.513671875, + 986.0510864257812, + 904.8390502929688, + 893.608642578125, + 893.1070556640625, + 875.688720703125, + 875.9913330078125, + 851.5447998046875, + 827.3356323242188, + 805.5059814453125, + 799.4197387695312, + 814.2813720703125, + 795.3319091796875, + 822.0975341796875, + 875.3956298828125, + 866.7938232421875, + 839.177490234375, + 896.0322265625, + 936.1173095703125, + 945.720703125, + 978.9930419921875, + 951.4035034179688, + 926.7846069335938, + 956.4388427734375, + 897.876708984375, + 850.903076171875, + 835.617919921875, + 820.185546875, + 853.5667724609375, + 810.1337890625, + 736.882080078125, + 647.152099609375, + 668.2476806640625, + 622.5599365234375, + 591.805908203125, + 591.1676025390625, + 572.7798461914062, + 531.5802001953125, + 431.95147705078125, + 396.3856506347656, + 400.4058837890625, + 390.27783203125, + 342.4658203125, + 284.04486083984375, + 247.1432342529297, + 212.32778930664062, + 187.8157501220703, + 151.54571533203125, + 122.79876708984375, + 67.5390853881836, + 82.03824615478516, + 64.82540893554688, + 52.12504959106445, + 45.754852294921875, + 55.22991180419922, + 619.9404296875, + 664.9325561523438, + 655.068115234375, + 790.070068359375, + 819.7471923828125, + 869.1123046875, + 837.251220703125, + 962.1635131835938, + 1054.9666748046875, + 1087.5819091796875, + 1026.6153564453125, + 934.2955322265625, + 874.1346435546875, + 879.3753662109375, + 862.1826171875, + 811.3187255859375, + 823.1435546875, + 823.3787841796875, + 833.591796875, + 793.7145385742188, + 760.1588134765625, + 775.1743774414062, + 815.95703125, + 817.781982421875, + 819.794189453125, + 819.2899780273438, + 798.6317138671875, + 844.0473022460938, + 856.7485961914062, + 897.013671875, + 978.0103759765625, + 939.7322998046875, + 947.7598876953125, + 989.2496337890625, + 938.9752197265625, + 932.8446044921875, + 923.881591796875, + 931.2838745117188, + 798.7703857421875, + 726.0975341796875, + 739.4868774414062, + 652.03955078125, + 604.5567626953125, + 620.3666381835938, + 569.0307006835938, + 555.3214111328125, + 486.2352294921875, + 490.397216796875, + 447.7245788574219, + 420.4259338378906, + 423.98565673828125, + 404.0396423339844, + 325.60247802734375, + 282.18695068359375, + 245.93589782714844, + 226.44009399414062, + 179.11209106445312, + 133.5726318359375, + 134.32693481445312, + 106.56572723388672, + 96.54010009765625, + 123.8155517578125, + 81.72100067138672, + 70.85016632080078, + 83.53059387207031, + 610.4976806640625, + 639.7019653320312, + 716.5330810546875, + 800.5765991210938, + 876.2760620117188, + 832.6727294921875, + 896.6044921875, + 1004.687255859375, + 1072.8316650390625, + 1071.438232421875, + 960.837158203125, + 841.0794677734375, + 880.3731689453125, + 881.2515869140625, + 839.77490234375, + 808.9306030273438, + 832.760009765625, + 832.94970703125, + 836.8310546875, + 771.75634765625, + 685.3150634765625, + 731.8011474609375, + 758.7742309570312, + 758.7316284179688, + 735.466552734375, + 787.2154541015625, + 794.7628173828125, + 849.8012084960938, + 911.6015014648438, + 910.5977172851562, + 975.878662109375, + 914.3389282226562, + 924.637939453125, + 985.4705810546875, + 993.6843872070312, + 990.3319091796875, + 970.3296508789062, + 904.1185302734375, + 788.7347412109375, + 819.8248291015625, + 764.8125, + 703.8380126953125, + 643.6402587890625, + 655.9825439453125, + 626.22802734375, + 554.0841064453125, + 491.410888671875, + 460.8373107910156, + 469.6185302734375, + 444.37481689453125, + 458.60406494140625, + 385.4984130859375, + 347.80828857421875, + 286.22076416015625, + 225.36782836914062, + 194.54800415039062, + 199.66741943359375, + 179.04348754882812, + 139.10731506347656, + 141.51913452148438, + 118.3496322631836, + 134.0090789794922, + 97.46809387207031, + 111.96473693847656, + 107.67585754394531, + 608.6614990234375, + 676.3133544921875, + 766.202392578125, + 808.6712646484375, + 798.7817993164062, + 855.998046875, + 980.4248046875, + 1063.7100830078125, + 1087.857421875, + 1036.2509765625, + 893.835693359375, + 833.8333740234375, + 906.795654296875, + 903.5198974609375, + 862.8009643554688, + 796.2174072265625, + 779.1874389648438, + 791.1912841796875, + 804.745849609375, + 735.2723388671875, + 661.7899169921875, + 689.9185180664062, + 655.0989990234375, + 690.418212890625, + 688.4488525390625, + 736.00341796875, + 722.4215087890625, + 827.0308837890625, + 853.2545166015625, + 939.2138671875, + 952.4083862304688, + 956.15771484375, + 934.689453125, + 966.29931640625, + 943.630126953125, + 956.3819580078125, + 919.4080200195312, + 795.4783935546875, + 845.9080200195312, + 846.3956298828125, + 840.5104370117188, + 763.0001220703125, + 689.2601318359375, + 639.7301025390625, + 654.666015625, + 589.07763671875, + 534.819580078125, + 499.9153137207031, + 494.5336608886719, + 479.64154052734375, + 464.59027099609375, + 411.2536315917969, + 375.3437805175781, + 278.724853515625, + 286.85601806640625, + 250.93463134765625, + 208.42161560058594, + 152.66456604003906, + 174.08584594726562, + 184.7972869873047, + 143.99362182617188, + 127.97561645507812, + 160.16073608398438, + 168.93946838378906, + 154.06689453125, + 658.4821166992188, + 692.3659057617188, + 743.0914306640625, + 747.9912719726562, + 787.709716796875, + 888.621826171875, + 1006.1978759765625, + 1015.9512939453125, + 1075.87548828125, + 1012.5487060546875, + 853.1817626953125, + 818.592041015625, + 895.9500732421875, + 880.7454833984375, + 876.9691162109375, + 852.8021240234375, + 776.806396484375, + 706.9735107421875, + 732.3806762695312, + 632.95068359375, + 652.5673828125, + 654.9448852539062, + 635.42529296875, + 624.2076416015625, + 642.3533935546875, + 723.9627685546875, + 725.97265625, + 850.97900390625, + 880.8741455078125, + 864.9942016601562, + 906.09326171875, + 900.5437622070312, + 893.5355834960938, + 893.0455932617188, + 896.1587524414062, + 862.7974853515625, + 820.7343139648438, + 833.00830078125, + 858.1983642578125, + 904.0359497070312, + 849.3866577148438, + 787.8084106445312, + 726.8011474609375, + 689.6356811523438, + 631.813232421875, + 605.8384399414062, + 570.179443359375, + 516.0335693359375, + 487.62567138671875, + 466.455810546875, + 469.9167785644531, + 397.2825927734375, + 374.98583984375, + 320.5347900390625, + 298.9205322265625, + 268.71075439453125, + 222.04200744628906, + 184.73068237304688, + 198.06094360351562, + 148.544921875, + 175.17945861816406, + 137.49610900878906, + 137.10043334960938, + 192.081298828125, + 200.91250610351562, + 701.0761108398438, + 730.49609375, + 763.96630859375, + 771.2987670898438, + 836.878662109375, + 924.154052734375, + 1018.9442138671875, + 1074.3597412109375, + 1056.52783203125, + 953.2713623046875, + 813.5875244140625, + 826.7837524414062, + 886.850341796875, + 870.030029296875, + 844.2474365234375, + 820.6197509765625, + 756.0858764648438, + 728.4854125976562, + 628.5424194335938, + 708.2265625, + 717.4024658203125, + 624.37353515625, + 619.649658203125, + 668.7611083984375, + 625.63232421875, + 702.4140625, + 732.3576049804688, + 770.7683715820312, + 857.6432495117188, + 902.134521484375, + 873.0226440429688, + 887.003662109375, + 895.4852294921875, + 965.7161865234375, + 941.7939453125, + 963.8951416015625, + 952.5830688476562, + 909.3214721679688, + 868.1002197265625, + 807.0660400390625, + 762.5975341796875, + 712.8873291015625, + 677.4193115234375, + 655.24609375, + 635.13134765625, + 601.9426879882812, + 581.32080078125, + 538.549560546875, + 491.1570129394531, + 467.9598388671875, + 429.74871826171875, + 407.473876953125, + 352.23974609375, + 353.4254150390625, + 299.58111572265625, + 268.91717529296875, + 233.47250366210938, + 235.53012084960938, + 179.8174285888672, + 231.69313049316406, + 228.50296020507812, + 192.68490600585938, + 165.86392211914062, + 158.0762939453125, + 194.31617736816406, + 797.0331420898438, + 809.3689575195312, + 808.9820556640625, + 803.3619384765625, + 848.178466796875, + 918.726806640625, + 963.1614379882812, + 1005.5888671875, + 954.3496704101562, + 837.4928588867188, + 846.88427734375, + 865.7628784179688, + 885.7388916015625, + 871.2210693359375, + 804.8153076171875, + 716.3785400390625, + 683.22998046875, + 682.4920654296875, + 557.8779296875, + 700.74609375, + 691.1788330078125, + 709.9384765625, + 663.1754150390625, + 714.5911865234375, + 786.7355346679688, + 737.761962890625, + 681.6942749023438, + 723.8910522460938, + 785.4613647460938, + 860.2562255859375, + 881.9984741210938, + 858.678955078125, + 855.0087890625, + 877.738037109375, + 970.4862060546875, + 1024.8016357421875, + 1005.3394165039062, + 974.2431640625, + 944.229736328125, + 904.9954833984375, + 851.1923828125, + 772.6134033203125, + 704.3214111328125, + 658.4005126953125, + 622.2321166992188, + 603.4872436523438, + 586.32080078125, + 528.9053344726562, + 483.1983642578125, + 494.9870300292969, + 459.3988342285156, + 440.9507751464844, + 394.05987548828125, + 309.3985595703125, + 303.9098815917969, + 337.27386474609375, + 277.5054626464844, + 213.857421875, + 224.58053588867188, + 239.32077026367188, + 262.5311279296875, + 249.00564575195312, + 222.13888549804688, + 178.93170166015625, + 188.73504638671875, + 920.4217529296875, + 911.4771728515625, + 873.0746459960938, + 831.94482421875, + 841.7657470703125, + 865.5230712890625, + 901.8619384765625, + 957.928955078125, + 1006.4468383789062, + 977.68017578125, + 962.2283325195312, + 903.6673583984375, + 840.0709228515625, + 861.509765625, + 739.01611328125, + 689.0000610351562, + 647.4507446289062, + 578.728271484375, + 597.983154296875, + 667.8837280273438, + 605.7235717773438, + 653.878662109375, + 664.0654907226562, + 682.6922607421875, + 792.857421875, + 710.5535888671875, + 657.9677734375, + 719.515380859375, + 780.7389526367188, + 768.7366943359375, + 806.9964599609375, + 811.3999633789062, + 833.305419921875, + 899.47802734375, + 895.4446411132812, + 999.3364868164062, + 1020.779052734375, + 996.7990112304688, + 972.4807739257812, + 956.6194458007812, + 901.8698120117188, + 802.1080932617188, + 728.2474365234375, + 686.43408203125, + 648.7931518554688, + 655.9931640625, + 629.7158203125, + 584.6366577148438, + 547.8231201171875, + 532.8178100585938, + 497.9302673339844, + 515.4901733398438, + 467.79315185546875, + 340.6197509765625, + 300.0249328613281, + 292.303466796875, + 276.68646240234375, + 221.57015991210938, + 219.59686279296875, + 258.8504943847656, + 281.2276306152344, + 296.12982177734375, + 273.252197265625, + 223.75692749023438, + 236.95907592773438, + 991.3154296875, + 997.5761108398438, + 939.2093505859375, + 861.1669921875, + 845.2476806640625, + 896.1642456054688, + 981.482666015625, + 1076.892578125, + 1134.509033203125, + 1117.1025390625, + 1084.39892578125, + 945.632080078125, + 786.2127075195312, + 708.4771118164062, + 724.214599609375, + 654.515869140625, + 620.7723999023438, + 560.4087524414062, + 610.3103637695312, + 609.9927978515625, + 568.008056640625, + 616.5465087890625, + 645.320556640625, + 670.3056030273438, + 744.45947265625, + 685.0894775390625, + 672.5020751953125, + 699.78759765625, + 718.2899780273438, + 831.5211181640625, + 875.91845703125, + 854.62890625, + 849.2689208984375, + 916.9990844726562, + 900.8853759765625, + 972.2160034179688, + 990.8104248046875, + 987.0611572265625, + 987.3773193359375, + 962.9901123046875, + 912.1947631835938, + 802.0311279296875, + 746.4108276367188, + 727.0712890625, + 724.2940063476562, + 742.7925415039062, + 734.9656372070312, + 674.7516479492188, + 612.2451782226562, + 568.8839111328125, + 568.912353515625, + 526.2393188476562, + 441.02374267578125, + 384.3744201660156, + 357.5123291015625, + 285.36309814453125, + 306.4461669921875, + 265.7353515625, + 194.71978759765625, + 227.79519653320312, + 260.4527282714844, + 288.2624816894531, + 286.2498779296875, + 251.12107849121094, + 247.1981201171875, + 1029.909912109375, + 1037.47021484375, + 997.6990966796875, + 904.3912353515625, + 849.6008911132812, + 931.0883178710938, + 1026.22216796875, + 1139.8626708984375, + 1187.206298828125, + 1171.3818359375, + 1071.3922119140625, + 967.525390625, + 786.41162109375, + 670.8320922851562, + 633.718505859375, + 577.29296875, + 561.4364013671875, + 564.7592163085938, + 584.7047729492188, + 609.0657348632812, + 532.1015625, + 589.20703125, + 727.0604248046875, + 798.3840942382812, + 794.4608154296875, + 730.60400390625, + 682.7111206054688, + 718.7365112304688, + 798.0336303710938, + 849.3291015625, + 819.1753540039062, + 824.325439453125, + 888.4637451171875, + 913.4390869140625, + 908.1254272460938, + 973.626708984375, + 1013.07373046875, + 990.620361328125, + 944.92333984375, + 927.1929321289062, + 926.4664306640625, + 832.5222778320312, + 766.7369384765625, + 752.1332397460938, + 786.6994018554688, + 827.2523193359375, + 814.2088623046875, + 739.3120727539062, + 656.80615234375, + 609.695068359375, + 557.724365234375, + 523.6273803710938, + 434.3763732910156, + 408.689453125, + 349.8309020996094, + 287.50177001953125, + 267.0882873535156, + 302.32928466796875, + 235.47109985351562, + 197.390869140625, + 238.57254028320312, + 273.86962890625, + 268.03558349609375, + 276.6899719238281, + 277.93731689453125, + 1036.1463623046875, + 1010.796142578125, + 995.34375, + 944.4381713867188, + 909.6419067382812, + 920.617919921875, + 1017.9118041992188, + 1100.32763671875, + 1128.3399658203125, + 1064.997314453125, + 925.7620849609375, + 906.4459838867188, + 792.4122924804688, + 666.888916015625, + 662.5615234375, + 602.4563598632812, + 565.08935546875, + 574.930419921875, + 641.8795166015625, + 596.079345703125, + 592.9825439453125, + 655.5499267578125, + 795.7653198242188, + 866.17822265625, + 844.1995849609375, + 770.1360473632812, + 706.2933959960938, + 769.188232421875, + 804.162841796875, + 735.46923828125, + 839.5992431640625, + 868.1600341796875, + 856.8626708984375, + 894.1741943359375, + 896.8170166015625, + 1011.7559814453125, + 1002.52783203125, + 963.4686889648438, + 971.3424072265625, + 979.887451171875, + 933.1577758789062, + 856.3611450195312, + 787.9496459960938, + 781.0646362304688, + 835.2003784179688, + 770.3656005859375, + 786.1837768554688, + 705.4978637695312, + 648.15625, + 568.5917358398438, + 491.9612121582031, + 461.39727783203125, + 476.344970703125, + 438.81640625, + 330.20892333984375, + 336.2808837890625, + 273.57940673828125, + 296.56768798828125, + 261.400146484375, + 215.01043701171875, + 224.50225830078125, + 257.10015869140625, + 274.3645935058594, + 262.37237548828125, + 246.94618225097656, + 1059.7353515625, + 1053.744873046875, + 1030.02978515625, + 990.9188232421875, + 954.981201171875, + 904.1611328125, + 980.2373046875, + 1047.0103759765625, + 1034.45458984375, + 957.7092895507812, + 943.0777587890625, + 859.2124633789062, + 767.964111328125, + 669.2015991210938, + 634.4539794921875, + 587.3516845703125, + 660.255615234375, + 615.64404296875, + 615.019287109375, + 626.2764282226562, + 620.9147338867188, + 691.3975219726562, + 761.8571166992188, + 792.950439453125, + 721.0045776367188, + 786.9051513671875, + 777.90966796875, + 832.609130859375, + 780.6718139648438, + 731.4050903320312, + 811.94287109375, + 764.0101928710938, + 840.0693359375, + 832.6630859375, + 905.8470458984375, + 942.908447265625, + 993.4628295898438, + 1005.9442138671875, + 973.9210815429688, + 948.3192749023438, + 896.489013671875, + 835.6458740234375, + 801.2327880859375, + 796.4403076171875, + 827.635009765625, + 742.9932861328125, + 757.7247314453125, + 735.08837890625, + 690.5374755859375, + 558.6137084960938, + 523.1709594726562, + 472.5343017578125, + 452.03558349609375, + 420.9280090332031, + 364.93927001953125, + 298.83929443359375, + 302.26153564453125, + 298.16937255859375, + 286.6279296875, + 247.32342529296875, + 221.84384155273438, + 241.1397705078125, + 239.39773559570312, + 273.27044677734375, + 321.2173156738281, + 1024.52197265625, + 1012.7034912109375, + 1005.2698364257812, + 981.6448364257812, + 942.4613647460938, + 888.068359375, + 949.35009765625, + 988.7763671875, + 880.857421875, + 853.5292358398438, + 819.6229248046875, + 765.849365234375, + 732.8704833984375, + 678.1495361328125, + 719.9498291015625, + 606.0999755859375, + 604.0897216796875, + 593.2182006835938, + 610.5648193359375, + 610.6908569335938, + 628.673583984375, + 710.732177734375, + 748.0242919921875, + 715.2122802734375, + 742.3141479492188, + 758.867431640625, + 759.3321533203125, + 766.644287109375, + 740.5795288085938, + 728.2702026367188, + 748.5902099609375, + 786.6118774414062, + 841.25439453125, + 862.8497314453125, + 880.9881591796875, + 896.0953369140625, + 925.80078125, + 962.487548828125, + 919.60302734375, + 904.06201171875, + 881.63916015625, + 836.7271118164062, + 800.8961181640625, + 797.7490844726562, + 833.1170043945312, + 768.5946655273438, + 705.919189453125, + 707.12841796875, + 692.5313110351562, + 580.6166381835938, + 538.58203125, + 502.01300048828125, + 506.4168701171875, + 436.5397644042969, + 371.8233337402344, + 299.56646728515625, + 317.52447509765625, + 292.71990966796875, + 285.8079833984375, + 259.3616638183594, + 243.73831176757812, + 253.69906616210938, + 286.5241394042969, + 333.8110046386719, + 370.9122009277344, + 951.0399169921875, + 934.7994995117188, + 923.7930908203125, + 924.283935546875, + 933.5242919921875, + 892.6438598632812, + 877.0555419921875, + 949.9338989257812, + 952.509765625, + 927.1580810546875, + 917.6564331054688, + 837.142822265625, + 828.427734375, + 708.18896484375, + 723.9727172851562, + 636.969970703125, + 640.14404296875, + 581.5216064453125, + 625.5274658203125, + 696.77392578125, + 673.3948974609375, + 735.4014892578125, + 766.0110473632812, + 735.1084594726562, + 778.60693359375, + 772.5279541015625, + 718.5005493164062, + 690.4757080078125, + 721.955078125, + 735.451416015625, + 763.46728515625, + 784.52099609375, + 869.657470703125, + 903.35400390625, + 950.0836181640625, + 917.9400634765625, + 891.4600830078125, + 901.0000610351562, + 876.4569091796875, + 869.89013671875, + 865.141357421875, + 841.95361328125, + 804.25439453125, + 806.3821411132812, + 835.3621826171875, + 780.7133178710938, + 741.1298828125, + 724.8663330078125, + 633.7706298828125, + 553.6520385742188, + 527.432373046875, + 523.2451171875, + 461.0106201171875, + 443.02130126953125, + 369.5509948730469, + 317.86944580078125, + 299.97796630859375, + 291.24267578125, + 270.39227294921875, + 260.83807373046875, + 255.3074188232422, + 273.2417907714844, + 309.51104736328125, + 356.01031494140625, + 394.39990234375, + 935.439697265625, + 943.228515625, + 990.7037353515625, + 911.4052124023438, + 912.993408203125, + 878.7450561523438, + 891.2396240234375, + 991.5061645507812, + 982.4193115234375, + 979.970703125, + 986.52783203125, + 913.762939453125, + 811.4998779296875, + 732.6119384765625, + 688.3028564453125, + 637.2815551757812, + 603.696044921875, + 626.2210083007812, + 697.095458984375, + 726.204345703125, + 676.088134765625, + 737.5374755859375, + 754.274169921875, + 770.1597900390625, + 740.2236938476562, + 700.1536865234375, + 703.068115234375, + 768.0607299804688, + 714.0732421875, + 767.0389404296875, + 743.7154541015625, + 792.6026611328125, + 939.3859252929688, + 955.75244140625, + 948.86767578125, + 924.615478515625, + 898.655517578125, + 889.375244140625, + 871.1534423828125, + 862.255615234375, + 833.4466552734375, + 812.8970947265625, + 789.0061645507812, + 780.0889892578125, + 779.5296630859375, + 770.616943359375, + 751.96337890625, + 686.83154296875, + 626.3963012695312, + 514.1370239257812, + 500.1307373046875, + 498.3355712890625, + 475.29071044921875, + 451.78643798828125, + 384.91302490234375, + 346.3052978515625, + 324.6156921386719, + 293.961181640625, + 277.76727294921875, + 269.42071533203125, + 265.60858154296875, + 283.98211669921875, + 315.7060546875, + 355.41815185546875, + 394.58270263671875, + 990.2723388671875, + 1016.3606567382812, + 969.6385498046875, + 867.3697509765625, + 883.7467651367188, + 913.8976440429688, + 945.318603515625, + 969.4555053710938, + 981.076416015625, + 933.8409423828125, + 904.600341796875, + 919.843505859375, + 837.0490112304688, + 722.3942260742188, + 664.9090576171875, + 650.483154296875, + 657.214599609375, + 704.0906372070312, + 752.2379150390625, + 745.56201171875, + 706.8412475585938, + 679.9591064453125, + 670.0399169921875, + 674.7020263671875, + 667.3775024414062, + 624.3275146484375, + 772.1904907226562, + 859.595947265625, + 794.9339599609375, + 762.0482177734375, + 737.6400146484375, + 770.6559448242188, + 902.1097412109375, + 913.7237548828125, + 926.5145263671875, + 958.146240234375, + 922.887451171875, + 886.27294921875, + 866.504638671875, + 860.6339111328125, + 880.2227783203125, + 860.36474609375, + 845.233642578125, + 811.720703125, + 761.7674560546875, + 702.8015747070312, + 652.8036499023438, + 610.4559326171875, + 565.578125, + 529.458740234375, + 524.4607543945312, + 553.40625, + 562.8960571289062, + 502.3434753417969, + 423.1978759765625, + 344.90716552734375, + 332.740478515625, + 306.1424865722656, + 287.51953125, + 268.1211853027344, + 276.83135986328125, + 292.62518310546875, + 317.2608642578125, + 352.9835510253906, + 401.6346130371094, + 1002.734130859375, + 1029.7452392578125, + 1003.3512573242188, + 919.0447387695312, + 876.4412231445312, + 909.416748046875, + 954.3359375, + 931.9505615234375, + 1013.943115234375, + 1030.8919677734375, + 922.827392578125, + 828.72412109375, + 853.1578369140625, + 831.8462524414062, + 773.5296630859375, + 706.3915405273438, + 674.4649047851562, + 733.232666015625, + 714.6694946289062, + 688.3411865234375, + 620.7990112304688, + 584.9195556640625, + 580.222412109375, + 569.2791748046875, + 621.13134765625, + 720.0142822265625, + 834.5701293945312, + 871.35791015625, + 795.7430419921875, + 754.3662109375, + 754.86181640625, + 789.8800048828125, + 848.2298583984375, + 876.016845703125, + 868.5654296875, + 933.336669921875, + 927.5595092773438, + 922.6517333984375, + 897.799560546875, + 901.5809326171875, + 933.699951171875, + 934.85693359375, + 914.78564453125, + 896.9298095703125, + 859.4156494140625, + 705.64453125, + 617.375244140625, + 579.8958129882812, + 555.0645141601562, + 550.128662109375, + 556.56884765625, + 579.140869140625, + 573.8125610351562, + 472.53448486328125, + 414.8393859863281, + 395.9436950683594, + 347.7754211425781, + 302.013671875, + 286.95697021484375, + 284.04302978515625, + 289.09149169921875, + 305.4567565917969, + 333.4748229980469, + 373.9135437011719, + 433.95062255859375, + 1035.2646484375, + 1059.4619140625, + 1054.9093017578125, + 1003.0885009765625, + 913.6368408203125, + 933.0751953125, + 988.5153198242188, + 935.4556884765625, + 979.8311767578125, + 987.76416015625, + 972.63671875, + 908.6680908203125, + 790.6845092773438, + 798.8106689453125, + 794.8924560546875, + 708.35546875, + 715.2893676757812, + 704.671875, + 684.9754028320312, + 710.2982788085938, + 729.9552001953125, + 724.7010498046875, + 702.090576171875, + 690.96826171875, + 743.7969360351562, + 804.5806884765625, + 890.07177734375, + 915.0585327148438, + 830.0488891601562, + 805.390869140625, + 775.9461669921875, + 810.1358032226562, + 811.14306640625, + 868.957763671875, + 868.90478515625, + 929.494384765625, + 935.00537109375, + 915.2130737304688, + 889.5113525390625, + 927.9481201171875, + 958.0108642578125, + 982.8795166015625, + 961.5779418945312, + 943.8236694335938, + 800.5806274414062, + 667.2526245117188, + 641.6331176757812, + 617.1580810546875, + 641.5751953125, + 608.2039794921875, + 577.3431396484375, + 590.8857421875, + 530.5294189453125, + 463.28955078125, + 382.7960510253906, + 404.8855895996094, + 357.43157958984375, + 314.29931640625, + 301.37969970703125, + 293.79302978515625, + 296.27197265625, + 318.0642395019531, + 351.6009521484375, + 391.728271484375, + 442.3535461425781, + 988.7578125, + 1089.9549560546875, + 1085.282958984375, + 1027.607177734375, + 934.4561767578125, + 927.9241943359375, + 927.5866088867188, + 965.6873779296875, + 919.2503662109375, + 899.5245361328125, + 892.9049682617188, + 965.8226318359375, + 915.9105224609375, + 811.987548828125, + 770.8505859375, + 743.3590087890625, + 742.0343017578125, + 722.4283447265625, + 802.447998046875, + 784.6428833007812, + 774.6515502929688, + 744.4258422851562, + 757.449462890625, + 757.0480346679688, + 794.522705078125, + 859.9873657226562, + 931.3134765625, + 919.815185546875, + 846.734619140625, + 795.9862060546875, + 800.5502319335938, + 815.2816162109375, + 834.1494140625, + 860.303466796875, + 869.4022827148438, + 927.538330078125, + 950.7769165039062, + 945.6397094726562, + 943.36865234375, + 979.7099609375, + 1002.6386108398438, + 996.8059692382812, + 966.04931640625, + 899.8530883789062, + 717.1815795898438, + 723.5712890625, + 689.4007568359375, + 677.50732421875, + 694.2324829101562, + 607.8372802734375, + 564.643798828125, + 547.2025146484375, + 511.7863464355469, + 420.1087951660156, + 374.7259521484375, + 356.6077880859375, + 361.0193176269531, + 368.197509765625, + 346.245361328125, + 328.41851806640625, + 314.38836669921875, + 312.6389465332031, + 350.7315673828125, + 386.62109375, + 439.9094543457031, + 1017.895751953125, + 1088.694091796875, + 1084.357421875, + 1000.23583984375, + 1030.7872314453125, + 916.7371826171875, + 926.2730102539062, + 874.1689453125, + 846.6348876953125, + 840.6273193359375, + 821.1034545898438, + 827.7108154296875, + 811.86474609375, + 773.4034423828125, + 778.2864379882812, + 742.1630249023438, + 773.8299560546875, + 790.4354248046875, + 863.584716796875, + 814.3201293945312, + 757.0408325195312, + 712.480224609375, + 721.1790771484375, + 756.06201171875, + 807.1126708984375, + 886.238037109375, + 956.181640625, + 905.03857421875, + 809.888916015625, + 774.7443237304688, + 780.16796875, + 791.9686279296875, + 824.1356201171875, + 852.4170532226562, + 895.7540283203125, + 986.0177001953125, + 1008.8931274414062, + 1028.880859375, + 1000.442626953125, + 929.00048828125, + 982.251708984375, + 966.6038208007812, + 949.15869140625, + 823.7459716796875, + 717.0319213867188, + 710.002685546875, + 726.9154052734375, + 660.656982421875, + 642.0238037109375, + 607.528564453125, + 564.5289916992188, + 508.3099365234375, + 462.31744384765625, + 452.93695068359375, + 406.46844482421875, + 334.730224609375, + 359.32159423828125, + 405.19720458984375, + 403.16973876953125, + 380.77020263671875, + 359.89306640625, + 343.94268798828125, + 341.88775634765625, + 399.0216064453125, + 422.56396484375, + 955.2520141601562, + 1101.1351318359375, + 1130.555419921875, + 1018.54833984375, + 1054.546875, + 1075.4677734375, + 973.811279296875, + 936.8901977539062, + 901.0426025390625, + 917.9996337890625, + 815.10400390625, + 800.4418334960938, + 811.917724609375, + 851.8155517578125, + 820.4376831054688, + 760.844970703125, + 816.16259765625, + 782.8289184570312, + 838.4069213867188, + 786.556884765625, + 740.1478271484375, + 750.4627685546875, + 720.43359375, + 729.8566284179688, + 778.87646484375, + 894.0714111328125, + 995.0987548828125, + 935.6761474609375, + 815.197509765625, + 775.1812744140625, + 798.6507568359375, + 812.289306640625, + 846.0096435546875, + 884.7027587890625, + 961.9227294921875, + 1045.69580078125, + 1074.9764404296875, + 1052.2952880859375, + 959.829833984375, + 925.183349609375, + 913.24072265625, + 854.539306640625, + 801.8678588867188, + 706.9434814453125, + 757.0115966796875, + 717.6183471679688, + 650.3690795898438, + 631.2598876953125, + 598.4439086914062, + 576.638671875, + 489.4390869140625, + 457.2077941894531, + 428.84222412109375, + 444.784912109375, + 353.04449462890625, + 361.45074462890625, + 379.7161560058594, + 415.874267578125, + 402.5580139160156, + 351.94781494140625, + 390.5726013183594, + 372.58575439453125, + 350.85003662109375, + 380.4631652832031, + 419.59747314453125, + 1011.32080078125, + 1156.0946044921875, + 1162.986083984375, + 1086.4986572265625, + 1023.1588745117188, + 992.7171630859375, + 1045.3624267578125, + 981.3917236328125, + 905.1375732421875, + 874.62451171875, + 885.8424072265625, + 835.4833984375, + 904.0194702148438, + 919.9269409179688, + 875.8267822265625, + 839.7261962890625, + 857.317138671875, + 818.5352172851562, + 810.126708984375, + 816.4159545898438, + 835.7050170898438, + 851.40869140625, + 831.031494140625, + 785.947265625, + 793.6288452148438, + 876.0457153320312, + 944.6102905273438, + 920.5909423828125, + 811.9024047851562, + 824.9066162109375, + 785.60205078125, + 838.278564453125, + 891.9586181640625, + 970.6728515625, + 1023.9612426757812, + 1071.1005859375, + 1086.894287109375, + 1061.543701171875, + 943.241943359375, + 848.5476684570312, + 806.1785278320312, + 841.2440185546875, + 747.0138549804688, + 752.4981689453125, + 725.6178588867188, + 789.980224609375, + 744.5572509765625, + 631.5482177734375, + 585.0733032226562, + 570.388427734375, + 509.0654296875, + 429.8836975097656, + 440.22991943359375, + 412.2010498046875, + 347.44140625, + 314.11639404296875, + 302.6457824707031, + 361.31048583984375, + 352.923828125, + 325.39422607421875, + 310.09954833984375, + 318.07818603515625, + 337.0166015625, + 362.0140686035156, + 379.25445556640625, + 1056.8623046875, + 1079.9495849609375, + 1103.010498046875, + 1051.12255859375, + 1030.254638671875, + 1036.00146484375, + 1039.6669921875, + 1019.0836181640625, + 876.9458618164062, + 860.6560668945312, + 858.065185546875, + 895.4757690429688, + 972.7352294921875, + 936.2453002929688, + 928.8672485351562, + 872.7491455078125, + 921.3975830078125, + 922.4005126953125, + 825.6283569335938, + 858.649169921875, + 877.977294921875, + 882.8662109375, + 864.750732421875, + 830.9161376953125, + 822.87744140625, + 886.7456665039062, + 926.2715454101562, + 926.157470703125, + 798.3987426757812, + 811.5870361328125, + 870.1234130859375, + 916.4722900390625, + 938.8153076171875, + 1024.6578369140625, + 1005.7799072265625, + 1033.2493896484375, + 1068.0029296875, + 1056.592041015625, + 941.796875, + 844.194091796875, + 813.98095703125, + 817.106689453125, + 748.6741333007812, + 777.111572265625, + 777.103271484375, + 801.1585083007812, + 778.507080078125, + 687.9807739257812, + 599.5842895507812, + 557.9080810546875, + 492.0836181640625, + 445.9728088378906, + 410.4692077636719, + 388.85882568359375, + 352.2918395996094, + 336.4318542480469, + 324.68359375, + 327.79742431640625, + 285.98956298828125, + 269.4367980957031, + 281.89215087890625, + 289.23175048828125, + 301.7955322265625, + 329.0291748046875, + 358.8260803222656, + 1039.12353515625, + 1057.29736328125, + 1071.18115234375, + 1028.6981201171875, + 1022.4996948242188, + 994.9749755859375, + 1008.9093627929688, + 965.0953979492188, + 972.0330810546875, + 929.9591064453125, + 944.46728515625, + 968.2942504882812, + 963.77685546875, + 970.0443115234375, + 972.6270751953125, + 901.4772338867188, + 910.1751098632812, + 931.3397216796875, + 836.8530883789062, + 844.4788818359375, + 858.62451171875, + 878.20703125, + 889.89501953125, + 868.224365234375, + 874.38623046875, + 875.517333984375, + 881.9977416992188, + 845.6038818359375, + 784.2943725585938, + 831.5675659179688, + 876.8599853515625, + 1005.2750244140625, + 1080.7130126953125, + 1017.8037109375, + 968.3565673828125, + 983.4722290039062, + 986.7205200195312, + 958.985595703125, + 890.0574951171875, + 864.3024291992188, + 807.711181640625, + 759.3969116210938, + 799.6151123046875, + 766.4842529296875, + 817.32568359375, + 812.3510131835938, + 777.64990234375, + 708.3218383789062, + 662.0235595703125, + 616.7496337890625, + 535.65087890625, + 491.443359375, + 466.3262939453125, + 397.39569091796875, + 367.03216552734375, + 358.9220886230469, + 334.07147216796875, + 304.8589172363281, + 274.7429504394531, + 288.3066101074219, + 282.9263610839844, + 279.604248046875, + 298.7305908203125, + 298.6585998535156, + 318.80810546875, + 1029.98828125, + 1039.0228271484375, + 1082.6448974609375, + 1064.1331787109375, + 1054.626220703125, + 982.0081176757812, + 1031.0028076171875, + 966.7386474609375, + 934.9837646484375, + 961.8185424804688, + 950.5643310546875, + 970.591064453125, + 1003.098388671875, + 1019.491455078125, + 978.26708984375, + 977.642333984375, + 952.8456420898438, + 980.84326171875, + 907.1904296875, + 836.8388671875, + 865.2916259765625, + 871.1483154296875, + 895.0888671875, + 916.348876953125, + 909.8607177734375, + 884.3693237304688, + 902.2457275390625, + 853.5907592773438, + 830.9500732421875, + 889.4996337890625, + 929.75732421875, + 1042.5885009765625, + 1038.4393310546875, + 994.903564453125, + 920.0499877929688, + 900.3529663085938, + 891.8431396484375, + 898.0791015625, + 860.705810546875, + 812.4493408203125, + 776.8409423828125, + 779.373046875, + 796.8887939453125, + 791.0670166015625, + 807.8143920898438, + 783.9278564453125, + 744.0776977539062, + 702.7464599609375, + 661.1947021484375, + 601.9639892578125, + 542.9212036132812, + 490.307861328125, + 459.73089599609375, + 406.46075439453125, + 351.61773681640625, + 379.58721923828125, + 345.85333251953125, + 301.42962646484375, + 299.80499267578125, + 267.7897644042969, + 291.9007568359375, + 295.3714599609375, + 268.2334289550781, + 288.7213134765625, + 274.49224853515625, + 1026.212646484375, + 989.397705078125, + 1052.47802734375, + 1077.191162109375, + 1082.880126953125, + 1013.0148315429688, + 1048.275146484375, + 1048.029296875, + 1011.0614013671875, + 934.9605712890625, + 935.5974731445312, + 988.8097534179688, + 998.875732421875, + 1026.075439453125, + 1074.087158203125, + 1091.904296875, + 1051.7862548828125, + 1061.6690673828125, + 1028.531982421875, + 981.7576293945312, + 873.2322998046875, + 890.4205322265625, + 918.3179931640625, + 950.0577392578125, + 951.7032470703125, + 908.9326171875, + 896.6290283203125, + 856.5771484375, + 889.995849609375, + 978.4371948242188, + 1106.426025390625, + 1040.7569580078125, + 993.823486328125, + 950.2554931640625, + 887.4962158203125, + 864.4877319335938, + 866.9749755859375, + 859.8367919921875, + 822.7660522460938, + 782.7112426757812, + 827.71923828125, + 765.68896484375, + 740.540771484375, + 775.2332153320312, + 782.2736206054688, + 766.0355224609375, + 642.046142578125, + 605.7657470703125, + 563.4952392578125, + 521.498046875, + 474.32110595703125, + 481.8233642578125, + 423.2501525878906, + 405.51324462890625, + 348.379638671875, + 368.165771484375, + 327.1151123046875, + 291.26861572265625, + 285.5548095703125, + 289.0916748046875, + 304.7018737792969, + 292.9453125, + 263.94696044921875, + 289.287109375, + 237.77871704101562, + 995.3125610351562, + 1002.3961791992188, + 1029.5535888671875, + 1098.1051025390625, + 1169.622802734375, + 1104.9964599609375, + 1054.62255859375, + 1055.6165771484375, + 996.9649658203125, + 921.8447265625, + 960.259521484375, + 934.7001953125, + 939.273681640625, + 1000.2955932617188, + 1035.1651611328125, + 1065.8026123046875, + 1107.333984375, + 1059.195068359375, + 994.7230224609375, + 981.1998901367188, + 982.1185302734375, + 915.85302734375, + 948.680419921875, + 899.0020141601562, + 929.6648559570312, + 921.4971923828125, + 919.302001953125, + 879.8072509765625, + 948.1031494140625, + 1044.7056884765625, + 1069.891357421875, + 1067.5343017578125, + 966.626708984375, + 902.40087890625, + 851.82666015625, + 858.2453002929688, + 849.1451416015625, + 843.9322509765625, + 783.871337890625, + 785.35595703125, + 796.3543701171875, + 753.5013427734375, + 710.18505859375, + 724.850830078125, + 764.4686279296875, + 673.6349487304688, + 632.0987548828125, + 582.0354614257812, + 528.6107788085938, + 549.3638916015625, + 545.3084716796875, + 524.295654296875, + 432.559814453125, + 380.7550354003906, + 372.37176513671875, + 378.21221923828125, + 358.43084716796875, + 300.3711242675781, + 274.9053039550781, + 267.5476989746094, + 259.0818786621094, + 270.46539306640625, + 290.687255859375, + 267.0946960449219, + 210.96871948242188, + 961.51220703125, + 1037.7669677734375, + 1110.9298095703125, + 1198.520751953125, + 1186.655517578125, + 1115.471923828125, + 1078.6116943359375, + 1003.3656005859375, + 986.0064086914062, + 931.5995483398438, + 919.5512084960938, + 965.57177734375, + 945.9700927734375, + 993.169677734375, + 985.131103515625, + 986.0560302734375, + 1019.387451171875, + 1042.9263916015625, + 928.604736328125, + 867.07177734375, + 877.8482055664062, + 882.5191650390625, + 873.4510498046875, + 950.4495239257812, + 924.4119262695312, + 899.7357177734375, + 934.8011474609375, + 913.7427368164062, + 986.8197021484375, + 1001.5623168945312, + 1065.4495849609375, + 1032.908203125, + 951.2342529296875, + 884.1373291015625, + 834.7612915039062, + 836.8270874023438, + 829.1405029296875, + 828.1956787109375, + 815.7871704101562, + 769.7100830078125, + 753.5733642578125, + 727.6357421875, + 698.3084716796875, + 712.277099609375, + 737.02490234375, + 692.137451171875, + 651.298828125, + 595.0941772460938, + 552.551025390625, + 566.4937744140625, + 564.6139526367188, + 490.9257507324219, + 423.1260986328125, + 379.6310119628906, + 344.1683349609375, + 380.3481750488281, + 357.9769287109375, + 317.9704284667969, + 263.00994873046875, + 300.1867980957031, + 264.029296875, + 262.61297607421875, + 238.8048858642578, + 218.70745849609375, + 166.35519409179688, + 1023.496826171875, + 1123.1619873046875, + 1180.967529296875, + 1227.75244140625, + 1148.3740234375, + 1143.15576171875, + 1075.0867919921875, + 999.06640625, + 980.154296875, + 964.4886474609375, + 917.8340454101562, + 897.7445068359375, + 921.9017333984375, + 948.4310302734375, + 938.5297241210938, + 949.8201904296875, + 990.9051513671875, + 984.61328125, + 904.2743530273438, + 842.189697265625, + 827.75830078125, + 811.1591796875, + 867.9273681640625, + 925.83837890625, + 900.527587890625, + 911.2495727539062, + 893.39501953125, + 901.74560546875, + 979.2559814453125, + 947.710205078125, + 1027.9329833984375, + 960.5264892578125, + 893.049560546875, + 824.6688232421875, + 795.669189453125, + 805.4607543945312, + 821.0646362304688, + 778.5379638671875, + 775.8060302734375, + 750.3648681640625, + 709.341796875, + 701.1009521484375, + 703.2880859375, + 716.74755859375, + 710.4569091796875, + 685.61279296875, + 627.1844482421875, + 561.065185546875, + 583.710205078125, + 557.2936401367188, + 543.5811767578125, + 503.70208740234375, + 441.7987060546875, + 347.076171875, + 333.864990234375, + 353.1102600097656, + 311.23785400390625, + 299.33154296875, + 289.46630859375, + 314.97979736328125, + 289.9338073730469, + 239.05897521972656, + 209.74212646484375, + 161.1190185546875, + 101.84719848632812, + 1001.038818359375, + 1145.106689453125, + 1217.8006591796875, + 1225.4625244140625, + 1155.063720703125, + 1131.3349609375, + 1060.310546875, + 972.85986328125, + 982.024658203125, + 928.3446044921875, + 945.7562255859375, + 904.22509765625, + 883.4017944335938, + 909.837158203125, + 918.01025390625, + 945.3128662109375, + 966.1918334960938, + 911.91943359375, + 899.3781127929688, + 823.5504150390625, + 804.7415161132812, + 808.77783203125, + 850.0604858398438, + 842.3953247070312, + 826.7354736328125, + 836.9239501953125, + 846.72705078125, + 836.812744140625, + 878.7113647460938, + 896.2286987304688, + 937.9219970703125, + 918.9654541015625, + 828.084716796875, + 779.6150512695312, + 799.8836669921875, + 778.0521240234375, + 772.751220703125, + 756.038330078125, + 738.861572265625, + 718.8030395507812, + 701.0248413085938, + 684.5250244140625, + 701.0943603515625, + 707.5216064453125, + 690.4119873046875, + 684.4033813476562, + 620.803955078125, + 532.588623046875, + 594.1488037109375, + 565.7753295898438, + 528.63818359375, + 496.5291442871094, + 413.1945495605469, + 338.73150634765625, + 331.8113098144531, + 329.0013427734375, + 298.35174560546875, + 274.604736328125, + 300.3818359375, + 295.1968994140625, + 257.39971923828125, + 250.11135864257812, + 204.28387451171875, + 132.77806091308594, + 43.84565734863281, + 971.32470703125, + 1136.47900390625, + 1178.471435546875, + 1176.432373046875, + 1091.5166015625, + 1042.435791015625, + 1032.5439453125, + 944.6516723632812, + 918.1643676757812, + 875.1256103515625, + 888.746337890625, + 985.7220458984375, + 925.995849609375, + 898.2752685546875, + 912.8224487304688, + 931.61328125, + 938.8666381835938, + 942.3114013671875, + 880.7982177734375, + 846.117919921875, + 901.3125, + 818.0001220703125, + 808.29052734375, + 848.0697631835938, + 860.6739501953125, + 838.526123046875, + 859.2139282226562, + 843.9458618164062, + 768.83349609375, + 789.4759521484375, + 804.415283203125, + 868.513427734375, + 781.2709350585938, + 786.4744873046875, + 797.637451171875, + 778.697021484375, + 761.7191162109375, + 706.1625366210938, + 663.6319580078125, + 720.6552734375, + 712.0992431640625, + 669.4585571289062, + 636.989501953125, + 654.02392578125, + 653.8992919921875, + 631.59912109375, + 580.6654052734375, + 565.4306640625, + 581.8447265625, + 578.25439453125, + 505.21484375, + 434.6168212890625, + 371.70233154296875, + 327.23907470703125, + 333.4312744140625, + 337.7410888671875, + 321.5717468261719, + 285.659912109375, + 268.482177734375, + 280.0838317871094, + 235.01004028320312, + 268.3654479980469, + 213.12071228027344, + 106.662353515625, + 32.5288200378418, + 994.3278198242188, + 1163.91455078125, + 1198.02099609375, + 1212.9161376953125, + 1073.526611328125, + 1005.1471557617188, + 880.0315551757812, + 860.306396484375, + 823.5440673828125, + 826.7774658203125, + 870.67822265625, + 909.2013549804688, + 958.8758544921875, + 935.1301879882812, + 871.561767578125, + 855.5756225585938, + 865.9954223632812, + 873.427734375, + 824.1689453125, + 854.2506103515625, + 899.773193359375, + 809.5055541992188, + 768.134033203125, + 821.3851318359375, + 846.4862670898438, + 854.3663330078125, + 881.6640625, + 845.150146484375, + 782.1640625, + 725.7457885742188, + 723.9879760742188, + 796.6119384765625, + 741.0003051757812, + 802.3252563476562, + 814.830810546875, + 768.2052001953125, + 752.67431640625, + 675.08740234375, + 631.1572875976562, + 709.0415649414062, + 714.3284301757812, + 705.260009765625, + 671.6694946289062, + 658.577880859375, + 601.9992065429688, + 571.0966796875, + 548.9080810546875, + 566.59765625, + 539.6805419921875, + 540.5424194335938, + 489.0879211425781, + 422.6931457519531, + 365.0707702636719, + 323.9566955566406, + 362.77496337890625, + 372.32513427734375, + 304.5388488769531, + 260.2606201171875, + 254.93173217773438, + 253.61468505859375, + 264.75701904296875, + 227.1967315673828, + 243.54103088378906, + 164.40965270996094, + 96.44994354248047 + ], + "cliffiness": [ + 1.5, + 1.3966147899627686, + 0.9122244715690613, + 0.7071651220321655, + 0.8238357901573181, + 1.1287994384765625, + 1.414075255393982, + 1.4765136241912842, + 1.1938647031784058, + 0.6164506673812866, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.789689302444458, + 1.1524734497070312, + 1.2662389278411865, + 1.11542809009552, + 0.8041213154792786, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8723978996276855, + 1.3376679420471191, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2288463115692139, + 0.7644194960594177, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7466225028038025, + 1.0263261795043945, + 1.3281514644622803, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.449819564819336, + 0.9379554986953735, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.0441687107086182, + 0.8200753927230835, + 0.9133272171020508, + 1.194821834564209, + 1.4626299142837524, + 1.5, + 1.2245663404464722, + 0.6291791200637817, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8082287311553955, + 1.2241847515106201, + 1.4006190299987793, + 1.308788537979126, + 1.0338048934936523, + 0.7294097542762756, + 0.5027285814285278, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7393639087677002, + 1.2181251049041748, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4472342729568481, + 0.9553447365760803, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7738826274871826, + 1.1810417175292969, + 1.4804682731628418, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1028640270233154, + 0.5459880232810974, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.1707698106765747, + 0.9418227672576904, + 1.0155978202819824, + 1.261329174041748, + 1.4874505996704102, + 1.4985013008117676, + 1.1863439083099365, + 0.6054328680038452, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6806001663208008, + 1.1197272539138794, + 1.3456528186798096, + 1.3274567127227783, + 1.1316683292388916, + 0.8933550119400024, + 0.705305278301239, + 0.5044059157371521, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5787668824195862, + 1.0845861434936523, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1447601318359375, + 0.7475472688674927, + 0.5084177255630493, + 0.5253974199295044, + 0.8019384145736694, + 1.2256169319152832, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2812228202819824, + 0.6675710082054138, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.1325013637542725, + 0.9290653467178345, + 1.0192663669586182, + 1.2373799085617065, + 1.3726108074188232, + 1.2975815534591675, + 0.9652404189109802, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.760911762714386, + 1.0410300493240356, + 1.0884110927581787, + 0.9663652181625366, + 0.8033329248428345, + 0.6585875153541565, + 0.5002788305282593, + 0.5, + 0.5, + 0.5, + 0.5697154998779297, + 1.01338791847229, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3028298616409302, + 1.039184808731079, + 0.9052475094795227, + 0.9911437630653381, + 1.293872594833374, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4132272005081177, + 0.7588638067245483, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.3369632959365845, + 0.9724485278129578, + 0.8011107444763184, + 0.8551023602485657, + 0.9843054413795471, + 1.03830885887146, + 0.9092466235160828, + 0.5921607613563538, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6097314357757568, + 0.5705955028533936, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9250661730766296, + 1.4372860193252563, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4249632358551025, + 1.3390421867370605, + 1.3538100719451904, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3725945949554443, + 0.8166067600250244, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.4014151096343994, + 1.0855567455291748, + 0.8239812850952148, + 0.6619412302970886, + 0.5995430946350098, + 0.5953958630561829, + 0.566120982170105, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0636980533599854, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.493431806564331, + 1.342621088027954, + 1.3680793046951294, + 1.44465970993042, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1380994319915771, + 0.6713312864303589, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.202052116394043, + 0.978495180606842, + 0.8016424775123596, + 0.6257175803184509, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9432314038276672, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1896698474884033, + 0.9176010489463806, + 0.9006045460700989, + 1.0838782787322998, + 1.365479826927185, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4963209629058838, + 1.010801076889038, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.2470471858978271, + 1.1108742952346802, + 0.974236011505127, + 0.7637760043144226, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6344342827796936, + 1.2062275409698486, + 1.5, + 1.5, + 1.5, + 1.4766733646392822, + 1.0603796243667603, + 0.6700653433799744, + 0.5, + 0.5884503722190857, + 0.903564989566803, + 1.350952386856079, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1756963729858398, + 0.5851565599441528, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.4885363578796387, + 1.3527734279632568, + 1.091585397720337, + 0.7256940007209778, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6973353624343872, + 0.9874323606491089, + 1.0858359336853027, + 1.063329815864563, + 0.8587690591812134, + 0.5478624105453491, + 0.5, + 0.5, + 0.5, + 0.8554644584655762, + 1.4109632968902588, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0349445343017578, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6407714486122131, + 0.6857316493988037, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.127758502960205, + 0.7096177339553833, + 0.5, + 0.5, + 0.5, + 0.547910749912262, + 0.7169395685195923, + 0.7213402986526489, + 0.5177805423736572, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9125065803527832, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0847108364105225, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5623871684074402, + 0.700436532497406, + 0.9017281532287598, + 1.0727909803390503, + 1.0817983150482178, + 0.8550145030021667, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.108327865600586, + 0.7910125255584717, + 0.6739925146102905, + 0.7439373135566711, + 0.9149190783500671, + 1.0473551750183105, + 1.0251851081848145, + 0.8204948902130127, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9592570066452026, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2213462591171265, + 0.6784403324127197, + 0.5, + 0.5, + 0.5, + 0.64809250831604, + 0.939833402633667, + 1.0951707363128662, + 1.1817502975463867, + 1.2892999649047852, + 1.3703603744506836, + 1.3242563009262085, + 1.0810954570770264, + 0.6586776375770569, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4365142583847046, + 1.1502015590667725, + 1.0456315279006958, + 1.091742992401123, + 1.1939040422439575, + 1.2314079999923706, + 1.1417794227600098, + 0.9231204986572266, + 0.5929391384124756, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8503456711769104, + 1.4068310260772705, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4512014389038086, + 1.0105977058410645, + 0.6955455541610718, + 0.6328854560852051, + 0.8570165634155273, + 1.2287852764129639, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.378920316696167, + 1.1418697834014893, + 0.7870282530784607, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4328134059906006, + 1.3464195728302002, + 1.3350846767425537, + 1.3099169731140137, + 1.1987080574035645, + 0.9962434768676758, + 0.6955243945121765, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5915073156356812, + 1.0978254079818726, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.432118535041809, + 1.2194099426269531, + 1.2111223936080933, + 1.4247567653656006, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3512011766433716, + 1.1027398109436035, + 0.8056753873825073, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4290357828140259, + 1.2329760789871216, + 0.9486918449401855, + 0.5856046080589294, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7467359304428101, + 1.244308590888977, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2841529846191406, + 1.0397741794586182, + 0.7701254487037659, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3707196712493896, + 0.9988215565681458, + 0.5478428602218628, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9646614789962769, + 1.29400634765625, + 1.406921625137329, + 1.4132046699523926, + 1.4342780113220215, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4332371950149536, + 1.2149410247802734, + 1.0041954517364502, + 0.7413956522941589, + 0.5, + 1.5, + 1.5, + 1.5, + 1.4995412826538086, + 1.3751027584075928, + 1.4296109676361084, + 1.5, + 1.494673252105713, + 1.210585594177246, + 0.7007770538330078, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8747571110725403, + 1.147055745124817, + 1.185563564300537, + 1.1109539270401, + 1.0889043807983398, + 1.2012566328048706, + 1.4719765186309814, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4104498624801636, + 1.3003556728363037, + 1.189653754234314, + 1.028315544128418, + 0.730377733707428, + 0.5, + 1.5, + 1.5, + 1.3270974159240723, + 1.055158257484436, + 1.0647056102752686, + 1.2418267726898193, + 1.3977744579315186, + 1.3625130653381348, + 1.0335829257965088, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5760046243667603, + 1.0155986547470093, + 1.2323575019836426, + 1.203513503074646, + 1.0432460308074951, + 0.9043574333190918, + 0.9311735033988953, + 1.1934764385223389, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3414825201034546, + 1.1839489936828613, + 1.051944375038147, + 1.0386608839035034, + 1.1188056468963623, + 1.1667925119400024, + 1.0575129985809326, + 0.7441821098327637, + 0.5, + 1.5, + 1.372758388519287, + 0.8903019428253174, + 0.6768369674682617, + 0.7574036717414856, + 0.9998026490211487, + 1.2107796669006348, + 1.207176923751831, + 0.8806016445159912, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5604459047317505, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.90876305103302, + 1.324791431427002, + 1.4774713516235352, + 1.349036455154419, + 1.0673898458480835, + 0.8124082684516907, + 0.7480999231338501, + 0.9640213847160339, + 1.4092493057250977, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1739596128463745, + 0.8267737030982971, + 0.6357489824295044, + 0.5402562022209167, + 0.6229308247566223, + 0.8274733424186707, + 0.9982918500900269, + 0.9935676455497742, + 0.7433173060417175, + 0.5, + 1.5, + 1.0131714344024658, + 0.5490939617156982, + 0.5, + 0.5, + 0.7444312572479248, + 0.9876943826675415, + 0.9905440807342529, + 0.6611494421958923, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6794111728668213, + 0.707606315612793, + 0.5833896994590759, + 0.5, + 0.5, + 0.5, + 0.7061077356338501, + 0.946620762348175, + 1.0099962949752808, + 0.8920722007751465, + 0.6893501877784729, + 0.5392550230026245, + 0.554975688457489, + 0.8001806735992432, + 1.2241050004959106, + 1.5, + 1.5, + 1.5, + 1.1340975761413574, + 0.7783977389335632, + 0.631312370300293, + 0.7861211895942688, + 1.1877468824386597, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2023347616195679, + 0.7269405722618103, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7198249101638794, + 0.812841534614563, + 0.6313910484313965, + 0.5, + 1.3417541980743408, + 0.8898212909698486, + 0.5, + 0.5, + 0.5, + 0.5141992568969727, + 0.6821839809417725, + 0.6257681250572205, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6315491199493408, + 0.879530131816864, + 0.936467170715332, + 0.845914363861084, + 0.7064046859741211, + 0.642666757106781, + 0.7407370805740356, + 0.9591193795204163, + 1.1469701528549194, + 1.204697847366333, + 1.1230287551879883, + 0.9431321620941162, + 0.7557617425918579, + 0.7197059988975525, + 0.9399446249008179, + 1.3409191370010376, + 1.5, + 1.5, + 1.5, + 1.2205004692077637, + 0.8244969248771667, + 0.6173251271247864, + 0.6930856108665466, + 0.9896772503852844, + 1.3183627128601074, + 1.5, + 1.5, + 1.3120450973510742, + 0.9307491779327393, + 0.5022690892219543, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.3961231708526611, + 0.9964361786842346, + 0.5718498826026917, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.561368465423584, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5961301922798157, + 0.8595885038375854, + 0.9541831016540527, + 0.904363751411438, + 0.7936323285102844, + 0.7408112287521362, + 0.8152169585227966, + 0.9431812167167664, + 1.039930820465088, + 1.071233868598938, + 0.9885137677192688, + 0.8126260638237, + 0.6576082706451416, + 0.6443791389465332, + 0.8650745153427124, + 1.2463911771774292, + 1.5, + 1.5, + 1.5, + 1.3496934175491333, + 0.9861900210380554, + 0.7492976784706116, + 0.7326428890228271, + 0.8613749742507935, + 1.0283501148223877, + 1.1501481533050537, + 1.1763007640838623, + 1.1035083532333374, + 0.903464674949646, + 0.5943640470504761, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.2145193815231323, + 0.8169962763786316, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5716478228569031, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7267969846725464, + 0.8698727488517761, + 0.8707343935966492, + 0.7934471964836121, + 0.7402335405349731, + 0.7532060146331787, + 0.754134476184845, + 0.7350931167602539, + 0.6848961710929871, + 0.5385835766792297, + 0.5, + 0.5, + 0.5, + 0.6703798770904541, + 1.035573959350586, + 1.40244722366333, + 1.5, + 1.5, + 1.5, + 1.2938657999038696, + 1.0504652261734009, + 0.9189554452896118, + 0.8391956090927124, + 0.8005887269973755, + 0.8255358934402466, + 0.9272168874740601, + 1.0318400859832764, + 1.0454832315444946, + 0.9089586138725281, + 0.6311730742454529, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.392242431640625, + 1.0080773830413818, + 0.5931239128112793, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6495116949081421, + 0.8629633188247681, + 0.9267758131027222, + 0.8808259963989258, + 0.7929785847663879, + 0.68138188123703, + 0.5505370497703552, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8498272895812988, + 1.2291885614395142, + 1.5, + 1.5, + 1.5, + 1.5, + 1.493828296661377, + 1.2074565887451172, + 0.9244253635406494, + 0.6813149452209473, + 0.6140515208244324, + 0.7736726999282837, + 1.0299797058105469, + 1.2328897714614868, + 1.2556822299957275, + 1.0197747945785522, + 0.6197683215141296, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.4006657600402832, + 1.007794976234436, + 0.5423219799995422, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7585510611534119, + 1.0736043453216553, + 1.2114784717559814, + 1.174829125404358, + 0.9921427965164185, + 0.7425292134284973, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.825934112071991, + 1.2395198345184326, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0795762538909912, + 0.6792994141578674, + 0.5216281414031982, + 0.6665964126586914, + 1.0012497901916504, + 1.3239368200302124, + 1.442481279373169, + 1.2446622848510742, + 0.7987115979194641, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.4865760803222656, + 1.181408166885376, + 0.7746394872665405, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.583279550075531, + 1.0810999870300293, + 1.4870597124099731, + 1.5, + 1.5, + 1.3607443571090698, + 1.0175626277923584, + 0.6970274448394775, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6155677437782288, + 1.0419988632202148, + 1.4921090602874756, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2472350597381592, + 0.752794623374939, + 0.5203452110290527, + 0.6037670373916626, + 0.9014140367507935, + 1.2256625890731812, + 1.3655227422714233, + 1.1824419498443604, + 0.7109987735748291, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.1259546279907227, + 0.7999345660209656, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9706560373306274, + 1.4851168394088745, + 1.5, + 1.5, + 1.5, + 1.5, + 1.437697410583496, + 1.1028581857681274, + 0.7594336271286011, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5294031500816345, + 0.9985707402229309, + 1.4462625980377197, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.392754316329956, + 0.861684262752533, + 0.5752964019775391, + 0.5841623544692993, + 0.7918139100074768, + 1.0259013175964355, + 1.0994901657104492, + 0.8805564045906067, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7944154143333435, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8146215677261353, + 1.276808738708496, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2157536745071411, + 0.8214684128761292, + 0.5063977241516113, + 0.5, + 0.5718010067939758, + 0.9345512986183167, + 1.3777189254760742, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0539467334747314, + 0.7063156366348267, + 0.6169697046279907, + 0.7173056602478027, + 0.8519073724746704, + 0.8558893203735352, + 0.6018356084823608, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6082212924957275, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.553861141204834, + 0.7535309195518494, + 0.8452028036117554, + 0.654186487197876, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6232515573501587, + 1.0085346698760986, + 1.3630027770996094, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3218779563903809, + 0.9818137884140015, + 0.8376341462135315, + 0.9374458193778992, + 1.2166328430175781, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4235284328460693, + 1.0199823379516602, + 0.8016360998153687, + 0.7731096744537354, + 0.845543622970581, + 0.825745165348053, + 0.5579182505607605, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5503515005111694, + 0.6022982597351074, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7366098165512085, + 0.9538587331771851, + 1.0662751197814941, + 0.918124258518219, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7356740236282349, + 0.9985469579696655, + 1.1945443153381348, + 1.3804682493209839, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3963485956192017, + 1.1885172128677368, + 1.1738123893737793, + 1.3173480033874512, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4745813608169556, + 1.2006632089614868, + 1.1062648296356201, + 1.0970531702041626, + 1.0235439538955688, + 0.7449928522109985, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7345473766326904, + 0.9020885229110718, + 0.7527444362640381, + 0.7210595011711121, + 0.7310404777526855, + 0.72190260887146, + 0.6205244064331055, + 0.5, + 0.5, + 0.5, + 0.7050623297691345, + 0.9589582681655884, + 1.1096348762512207, + 1.0574226379394531, + 0.7429630160331726, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5271954536437988, + 0.7106776833534241, + 0.7971144914627075, + 0.8166908621788025, + 0.8424990773200989, + 1.0602717399597168, + 1.480461835861206, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3959001302719116, + 1.292900800704956, + 1.2943679094314575, + 1.347493052482605, + 1.4141008853912354, + 1.48223876953125, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3472685813903809, + 1.043443202972412, + 0.6304337978363037, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5647233128547668, + 0.8959594964981079, + 0.9869612455368042, + 0.9888052940368652, + 1.1176223754882812, + 1.2668323516845703, + 1.288491129875183, + 1.1019744873046875, + 0.7913636565208435, + 0.5016183853149414, + 0.5, + 0.5199648141860962, + 0.8105875253677368, + 1.0239561796188354, + 1.1017887592315674, + 0.9923975467681885, + 0.6453647613525391, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5749999284744263, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8750050067901611, + 1.4780702590942383, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4461970329284668, + 1.327612280845642, + 1.2428393363952637, + 1.170931100845337, + 1.101799488067627, + 1.0473443269729614, + 1.0504345893859863, + 1.1894692182540894, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3084588050842285, + 0.9128623008728027, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5880239009857178, + 0.7676281929016113, + 0.7724260091781616, + 1.2024110555648804, + 1.464699625968933, + 1.5, + 1.5, + 1.4443600177764893, + 0.9664806127548218, + 0.5, + 0.5, + 0.5, + 0.6167820692062378, + 0.9135757684707642, + 1.1436710357666016, + 1.230299472808838, + 1.084951639175415, + 0.6983999013900757, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9414069652557373, + 1.4876973628997803, + 1.5, + 1.5, + 1.5, + 1.4977883100509644, + 1.4258805513381958, + 1.3850431442260742, + 1.3357809782028198, + 1.246042251586914, + 1.1078763008117676, + 0.9394131898880005, + 0.7903404235839844, + 0.7246242761611938, + 0.81277996301651, + 1.1037864685058594, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4047205448150635, + 1.0016542673110962, + 0.586357593536377, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.2992537021636963, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0256574153900146, + 0.5, + 0.5, + 0.5, + 0.5010147094726562, + 0.8757862448692322, + 1.2444372177124023, + 1.487484097480774, + 1.4693748950958252, + 1.137725591659546, + 0.5742653012275696, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.878375768661499, + 1.1133817434310913, + 1.0961742401123047, + 1.0101770162582397, + 1.0153696537017822, + 1.1232820749282837, + 1.265291690826416, + 1.357072353363037, + 1.3456546068191528, + 1.2181569337844849, + 1.0103404521942139, + 0.8050488233566284, + 0.6714614629745483, + 0.6857084035873413, + 0.8831114768981934, + 1.2195290327072144, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2503671646118164, + 0.8261139988899231, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.2817368507385254, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0448956489562988, + 0.5024144649505615, + 0.5, + 0.5, + 0.5035315752029419, + 0.9108462929725647, + 1.3416751623153687, + 1.5, + 1.5, + 1.4101225137710571, + 0.8697565793991089, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7519102096557617, + 1.0860470533370972, + 1.3660831451416016, + 1.5, + 1.4545087814331055, + 1.2663931846618652, + 1.0398032665252686, + 0.833717942237854, + 0.7200871706008911, + 0.7531574964523315, + 0.9286324977874756, + 1.1772782802581787, + 1.3966264724731445, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3124784231185913, + 0.8916869163513184, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.230480432510376, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0634710788726807, + 0.544147789478302, + 0.5, + 0.5, + 0.5639609694480896, + 0.9416936635971069, + 1.3414552211761475, + 1.5, + 1.5, + 1.4997332096099854, + 1.035094976425171, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8618358373641968, + 1.3258739709854126, + 1.5, + 1.5, + 1.5, + 1.3566092252731323, + 1.0809003114700317, + 0.8386126160621643, + 0.7123693227767944, + 0.7260921001434326, + 0.8456994295120239, + 0.9841315746307373, + 1.0828499794006348, + 1.1841931343078613, + 1.3173062801361084, + 1.4256951808929443, + 1.4239413738250732, + 1.2596678733825684, + 0.9478215575218201, + 0.5449641942977905, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.1049256324768066, + 1.3884057998657227, + 1.5, + 1.5, + 1.5, + 1.107956886291504, + 0.6320441961288452, + 0.5, + 0.5, + 0.7244676947593689, + 1.0467101335525513, + 1.3525590896606445, + 1.5, + 1.5, + 1.3994942903518677, + 1.0575008392333984, + 0.6564589738845825, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6209312677383423, + 1.3019044399261475, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4278881549835205, + 1.0732327699661255, + 0.8194282650947571, + 0.7403292059898376, + 0.7779838442802429, + 0.8348889350891113, + 0.8760806322097778, + 0.9344152212142944, + 1.0248342752456665, + 1.1050254106521606, + 1.1100536584854126, + 0.9958817958831787, + 0.7538967132568359, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9576437473297119, + 1.2129878997802734, + 1.5, + 1.5, + 1.5, + 1.1800205707550049, + 0.7665882110595703, + 0.5661625862121582, + 0.6775069236755371, + 0.9735012054443359, + 1.2512109279632568, + 1.4440922737121582, + 1.5, + 1.4048298597335815, + 1.1779488325119019, + 0.9417912364006042, + 0.7366042137145996, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.2626290321350098, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.419172763824463, + 1.1634109020233154, + 1.0393552780151367, + 1.007092833518982, + 0.9818919897079468, + 0.9409461617469788, + 0.9181774258613586, + 0.9303417801856995, + 0.9628822803497314, + 0.9777145981788635, + 0.928011953830719, + 0.7795971632003784, + 0.5494062900543213, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8812698125839233, + 1.1243125200271606, + 1.4465545415878296, + 1.5, + 1.5, + 1.2825566530227661, + 0.9392668008804321, + 0.8027030229568481, + 0.9572467803955078, + 1.2519564628601074, + 1.5, + 1.5, + 1.496769666671753, + 1.2350808382034302, + 0.939595639705658, + 0.7491452693939209, + 0.7025744318962097, + 0.6456152200698853, + 0.5198882222175598, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0792739391326904, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.433149814605713, + 1.3276395797729492, + 1.1915087699890137, + 1.0629136562347412, + 0.9787782430648804, + 0.9497131705284119, + 0.9599952697753906, + 0.9678645133972168, + 0.9236451983451843, + 0.8130284547805786, + 0.686480700969696, + 0.558121919631958, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9229003190994263, + 1.1816121339797974, + 1.5, + 1.5, + 1.5, + 1.4059526920318604, + 1.1238865852355957, + 1.0279667377471924, + 1.1851437091827393, + 1.4914884567260742, + 1.5, + 1.5, + 1.5, + 1.1288337707519531, + 0.7527769804000854, + 0.556253969669342, + 0.5707892179489136, + 0.6767427921295166, + 0.7296978235244751, + 0.7473192811012268, + 0.7526428699493408, + 0.7022731304168701, + 0.5115572214126587, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7010459899902344, + 1.4107674360275269, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4714069366455078, + 1.230727195739746, + 1.0320771932601929, + 0.9191334247589111, + 0.9030126929283142, + 0.9536436796188354, + 1.0173592567443848, + 1.0538498163223267, + 1.0580135583877563, + 1.045607089996338, + 1.037264347076416, + 0.9957647323608398, + 0.7957088351249695, + 0.5, + 0.5, + 0.5, + 1.0746281147003174, + 1.380845308303833, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2717928886413574, + 1.1723599433898926, + 1.3158977031707764, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1157060861587524, + 0.6572071313858032, + 0.5, + 0.5, + 0.6279100775718689, + 0.8397042751312256, + 1.042745590209961, + 1.166462779045105, + 1.1054198741912842, + 0.8167656660079956, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8262142539024353, + 1.2412508726119995, + 1.3896594047546387, + 1.4240607023239136, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2672600746154785, + 0.9490442276000977, + 0.7298954129219055, + 0.6677301526069641, + 0.7528446912765503, + 0.9330980777740479, + 1.1133840084075928, + 1.2345190048217773, + 1.330714464187622, + 1.4421104192733765, + 1.491199254989624, + 1.3417162895202637, + 0.9168500900268555, + 0.5, + 0.5, + 1.2903637886047363, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3385168313980103, + 1.2066236734390259, + 1.3344714641571045, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1582159996032715, + 0.6393049955368042, + 0.5, + 0.5, + 0.5649974942207336, + 0.8832464218139648, + 1.2224867343902588, + 1.4620153903961182, + 1.4552369117736816, + 1.1480762958526611, + 0.6166077852249146, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5732928514480591, + 0.7132667303085327, + 0.8034670352935791, + 1.0219964981079102, + 1.3641067743301392, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4729907512664795, + 1.0712387561798096, + 0.6667013168334961, + 0.5, + 0.5, + 0.5, + 0.6337123513221741, + 0.9102333784103394, + 1.112438678741455, + 1.293370008468628, + 1.5, + 1.5, + 1.5, + 1.3112068176269531, + 0.7819191813468933, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3705520629882812, + 1.177877426147461, + 1.2778074741363525, + 1.5, + 1.5, + 1.5, + 1.5, + 1.167234182357788, + 0.6432973146438599, + 0.5, + 0.5, + 0.533563494682312, + 0.8861998319625854, + 1.285038709640503, + 1.5, + 1.5, + 1.390878677368164, + 0.8744304776191711, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8475612998008728, + 1.2609041929244995, + 1.5, + 1.5, + 1.4398046731948853, + 1.097530484199524, + 0.6932898759841919, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5177197456359863, + 0.746325671672821, + 0.9802907109260559, + 1.295630693435669, + 1.5, + 1.5, + 1.5, + 1.1214065551757812, + 0.5493168234825134, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4180493354797363, + 1.188638687133789, + 1.2773621082305908, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1713743209838867, + 0.6555420160293579, + 0.5, + 0.5, + 0.5, + 0.8045572638511658, + 1.2142398357391357, + 1.5, + 1.5, + 1.4687949419021606, + 1.0095665454864502, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7395585775375366, + 1.0646740198135376, + 1.1795679330825806, + 1.0537769794464111, + 0.7482333779335022, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6603027582168579, + 1.0091629028320312, + 1.381257176399231, + 1.5, + 1.5, + 1.350846290588379, + 0.8849443793296814, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3603851795196533, + 1.4804823398590088, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2171165943145752, + 0.6318959593772888, + 0.5, + 0.5, + 0.5, + 0.5873895883560181, + 0.9733378887176514, + 1.3367431163787842, + 1.4822343587875366, + 1.3160959482192993, + 0.9225281476974487, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.721711277961731, + 0.928551435470581, + 0.8803911805152893, + 0.643871545791626, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5779848098754883, + 0.8825600147247314, + 1.2242884635925293, + 1.5, + 1.5, + 1.4877758026123047, + 1.1352273225784302, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.325430154800415, + 0.613507866859436, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6708345413208008, + 0.9649460911750793, + 1.064121127128601, + 0.9294541478157043, + 0.6408448219299316, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.593529224395752, + 0.8884795904159546, + 0.9116196036338806, + 0.7620182633399963, + 0.560495138168335, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5527262687683105, + 0.7708628177642822, + 0.9958513975143433, + 1.2655580043792725, + 1.5, + 1.5, + 1.5, + 1.2939276695251465, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4795421361923218, + 0.7020218372344971, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5851501226425171, + 0.5752794742584229, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5946431159973145, + 0.9292950630187988, + 1.0120183229446411, + 0.9552545547485352, + 0.836115837097168, + 0.7069549560546875, + 0.557980477809906, + 0.5, + 0.5, + 0.5020941495895386, + 0.6688741445541382, + 0.9032503962516785, + 1.1294198036193848, + 1.3085691928863525, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3804374933242798, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9011808633804321, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.673306405544281, + 0.6800172924995422, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5907068252563477, + 0.8943172097206116, + 1.0260121822357178, + 1.0464165210723877, + 0.9995496869087219, + 0.9245398044586182, + 0.8454036712646484, + 0.7647479176521301, + 0.7238450646400452, + 0.7691383957862854, + 0.9516323208808899, + 1.22023606300354, + 1.4712820053100586, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4429292678833008, + 1.5, + 1.5, + 1.3302862644195557, + 1.079272985458374, + 1.022258996963501, + 1.2123286724090576, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.139488935470581, + 0.7113706469535828, + 0.5269918441772461, + 0.5694955587387085, + 0.6903756260871887, + 0.6839284896850586, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.773510754108429, + 1.049785852432251, + 1.159502625465393, + 1.0189766883850098, + 0.6359318494796753, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6949058175086975, + 0.8294058442115784, + 0.8939062356948853, + 0.8967776298522949, + 0.8360274434089661, + 0.7552591562271118, + 0.6974723935127258, + 0.6860771179199219, + 0.7886286973953247, + 1.025458574295044, + 1.3331122398376465, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4781031608581543, + 1.064471960067749, + 0.7456958293914795, + 0.6391383409500122, + 0.8043661713600159, + 1.1932471990585327, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3353089094161987, + 1.0769109725952148, + 0.9933561682701111, + 1.074375033378601, + 1.1725338697433472, + 1.092010259628296, + 0.824614405632019, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5271282196044922, + 0.8640928268432617, + 1.2557576894760132, + 1.5, + 1.5, + 1.411106824874878, + 0.9055261015892029, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5017687082290649, + 0.7974748611450195, + 1.1447042226791382, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3960959911346436, + 0.9508699774742126, + 0.5789499282836914, + 0.5, + 0.5, + 0.7366108894348145, + 1.1386570930480957, + 1.4946050643920898, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4272630214691162, + 1.4678575992584229, + 1.5, + 1.5, + 1.5, + 1.275846242904663, + 0.8940550088882446, + 0.5939913988113403, + 0.5, + 0.6204131841659546, + 0.9232038855552673, + 1.2788044214248657, + 1.5, + 1.5, + 1.5, + 1.5, + 1.158815622329712, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.714078962802887, + 1.1230655908584595, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3928695917129517, + 0.9489681720733643, + 0.5378704071044922, + 0.5, + 0.5, + 0.5, + 0.7037964463233948, + 0.9945812225341797, + 1.1928937435150146, + 1.3606295585632324, + 1.4724864959716797, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3202389478683472, + 0.9998325109481812, + 0.8864809274673462, + 1.0232068300247192, + 1.3281184434890747, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3140348196029663, + 0.6838092803955078, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6977962255477905, + 1.244652271270752, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1248093843460083, + 0.702035665512085, + 0.5, + 0.5, + 0.5, + 0.5566041469573975, + 0.7836582064628601, + 0.9557396769523621, + 1.1242491006851196, + 1.2635197639465332, + 1.3842811584472656, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3220741748809814, + 1.2232216596603394, + 1.3881723880767822, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4733936786651611, + 0.9841498136520386, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9383982419967651, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3934367895126343, + 1.0015147924423218, + 0.6670110821723938, + 0.5007411241531372, + 0.5332232117652893, + 0.6927142143249512, + 0.8610593676567078, + 1.018541932106018, + 1.1770234107971191, + 1.3064955472946167, + 1.422494888305664, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4240096807479858, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.329349160194397, + 0.8995313048362732, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8273147344589233, + 1.3261041641235352, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2662233114242554, + 1.0022563934326172, + 0.8616526126861572, + 0.8615304231643677, + 0.9553840160369873, + 1.0853362083435059, + 1.245208978652954, + 1.3935202360153198, + 1.4895042181015015, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.487283706665039, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2486939430236816, + 0.7889220118522644, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9343036413192749, + 1.2979743480682373, + 1.4696100950241089, + 1.4459583759307861, + 1.3140108585357666, + 1.180978536605835, + 1.5, + 1.5, + 1.5, + 1.3241779804229736, + 1.1361033916473389, + 1.0481884479522705, + 1.05378258228302, + 1.1296964883804321, + 1.2693302631378174, + 1.437728762626648, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4459819793701172, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3767036199569702, + 0.9792622327804565, + 0.5051491260528564, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7274782061576843, + 1.2008272409439087, + 1.4501028060913086, + 1.4748344421386719, + 1.3241136074066162, + 1.1176327466964722, + 0.9931869506835938, + 1.5, + 1.5, + 1.3744657039642334, + 1.1046205759048462, + 0.9285610914230347, + 0.8769416809082031, + 0.9200515747070312, + 1.046311855316162, + 1.2254505157470703, + 1.406783103942871, + 1.5, + 1.5, + 1.4458502531051636, + 1.3026765584945679, + 1.2566418647766113, + 1.4049837589263916, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4079954624176025, + 1.3060232400894165, + 1.496631383895874, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.242987871170044, + 0.8920957446098328, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0087473392486572, + 1.493044376373291, + 1.5, + 1.5, + 1.4329719543457031, + 1.1874078512191772, + 1.0646848678588867, + 1.4006242752075195, + 1.1930289268493652, + 0.9157334566116333, + 0.6448481678962708, + 0.5, + 0.5, + 0.5, + 0.635822594165802, + 0.849766731262207, + 1.044124960899353, + 1.1803967952728271, + 1.1697945594787598, + 1.027095079421997, + 0.8525323867797852, + 0.7686910033226013, + 0.8672448396682739, + 1.1684811115264893, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.204340934753418, + 1.1064846515655518, + 1.2892907857894897, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2042691707611084, + 0.8953676223754883, + 0.5765482187271118, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5093279480934143, + 1.1675599813461304, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4959399700164795, + 1.3872292041778564, + 0.8737598657608032, + 0.6222480535507202, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5644101500511169, + 0.5758030414581299, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6401256322860718, + 1.0697578191757202, + 1.468942403793335, + 1.5, + 1.484764575958252, + 1.2119734287261963, + 0.9674199819564819, + 0.9050344824790955, + 1.1050050258636475, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.246225357055664, + 0.7799348831176758, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.170297384262085, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5259850025177002, + 0.9588134288787842, + 1.182521939277649, + 1.1458027362823486, + 0.9522757530212402, + 0.7750164270401001, + 0.7668794393539429, + 0.990288496017456, + 1.388359546661377, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3937134742736816, + 0.8299436569213867, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.121436357498169, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7568528652191162, + 0.8599345684051514, + 0.8164488077163696, + 0.7718472480773926, + 0.8375582098960876, + 1.0611376762390137, + 1.3901563882827759, + 1.5, + 1.5, + 1.5, + 1.5, + 1.049180269241333, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5573389530181885, + 1.077681541442871, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7191970348358154, + 0.8993397355079651, + 1.0160605907440186, + 1.1374835968017578, + 1.313523292541504, + 1.5, + 1.5, + 1.5, + 1.5, + 1.318514347076416, + 0.8488718867301941, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6891217231750488, + 1.026123046875, + 1.3182189464569092, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5160927772521973, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8069800138473511, + 1.1931873559951782, + 1.432761788368225, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4789180755615234, + 1.2374436855316162, + 0.8601342439651489, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6376481056213379, + 0.8101316690444946, + 0.9360078573226929, + 1.002480387687683, + 1.0148708820343018, + 1.057111144065857, + 1.2136542797088623, + 1.5, + 1.5, + 0.7492963075637817, + 0.692868709564209, + 0.6245782971382141, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.074096918106079, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4923264980316162, + 1.397978663444519, + 1.277266502380371, + 1.0614721775054932, + 0.7171015739440918, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5402654409408569, + 0.7984921336174011, + 0.8887906074523926, + 0.8588836193084717, + 0.7776861190795898, + 0.6123883128166199, + 0.5, + 0.5, + 0.5, + 0.9028205275535583, + 1.389671802520752, + 0.7960683107376099, + 0.8142979145050049, + 0.7866863012313843, + 0.6273840069770813, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6314017176628113, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7273156642913818, + 1.4032222032546997, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3610917329788208, + 1.3271088600158691, + 1.3657808303833008, + 1.3483052253723145, + 1.1616339683532715, + 0.7598810195922852, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8631728887557983, + 1.0482702255249023, + 1.0013025999069214, + 0.8049001693725586, + 0.5474421977996826, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9041536450386047, + 0.57122802734375, + 0.6370970010757446, + 0.6310391426086426, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6486751437187195, + 0.5130937695503235, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.508735179901123, + 1.1054015159606934, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.365962028503418, + 1.208160400390625, + 1.2632687091827393, + 1.4425208568572998, + 1.5, + 1.5, + 1.2635369300842285, + 0.7434218525886536, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7539880275726318, + 1.070265293121338, + 1.133798599243164, + 0.9648056030273438, + 0.6565152406692505, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6068654656410217, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7182658314704895, + 1.035498857498169, + 1.0878033638000488, + 0.9194319248199463, + 0.6491910219192505, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6855089664459229, + 1.0886170864105225, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2703521251678467, + 1.0722291469573975, + 1.1045360565185547, + 1.3172091245651245, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.472335696220398, + 1.429052710533142, + 1.4284539222717285, + 1.3956549167633057, + 1.2997950315475464, + 1.1594253778457642, + 0.9980198740959167, + 0.8515787720680237, + 0.8124797344207764, + 0.9501921534538269, + 1.2123522758483887, + 1.4629250764846802, + 1.5, + 1.375235915184021, + 1.0987927913665771, + 0.8442145586013794, + 0.7623034715652466, + 0.9375516772270203, + 1.293019413948059, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0871193408966064, + 0.5050721168518066, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.506929337978363, + 0.6744390726089478, + 0.6238540410995483, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5405290126800537, + 0.7778235673904419, + 1.1085137128829956, + 1.3917593955993652, + 1.5, + 1.4638912677764893, + 1.366302728652954, + 1.3083090782165527, + 1.395447015762329, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4828425645828247, + 1.4249781370162964, + 1.3632278442382812, + 1.2708821296691895, + 1.1611236333847046, + 1.0393445491790771, + 0.9089471101760864, + 0.800184428691864, + 0.7588366270065308, + 0.8520793914794922, + 1.0489751100540161, + 1.2549445629119873, + 1.3590693473815918, + 1.3029942512512207, + 1.145432710647583, + 0.9715865850448608, + 0.8784000873565674, + 0.9532521367073059, + 1.145987629890442, + 1.3467611074447632, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2099895477294922, + 0.7042303681373596, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5083588361740112, + 0.5562491416931152, + 0.5429363250732422, + 0.6085811853408813, + 0.7861893773078918, + 1.0293779373168945, + 1.2271754741668701, + 1.3630622625350952, + 1.4779424667358398, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3655219078063965, + 1.2230913639068604, + 1.0726290941238403, + 0.9046430587768555, + 0.7472548484802246, + 0.6050740480422974, + 0.5061454772949219, + 0.5, + 0.508090615272522, + 0.585432231426239, + 0.7044446468353271, + 0.8503670692443848, + 0.9903656244277954, + 1.073720932006836, + 1.0833617448806763, + 1.0470296144485474, + 1.0081998109817505, + 0.9893798828125, + 0.9843876957893372, + 0.9935417175292969, + 1.01018488407135, + 1.0419294834136963, + 1.0366469621658325, + 0.9238802194595337, + 0.6715993881225586, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5010108351707458, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6763582825660706, + 0.8399330377578735, + 0.8343513607978821, + 0.7288293838500977, + 0.6419830322265625, + 0.6545970439910889, + 0.7767170667648315, + 0.9827397465705872, + 1.2239735126495361, + 1.497632622718811, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2620185613632202, + 0.9845196008682251, + 0.7387436032295227, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6385382413864136, + 0.8652999401092529, + 1.0580205917358398, + 1.1756784915924072, + 1.1968580484390259, + 1.083552360534668, + 0.8925280570983887, + 0.7143626809120178, + 0.5559771656990051, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6510499715805054, + 0.7499760389328003, + 0.5871936082839966, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6521388292312622, + 1.0056684017181396, + 1.1954877376556396, + 1.1930856704711914, + 1.0470168590545654, + 0.853241503238678, + 0.7180719971656799, + 0.6752461194992065, + 0.7663801908493042, + 1.0042017698287964, + 1.3428057432174683, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2681907415390015, + 0.8819198608398438, + 0.5501760244369507, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5174739956855774, + 0.8470458984375, + 1.1888176202774048, + 1.4203693866729736, + 1.4463856220245361, + 1.2534099817276, + 0.9267305135726929, + 0.5978966355323792, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8773532509803772, + 1.0438382625579834, + 0.9491944313049316, + 0.6782829761505127, + 0.5, + 0.5, + 0.5, + 0.5, + 0.677113950252533, + 1.0262975692749023, + 1.3501007556915283, + 1.5, + 1.5, + 1.4006543159484863, + 1.1513949632644653, + 0.905921995639801, + 0.7063000798225403, + 0.6263104677200317, + 0.7273579239845276, + 1.000638723373413, + 1.3531568050384521, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4297966957092285, + 1.0090312957763672, + 0.6287046670913696, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7149409055709839, + 1.0944147109985352, + 1.4807144403457642, + 1.5, + 1.5, + 1.4926929473876953, + 1.0971496105194092, + 0.6832975745201111, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5660269856452942, + 1.0337767601013184, + 1.2847105264663696, + 1.294550895690918, + 1.1247719526290894, + 0.9082413911819458, + 0.7929995059967041, + 0.8335750102996826, + 0.941938042640686, + 1.1573842763900757, + 1.4491521120071411, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4441964626312256, + 1.1390979290008545, + 0.8233657479286194, + 0.5838316082954407, + 0.5058144330978394, + 0.6123498678207397, + 0.8475208878517151, + 1.1059179306030273, + 1.3102176189422607, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3012442588806152, + 0.9292645454406738, + 0.5793766975402832, + 0.5, + 0.5, + 0.5, + 0.5, + 0.695606529712677, + 0.8161081671714783, + 0.8374559879302979, + 0.8845270872116089, + 1.102845311164856, + 1.452042579650879, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3552637100219727, + 0.9225344061851501, + 0.5925360321998596, + 0.5, + 0.5, + 0.6416445374488831, + 0.7945306301116943, + 0.8173404335975647, + 0.6737090349197388, + 0.501913845539093, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6178326606750488, + 1.102492332458496, + 1.4194765090942383, + 1.5, + 1.4798822402954102, + 1.3916510343551636, + 1.3751697540283203, + 1.4433009624481201, + 1.496273398399353, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.359201192855835, + 0.9857261180877686, + 0.6244121193885803, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6501879096031189, + 0.8695833086967468, + 1.201380968093872, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2336753606796265, + 0.8981491923332214, + 0.6441153883934021, + 0.5490115880966187, + 0.6301541328430176, + 0.8293685913085938, + 1.0425422191619873, + 1.1768440008163452, + 1.2065154314041138, + 1.2352752685546875, + 1.4131768941879272, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2452936172485352, + 0.9176047444343567, + 0.781020998954773, + 0.8571658134460449, + 1.0650980472564697, + 1.265997052192688, + 1.3195337057113647, + 1.1832441091537476, + 0.9859921336174011, + 0.8554791808128357, + 0.8046368360519409, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5978744029998779, + 1.0285464525222778, + 1.3729661703109741, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4668185710906982, + 1.1250380277633667, + 0.71973717212677, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5247325897216797, + 1.014975905418396, + 1.44462251663208, + 1.5, + 1.5, + 1.5, + 1.4306070804595947, + 1.159808874130249, + 0.9213017821311951, + 0.8041423559188843, + 0.8432389497756958, + 1.0068607330322266, + 1.1949119567871094, + 1.3015578985214233, + 1.311797857284546, + 1.303114414215088, + 1.4244002103805542, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.349856972694397, + 1.1824347972869873, + 1.2307515144348145, + 1.448168158531189, + 1.5, + 1.5, + 1.5, + 1.273604393005371, + 1.0726014375686646, + 0.9844090938568115, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5298261046409607, + 0.8253125548362732, + 1.148279070854187, + 1.4994189739227295, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.412885069847107, + 1.1913795471191406, + 0.8226913213729858, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8541510105133057, + 1.2358691692352295, + 1.4346832036972046, + 1.4898858070373535, + 1.4439353942871094, + 1.2950050830841064, + 1.1070563793182373, + 0.981755793094635, + 0.9541880488395691, + 1.0097707509994507, + 1.1069234609603882, + 1.156223177909851, + 1.1221081018447876, + 1.061985969543457, + 1.1011834144592285, + 1.3318842649459839, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.288680076599121, + 0.9811379909515381, + 0.7821340560913086, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5831843614578247, + 0.831222414970398, + 1.229331612586975, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.493194818496704, + 1.1716663837432861, + 1.0559217929840088, + 1.1117802858352661, + 1.1863459348678589, + 1.2151743173599243, + 1.154651165008545, + 0.8977371454238892, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5743535757064819, + 0.9104403257369995, + 1.1215181350708008, + 1.2452969551086426, + 1.2632050514221191, + 1.1790783405303955, + 1.0844727754592896, + 1.0038435459136963, + 0.9343525767326355, + 0.8800601959228516, + 0.8303593397140503, + 0.7326922416687012, + 0.6193020343780518, + 0.576397180557251, + 0.7401846647262573, + 1.1295524835586548, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4835214614868164, + 1.0529736280441284, + 0.6076482534408569, + 0.5, + 0.5, + 0.5, + 0.5, + 0.646842896938324, + 0.6609964370727539, + 0.5448335409164429, + 0.5, + 0.5, + 0.516254186630249, + 0.8704506158828735, + 1.4030060768127441, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9856414794921875, + 0.5882741212844849, + 0.5, + 0.567512035369873, + 0.7740918397903442, + 0.9553961753845215, + 1.0414135456085205, + 0.946120023727417, + 0.6055534482002258, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5953401923179626, + 0.8810595870018005, + 1.0788819789886475, + 1.1711673736572266, + 1.1625416278839111, + 1.0668436288833618, + 0.8929413557052612, + 0.6803200244903564, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0660665035247803, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1859066486358643, + 0.6615934371948242, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7372255325317383, + 1.0048978328704834, + 0.9836710095405579, + 0.7300200462341309, + 0.5, + 0.5, + 0.5, + 0.539372980594635, + 1.0091334581375122, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.132403016090393, + 0.541579008102417, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7372391819953918, + 0.9525956511497498, + 0.992644190788269, + 0.8000210523605347, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8268786668777466, + 1.1196770668029785, + 1.269434928894043, + 1.217102289199829, + 0.9827273488044739, + 0.6383038759231567, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5373876094818115, + 1.1788510084152222, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.445807695388794, + 0.8831797242164612, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9164769649505615, + 1.2402758598327637, + 1.2208129167556763, + 0.9001542329788208, + 0.5173832178115845, + 0.5, + 0.5, + 0.5, + 0.6441119313240051, + 1.050591230392456, + 1.354806661605835, + 1.4720858335494995, + 1.448201060295105, + 1.1845498085021973, + 0.7274817228317261, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6430209875106812, + 0.9559716582298279, + 1.0932508707046509, + 0.9899142980575562, + 0.666143000125885, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.606087327003479, + 1.0600723028182983, + 1.3733067512512207, + 1.4305425882339478, + 1.2055058479309082, + 0.8019310235977173, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7186927795410156, + 1.257431983947754, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3696106672286987, + 0.7193019390106201, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0199968814849854, + 1.3735895156860352, + 1.3679797649383545, + 1.035724401473999, + 0.6181141138076782, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6348558068275452, + 0.8527156114578247, + 0.9299877882003784, + 0.9162830114364624, + 0.7148467898368835, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6551735401153564, + 1.0015982389450073, + 1.1893527507781982, + 1.1474180221557617, + 0.8904648423194885, + 0.523493230342865, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9746931195259094, + 1.3852925300598145, + 1.5, + 1.4102044105529785, + 1.0649417638778687, + 0.6681699752807617, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8503224849700928, + 1.2498180866241455, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3935809135437012, + 0.7192744612693787, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0841234922409058, + 1.4599546194076538, + 1.4719889163970947, + 1.155325174331665, + 0.7499017715454102, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.68099045753479, + 0.991316020488739, + 1.1761687994003296, + 1.1819435358047485, + 1.006124496459961, + 0.7296091318130493, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8278530240058899, + 1.258056879043579, + 1.4906086921691895, + 1.4669064283370972, + 1.2387163639068604, + 0.9360383152961731, + 0.6614607572555542, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5339296460151672, + 0.8916494846343994, + 1.2631762027740479, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.344878911972046, + 0.695955753326416, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5235536098480225, + 1.1629633903503418, + 1.5, + 1.5, + 1.2784088850021362, + 0.9043740034103394, + 0.5478139519691467, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7445045709609985, + 0.9706136584281921, + 1.0803320407867432, + 1.0367538928985596, + 0.8821324110031128, + 0.7108091711997986, + 0.6027825474739075, + 0.5515457391738892, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.754948079586029, + 1.1022779941558838, + 1.3208650350570679, + 1.3821308612823486, + 1.287824034690857, + 1.0968389511108398, + 0.8755664229393005, + 0.6227167248725891, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7114840745925903, + 1.0583620071411133, + 1.452589988708496, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1330660581588745, + 0.5246820449829102, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5478880405426025, + 1.2547273635864258, + 1.5, + 1.5, + 1.3777507543563843, + 1.0306836366653442, + 0.712744951248169, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5439814329147339, + 0.8102148175239563, + 0.9433173537254333, + 0.914973258972168, + 0.7299467921257019, + 0.5160437226295471, + 0.5, + 0.5, + 0.5777690410614014, + 0.5800296664237976, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5232003927230835, + 0.8070851564407349, + 1.0448293685913086, + 1.2103075981140137, + 1.2700467109680176, + 1.2443759441375732, + 1.1432669162750244, + 0.947644829750061, + 0.7116965055465698, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7540949583053589, + 1.0918002128601074, + 1.4156489372253418, + 1.5, + 1.5, + 1.5, + 1.3220996856689453, + 0.8255937099456787, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5584767460823059, + 1.2873936891555786, + 1.5, + 1.5, + 1.4133813381195068, + 1.0742138624191284, + 0.7691092491149902, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5585511922836304, + 0.8142586946487427, + 0.8628826141357422, + 0.6642343401908875, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5738155245780945, + 0.5763867497444153, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.771767258644104, + 0.9729249477386475, + 1.135170578956604, + 1.2396504878997803, + 1.2527939081192017, + 1.202359914779663, + 1.1093106269836426, + 0.9015569686889648, + 0.6560187339782715, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6482824087142944, + 0.9782325029373169, + 1.33083975315094, + 1.5, + 1.5, + 1.5, + 1.4818207025527954, + 1.0500277280807495, + 0.546424388885498, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.543928861618042, + 1.2309198379516602, + 1.5, + 1.5, + 1.362520456314087, + 1.0108611583709717, + 0.6580947041511536, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7072035670280457, + 0.7085047960281372, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6248738765716553, + 0.5522836446762085, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6704338788986206, + 0.9784310460090637, + 1.204882025718689, + 1.35463547706604, + 1.4184907674789429, + 1.3744324445724487, + 1.246173620223999, + 1.059075117111206, + 0.8090579509735107, + 0.5326236486434937, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5641867518424988, + 0.9034866094589233, + 1.278009295463562, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9682816863059998, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.110572099685669, + 1.5, + 1.5, + 1.2311612367630005, + 0.8454911112785339, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6547159552574158, + 0.664773166179657, + 0.5135461688041687, + 0.5, + 0.5, + 0.5, + 0.7471160292625427, + 1.0766195058822632, + 1.3923895359039307, + 1.5, + 1.5, + 1.5, + 1.3904674053192139, + 1.0835344791412354, + 0.7651524543762207, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6070057153701782, + 1.0769741535186768, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0974488258361816, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9958726167678833, + 1.3578577041625977, + 1.3669451475143433, + 1.0497572422027588, + 0.6278039813041687, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7603310346603394, + 0.7872419357299805, + 0.6121947765350342, + 0.5, + 0.5, + 0.5, + 0.663433313369751, + 1.0361652374267578, + 1.453423023223877, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2311029434204102, + 0.8458112478256226, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5217092037200928, + 1.083417296409607, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.380542516708374, + 0.7437120079994202, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8810365796089172, + 1.2094085216522217, + 1.1907055377960205, + 0.8530306816101074, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5463594794273376, + 0.5979086756706238, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6203635931015015, + 0.9242347478866577, + 0.9070688486099243, + 0.6528350710868835, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8785743713378906, + 1.3698186874389648, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4560973644256592, + 1.0439863204956055, + 0.6173533797264099, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9631481170654297, + 1.4640635251998901, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0843095779418945, + 0.5449692606925964, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7545401453971863, + 1.03559410572052, + 0.9929461479187012, + 0.6674673557281494, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7760986089706421, + 0.9317212700843811, + 0.9551019072532654, + 0.712613046169281, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7250732183456421, + 1.0269850492477417, + 0.9829729795455933, + 0.6687242984771729, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6837762594223022, + 1.1808336973190308, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2752448320388794, + 0.8556064367294312, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8236477375030518, + 1.254368782043457, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4178552627563477, + 0.9338797330856323, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5999963283538818, + 0.8238451480865479, + 0.7824603319168091, + 0.5319338440895081, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8189501762390137, + 1.1472328901290894, + 1.3060392141342163, + 1.3138771057128906, + 1.0208126306533813, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6146181225776672, + 0.9383523464202881, + 0.9406532049179077, + 0.6895420551300049, + 0.5, + 0.5, + 0.5, + 0.5, + 0.543837308883667, + 0.9548243880271912, + 1.442926287651062, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.140866994857788, + 0.7146086096763611, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6067829728126526, + 0.9070985913276672, + 1.265251636505127, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3552742004394531, + 0.8654910326004028, + 0.5008882284164429, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5700929760932922, + 0.5728325247764587, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6900461912155151, + 1.063115119934082, + 1.3736236095428467, + 1.5, + 1.5, + 1.2742122411727905, + 0.6900379061698914, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.676162600517273, + 0.8018953800201416, + 0.7423484921455383, + 0.5626530647277832, + 0.5, + 0.5, + 0.5, + 0.5120645761489868, + 0.7575883269309998, + 1.1826281547546387, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3901922702789307, + 1.026416301727295, + 0.6945697069168091, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5144475698471069, + 0.7575570940971375, + 1.0764378309249878, + 1.4779107570648193, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1839580535888672, + 0.7221968770027161, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5658665299415588, + 0.6308905482292175, + 0.6679328680038452, + 0.7324987053871155, + 0.872460126876831, + 1.0895183086395264, + 1.3406322002410889, + 1.5, + 1.5, + 1.3646353483200073, + 0.9191970825195312, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6930481195449829, + 0.8690124750137329, + 0.9023231267929077, + 0.8363284468650818, + 0.7317503690719604, + 0.6324374675750732, + 0.5831305980682373, + 0.6591737866401672, + 1.0102778673171997, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1962032318115234, + 0.9078434109687805, + 0.6693720817565918, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5480139255523682, + 0.9390816688537598, + 1.431864619255066, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2792547941207886, + 0.7823360562324524, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5288126468658447, + 0.8055574893951416, + 0.9752589464187622, + 0.9979967474937439, + 0.9346073865890503, + 0.8695798516273499, + 0.8839118480682373, + 1.0479145050048828, + 1.260434865951538, + 1.3367509841918945, + 1.2407821416854858, + 0.985898494720459, + 0.6095291376113892, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6869264841079712, + 1.075980305671692, + 1.3029011487960815, + 1.3400981426239014, + 1.1792407035827637, + 0.9179037809371948, + 0.6938704252243042, + 0.6646071076393127, + 0.931833028793335, + 1.4234123229980469, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4820666313171387, + 1.1620571613311768, + 0.9316449165344238, + 0.7548400163650513, + 0.6031025052070618, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5891388058662415, + 1.0502667427062988, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0823476314544678, + 0.637464165687561, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5868498682975769, + 0.9990175366401672, + 1.2196768522262573, + 1.1901564598083496, + 0.968841552734375, + 0.6939817667007446, + 0.5366271138191223, + 0.5976656675338745, + 0.8057310581207275, + 0.9474002718925476, + 0.9620816111564636, + 0.8551762700080872, + 0.6560311317443848, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8079608082771301, + 1.3189220428466797, + 1.5, + 1.5, + 1.5, + 1.120863914489746, + 0.7655723690986633, + 0.6658967137336731, + 0.8803727626800537, + 1.306616187095642, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2951503992080688, + 0.9721400737762451, + 0.78303462266922, + 0.7084932923316956, + 0.6680901050567627, + 0.6021385192871094, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8146204948425293, + 1.1555708646774292, + 1.3551514148712158, + 1.3093180656433105, + 1.0324041843414307, + 0.6464576125144958, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6130147576332092, + 1.089360237121582, + 1.3058881759643555, + 1.204758882522583, + 0.8661767244338989, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5238889455795288, + 0.6321812272071838, + 0.6142374873161316, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6021997928619385, + 1.0660128593444824, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1430017948150635, + 0.7145984768867493, + 0.5670578479766846, + 0.7496641874313354, + 1.1490727663040161, + 1.5, + 1.5, + 1.5, + 1.4162828922271729, + 1.0042991638183594, + 0.699598491191864, + 0.5678005218505859, + 0.5990321040153503, + 0.7198110818862915, + 0.8091620206832886, + 0.7622131109237671, + 0.5723162889480591, + 0.5, + 0.5, + 0.505769670009613, + 0.6996272802352905, + 0.8558103442192078, + 0.889650285243988, + 0.748772919178009, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6005502939224243, + 1.0842280387878418, + 1.271748661994934, + 1.1107475757598877, + 0.6956108808517456, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5473442077636719, + 0.6431633234024048, + 0.6925360560417175, + 0.7621603012084961, + 0.9930151700973511, + 1.3485783338546753, + 1.5, + 1.5, + 1.5, + 1.4669078588485718, + 0.9864926338195801, + 0.5402438640594482, + 0.5, + 0.5474337935447693, + 0.9299682378768921, + 1.333243489265442, + 1.5, + 1.4676759243011475, + 1.0900095701217651, + 0.6724289655685425, + 0.5, + 0.5, + 0.5364915132522583, + 0.8047586679458618, + 1.029746651649475, + 1.0750547647476196, + 0.9120968580245972, + 0.7075562477111816, + 0.592625081539154, + 0.5697794556617737, + 0.581339955329895, + 0.5557243824005127, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5413305163383484, + 1.0129308700561523, + 1.1875280141830444, + 0.9896913170814514, + 0.5163014531135559, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5678229331970215, + 0.8990107178688049, + 1.1150259971618652, + 1.2045196294784546, + 1.2298557758331299, + 1.337468147277832, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2744699716567993, + 0.8048787713050842, + 0.5, + 0.5, + 0.5, + 0.6956686973571777, + 1.0665347576141357, + 1.2744042873382568, + 1.1796058416366577, + 0.8065959215164185, + 0.5, + 0.5, + 0.5, + 0.5092489719390869, + 0.8976906538009644, + 1.20340895652771, + 1.2903974056243896, + 1.1483187675476074, + 0.9392392039299011, + 0.7580438852310181, + 0.6015118956565857, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8277835845947266, + 1.0268985033035278, + 0.8523906469345093, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.710456132888794, + 1.2183918952941895, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.459260106086731, + 1.1380128860473633, + 0.69938063621521, + 0.5, + 0.5, + 0.5, + 0.5223236680030823, + 0.916196346282959, + 1.1436169147491455, + 1.0651004314422607, + 0.7263634204864502, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8279674649238586, + 1.1132042407989502, + 1.1878600120544434, + 1.0715105533599854, + 0.8990233540534973, + 0.7141683101654053, + 0.5077215433120728, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5820531845092773, + 0.8331694602966309, + 0.773631751537323, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7604168653488159, + 1.4075825214385986, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3583381175994873, + 1.0763306617736816, + 0.6673619151115417, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9108437299728394, + 1.1627476215362549, + 1.0988714694976807, + 0.8186720609664917, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5255590677261353, + 0.7000699043273926, + 0.7390022873878479, + 0.6727110147476196, + 0.5753399729728699, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7061350345611572, + 0.827268123626709, + 0.7375742197036743, + 0.5347530841827393, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6205039024353027, + 1.3265209197998047, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3267822265625, + 1.0552438497543335, + 0.6590112447738647, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9152010679244995, + 1.1863645315170288, + 1.153667688369751, + 0.9441001415252686, + 0.6657389998435974, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7164434194564819, + 0.9874057769775391, + 1.0659878253936768, + 0.9870532751083374, + 0.8518519401550293, + 0.7132855653762817, + 0.5668782591819763, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.941021740436554, + 1.4270663261413574, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3394649028778076, + 1.0209968090057373, + 0.6139287948608398, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7822606563568115, + 1.0617377758026123, + 1.1007301807403564, + 0.9497063159942627, + 0.7198494672775269, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5118817090988159, + 0.8934231996536255, + 1.198714017868042, + 1.350945234298706, + 1.3156569004058838, + 1.1384823322296143, + 0.9083214998245239, + 0.6765161752700806, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8299294710159302, + 1.1398457288742065, + 1.320833444595337, + 1.4714739322662354, + 1.5, + 1.5, + 1.5, + 1.3118976354599, + 0.9286225438117981, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7420514822006226, + 0.8402365446090698, + 0.7289552688598633, + 0.5242607593536377, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6210567355155945, + 0.5539482235908508, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8368207216262817, + 1.1981316804885864, + 1.445470929145813, + 1.5, + 1.3858106136322021, + 1.1089504957199097, + 0.7870861887931824, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7402646541595459, + 1.044889211654663, + 1.3444173336029053, + 1.5, + 1.4585497379302979, + 1.1767969131469727, + 0.7457476258277893, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6030226945877075, + 0.7047057151794434, + 0.5728422403335571, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8344065546989441, + 1.2273234128952026, + 1.5, + 1.5, + 1.5, + 1.2579830884933472, + 0.8356086015701294, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5663272142410278, + 0.9565436244010925, + 1.2001250982284546, + 1.1933555603027344, + 0.9275500774383545, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6740168333053589, + 0.637687623500824, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7206276059150696, + 1.1573104858398438, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0460293292999268, + 0.5079860091209412, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7852983474731445, + 0.840703010559082, + 0.640254557132721, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5870170593261719, + 0.6304687857627869, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8219282627105713, + 1.208080530166626, + 1.5, + 1.5, + 1.5, + 1.351607322692871, + 0.8136590719223022, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6075630784034729, + 0.5790371894836426, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5851966738700867, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6663109064102173, + 0.996730625629425, + 1.3030788898468018, + 1.4796650409698486, + 1.4124395847320557, + 1.0790741443634033, + 0.5874712467193604, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8204838633537292, + 0.980069637298584, + 0.9126864075660706, + 0.6951960325241089, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5383950471878052, + 0.5508182644844055, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6640865206718445, + 0.9406736493110657, + 1.1069210767745972, + 1.0405173301696777, + 0.7620052099227905, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5312910676002502, + 0.8434942960739136, + 1.047870397567749, + 1.0984656810760498, + 0.9661158919334412, + 0.678076982498169, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6501070261001587, + 0.7446039915084839, + 0.5278792381286621, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6431416273117065, + 0.7688360214233398, + 0.7053893804550171, + 0.5058108568191528, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5899631977081299, + 0.8191169500350952, + 1.028456449508667, + 1.1244683265686035, + 1.0791842937469482, + 0.9549339413642883, + 0.7332186698913574, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.805400550365448, + 0.9494879841804504, + 0.7788469195365906, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.564673662185669, + 0.7493064403533936, + 0.8844597935676575, + 0.9135962724685669, + 0.7990375757217407, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5674393177032471, + 0.6348738670349121, + 0.5395430326461792, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5540160536766052, + 0.7923956513404846, + 1.0712522268295288, + 1.3034672737121582, + 1.3690216541290283, + 1.234178066253662, + 0.9629957675933838, + 0.6497328877449036, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5186740159988403, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5156776905059814, + 0.8987845778465271, + 1.0782749652862549, + 0.9450520277023315, + 0.5544542670249939, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5005589127540588, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6175099611282349, + 0.9100216627120972, + 1.1202483177185059, + 1.1503257751464844, + 1.0030698776245117, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6008377075195312, + 0.796648383140564, + 0.802375316619873, + 0.6324363946914673, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6185088753700256, + 0.9244133234024048, + 1.2483975887298584, + 1.4730136394500732, + 1.4723010063171387, + 1.2162551879882812, + 0.7856692671775818, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6440824866294861, + 0.5734714269638062, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5173740386962891, + 0.9041581153869629, + 1.0984408855438232, + 0.9771463871002197, + 0.576295018196106, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6617252230644226, + 0.6965932846069336, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7875586748123169, + 1.0339281558990479, + 1.0643212795257568, + 0.8958292007446289, + 0.5, + 0.5, + 0.5, + 0.5498273372650146, + 0.8253428936004639, + 1.0851860046386719, + 1.2570381164550781, + 1.1880385875701904, + 0.8976706266403198, + 0.5218619704246521, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8038747310638428, + 1.1394480466842651, + 1.3614451885223389, + 1.3434001207351685, + 1.048598289489746, + 0.5573712587356567, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5628441572189331, + 0.5091227889060974, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8501208424568176, + 1.0333890914916992, + 0.8994458913803101, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7127054929733276, + 0.7762755155563354, + 0.5108373761177063, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7192625999450684, + 0.7832069396972656, + 0.6651043891906738, + 0.5482788681983948, + 0.6015282869338989, + 0.7585959434509277, + 0.9894777536392212, + 1.258758544921875, + 1.5, + 1.5, + 1.5, + 1.1941087245941162, + 0.6958800554275513, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6223636269569397, + 0.9132111072540283, + 1.095847725868225, + 1.0484716892242432, + 0.7441281080245972, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.797884464263916, + 0.9585409164428711, + 0.8147590160369873, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7455353736877441, + 0.8316752314567566, + 0.5898092985153198, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5338301658630371, + 0.5, + 1.0014843940734863, + 0.9437084197998047, + 0.9948855042457581, + 1.1617389917373657, + 1.3988035917282104, + 1.5, + 1.5, + 1.5, + 1.3801486492156982, + 0.8830088376998901, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6640464663505554, + 0.7625701427459717, + 0.7156804800033569, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5143547058105469, + 0.8045309782028198, + 0.9414277076721191, + 0.8145158290863037, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5338669419288635, + 0.8292561769485474, + 0.9474982023239136, + 0.7591288089752197, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.328808069229126, + 1.079872488975525, + 0.9409743547439575, + 1.0020534992218018, + 1.2139780521392822, + 1.4576424360275269, + 1.5, + 1.5, + 1.4264557361602783, + 1.0837433338165283, + 0.7407915592193604, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5594719648361206, + 0.5312864184379578, + 0.5, + 0.5166803002357483, + 0.6297301054000854, + 0.777586042881012, + 0.9164350032806396, + 0.9889325499534607, + 0.9115127325057983, + 0.7327490448951721, + 0.5714924335479736, + 0.5180960297584534, + 0.6191389560699463, + 0.813994824886322, + 1.0107955932617188, + 1.1044270992279053, + 0.9848858118057251, + 0.6931626200675964, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5425370931625366, + 0.5581344962120056, + 1.4228657484054565, + 1.0162506103515625, + 0.7155615091323853, + 0.6545815467834473, + 0.8282772302627563, + 1.0704842805862427, + 1.279129981994629, + 1.4043378829956055, + 1.4139440059661865, + 1.3021981716156006, + 1.1142868995666504, + 0.9194650053977966, + 0.7522522211074829, + 0.578777015209198, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5122672915458679, + 0.7040103077888489, + 0.8697555661201477, + 1.014207124710083, + 1.1191706657409668, + 1.1637287139892578, + 1.158064365386963, + 1.1243330240249634, + 1.0874593257904053, + 1.073082447052002, + 1.0841879844665527, + 1.1049858331680298, + 1.1235109567642212, + 1.1642600297927856, + 1.2204667329788208, + 1.2572276592254639, + 1.2459971904754639, + 1.1831130981445312, + 1.066324234008789, + 0.8973040580749512, + 0.6897822618484497, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5628057718276978, + 0.6507408022880554, + 0.6470191478729248, + 0.6298655271530151, + 0.6469374299049377, + 0.7003339529037476, + 0.678329348564148, + 1.3255553245544434, + 0.8556360006332397, + 0.5, + 0.5, + 0.5, + 0.6765699982643127, + 0.911950945854187, + 1.162549614906311, + 1.4087698459625244, + 1.5, + 1.5, + 1.3384881019592285, + 1.0597362518310547, + 0.7140510082244873, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5070443749427795, + 0.6623850464820862, + 0.6389776468276978, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8172814249992371, + 1.1723047494888306, + 1.4950549602508545, + 1.5, + 1.5, + 1.5, + 1.3241649866104126, + 1.1991223096847534, + 1.2573648691177368, + 1.4554333686828613, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4579938650131226, + 1.3199329376220703, + 1.2957582473754883, + 1.3391997814178467, + 1.3288602828979492, + 1.1586965322494507, + 0.8007620573043823, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6844347715377808, + 1.0692651271820068, + 1.2697679996490479, + 1.2661046981811523, + 1.1517059803009033, + 1.0106549263000488, + 0.8853881359100342, + 0.8026363849639893, + 0.7337003350257874, + 1.162142038345337, + 0.7436274886131287, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7393821477890015, + 1.0906625986099243, + 1.4753261804580688, + 1.5, + 1.5, + 1.5, + 1.2254652976989746, + 0.7447959184646606, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6796780824661255, + 0.7288510799407959, + 0.596327006816864, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.835169792175293, + 1.3404699563980103, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4184108972549438, + 1.2805315256118774, + 1.406030535697937, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.309165358543396, + 1.2955400943756104, + 1.4424630403518677, + 1.5, + 1.4269880056381226, + 1.041393756866455, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6472910642623901, + 1.1804242134094238, + 1.5, + 1.5, + 1.5, + 1.49125337600708, + 1.2395306825637817, + 0.9897188544273376, + 0.7854814529418945, + 0.6629166007041931, + 1.0154869556427002, + 0.7380907535552979, + 0.5, + 0.5, + 0.5, + 0.5493738651275635, + 0.8532350063323975, + 1.252699613571167, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1861460208892822, + 0.6279377937316895, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.550379753112793, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7282751202583313, + 1.3219022750854492, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4084895849227905, + 1.289422631263733, + 1.4574416875839233, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.215748906135559, + 1.1793768405914307, + 1.3662281036376953, + 1.5, + 1.468605399131775, + 1.1327184438705444, + 0.6351867318153381, + 0.5, + 0.5, + 0.5, + 0.5, + 0.570698082447052, + 1.0747119188308716, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.196222186088562, + 0.8683037757873535, + 0.611775815486908, + 0.5, + 0.8629059791564941, + 0.738919734954834, + 0.5942875146865845, + 0.5352727174758911, + 0.6348116993904114, + 0.8769271373748779, + 1.1682132482528687, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9683457612991333, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5413574576377869, + 1.1527942419052124, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3399111032485962, + 1.233514428138733, + 1.4156832695007324, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3955259323120117, + 1.0613038539886475, + 0.9888366460800171, + 1.1705516576766968, + 1.3687323331832886, + 1.3645596504211426, + 1.1332049369812012, + 0.7684147357940674, + 0.5, + 0.5, + 0.5, + 0.6042641997337341, + 0.9981582760810852, + 1.4482792615890503, + 1.5, + 1.5, + 1.5, + 1.5, + 1.291601538658142, + 0.9096924662590027, + 0.5638611316680908, + 0.5, + 0.5, + 0.6908227205276489, + 0.718920111656189, + 0.7374208569526672, + 0.8254651427268982, + 1.015550136566162, + 1.2665059566497803, + 1.4882045984268188, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2433884143829346, + 0.7267868518829346, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.957553505897522, + 1.4877879619598389, + 1.5, + 1.5, + 1.5, + 1.2812820672988892, + 1.2144675254821777, + 1.4238288402557373, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2815566062927246, + 0.9404367804527283, + 0.865509569644928, + 1.033272385597229, + 1.2255067825317383, + 1.260563611984253, + 1.1223301887512207, + 0.8939112424850464, + 0.6904889941215515, + 0.6323308944702148, + 0.7780688405036926, + 1.0793273448944092, + 1.3968563079833984, + 1.5, + 1.5, + 1.5, + 1.5, + 1.410262942314148, + 0.9774794578552246, + 0.5855165123939514, + 0.5, + 0.5, + 0.5, + 0.5726141929626465, + 0.7273228168487549, + 0.921729326248169, + 1.170928716659546, + 1.4422812461853027, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3724851608276367, + 1.010617971420288, + 0.6142086982727051, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8162592649459839, + 1.27279531955719, + 1.5, + 1.5, + 1.4819389581680298, + 1.3656195402145386, + 1.3922536373138428, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.327174186706543, + 1.0538512468338013, + 1.0136137008666992, + 1.1566410064697266, + 1.3045940399169922, + 1.3269219398498535, + 1.2105357646942139, + 1.0701236724853516, + 1.0266366004943848, + 1.1150658130645752, + 1.3205019235610962, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.149078607559204, + 0.7260524034500122, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6173660755157471, + 0.8861693143844604, + 1.1768494844436646, + 1.4962074756622314, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.329486608505249, + 1.0686146020889282, + 0.8346059918403625, + 0.6316636800765991, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5166588425636292, + 0.7747547626495361, + 1.0851213932037354, + 1.3339306116104126, + 1.4524601697921753, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4287093877792358, + 1.4262487888336182, + 1.5, + 1.5, + 1.5, + 1.4747923612594604, + 1.4194196462631226, + 1.4638479948043823, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.344496488571167, + 0.9979860782623291, + 0.6140567064285278, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8623670339584351, + 1.1693060398101807, + 1.4386337995529175, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2393872737884521, + 0.9482119083404541, + 0.7581607103347778, + 0.6895755529403687, + 0.6916595697402954, + 0.6557964086532593, + 0.5758183002471924, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6755571961402893, + 0.7672634124755859, + 0.779371440410614, + 0.78766930103302, + 0.840038537979126, + 0.9495408535003662, + 1.119836449623108, + 1.317798376083374, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4433073997497559, + 1.2593282461166382, + 1.0012743473052979, + 0.6549638509750366, + 0.5, + 0.5, + 0.5, + 0.5, + 1.221585750579834, + 1.4687734842300415, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4682198762893677, + 1.1255602836608887, + 0.7524065971374512, + 0.5, + 0.5, + 0.5179717540740967, + 0.6783440113067627, + 0.8151485919952393, + 0.8981320858001709, + 0.8326771259307861, + 0.572228193283081, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7898619771003723, + 1.26401686668396, + 1.5, + 1.5, + 1.3315705060958862, + 1.123102068901062, + 0.9729726314544678, + 0.8755875825881958, + 0.9164563417434692, + 1.1332985162734985, + 1.476269006729126, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3771549463272095, + 1.3255283832550049, + 1.2742798328399658, + 1.1245818138122559, + 0.7888822555541992, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.464113712310791, + 1.3008655309677124, + 1.134520173072815, + 0.8731710910797119, + 0.5218662023544312, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5100012421607971, + 0.7815749049186707, + 0.9850970506668091, + 0.9609048366546631, + 0.6908702850341797, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8021665811538696, + 1.3852754831314087, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4241538047790527, + 1.098979115486145, + 0.8286166191101074, + 0.7214512228965759, + 0.8584607839584351, + 1.2260515689849854, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4130266904830933, + 1.1855288743972778, + 1.151315689086914, + 1.244809627532959, + 1.3329375982284546, + 1.2513794898986816, + 0.9218398332595825, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.4902185201644897, + 1.131721019744873, + 0.785153865814209, + 0.516097903251648, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5211015939712524, + 0.797264039516449, + 0.8139751553535461, + 0.5669851899147034, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5746080875396729, + 1.1529431343078613, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1419099569320679, + 0.7547828555107117, + 0.5233859419822693, + 0.5435681343078613, + 0.8320151567459106, + 1.307593584060669, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3966107368469238, + 1.0196583271026611, + 0.8594331741333008, + 0.9455105662345886, + 1.1589782238006592, + 1.3232133388519287, + 1.285524845123291, + 0.9684990644454956, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.221859335899353, + 0.7258764505386353, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5071442723274231, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7215960621833801, + 1.3068780899047852, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0862467288970947, + 0.6477591395378113, + 0.5, + 0.5, + 0.5, + 0.812422513961792, + 1.2336986064910889, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.475577473640442, + 1.054876685142517, + 0.682723879814148, + 0.5721392631530762, + 0.7268741130828857, + 1.0065131187438965, + 1.2255043983459473, + 1.2222285270690918, + 0.9137299060821533, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.3299022912979126, + 0.8509501218795776, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8874512910842896, + 1.4066917896270752, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0663783550262451, + 0.6203392744064331, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7031405568122864, + 0.9343889951705933, + 1.0575950145721436, + 1.176213264465332, + 1.290886640548706, + 1.3773343563079834, + 1.4258100986480713, + 1.4219900369644165, + 1.3580434322357178, + 1.259917974472046, + 1.1736117601394653, + 1.1601390838623047, + 1.2802802324295044, + 1.4762438535690308, + 1.5, + 1.5, + 1.4926121234893799, + 1.1682662963867188, + 0.7556450366973877, + 0.5, + 0.5, + 0.5095183849334717, + 0.8326584100723267, + 1.0880651473999023, + 1.0923439264297485, + 0.7729177474975586, + 0.5, + 0.5, + 0.5, + 0.5, + 1.3568148612976074, + 1.025727391242981, + 0.5003407001495361, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7491904497146606, + 1.1779017448425293, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2102431058883667, + 0.7924492359161377, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.572610080242157, + 0.7506781816482544, + 0.9238834381103516, + 1.0365715026855469, + 1.0607839822769165, + 0.9979087710380554, + 0.8674363493919373, + 0.7067853212356567, + 0.5994815826416016, + 0.6232339143753052, + 0.816224217414856, + 1.1086254119873047, + 1.3393089771270752, + 1.3810361623764038, + 1.2240175008773804, + 0.9280591011047363, + 0.5787996053695679, + 0.5, + 0.5, + 0.5, + 0.6959856748580933, + 0.8764859437942505, + 0.8177008628845215, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6119801998138428, + 0.5827251076698303, + 0.5096139907836914, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6222086548805237, + 0.690422534942627, + 0.5924990177154541, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5298206210136414, + 0.6162825226783752, + 0.5272799730300903, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5733323097229004, + 0.8049014806747437, + 0.9802067875862122, + 1.0002098083496094, + 0.8329488039016724, + 0.5222381949424744, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5132715702056885, + 0.5565747618675232, + 0.5264270305633545, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5848155617713928, + 0.5861678123474121, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5955004692077637, + 0.9148635864257812, + 1.2453398704528809, + 1.5, + 1.5, + 1.5, + 1.312686562538147, + 0.9246734976768494, + 0.5136558413505554, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6778343915939331, + 0.8917113542556763, + 0.9681402444839478, + 0.8608115911483765, + 0.6065298318862915, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6958057880401611, + 0.8324158191680908, + 0.7668485641479492, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5090834498405457, + 0.9439869523048401, + 1.370845913887024, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1887383460998535, + 0.739738941192627, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6819056272506714, + 0.9888318777084351, + 1.1635369062423706, + 1.142059326171875, + 0.9411733150482178, + 0.6518709659576416, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6152598857879639, + 0.9910062551498413, + 1.2460694313049316, + 1.2767413854599, + 1.0535805225372314, + 0.6582431793212891, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5648694038391113, + 1.0860925912857056, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2005133628845215, + 0.7086178660392761, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.719632625579834, + 0.7772380709648132, + 0.6419776678085327, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8594436645507812, + 1.1772211790084839, + 1.3333454132080078, + 1.3034313917160034, + 1.1374032497406006, + 0.9315493106842041, + 0.7555856704711914, + 0.5449775457382202, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.544163703918457, + 0.9534180164337158, + 1.3624086380004883, + 1.5, + 1.5, + 1.5, + 1.1643075942993164, + 0.770199716091156, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0259816646575928, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9825231432914734, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6327707171440125, + 1.01047682762146, + 1.2683050632476807, + 1.3443301916122437, + 1.2366795539855957, + 1.0113048553466797, + 0.7712323665618896, + 0.5, + 0.5, + 0.5, + 0.6311046481132507, + 1.0838291645050049, + 1.4094792604446411, + 1.5, + 1.5, + 1.4505254030227661, + 1.3109458684921265, + 1.1021502017974854, + 0.7659077644348145, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5189598798751831, + 0.9017652273178101, + 1.27604341506958, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1809356212615967, + 0.9092191457748413, + 0.6265308856964111, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8785238862037659, + 1.3764607906341553, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2945611476898193, + 0.7397551536560059, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7953014373779297, + 1.1710233688354492, + 1.489516258239746, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3342015743255615, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8456183671951294, + 1.351914882659912, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4739309549331665, + 1.1709911823272705, + 0.8380850553512573, + 0.5810791254043579, + 0.5, + 0.5956553220748901, + 0.8895367383956909, + 1.2504420280456543, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3237087726593018, + 1.146500825881958, + 0.9531210660934448, + 0.6640174388885498, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6254238486289978, + 1.086012840270996, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0998042821884155, + 0.652660608291626, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.612177848815918, + 1.0236420631408691, + 1.4138927459716797, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5092111229896545, + 1.1566870212554932, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.319125771522522, + 1.0390751361846924, + 0.8308249115943909, + 0.7828143239021301, + 0.9101749658584595, + 1.1900644302368164, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2929277420043945, + 1.1965175867080688, + 1.149806261062622, + 1.091712236404419, + 0.9626588821411133, + 0.6852477788925171, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7770822048187256, + 1.1836590766906738, + 1.454944133758545, + 1.4983744621276855, + 1.325372338294983, + 1.0362168550491333, + 0.7551919221878052, + 0.5067856311798096, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6701339483261108, + 1.1797101497650146, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9256411790847778, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4626544713974, + 1.2024219036102295, + 0.9452497959136963, + 0.7951173782348633, + 0.8396168351173401, + 1.0616270303726196, + 1.3760595321655273, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4920003414154053, + 1.1006239652633667, + 0.8866000175476074, + 0.9089934229850769, + 1.0018072128295898, + 1.0941323041915894, + 1.122020959854126, + 0.9254400730133057, + 0.5476341843605042, + 0.5, + 0.5, + 0.5, + 0.5, + 0.593122661113739, + 0.9545636177062988, + 1.192823052406311, + 1.261899709701538, + 1.1934540271759033, + 1.073472023010254, + 0.9750769138336182, + 0.8904578685760498, + 0.8085054159164429, + 0.7091639637947083, + 0.5070821046829224, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9749751091003418, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3741402626037598, + 1.1347033977508545, + 1.0832369327545166, + 1.1878044605255127, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7978867292404175, + 1.3959804773330688, + 1.5, + 1.5, + 1.5, + 1.2338420152664185, + 0.9177868366241455, + 0.6564791798591614, + 0.5617259740829468, + 0.7074438333511353, + 1.0458630323410034, + 1.4387807846069336, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2509220838546753, + 0.7864019870758057, + 0.5617674589157104, + 0.6157691478729248, + 0.8353816270828247, + 1.0696361064910889, + 1.1887245178222656, + 1.0827219486236572, + 0.7612826228141785, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6203124523162842, + 0.9100236892700195, + 1.0799916982650757, + 1.1348028182983398, + 1.129551887512207, + 1.1365195512771606, + 1.184654951095581, + 1.2623679637908936, + 1.3299990892410278, + 1.3642785549163818, + 1.28822660446167, + 0.9856539368629456, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0948344469070435, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2428675889968872, + 0.8071367740631104, + 0.5804384350776672, + 0.6099063158035278, + 0.7935115098953247, + 0.55781489610672, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8616587519645691, + 1.378136396408081, + 1.5, + 1.5, + 1.402782917022705, + 1.0429660081863403, + 0.6572694182395935, + 0.5, + 0.5, + 0.5183721780776978, + 0.937401533126831, + 1.4083387851715088, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2287896871566772, + 0.7221956253051758, + 0.5, + 0.5, + 0.7887721657752991, + 1.123810052871704, + 1.298883080482483, + 1.2454781532287598, + 1.0020408630371094, + 0.6709305047988892, + 0.5, + 0.5, + 0.5779929757118225, + 0.8542662858963013, + 1.0475618839263916, + 1.1105926036834717, + 1.0958130359649658, + 1.0813720226287842, + 1.1282613277435303, + 1.2661703824996948, + 1.4732017517089844, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1350054740905762, + 0.5276663899421692, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0481396913528442, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2445428371429443, + 0.7619640231132507, + 0.5, + 0.5, + 0.5, + 0.5140351057052612, + 1.1203088760375977, + 0.6765303611755371, + 0.5, + 0.5, + 0.6249796748161316, + 1.0951603651046753, + 1.5, + 1.5, + 1.5, + 1.4329769611358643, + 1.0275112390518188, + 0.5878391265869141, + 0.5, + 0.5, + 0.5, + 0.8388097882270813, + 1.3605738878250122, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4142508506774902, + 0.8980571031570435, + 0.5869808197021484, + 0.6167448163032532, + 0.951097309589386, + 1.3320605754852295, + 1.5, + 1.5, + 1.2919085025787354, + 1.0035083293914795, + 0.7889481782913208, + 0.7755929231643677, + 0.9784125089645386, + 1.21811842918396, + 1.3113858699798584, + 1.2424609661102295, + 1.0969042778015137, + 0.9843005537986755, + 0.9893479347229004, + 1.1503949165344238, + 1.4301769733428955, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1282111406326294, + 0.6204128265380859, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9255324602127075, + 1.2657520771026611, + 1.3949177265167236, + 1.3055305480957031, + 1.1008150577545166, + 0.761772632598877, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.1190516948699951, + 0.7615249156951904, + 0.6973727941513062, + 0.9489503502845764, + 1.3834811449050903, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2071137428283691, + 0.7346336841583252, + 0.5, + 0.5, + 0.5, + 0.8313302993774414, + 1.3563485145568848, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.172499418258667, + 0.9035543203353882, + 0.949682891368866, + 1.2849817276000977, + 1.5, + 1.5, + 1.5, + 1.5, + 1.341957926750183, + 1.160907506942749, + 1.180311679840088, + 1.3987972736358643, + 1.5, + 1.5, + 1.4200034141540527, + 1.1195117235183716, + 0.8592332005500793, + 0.7591759562492371, + 0.8782132267951965, + 1.1727685928344727, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1431649923324585, + 0.7506439685821533, + 0.5, + 0.5, + 0.5, + 0.5255019664764404, + 0.7785429954528809, + 0.958712100982666, + 0.975541353225708, + 0.832594633102417, + 0.62802654504776, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6761844158172607, + 1.5, + 1.5, + 1.2122982740402222, + 1.087684154510498, + 1.2679851055145264, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.460207462310791, + 1.0020380020141602, + 0.614465594291687, + 0.5, + 0.5728098154067993, + 0.9322899580001831, + 1.3815264701843262, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4309905767440796, + 1.2376539707183838, + 1.3182940483093262, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.451277494430542, + 1.4899709224700928, + 1.5, + 1.5, + 1.5, + 1.5, + 1.149277687072754, + 0.7611625790596008, + 0.5765565037727356, + 0.6604462265968323, + 0.9489278197288513, + 1.2899608612060547, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2618041038513184, + 0.9085924625396729, + 0.6574612855911255, + 0.5571401119232178, + 0.5756207704544067, + 0.6366194486618042, + 0.6581789255142212, + 0.5797266364097595, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8631373047828674, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.325061559677124, + 0.9792200326919556, + 0.8217266798019409, + 0.8875782489776611, + 1.1158742904663086, + 1.4058187007904053, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4452756643295288, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1784148216247559, + 0.7852311730384827, + 0.6056861281394958, + 0.700040340423584, + 0.9767392873764038, + 1.2684060335159302, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.356299877166748, + 1.015844702720642, + 0.7799418568611145, + 0.6385104060173035, + 0.5465779304504395, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8563869595527649, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3436435461044312, + 1.2412117719650269, + 1.2793934345245361, + 1.3702540397644043, + 1.4547967910766602, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4959585666656494, + 1.2360239028930664, + 1.110579490661621, + 1.2021056413650513, + 1.4344433546066284, + 1.5, + 1.5, + 1.5, + 1.221561312675476, + 0.945816159248352, + 0.8493926525115967, + 0.9846306443214417, + 1.2370415925979614, + 1.4619008302688599, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2586787939071655, + 0.9188337326049805, + 0.6658120155334473, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6267364025115967, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4902007579803467, + 1.4687902927398682, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1723904609680176, + 0.8192870616912842, + 0.5961174964904785, + 0.5708178281784058, + 0.717648983001709, + 0.9512022733688354, + 1.1926815509796143, + 1.357363224029541, + 1.3678207397460938, + 1.262033462524414, + 1.162007212638855, + 1.188104271888733, + 1.36556077003479, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2981140613555908, + 0.8888139724731445, + 0.590820848941803, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5277501940727234, + 0.601969838142395, + 0.5114235281944275, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3055431842803955, + 1.2835971117019653, + 1.4865435361862183, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4118027687072754, + 0.9409085512161255, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7356143593788147, + 0.9847738146781921, + 1.1743847131729126, + 1.2717781066894531, + 1.3431894779205322, + 1.4680540561676025, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1069655418395996, + 0.6644530892372131, + 0.5, + 0.5, + 0.5, + 0.5130870938301086, + 0.6973630785942078, + 0.906125545501709, + 0.9781883955001831, + 0.798918604850769, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2795125246047974, + 1.194967269897461, + 1.398368239402771, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9572620391845703, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7572988867759705, + 1.0186563730239868, + 1.2316228151321411, + 1.391954779624939, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.314217209815979, + 0.7732095122337341, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5840466618537903, + 0.8840000629425049, + 1.1583008766174316, + 1.206406593322754, + 0.9477603435516357, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4247794151306152, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3568434715270996, + 1.2237151861190796, + 1.3947901725769043, + 1.5, + 1.5, + 1.5, + 1.5, + 1.223663091659546, + 0.5686624646186829, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7639058828353882, + 0.9900086522102356, + 1.1347451210021973, + 1.2110036611557007, + 1.2628676891326904, + 1.3514854907989502, + 1.493815302848816, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0143818855285645, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.869043231010437, + 1.1697629690170288, + 1.203771710395813, + 0.9196473360061646, + 0.5, + 0.5, + 0.5, + 0.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.355303406715393, + 1.2233752012252808, + 1.412649393081665, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4732236862182617, + 1.301328420639038, + 1.4159393310546875, + 1.5, + 1.5, + 1.5, + 1.5, + 0.9700859189033508, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6871254444122314, + 0.9181821346282959, + 1.0133404731750488, + 0.9799993634223938, + 0.8756262063980103, + 0.7890497446060181, + 0.8036632537841797, + 0.9361151456832886, + 1.135054111480713, + 1.457302212715149, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.314889907836914, + 0.801641583442688, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6730911135673523, + 0.9764495491981506, + 1.032353162765503, + 0.8053067326545715, + 0.5, + 0.5, + 0.5, + 0.5, + 1.28757905960083, + 1.1987130641937256, + 1.1533613204956055, + 1.3089702129364014, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1702089309692383, + 1.0546796321868896, + 1.2753536701202393, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.37935209274292, + 1.413989543914795, + 1.5, + 1.5, + 1.5, + 1.369519829750061, + 0.7698855400085449, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6699331998825073, + 0.9446954131126404, + 1.0632939338684082, + 0.9928312301635742, + 0.780152440071106, + 0.5141856670379639, + 0.5, + 0.5, + 0.5, + 0.6020649075508118, + 0.9605792760848999, + 1.3999710083007812, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1982223987579346, + 0.7255554795265198, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7858016490936279, + 0.8652141094207764, + 0.6997952461242676, + 0.5, + 0.5, + 0.5, + 0.5, + 1.0100889205932617, + 0.9601652026176453, + 0.9658015370368958, + 1.128065586090088, + 1.4326226711273193, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4365227222442627, + 1.107833743095398, + 1.0121221542358398, + 1.2207683324813843, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4587669372558594, + 1.386523723602295, + 1.4959022998809814, + 1.5, + 1.5, + 1.277179479598999, + 0.7143253684043884, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6412248611450195, + 0.9882160425186157, + 1.2214112281799316, + 1.234363317489624, + 0.9968495965003967, + 0.6217634677886963, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5513961315155029, + 0.9987390041351318, + 1.443467378616333, + 1.5, + 1.5, + 1.5, + 1.3242580890655518, + 0.9290003776550293, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7351473569869995, + 0.8271932601928711, + 0.6902092099189758, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9278209805488586, + 0.969613790512085, + 1.0671429634094238, + 1.2426433563232422, + 1.466503381729126, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3870940208435059, + 1.1916029453277588, + 1.1339161396026611, + 1.346355676651001, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4857838153839111, + 1.3519083261489868, + 1.4562745094299316, + 1.5, + 1.5, + 1.2908647060394287, + 0.7748775482177734, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8571372032165527, + 1.2004221677780151, + 1.4101088047027588, + 1.3761283159255981, + 1.0910589694976807, + 0.6769821643829346, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7459632158279419, + 1.2809767723083496, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3573964834213257, + 1.009063720703125, + 0.6161298751831055, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5978262424468994, + 0.8480132222175598, + 0.9520273804664612, + 0.846983790397644, + 0.6426867246627808, + 0.512565553188324, + 0.5946593284606934, + 0.8701107501983643, + 1.0044125318527222, + 1.1762462854385376, + 1.3932137489318848, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4845776557922363, + 1.423140525817871, + 1.3938343524932861, + 1.3767366409301758, + 1.414891004562378, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4163422584533691, + 1.2948756217956543, + 1.4223054647445679, + 1.5, + 1.5, + 1.3234343528747559, + 0.8514046669006348, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8334749341011047, + 1.183201789855957, + 1.3914321660995483, + 1.4041638374328613, + 1.2360293865203857, + 0.9223922491073608, + 0.5638682842254639, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6691341400146484, + 1.243908405303955, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2207239866256714, + 0.8460420966148376, + 0.5891191363334656, + 0.512605607509613, + 0.61006098985672, + 0.8419861793518066, + 1.0841286182403564, + 1.2021355628967285, + 1.1309099197387695, + 0.9459505081176758, + 0.807320773601532, + 0.8644152879714966, + 1.1263402700424194, + 1.1410324573516846, + 1.4528393745422363, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4561967849731445, + 1.257028341293335, + 1.2567355632781982, + 1.406388282775879, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.221207857131958, + 1.1511633396148682, + 1.305422306060791, + 1.4986002445220947, + 1.5, + 1.2825254201889038, + 0.8370041847229004, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.54349684715271, + 0.9003069996833801, + 1.13926100730896, + 1.2767789363861084, + 1.3239691257476807, + 1.220638394355774, + 0.998597264289856, + 0.7546577453613281, + 0.5445537567138672, + 0.5, + 0.5, + 0.5, + 0.6657359600067139, + 1.2051751613616943, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2247552871704102, + 0.9118276834487915, + 0.7713029980659485, + 0.865084707736969, + 1.1169929504394531, + 1.3699285984039307, + 1.4950411319732666, + 1.4336351156234741, + 1.2336299419403076, + 1.0395424365997314, + 1.0014634132385254, + 1.1551460027694702, + 1.1963133811950684, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2798532247543335, + 1.0405659675598145, + 1.0882351398468018, + 1.366557002067566, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1099694967269897, + 0.8731635808944702, + 0.8782678246498108, + 1.0584337711334229, + 1.258574366569519, + 1.3047274351119995, + 1.0932044982910156, + 0.658458948135376, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7297508120536804, + 1.0274553298950195, + 1.2894375324249268, + 1.4246039390563965, + 1.3699206113815308, + 1.145471215248108, + 0.856692910194397, + 0.5936854481697083, + 0.5, + 0.5, + 0.5911312103271484, + 1.0399863719940186, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.266822338104248, + 0.9769507646560669, + 0.8934714794158936, + 1.0420058965682983, + 1.331252098083496, + 1.5, + 1.5, + 1.5, + 1.4148669242858887, + 1.1358041763305664, + 0.9641975164413452, + 0.9829210042953491, + 1.0662628412246704, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0654093027114868, + 0.8179752230644226, + 0.8874865174293518, + 1.2303261756896973, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3765537738800049, + 0.9660118222236633, + 0.5922244191169739, + 0.5, + 0.5, + 0.68692946434021, + 0.8931452035903931, + 0.9439185261726379, + 0.7378677129745483, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7243859171867371, + 1.1570792198181152, + 1.4354798793792725, + 1.4688091278076172, + 1.2708981037139893, + 0.9524608254432678, + 0.6301218271255493, + 0.5, + 0.5, + 0.5, + 0.7265411615371704, + 1.2269930839538574, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3887132406234741, + 1.0288565158843994, + 0.8316376209259033, + 0.8556443452835083, + 1.080451488494873, + 1.4166560173034668, + 1.5, + 1.5, + 1.5, + 1.4517537355422974, + 1.082200288772583, + 0.7907587885856628, + 0.6985197067260742, + 0.7854189276695251, + 1.3365964889526367, + 1.5, + 1.5, + 1.5, + 1.2734414339065552, + 0.834980309009552, + 0.5869222283363342, + 0.6559185981750488, + 1.0066123008728027, + 1.4333281517028809, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4033417701721191, + 0.8806560635566711, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8869079947471619, + 1.2317744493484497, + 1.3082211017608643, + 1.1329203844070435, + 0.8150171637535095, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8269293904304504, + 1.253150224685669, + 1.5, + 1.5, + 1.5, + 1.3560235500335693, + 1.0418777465820312, + 0.7645137906074524, + 0.6479626893997192, + 0.7428113222122192, + 1.0169334411621094, + 1.381311297416687, + 1.5, + 1.5, + 1.5, + 1.357913613319397, + 0.9170718193054199, + 0.5487639904022217, + 0.5, + 0.520596981048584, + 1.034766435623169, + 1.4791232347488403, + 1.5, + 1.4406249523162842, + 1.038588523864746, + 0.6203083992004395, + 0.5, + 0.5, + 0.7817426919937134, + 1.172757863998413, + 1.5, + 1.5, + 1.5, + 1.381428599357605, + 0.8770524859428406, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8746464848518372, + 1.0059773921966553, + 0.8864568471908569, + 0.60865318775177, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5105884671211243, + 0.8720077276229858, + 1.0999748706817627, + 1.1614460945129395, + 1.1567994356155396, + 1.0184085369110107, + 0.7938562631607056, + 0.6118006706237793, + 0.5753688812255859, + 0.7252041101455688, + 1.015081524848938, + 1.3621662855148315, + 1.5, + 1.5, + 1.5, + 1.2076125144958496, + 0.7201433181762695, + 0.5, + 0.5, + 0.5, + 0.7639173865318298, + 1.2068562507629395, + 1.3974084854125977, + 1.2449405193328857, + 0.8533613681793213, + 0.5, + 0.5, + 0.5, + 0.6205756664276123, + 0.959706723690033, + 1.2268837690353394, + 1.3224666118621826, + 1.1643671989440918, + 0.7862412333488464, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5172646045684814, + 0.6941821575164795, + 0.6503967046737671, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7931628227233887, + 0.9738141298294067, + 1.0140153169631958, + 1.0311915874481201, + 0.9524955749511719, + 0.7940385341644287, + 0.6965135335922241, + 0.7582905292510986, + 0.9550206065177917, + 1.2125061750411987, + 1.4785538911819458, + 1.5, + 1.5, + 1.5, + 1.0986876487731934, + 0.6254180669784546, + 0.5, + 0.5, + 0.5, + 0.5718019008636475, + 1.0135084390640259, + 1.2619613409042358, + 1.148019552230835, + 0.7483163475990295, + 0.5, + 0.5, + 0.5, + 0.5234651565551758, + 0.8231279850006104, + 1.0084270238876343, + 0.9701274037361145, + 0.6639232635498047, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5304266810417175, + 0.5163244605064392, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7158041000366211, + 1.0379384756088257, + 1.1580673456192017, + 1.173928141593933, + 1.1879374980926514, + 1.160214900970459, + 1.1035056114196777, + 1.123690128326416, + 1.2449417114257812, + 1.419290542602539, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4798760414123535, + 1.0815812349319458, + 0.6834739446640015, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9246146082878113, + 1.2047226428985596, + 1.1101102828979492, + 0.7101318836212158, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7407028675079346, + 0.8590695261955261, + 0.6874114871025085, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5743984580039978, + 0.5337889194488525, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5482582449913025, + 1.0742703676223755, + 1.4220772981643677, + 1.5, + 1.5, + 1.4910638332366943, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4147083759307861, + 1.0824573040008545, + 0.8124673962593079, + 0.6979855298995972, + 0.7489006519317627, + 0.5, + 0.5, + 0.9366047978401184, + 1.1797868013381958, + 1.0787136554718018, + 0.6872431039810181, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6626489758491516, + 0.721642792224884, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6676114797592163, + 0.7553228735923767, + 0.6767258048057556, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7538449764251709, + 1.3244656324386597, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.218058466911316, + 0.9797127842903137, + 0.8706939220428467, + 0.9265992045402527, + 1.0837210416793823, + 0.5, + 0.5507155656814575, + 0.993656575679779, + 1.1752344369888306, + 1.0176057815551758, + 0.6213040351867676, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5396299958229065, + 0.5586522817611694, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6554049849510193, + 0.8692606091499329, + 0.9553886651992798, + 0.8639453053474426, + 0.6097009181976318, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7386715412139893, + 1.3122386932373047, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1763215065002441, + 0.8432623147964478, + 0.6849111914634705, + 0.7269325256347656, + 0.9298677444458008, + 1.1975802183151245, + 0.5, + 0.5965369939804077, + 1.0340547561645508, + 1.1652164459228516, + 0.943297266960144, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6541600227355957, + 0.9453046917915344, + 1.088548183441162, + 1.020552396774292, + 0.7534268498420715, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5110657215118408, + 1.0448689460754395, + 1.4894295930862427, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2287747859954834, + 0.7480831146240234, + 0.5, + 0.5, + 0.5, + 0.6410011649131775, + 0.9958445429801941, + 0.5, + 0.6024927496910095, + 1.026998519897461, + 1.1240581274032593, + 0.8559130430221558, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8861544728279114, + 1.1193418502807617, + 1.104818344116211, + 0.8495198488235474, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6749913096427917, + 1.0287362337112427, + 1.1752591133117676, + 1.0949013233184814, + 0.9990984201431274, + 1.0824480056762695, + 1.336614966392517, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2541546821594238, + 0.7788616418838501, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5585227012634277, + 0.5, + 0.5785079002380371, + 0.9609709978103638, + 1.0342168807983398, + 0.74607914686203, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5376076102256775, + 0.5711165070533752, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7498074769973755, + 1.0736298561096191, + 1.14859938621521, + 0.9577367305755615, + 0.5771582126617432, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5582660436630249, + 0.5934580564498901, + 0.5, + 0.5, + 0.5097618103027344, + 0.7960796356201172, + 1.1287404298782349, + 1.3748855590820312, + 1.4284178018569946, + 1.2301273345947266, + 0.8357900977134705, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7693857550621033, + 0.812095046043396, + 0.5460981130599976, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5878985524177551, + 0.7385997176170349, + 0.6504457592964172, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6728194355964661, + 1.0829370021820068, + 1.2818100452423096, + 1.191160798072815, + 0.8766054511070251, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7080498933792114, + 1.0267444849014282, + 1.1441431045532227, + 0.9903811812400818, + 0.6384777426719666, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6331360936164856, + 0.8329044580459595, + 0.8641566038131714, + 0.7187414169311523, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8297387361526489, + 1.2361729145050049, + 1.4893696308135986, + 1.4852683544158936, + 1.2582266330718994, + 0.9287288784980774, + 0.6033933758735657, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.539743959903717, + 0.9279547929763794, + 1.0826008319854736, + 0.9573774337768555, + 0.6564534902572632, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7302923202514648, + 0.8909863829612732, + 0.9329697489738464, + 0.8743849396705627, + 0.7563060522079468, + 0.6274437308311462, + 0.5399733781814575, + 0.5256678462028503, + 0.5627856850624084, + 0.5920605659484863, + 0.6091020107269287, + 0.6506084203720093, + 0.8374958634376526, + 1.147599220275879, + 1.4626703262329102, + 1.5, + 1.5, + 1.5, + 1.3093712329864502, + 0.9878900647163391, + 0.5736536979675293, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6224027276039124, + 1.0065946578979492, + 1.1320221424102783, + 1.0135629177093506, + 0.7661425471305847, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5364580750465393, + 0.6026945114135742, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5621103644371033, + 0.8217607736587524, + 0.975755512714386, + 0.9819309115409851, + 0.8802543878555298, + 0.7595428228378296, + 0.7058811187744141, + 0.7374480962753296, + 0.8603584170341492, + 1.0363357067108154, + 1.1555241346359253, + 1.193272590637207, + 1.1965136528015137, + 1.20597243309021, + 1.2805296182632446, + 1.4345295429229736, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4793864488601685, + 1.1507617235183716, + 0.67672199010849, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8195723295211792, + 1.1062440872192383, + 1.1438395977020264, + 1.019331455230713, + 0.8096750974655151, + 0.5681483745574951, + 0.5, + 0.5023210048675537, + 0.6518838405609131, + 0.7927589416503906, + 0.8599095344543457, + 0.8660234808921814, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7382200956344604, + 0.9873226284980774, + 1.0518094301223755, + 0.9335458278656006, + 0.7329323291778564, + 0.5749024152755737, + 0.5639461278915405, + 0.7347327470779419, + 1.02981436252594, + 1.3256014585494995, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.364356517791748, + 1.0389537811279297, + 0.5606650710105896, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.608410656452179, + 0.9456222653388977, + 1.0749045610427856, + 1.0170952081680298, + 0.8553900718688965, + 0.6545054912567139, + 0.5, + 0.5, + 0.5, + 0.650714635848999, + 0.8159634470939636, + 0.9046634435653687, + 0.8965305089950562, + 0.5551440715789795, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7560678720474243, + 0.9969034790992737, + 1.0121095180511475, + 0.824135422706604, + 0.5788295865058899, + 0.5, + 0.5, + 0.6186408400535583, + 0.9520205855369568, + 1.2902944087982178, + 1.5, + 1.5, + 1.5, + 1.4891010522842407, + 1.4255485534667969, + 1.3527209758758545, + 1.2867017984390259, + 1.2350881099700928, + 1.189741849899292, + 1.1318765878677368, + 1.0042901039123535, + 0.7084296345710754, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7355385422706604, + 0.8979500532150269, + 0.8728052377700806, + 0.6968066692352295, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6102438569068909, + 0.6072852611541748, + 0.6278350353240967, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6671845316886902, + 0.9191634654998779, + 0.9240881204605103, + 0.7199608087539673, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7518599033355713, + 1.0458288192749023, + 1.2287988662719727, + 1.2566871643066406, + 1.2294726371765137, + 1.182584285736084, + 1.1157863140106201, + 1.0309779644012451, + 0.9337309002876282, + 0.8319724798202515, + 0.7326576709747314, + 0.6396262049674988, + 0.518689751625061, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5515098571777344, + 0.7306967973709106, + 0.727851152420044, + 0.5319133996963501, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6889362931251526, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5550050139427185, + 0.8026806712150574, + 0.8000444173812866, + 0.6121653318405151, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6140236854553223, + 0.8019939064979553, + 0.8820925354957581, + 0.8568302989006042, + 0.8439194560050964, + 0.8374074697494507, + 0.7981337308883667, + 0.7090669870376587, + 0.5897561311721802, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6298477053642273, + 0.6368415355682373, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8247976303100586, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6473737955093384, + 0.6448174715042114, + 0.5204798579216003, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5534566640853882, + 0.566033124923706, + 0.5002052783966064, + 0.5, + 0.5, + 0.5060802102088928, + 0.5477741956710815, + 0.5398593544960022, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6234592795372009, + 0.7458689212799072, + 0.7215852737426758, + 0.522602915763855, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.964826226234436, + 0.60150146484375, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.515783429145813, + 0.515623152256012, + 0.5892349481582642, + 0.7113104462623596, + 0.7822126150131226, + 0.7378784418106079, + 0.5995305776596069, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6269944310188293, + 0.6951774954795837, + 0.6414198279380798, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7677107453346252, + 0.9333580732345581, + 0.9478347897529602, + 0.7749842405319214, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9775850772857666, + 0.7343770265579224, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6493250131607056, + 0.9004383683204651, + 1.1620569229125977, + 1.257571816444397, + 1.1259713172912598, + 0.8204270601272583, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6570549011230469, + 0.9415245056152344, + 1.0957003831863403, + 1.0710089206695557, + 0.9066522121429443, + 0.7042853832244873, + 0.5016341209411621, + 0.5, + 0.5, + 0.5, + 0.5374146699905396, + 0.7659587264060974, + 0.9526937007904053, + 1.032600998878479, + 0.9494706392288208, + 0.6584062576293945, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7794113755226135, + 0.6346240043640137, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5640529990196228, + 0.9175390005111694, + 1.3292396068572998, + 1.5, + 1.5, + 1.5, + 1.1959636211395264, + 0.7238383293151855, + 0.5, + 0.5, + 0.5, + 0.6445753574371338, + 1.009477138519287, + 1.3309264183044434, + 1.4895780086517334, + 1.4528981447219849, + 1.2849382162094116, + 1.0573632717132568, + 0.8140692710876465, + 0.6297745704650879, + 0.558830976486206, + 0.5886695384979248, + 0.6791164875030518, + 0.7803616523742676, + 0.8581967353820801, + 0.8455166816711426, + 0.6875990629196167, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7459180951118469, + 1.2567790746688843, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1749309301376343, + 0.8898146152496338, + 0.8272110223770142, + 0.8941532969474792, + 1.0904490947723389, + 1.3648842573165894, + 1.5, + 1.5, + 1.5, + 1.4271643161773682, + 1.1763098239898682, + 0.9057362079620361, + 0.6979048252105713, + 0.5835617780685425, + 0.5355716347694397, + 0.5215843319892883, + 0.5260602831840515, + 0.5072206854820251, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9692226648330688, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4378044605255127, + 1.398423194885254, + 1.4375545978546143, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4584376811981201, + 1.220438003540039, + 0.9442445635795593, + 0.6600838899612427, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5110330581665039, + 0.5745328664779663, + 0.5452725291252136, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6404244899749756, + 1.1999645233154297, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3844674825668335, + 1.0653774738311768, + 0.7346646785736084, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6073879599571228, + 0.6070986986160278, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7846449017524719, + 1.0994120836257935, + 1.1817338466644287, + 1.1350699663162231, + 0.9409341216087341, + 0.6915949583053589, + 0.5435251593589783, + 0.6126190423965454, + 0.9367075562477112, + 1.4612228870391846, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.1066417694091797, + 0.6586068868637085, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5125709176063538, + 0.7873558402061462, + 0.7297461032867432, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7701051235198975, + 1.3403308391571045, + 1.5, + 1.5, + 1.5, + 1.464531660079956, + 1.1695265769958496, + 0.9629451036453247, + 0.9739195704460144, + 1.249922513961792, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4531136751174927, + 0.9115463495254517, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6852133274078369, + 0.9015876054763794, + 0.8080371618270874, + 0.5154677629470825, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6944677829742432, + 1.2728052139282227, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2558777332305908, + 1.2380452156066895, + 1.4949361085891724, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4522947072982788, + 0.8861339092254639, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7679140567779541, + 0.9114499092102051, + 0.8399738073348999, + 0.6619130373001099, + 0.5076916217803955, + 0.5, + 0.6715824604034424, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5172238349914551, + 0.8126484155654907, + 1.2541093826293945, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.315791130065918, + 1.3168329000473022, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.472219467163086, + 0.9738976955413818, + 0.6376032829284668, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6269980669021606, + 0.7401814460754395, + 0.806199848651886, + 0.8113127946853638, + 0.8047022819519043, + 0.8623912334442139, + 1.0250637531280518, + 1.265477180480957, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6167874932289124, + 0.9781705141067505, + 1.3696244955062866, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3404827117919922, + 1.1336625814437866, + 1.1960406303405762, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3807058334350586, + 1.0271189212799072, + 0.8072516322135925, + 0.6704613566398621, + 0.5515992641448975, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5031849145889282, + 0.7264555096626282, + 0.8023966550827026, + 0.7719410061836243, + 0.7400604486465454, + 0.7059974670410156, + 0.6340175271034241, + 0.605821967124939, + 0.6820926070213318, + 0.854950487613678, + 1.1328105926513672, + 1.4763271808624268, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7895851731300354, + 1.3476240634918213, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3087832927703857, + 0.9599280953407288, + 0.8090180158615112, + 0.9403364658355713, + 1.3150079250335693, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3890771865844727, + 1.0993094444274902, + 0.8992445468902588, + 0.7657307386398315, + 0.6735199689865112, + 0.5928106307983398, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5921649932861328, + 0.9977753162384033, + 1.2507833242416382, + 1.269113540649414, + 1.1205577850341797, + 0.9180597066879272, + 0.7150335311889648, + 0.5030075311660767, + 0.5, + 0.5, + 0.7647286653518677, + 1.2053109407424927, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9062051773071289, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.348855972290039, + 0.9493979811668396, + 0.6077233552932739, + 0.5, + 0.6350796222686768, + 1.0311236381530762, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4051487445831299, + 1.1162350177764893, + 0.8448961973190308, + 0.6338663101196289, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6430525779724121, + 1.1143290996551514, + 1.412468671798706, + 1.461814284324646, + 1.2860853672027588, + 0.9944832921028137, + 0.6905112266540527, + 0.5, + 0.5, + 0.5, + 0.5639636516571045, + 1.0260416269302368, + 1.5, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9807854294776917, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.4340589046478271, + 1.1011021137237549, + 0.7051494121551514, + 0.5, + 0.5, + 0.5, + 0.7838830947875977, + 1.2813444137573242, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.2319719791412354, + 0.9695494174957275, + 0.7382352948188782, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9306581616401672, + 1.3108019828796387, + 1.4207122325897217, + 1.2744468450546265, + 0.9793022274971008, + 0.6559651494026184, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7452124357223511, + 1.173977255821228, + 1.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9826889634132385, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.284074068069458, + 0.9686797261238098, + 0.6016689538955688, + 0.5, + 0.5, + 0.5, + 0.6520900726318359, + 1.072502851486206, + 1.4740746021270752, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.0432212352752686, + 0.6439240574836731, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5912773013114929, + 1.0261439085006714, + 1.1998648643493652, + 1.106977939605713, + 0.8576327562332153, + 0.5776563882827759, + 0.5, + 0.5, + 0.5, + 0.5, + 0.546252965927124, + 0.8731949329376221, + 1.1127009391784668, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.9022585153579712, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.3636850118637085, + 1.0823544263839722, + 0.763839602470398, + 0.5, + 0.5, + 0.5, + 0.6899186372756958, + 0.9499085545539856, + 1.2012367248535156, + 1.4750069379806519, + 1.5, + 1.5, + 1.4768879413604736, + 1.0861289501190186, + 0.6475905179977417, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6516210436820984, + 0.8069835901260376, + 0.7595552206039429, + 0.5983455777168274, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.521181583404541, + 0.7119098901748657, + 0.8113154768943787, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.8174370527267456, + 1.3764245510101318, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.5, + 1.406692385673523, + 1.1512080430984497, + 0.9290485978126526, + 0.8259545564651489, + 0.8435949683189392, + 0.9092651009559631, + 0.9471121430397034, + 0.9981722235679626, + 1.1067006587982178, + 1.201753854751587, + 1.1938984394073486, + 1.0533106327056885, + 0.8014944791793823, + 0.5034645795822144, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5074081420898438, + 0.63313889503479, + 0.7302345633506775, + 0.7580859065055847, + 0.6929420232772827 + ] +} diff --git a/test/fixtures/oracle-vulcanus-ore-cliff-replication.seed123456.json b/test/fixtures/oracle-vulcanus-ore-cliff-replication.seed123456.json new file mode 100644 index 00000000..8aef6232 --- /dev/null +++ b/test/fixtures/oracle-vulcanus-ore-cliff-replication.seed123456.json @@ -0,0 +1,56425 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 via test/oracle. Cliff AND resource entities over SIX MORE 256x256 Vulcanus regions than oracle-vulcanus-{cliff,resource}-entities covers, at the DEFAULT preset, after chunk-forced generation. Exists to test whether issue #24's ore/cliff separation REPLICATES - the issue rests on one region, and its tile-independence chance baseline is invalid for fields that come in a handful of blobs. Region list was fixed before any region was measured; the two regions that turned out to hold no resources are kept, not dropped. Same forced-seed Vulcanus surface as every other Vulcanus fixture (create_surface() with the seed FORCED to `seed`, not mapSeed + crc32('vulcanus')). Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-ore-cliff-replication", + "seed": 123456, + "cases": [ + { + "region": { + "x0": 700, + "y0": -1800, + "x1": 956, + "y1": -1544 + }, + "cliffs": [ + { + "x": 790, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": 814, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": 818, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": 818, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": 822, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": 826, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": 883.8125, + "y": -1770.19921875, + "name": "crater-cliff" + }, + { + "x": 786, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": 878.86328125, + "y": -1768.75, + "name": "crater-cliff" + }, + { + "x": 888.76171875, + "y": -1768.75, + "name": "crater-cliff" + }, + { + "x": 786, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": 876.8125, + "y": -1765.25, + "name": "crater-cliff" + }, + { + "x": 890.8125, + "y": -1765.25, + "name": "crater-cliff" + }, + { + "x": 786, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": 878.86328125, + "y": -1761.75390625, + "name": "crater-cliff" + }, + { + "x": 883.8125, + "y": -1760.30078125, + "name": "crater-cliff" + }, + { + "x": 888.76171875, + "y": -1761.75390625, + "name": "crater-cliff" + }, + { + "x": 786, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": 726, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 746, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 750, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": 726, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 754, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1737.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 726, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 746, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 750, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 754, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 862, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 942, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1733.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 758, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 862, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 942, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1729.5, + "name": "cliff-vulcanus" + }, + { + "x": 718, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 758, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 942, + "y": -1725.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 718, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 758, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 882, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 942, + "y": -1721.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 818, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 822, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 826, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 882, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1717.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 814, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 818, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1713.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1709.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1705.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 718, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1701.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1697.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 718, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1693.5, + "name": "cliff-vulcanus" + }, + { + "x": 698, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 758, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 810, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1689.5, + "name": "cliff-vulcanus" + }, + { + "x": 758, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 762, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 950, + "y": -1685.5, + "name": "cliff-vulcanus" + }, + { + "x": 762, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 942, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 950, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1681.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 950, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 958, + "y": -1677.5, + "name": "cliff-vulcanus" + }, + { + "x": 698, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 726, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 730, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 734, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 738, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 930, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 950, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1673.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 714, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 718, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 722, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 726, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 742, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 746, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 834, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 958, + "y": -1669.5, + "name": "cliff-vulcanus" + }, + { + "x": 746, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 750, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 834, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1665.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1661.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 934, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 938, + "y": -1657.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1653.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1649.5, + "name": "cliff-vulcanus" + }, + { + "x": 862, + "y": -1649.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1649.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1649.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 862, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 946, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 950, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1645.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 958, + "y": -1641.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 954, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 958, + "y": -1637.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 806, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1633.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 798, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 910, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1629.5, + "name": "cliff-vulcanus" + }, + { + "x": 766, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 834, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1625.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 802, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1621.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1617.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 838, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 842, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 846, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 914, + "y": -1613.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 794, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1609.5, + "name": "cliff-vulcanus" + }, + { + "x": 699.6875, + "y": -1607.19921875, + "name": "crater-cliff" + }, + { + "x": 694.73828125, + "y": -1605.75, + "name": "crater-cliff" + }, + { + "x": 704.63671875, + "y": -1605.75, + "name": "crater-cliff" + }, + { + "x": 774, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 790, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1605.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 786, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 826, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1601.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 778, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 782, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 826, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 830, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1597.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1593.5, + "name": "cliff-vulcanus" + }, + { + "x": 770, + "y": -1593.5, + "name": "cliff-vulcanus" + }, + { + "x": 774, + "y": -1593.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1593.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1593.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1589.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1589.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1589.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1585.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1581.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1581.5, + "name": "cliff-vulcanus" + }, + { + "x": 918, + "y": -1581.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1581.5, + "name": "cliff-vulcanus" + }, + { + "x": 907.98828125, + "y": -1578.3125, + "name": "crater-cliff" + }, + { + "x": 874, + "y": -1577.5, + "name": "cliff-vulcanus" + }, + { + "x": 922, + "y": -1577.5, + "name": "cliff-vulcanus" + }, + { + "x": 926, + "y": -1577.5, + "name": "cliff-vulcanus" + }, + { + "x": 698, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 882, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1573.5, + "name": "cliff-vulcanus" + }, + { + "x": 907.98828125, + "y": -1571.31640625, + "name": "crater-cliff" + }, + { + "x": 917.88671875, + "y": -1571.31640625, + "name": "crater-cliff" + }, + { + "x": 702, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1569.5, + "name": "cliff-vulcanus" + }, + { + "x": 912.9375, + "y": -1569.86328125, + "name": "crater-cliff" + }, + { + "x": 866, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1565.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 858, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 862, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 866, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 878, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 902, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 906, + "y": -1561.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 710, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 870, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 874, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1557.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 706, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 882, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1553.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 854, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 882, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 898, + "y": -1549.5, + "name": "cliff-vulcanus" + }, + { + "x": 702, + "y": -1545.5, + "name": "cliff-vulcanus" + }, + { + "x": 850, + "y": -1545.5, + "name": "cliff-vulcanus" + }, + { + "x": 886, + "y": -1545.5, + "name": "cliff-vulcanus" + }, + { + "x": 890, + "y": -1545.5, + "name": "cliff-vulcanus" + }, + { + "x": 894, + "y": -1545.5, + "name": "cliff-vulcanus" + } + ], + "resources": [ + { + "x": 878.5, + "y": -1714.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1714.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1714.5, + "name": "coal" + }, + { + "x": 877.5, + "y": -1713.5, + "name": "coal" + }, + { + "x": 876.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 877.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 878.5, + "y": -1713.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1713.5, + "name": "coal" + }, + { + "x": 878.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1713.5, + "name": "coal" + }, + { + "x": 881.5, + "y": -1713.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 881.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 882.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 883.5, + "y": -1712.5, + "name": "coal" + }, + { + "x": 876.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 877.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 876.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 877.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 878.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 878.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 881.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 882.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 883.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 884.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 885.5, + "y": -1711.5, + "name": "coal" + }, + { + "x": 885.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 886.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 887.5, + "y": -1710.5, + "name": "coal" + }, + { + "x": 876.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 877.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 878.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 879.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 880.5, + "y": -1708.5, + "name": "coal" + }, + { + "x": 886.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 887.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 886.5, + "y": -1708.5, + "name": "coal" + }, + { + "x": 887.5, + "y": -1708.5, + "name": "coal" + }, + { + "x": 888.5, + "y": -1709.5, + "name": "coal" + }, + { + "x": 888.5, + "y": -1708.5, + "name": "coal" + }, + { + "x": 889.5, + "y": -1708.5, + "name": "coal" + }, + { + "x": 889.5, + "y": -1707.5, + "name": "coal" + }, + { + "x": 889.5, + "y": -1706.5, + "name": "coal" + }, + { + "x": 890.5, + "y": -1706.5, + "name": "coal" + }, + { + "x": 890.5, + "y": -1705.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1659.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1658.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1659.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1658.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1658.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1658.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1658.5, + "name": "coal" + }, + { + "x": 940.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 940.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1656.5, + "name": "coal" + }, + { + "x": 948.5, + "y": -1657.5, + "name": "coal" + }, + { + "x": 939.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 939.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 940.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 940.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 948.5, + "y": -1655.5, + "name": "coal" + }, + { + "x": 948.5, + "y": -1654.5, + "name": "coal" + }, + { + "x": 940.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 941.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 942.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 947.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 948.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 949.5, + "y": -1653.5, + "name": "coal" + }, + { + "x": 948.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 949.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 950.5, + "y": -1652.5, + "name": "coal" + }, + { + "x": 943.5, + "y": -1651.5, + "name": "coal" + }, + { + "x": 944.5, + "y": -1651.5, + "name": "coal" + }, + { + "x": 945.5, + "y": -1651.5, + "name": "coal" + }, + { + "x": 946.5, + "y": -1651.5, + "name": "coal" + }, + { + "x": 901.5, + "y": -1615.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1604.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1605.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1604.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1604.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1604.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1602.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1603.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1603.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1602.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1602.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1603.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1602.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1602.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1601.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1601.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1601.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1601.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1601.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1600.5, + "name": "coal" + }, + { + "x": 851.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1599.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1598.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1597.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1596.5, + "name": "coal" + }, + { + "x": 851.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1595.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1594.5, + "name": "coal" + }, + { + "x": 852.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 853.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1593.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1592.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 854.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1591.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1590.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 855.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1588.5, + "name": "coal" + }, + { + "x": 862.5, + "y": -1589.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 856.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 857.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 863.5, + "y": -1587.5, + "name": "coal" + }, + { + "x": 862.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 863.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 864.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 865.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 866.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 867.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 868.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 869.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 870.5, + "y": -1586.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 863.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 862.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 863.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 864.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 865.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 864.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 865.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 866.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 867.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 866.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 867.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 868.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 869.5, + "y": -1585.5, + "name": "coal" + }, + { + "x": 868.5, + "y": -1584.5, + "name": "coal" + }, + { + "x": 858.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 859.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1582.5, + "name": "coal" + }, + { + "x": 862.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 863.5, + "y": -1583.5, + "name": "coal" + }, + { + "x": 837.5, + "y": -1581.5, + "name": "coal" + }, + { + "x": 837.5, + "y": -1580.5, + "name": "coal" + }, + { + "x": 838.5, + "y": -1580.5, + "name": "coal" + }, + { + "x": 860.5, + "y": -1581.5, + "name": "coal" + }, + { + "x": 861.5, + "y": -1581.5, + "name": "coal" + }, + { + "x": 836.5, + "y": -1578.5, + "name": "coal" + }, + { + "x": 837.5, + "y": -1578.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1567.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1566.5, + "name": "coal" + }, + { + "x": 828.5, + "y": -1566.5, + "name": "coal" + }, + { + "x": 847.5, + "y": -1566.5, + "name": "coal" + }, + { + "x": 848.5, + "y": -1566.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1565.5, + "name": "coal" + }, + { + "x": 828.5, + "y": -1564.5, + "name": "coal" + }, + { + "x": 825.5, + "y": -1562.5, + "name": "coal" + }, + { + "x": 826.5, + "y": -1563.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1563.5, + "name": "coal" + }, + { + "x": 826.5, + "y": -1562.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1562.5, + "name": "coal" + }, + { + "x": 824.5, + "y": -1561.5, + "name": "coal" + }, + { + "x": 825.5, + "y": -1561.5, + "name": "coal" + }, + { + "x": 824.5, + "y": -1560.5, + "name": "coal" + }, + { + "x": 825.5, + "y": -1560.5, + "name": "coal" + }, + { + "x": 826.5, + "y": -1561.5, + "name": "coal" + }, + { + "x": 827.5, + "y": -1561.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1557.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1556.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1557.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1556.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1555.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1555.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1555.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1555.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 811.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 812.5, + "y": -1555.5, + "name": "coal" + }, + { + "x": 812.5, + "y": -1554.5, + "name": "coal" + }, + { + "x": 798.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 799.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 800.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 801.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 802.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 811.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 811.5, + "y": -1552.5, + "name": "coal" + }, + { + "x": 812.5, + "y": -1553.5, + "name": "coal" + }, + { + "x": 797.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 797.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 798.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 799.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 798.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 800.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 800.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1551.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1550.5, + "name": "coal" + }, + { + "x": 801.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 802.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 802.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 809.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1549.5, + "name": "coal" + }, + { + "x": 810.5, + "y": -1548.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1547.5, + "name": "coal" + }, + { + "x": 808.5, + "y": -1546.5, + "name": "coal" + }, + { + "x": 801.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 800.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 801.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 802.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 802.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 803.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 804.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 805.5, + "y": -1544.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 807.5, + "y": -1545.5, + "name": "coal" + }, + { + "x": 806.5, + "y": -1544.5, + "name": "coal" + } + ] + }, + { + "region": { + "x0": -2400, + "y0": -600, + "x1": -2144, + "y1": -344 + }, + "cliffs": [ + { + "x": -2394, + "y": -601.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -597.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -597.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -597.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -597.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -597.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2314, + "y": -593.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -589.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -589.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -589.5, + "name": "cliff-vulcanus" + }, + { + "x": -2314, + "y": -589.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -589.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -585.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2358, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -581.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2358, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -577.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2358, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -573.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -569.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -569.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -569.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -569.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -565.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -561.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -561.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -561.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -561.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -557.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -557.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -557.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -557.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -553.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -549.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -545.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -541.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -537.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -537.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -537.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -537.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -533.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -533.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -533.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -533.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -533.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -529.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -529.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -529.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -529.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -529.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -525.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -525.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -525.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -525.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -521.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -521.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -521.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -521.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -521.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -517.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -513.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -513.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -513.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -513.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -513.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -509.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -509.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -509.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -509.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -509.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -505.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -505.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -505.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -505.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -505.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -501.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -497.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -493.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -489.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -489.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -485.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -481.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -477.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -473.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -469.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2286, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -465.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2286, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2258, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2230, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2226, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2206, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2202, + "y": -461.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2314, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2258, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2254, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2226, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2202, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2198, + "y": -457.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2254, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2198, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2194, + "y": -453.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2314, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2254, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2250, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2194, + "y": -449.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2358, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2332.44921875, + "y": -445, + "name": "crater-cliff" + }, + { + "x": -2314, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2250, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2246, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2198, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2194, + "y": -445.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334.5, + "y": -441.5, + "name": "crater-cliff" + }, + { + "x": -2320.5, + "y": -441.5, + "name": "crater-cliff" + }, + { + "x": -2310, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2274, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2246, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2198, + "y": -441.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2358, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2286, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2274, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2270, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2246, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2206, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2202, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2198, + "y": -437.5, + "name": "cliff-vulcanus" + }, + { + "x": -2350, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2346, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2230, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2226, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2206, + "y": -433.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2238, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2234, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2230, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2210, + "y": -429.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2262, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2238, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -425.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2262, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2238, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -421.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2286, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2274, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2270, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2262, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2214, + "y": -417.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2218, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2158, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2154, + "y": -413.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2310, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2166, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2154, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2150, + "y": -409.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2286, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2258, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2254, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2234, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2230, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2226, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2222, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2166, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2150, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -405.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2282, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2278, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2274, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2270, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2266, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2262, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2258, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2254, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2250, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2246, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2242, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2238, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2234, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -401.5, + "name": "cliff-vulcanus" + }, + { + "x": -2342, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2158, + "y": -397.5, + "name": "cliff-vulcanus" + }, + { + "x": -2338, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2334, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2330, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2326, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2322, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2318, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2158, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2154, + "y": -393.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -389.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -389.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -389.5, + "name": "cliff-vulcanus" + }, + { + "x": -2154, + "y": -389.5, + "name": "cliff-vulcanus" + }, + { + "x": -2150, + "y": -389.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2166, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -385.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2382, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2166, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -381.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2386, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -377.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2394, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2390, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2306, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2294, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2216.75, + "y": -373.76171875, + "name": "crater-cliff" + }, + { + "x": -2211.80078125, + "y": -372.3125, + "name": "crater-cliff" + }, + { + "x": -2170, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -373.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2354, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2302, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2223.75, + "y": -368.8125, + "name": "crater-cliff" + }, + { + "x": -2170, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2162, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2158, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2154, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2150, + "y": -369.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2221.69921875, + "y": -365.31640625, + "name": "crater-cliff" + }, + { + "x": -2211.80078125, + "y": -365.31640625, + "name": "crater-cliff" + }, + { + "x": -2174, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2170, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2146, + "y": -365.5, + "name": "cliff-vulcanus" + }, + { + "x": -2216.75, + "y": -363.86328125, + "name": "crater-cliff" + }, + { + "x": -2370, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2186, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2182, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2178, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2174, + "y": -361.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -357.5, + "name": "cliff-vulcanus" + }, + { + "x": -2178, + "y": -357.5, + "name": "cliff-vulcanus" + }, + { + "x": -2174, + "y": -357.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -353.5, + "name": "cliff-vulcanus" + }, + { + "x": -2370, + "y": -353.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -353.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -353.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2374, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2362, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -349.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -345.5, + "name": "cliff-vulcanus" + }, + { + "x": -2378, + "y": -345.5, + "name": "cliff-vulcanus" + }, + { + "x": -2366, + "y": -345.5, + "name": "cliff-vulcanus" + }, + { + "x": -2298, + "y": -345.5, + "name": "cliff-vulcanus" + }, + { + "x": -2290, + "y": -345.5, + "name": "cliff-vulcanus" + }, + { + "x": -2398, + "y": -341.5, + "name": "cliff-vulcanus" + } + ], + "resources": [ + { + "x": -2337.5, + "y": -518.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -518.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -517.5, + "name": "coal" + }, + { + "x": -2337.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -517.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -517.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -517.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -517.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -516.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2337.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2337.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -515.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -514.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2337.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2337.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -513.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -512.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -510.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -510.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -511.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -510.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -510.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -509.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -509.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -509.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -509.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -509.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -508.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -506.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -506.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -506.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -507.5, + "name": "coal" + }, + { + "x": -2328.5, + "y": -507.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -506.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2335.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2330.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -505.5, + "name": "coal" + }, + { + "x": -2329.5, + "y": -504.5, + "name": "coal" + }, + { + "x": -2336.5, + "y": -503.5, + "name": "coal" + }, + { + "x": -2334.5, + "y": -503.5, + "name": "coal" + }, + { + "x": -2333.5, + "y": -503.5, + "name": "coal" + }, + { + "x": -2332.5, + "y": -503.5, + "name": "coal" + }, + { + "x": -2331.5, + "y": -503.5, + "name": "coal" + }, + { + "x": -2338.5, + "y": -360.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -360.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -360.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -360.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -360.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -359.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -358.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -357.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -356.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -355.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -354.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -353.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -352.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -351.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -350.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2351.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2319.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2315.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2314.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -349.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2310.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2309.5, + "y": -348.5, + "name": "calcite" + }, + { + "x": -2352.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2351.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2351.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2322.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2319.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2319.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2316.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2316.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2315.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2314.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2315.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2314.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2310.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2310.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2309.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2308.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2309.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2308.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2307.5, + "y": -347.5, + "name": "calcite" + }, + { + "x": -2307.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2306.5, + "y": -346.5, + "name": "calcite" + }, + { + "x": -2352.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2353.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2351.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2351.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2350.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2349.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2348.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2347.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2346.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2345.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2344.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2343.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2342.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2341.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2340.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2339.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2338.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2337.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2336.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2335.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2334.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2333.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2332.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2331.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2330.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2329.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2328.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2327.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2326.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2325.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2324.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2323.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2321.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2320.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2319.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2319.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2318.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2316.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2317.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2316.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2315.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2314.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2315.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2314.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2313.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2312.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2310.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2311.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2310.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2309.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2308.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2309.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2308.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2307.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2306.5, + "y": -345.5, + "name": "calcite" + }, + { + "x": -2307.5, + "y": -344.5, + "name": "calcite" + }, + { + "x": -2306.5, + "y": -344.5, + "name": "calcite" + } + ] + }, + { + "region": { + "x0": 1100, + "y0": 2600, + "x1": 1356, + "y1": 2856 + }, + "cliffs": [ + { + "x": 1150, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1202, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1294, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2598.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1202, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1294, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2602.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2606.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2610.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2614.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2618.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1294, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2622.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2626.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2630.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2634.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2638.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2642.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2646.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2650.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2654.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2654.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2654.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2654.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2658.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2658.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2666.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2666.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2666.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2666.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2670.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2674.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2678.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1190, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2682.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2686.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1318, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2690.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2694.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1350, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2698.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1294, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2702.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1166, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1294, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2706.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1166, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2710.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1166, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2714.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1166, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2718.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2722.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1202, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1302, + "y": 2726.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1202, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2730.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1298, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2734.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2738.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2742.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2746.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2746.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2750.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1146, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2754.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2758.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2762.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2762.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2762.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2766.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1190, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1358, + "y": 2770.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2774.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1350, + "y": 2778.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1350, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1358, + "y": 2782.5, + "name": "cliff-vulcanus" + }, + { + "x": 1102, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2786.5, + "name": "cliff-vulcanus" + }, + { + "x": 1098, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1102, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2790.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1158, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1162, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1166, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1350, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1358, + "y": 2794.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2798.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1142, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1170, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1286, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2802.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2806.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1134, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1138, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1150, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1154, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1178, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1282, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1290, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1342, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1346, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1350, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1354, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1358, + "y": 2810.5, + "name": "cliff-vulcanus" + }, + { + "x": 1102, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1174, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1182, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2814.5, + "name": "cliff-vulcanus" + }, + { + "x": 1102, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1130, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2818.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1126, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2822.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2826.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1314, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2830.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1114, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1190, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1194, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1198, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1338, + "y": 2834.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1198, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1202, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1310, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1334, + "y": 2838.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1186, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1190, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1194, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1206, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1214, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1330, + "y": 2842.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1110, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1118, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1122, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1194, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1198, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1226, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1230, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1234, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1258, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1262, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1278, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1322, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2846.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1198, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1246, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1254, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1274, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2850.5, + "name": "cliff-vulcanus" + }, + { + "x": 1106, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1194, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1198, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1218, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1222, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1238, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1242, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1270, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1306, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2854.5, + "name": "cliff-vulcanus" + }, + { + "x": 1194, + "y": 2858.5, + "name": "cliff-vulcanus" + }, + { + "x": 1210, + "y": 2858.5, + "name": "cliff-vulcanus" + }, + { + "x": 1250, + "y": 2858.5, + "name": "cliff-vulcanus" + }, + { + "x": 1266, + "y": 2858.5, + "name": "cliff-vulcanus" + }, + { + "x": 1326, + "y": 2858.5, + "name": "cliff-vulcanus" + } + ], + "resources": [ + { + "x": 1266.5, + "y": 2600.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2622.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2623.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2624.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2625.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2626.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2627.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2628.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2629.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2630.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2631.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2632.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2633.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2634.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2635.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2636.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2637.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2638.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2639.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2640.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2641.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2643.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2642.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2644.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2645.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2646.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2647.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2648.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2649.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2650.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2651.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2652.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2653.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2654.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2655.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2656.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2657.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1311.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1314.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1315.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1316.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2658.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2659.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1309.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1312.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2660.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2661.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1308.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1310.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1318.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2662.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2663.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2664.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2665.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1319.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2666.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2667.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2668.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2669.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1320.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1324.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1325.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1326.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1328.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2671.5, + "name": "calcite" + }, + { + "x": 1336.5, + "y": 2670.5, + "name": "calcite" + }, + { + "x": 1322.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1323.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1329.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2672.5, + "name": "calcite" + }, + { + "x": 1334.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1335.5, + "y": 2673.5, + "name": "calcite" + }, + { + "x": 1330.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1331.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2674.5, + "name": "calcite" + }, + { + "x": 1332.5, + "y": 2675.5, + "name": "calcite" + }, + { + "x": 1333.5, + "y": 2675.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2774.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2775.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2776.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2777.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2778.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2779.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2780.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2781.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2782.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2787.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2786.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2787.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2788.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2789.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2791.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2790.5, + "name": "calcite" + }, + { + "x": 1327.5, + "y": 2800.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1306.5, + "y": 2804.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1301.5, + "y": 2807.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1281.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2813.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2813.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1303.5, + "y": 2813.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1306.5, + "y": 2812.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1277.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2814.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2815.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2816.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2817.5, + "name": "calcite" + }, + { + "x": 1317.5, + "y": 2816.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1276.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2818.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2819.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2818.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1302.5, + "y": 2819.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1275.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2820.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2821.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2822.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2823.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2824.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2825.5, + "name": "calcite" + }, + { + "x": 1313.5, + "y": 2824.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1267.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2826.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2827.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2828.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2829.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1307.5, + "y": 2830.5, + "name": "calcite" + }, + { + "x": 1306.5, + "y": 2831.5, + "name": "calcite" + }, + { + "x": 1264.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1265.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1305.5, + "y": 2832.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2833.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1266.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1271.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1273.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1274.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1275.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1276.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1277.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1278.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1279.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2834.5, + "name": "calcite" + }, + { + "x": 1304.5, + "y": 2835.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1267.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1269.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1268.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1270.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1272.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1280.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1281.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1303.5, + "y": 2836.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2837.5, + "name": "calcite" + }, + { + "x": 1251.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1262.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1263.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1282.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1301.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2838.5, + "name": "calcite" + }, + { + "x": 1302.5, + "y": 2839.5, + "name": "calcite" + }, + { + "x": 1321.5, + "y": 2838.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1250.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1251.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2841.5, + "name": "calcite" + }, + { + "x": 1300.5, + "y": 2840.5, + "name": "calcite" + }, + { + "x": 1252.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1253.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1254.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1255.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1257.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1256.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1258.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1259.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1261.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1260.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2842.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2843.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2844.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2845.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2846.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1299.5, + "y": 2847.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2848.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2849.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2850.5, + "name": "calcite" + }, + { + "x": 1298.5, + "y": 2851.5, + "name": "calcite" + }, + { + "x": 1283.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1284.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2852.5, + "name": "calcite" + }, + { + "x": 1296.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1297.5, + "y": 2853.5, + "name": "calcite" + }, + { + "x": 1184.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1285.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1286.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1287.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1288.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1289.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1290.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1291.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1292.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1293.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2854.5, + "name": "calcite" + }, + { + "x": 1294.5, + "y": 2855.5, + "name": "calcite" + }, + { + "x": 1295.5, + "y": 2855.5, + "name": "calcite" + } + ] + }, + { + "region": { + "x0": -900, + "y0": -2500, + "x1": -644, + "y1": -2244 + }, + "cliffs": [ + { + "x": -858, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2501.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2497.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2493.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2489.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2489.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2489.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2489.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2485.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2485.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2485.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2481.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2481.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2481.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2477.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -806, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2473.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -810, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -806, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2469.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -810, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -790, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2465.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -814, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -810, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2461.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -830, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -826, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -822, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -818, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -814, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2457.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -790, + "y": -2453.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -790, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2449.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -698, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2445.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -698, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2441.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -698, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2437.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -702, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -698, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -694, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2433.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -702, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2429.5, + "name": "cliff-vulcanus" + }, + { + "x": -708.9375, + "y": -2426.32421875, + "name": "crater-cliff" + }, + { + "x": -818, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -713.88671875, + "y": -2424.875, + "name": "crater-cliff" + }, + { + "x": -703.98828125, + "y": -2424.875, + "name": "crater-cliff" + }, + { + "x": -686, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2425.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -822, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -818, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -750, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -715.9375, + "y": -2421.375, + "name": "crater-cliff" + }, + { + "x": -701.9375, + "y": -2421.375, + "name": "crater-cliff" + }, + { + "x": -686, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2421.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -750, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -746, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -742, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -713.88671875, + "y": -2417.87890625, + "name": "crater-cliff" + }, + { + "x": -708.9375, + "y": -2416.42578125, + "name": "crater-cliff" + }, + { + "x": -703.98828125, + "y": -2417.87890625, + "name": "crater-cliff" + }, + { + "x": -690, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2417.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -742, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -738, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -734, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -730, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -726, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -722, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -690, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -658, + "y": -2413.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -686, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -658, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2409.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -790, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -734, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -730, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -726, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -722, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -682, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2405.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -734, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -678, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -674, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -662, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -658, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2401.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -670, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -654, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2397.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -806, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -666, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2393.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -650, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -646, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -642, + "y": -2389.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2385.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2381.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2381.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2381.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2381.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2381.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2377.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -806, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -798, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2373.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -810, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -806, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -802, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2369.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -826, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -822, + "y": -2365.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -830, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -826, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -746, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -738, + "y": -2361.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -830, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -746, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -738, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -734, + "y": -2357.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -746, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -734, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -730, + "y": -2353.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2349.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2349.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2349.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2349.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2349.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2341.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2341.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2341.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2341.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2337.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2333.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2329.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -754, + "y": -2325.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -830, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -826, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -754, + "y": -2321.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -754, + "y": -2317.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -754, + "y": -2313.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2309.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2309.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2309.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -762, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -754, + "y": -2305.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -758, + "y": -2301.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2297.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2293.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -766, + "y": -2289.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2285.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -790, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -770, + "y": -2281.5, + "name": "cliff-vulcanus" + }, + { + "x": -902, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -794, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2277.5, + "name": "cliff-vulcanus" + }, + { + "x": -898, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -778, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -774, + "y": -2273.5, + "name": "cliff-vulcanus" + }, + { + "x": -824.9375, + "y": -2270.44921875, + "name": "crater-cliff" + }, + { + "x": -894, + "y": -2269.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2269.5, + "name": "cliff-vulcanus" + }, + { + "x": -819.98828125, + "y": -2269, + "name": "crater-cliff" + }, + { + "x": -786, + "y": -2269.5, + "name": "cliff-vulcanus" + }, + { + "x": -782, + "y": -2269.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -817.9375, + "y": -2265.5, + "name": "crater-cliff" + }, + { + "x": -790, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -786, + "y": -2265.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2261.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2261.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2261.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2261.5, + "name": "cliff-vulcanus" + }, + { + "x": -838, + "y": -2261.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -866, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -862, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -858, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -854, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -710, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -706, + "y": -2257.5, + "name": "cliff-vulcanus" + }, + { + "x": -894, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -870, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -850, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -710, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -706, + "y": -2253.5, + "name": "cliff-vulcanus" + }, + { + "x": -890, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -886, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -882, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -878, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -874, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -830, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -826, + "y": -2249.5, + "name": "cliff-vulcanus" + }, + { + "x": -846, + "y": -2245.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2245.5, + "name": "cliff-vulcanus" + }, + { + "x": -834, + "y": -2245.5, + "name": "cliff-vulcanus" + }, + { + "x": -842, + "y": -2241.5, + "name": "cliff-vulcanus" + } + ], + "resources": [ + { + "x": -646.5, + "y": -2312.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2311.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2310.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2308.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2308.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2308.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2309.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2308.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2307.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2306.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2307.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2306.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2306.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2306.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2306.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2305.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2305.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2304.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2304.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2305.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2305.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2304.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2304.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2305.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2304.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2303.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2302.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2300.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2300.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2300.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2300.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2301.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2300.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2298.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2299.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2299.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2298.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2299.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2299.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2298.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2298.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2299.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2298.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2297.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2297.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2290.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2291.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2291.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2290.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2290.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2289.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2288.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2287.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2286.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2285.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2284.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2283.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2282.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2281.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2280.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2279.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2278.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2277.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2276.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -675.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2275.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2274.5, + "name": "tungsten-ore" + }, + { + "x": -675.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2273.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2272.5, + "name": "tungsten-ore" + }, + { + "x": -675.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2270.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2271.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2269.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2268.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2267.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2266.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2265.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2264.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -645.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2263.5, + "name": "tungsten-ore" + }, + { + "x": -644.5, + "y": -2262.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2261.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2260.5, + "name": "tungsten-ore" + }, + { + "x": -674.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -652.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -651.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2258.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2259.5, + "name": "tungsten-ore" + }, + { + "x": -673.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -665.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -657.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -656.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -655.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -654.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -653.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -650.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -649.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -648.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -646.5, + "y": -2257.5, + "name": "tungsten-ore" + }, + { + "x": -647.5, + "y": -2256.5, + "name": "tungsten-ore" + }, + { + "x": -672.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -671.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -670.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -668.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -669.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -667.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -666.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -658.5, + "y": -2255.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2254.5, + "name": "tungsten-ore" + }, + { + "x": -664.5, + "y": -2253.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2253.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2253.5, + "name": "tungsten-ore" + }, + { + "x": -663.5, + "y": -2252.5, + "name": "tungsten-ore" + }, + { + "x": -662.5, + "y": -2252.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2253.5, + "name": "tungsten-ore" + }, + { + "x": -660.5, + "y": -2253.5, + "name": "tungsten-ore" + }, + { + "x": -661.5, + "y": -2252.5, + "name": "tungsten-ore" + }, + { + "x": -659.5, + "y": -2253.5, + "name": "tungsten-ore" + } + ] + }, + { + "region": { + "x0": 2900, + "y0": 400, + "x1": 3156, + "y1": 656 + }, + "cliffs": [ + { + "x": 3122, + "y": 398.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3154, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 3158, + "y": 406.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 2962, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 410.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 2962, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3126, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 414.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3126, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 418.5, + "name": "cliff-vulcanus" + }, + { + "x": 2986, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3126, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 422.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 426.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 426.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 426.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 426.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 426.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 430.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3082, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 434.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 438.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 438.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 438.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 438.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 438.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 442.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 446.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 446.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 446.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 446.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 450.5, + "name": "cliff-vulcanus" + }, + { + "x": 3090, + "y": 450.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 450.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 450.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 454.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 454.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 458.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 462.5, + "name": "cliff-vulcanus" + }, + { + "x": 3070, + "y": 462.5, + "name": "cliff-vulcanus" + }, + { + "x": 3074, + "y": 462.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 462.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 462.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 466.5, + "name": "cliff-vulcanus" + }, + { + "x": 3074, + "y": 466.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 466.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 470.5, + "name": "cliff-vulcanus" + }, + { + "x": 3154, + "y": 470.5, + "name": "cliff-vulcanus" + }, + { + "x": 3158, + "y": 470.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 474.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 478.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 482.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 482.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 482.5, + "name": "cliff-vulcanus" + }, + { + "x": 3074, + "y": 482.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 486.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 486.5, + "name": "cliff-vulcanus" + }, + { + "x": 3070, + "y": 486.5, + "name": "cliff-vulcanus" + }, + { + "x": 3074, + "y": 486.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 486.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 490.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 490.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 494.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 494.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 494.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 494.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 494.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 498.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 498.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 498.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3070, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3074, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3078, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 502.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3078, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3082, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 506.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3082, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 510.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3078, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3082, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3086, + "y": 514.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 518.5, + "name": "cliff-vulcanus" + }, + { + "x": 3046, + "y": 518.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 518.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 518.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 518.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 522.5, + "name": "cliff-vulcanus" + }, + { + "x": 3154, + "y": 526.5, + "name": "cliff-vulcanus" + }, + { + "x": 3158, + "y": 526.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 530.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 530.5, + "name": "cliff-vulcanus" + }, + { + "x": 3154, + "y": 530.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 534.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 534.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 534.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 538.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 538.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 538.5, + "name": "cliff-vulcanus" + }, + { + "x": 3150, + "y": 538.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2930, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2934, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3030, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3046, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 3146, + "y": 542.5, + "name": "cliff-vulcanus" + }, + { + "x": 2934, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3046, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3050, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3102, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 546.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 2930, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 2934, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3102, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3110, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3114, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3126, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 550.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3102, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3114, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3118, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3122, + "y": 554.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 3070, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 3102, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 3118, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 3122, + "y": 558.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 3042, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 3070, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 3102, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 3106, + "y": 562.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 3066, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 3106, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 3110, + "y": 566.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3022, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3026, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3030, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3062, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3110, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 3114, + "y": 570.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3022, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3026, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3030, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3054, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3058, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3114, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3118, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3122, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 574.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3130, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 3142, + "y": 578.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 582.5, + "name": "cliff-vulcanus" + }, + { + "x": 3134, + "y": 582.5, + "name": "cliff-vulcanus" + }, + { + "x": 3138, + "y": 582.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 586.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 590.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 590.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 590.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 590.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 590.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 594.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2930, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2934, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 598.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 602.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 602.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 602.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 602.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 3030, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 606.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 3030, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 3034, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 3038, + "y": 610.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2958, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2962, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2966, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2970, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2974, + "y": 614.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2974, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2978, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2982, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2986, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 618.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2934, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2938, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 622.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 626.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 626.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 626.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 626.5, + "name": "cliff-vulcanus" + }, + { + "x": 2942, + "y": 630.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 630.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 630.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2946, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2982, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2986, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 634.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 638.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 638.5, + "name": "cliff-vulcanus" + }, + { + "x": 2950, + "y": 638.5, + "name": "cliff-vulcanus" + }, + { + "x": 2954, + "y": 638.5, + "name": "cliff-vulcanus" + }, + { + "x": 2982, + "y": 638.5, + "name": "cliff-vulcanus" + }, + { + "x": 2906, + "y": 642.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 642.5, + "name": "cliff-vulcanus" + }, + { + "x": 2982, + "y": 642.5, + "name": "cliff-vulcanus" + }, + { + "x": 2986, + "y": 642.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 642.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 646.5, + "name": "cliff-vulcanus" + }, + { + "x": 2990, + "y": 646.5, + "name": "cliff-vulcanus" + }, + { + "x": 2994, + "y": 646.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 646.5, + "name": "cliff-vulcanus" + }, + { + "x": 2910, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 2914, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 2918, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 2998, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 650.5, + "name": "cliff-vulcanus" + }, + { + "x": 2898, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 2922, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 3002, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 3006, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 3010, + "y": 654.5, + "name": "cliff-vulcanus" + }, + { + "x": 2902, + "y": 658.5, + "name": "cliff-vulcanus" + }, + { + "x": 2926, + "y": 658.5, + "name": "cliff-vulcanus" + } + ], + "resources": [] + }, + { + "region": { + "x0": -1700, + "y0": 1900, + "x1": -1444, + "y1": 2156 + }, + "cliffs": [ + { + "x": -1674, + "y": 1898.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1898.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1902.5, + "name": "cliff-vulcanus" + }, + { + "x": -1613.3125, + "y": 1907.67578125, + "name": "crater-cliff" + }, + { + "x": -1558, + "y": 1906.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1906.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1906.5, + "name": "cliff-vulcanus" + }, + { + "x": -1608.36328125, + "y": 1909.125, + "name": "crater-cliff" + }, + { + "x": -1694, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1910.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606.3125, + "y": 1912.625, + "name": "crater-cliff" + }, + { + "x": -1694, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1914.5, + "name": "cliff-vulcanus" + }, + { + "x": -1608.36328125, + "y": 1916.12109375, + "name": "crater-cliff" + }, + { + "x": -1686, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1918.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1922.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 1926.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 1930.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 1934.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 1938.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1942.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1946.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1522, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1950.5, + "name": "cliff-vulcanus" + }, + { + "x": -1702, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1954.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1958.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1962.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1522, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1966.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 1970.5, + "name": "cliff-vulcanus" + }, + { + "x": -1702, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 1974.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1522, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 1978.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1522, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1982.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 1986.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 1990.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 1994.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 1998.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1522, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2002.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 2006.5, + "name": "cliff-vulcanus" + }, + { + "x": -1702, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1466, + "y": 2010.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1670, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1466, + "y": 2014.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1674, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1466, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 2018.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1482, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 2022.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1482, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2026.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1682, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1666, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2030.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1650, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2034.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2038.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2042.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1678, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1486, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2046.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1690, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1686, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1486, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1466, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2050.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1510, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1494, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1486, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1482, + "y": 2054.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1694, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1482, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2058.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2062.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2066.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2070.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1530, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2074.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1486, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2078.5, + "name": "cliff-vulcanus" + }, + { + "x": -1702, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1486, + "y": 2082.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2086.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2086.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2086.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2086.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2090.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2090.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2090.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2090.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2090.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698.625, + "y": 2093.92578125, + "name": "crater-cliff" + }, + { + "x": -1693.67578125, + "y": 2095.375, + "name": "crater-cliff" + }, + { + "x": -1582, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2094.5, + "name": "cliff-vulcanus" + }, + { + "x": -1698, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1691.625, + "y": 2098.875, + "name": "crater-cliff" + }, + { + "x": -1582, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1518, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1506, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2098.5, + "name": "cliff-vulcanus" + }, + { + "x": -1703.57421875, + "y": 2102.37109375, + "name": "crater-cliff" + }, + { + "x": -1698, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1502, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1498, + "y": 2102.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1526, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1514, + "y": 2106.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1534, + "y": 2110.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1538, + "y": 2114.5, + "name": "cliff-vulcanus" + }, + { + "x": -1646, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1614, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1610, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2118.5, + "name": "cliff-vulcanus" + }, + { + "x": -1642, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2122.5, + "name": "cliff-vulcanus" + }, + { + "x": -1638, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1466, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1462, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1458, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1454, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2126.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2130.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1490, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2134.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1566, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1542, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1442, + "y": 2138.5, + "name": "cliff-vulcanus" + }, + { + "x": -1634, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1622, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1618, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1570, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1554, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1550, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1546, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1470, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1446, + "y": 2142.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1594, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1562, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1558, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2146.5, + "name": "cliff-vulcanus" + }, + { + "x": -1662, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2150.5, + "name": "cliff-vulcanus" + }, + { + "x": -1658, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1626, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1606, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1602, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1598, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1590, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1586, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1582, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1578, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1574, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1478, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1474, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1450, + "y": 2154.5, + "name": "cliff-vulcanus" + }, + { + "x": -1654, + "y": 2158.5, + "name": "cliff-vulcanus" + }, + { + "x": -1630, + "y": 2158.5, + "name": "cliff-vulcanus" + } + ], + "resources": [ + { + "x": -1522.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2132.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2132.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2132.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2132.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2132.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2133.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2134.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2135.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1490.5, + "y": 2136.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1490.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1489.5, + "y": 2137.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1490.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1490.5, + "y": 2139.5, + "name": "calcite" + }, + { + "x": -1489.5, + "y": 2138.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1492.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2140.5, + "name": "calcite" + }, + { + "x": -1491.5, + "y": 2141.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2142.5, + "name": "calcite" + }, + { + "x": -1493.5, + "y": 2143.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2144.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2145.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2146.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1494.5, + "y": 2147.5, + "name": "calcite" + }, + { + "x": -1528.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2148.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1495.5, + "y": 2149.5, + "name": "calcite" + }, + { + "x": -1531.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1529.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1528.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2150.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2151.5, + "name": "calcite" + }, + { + "x": -1532.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1532.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1531.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1530.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1531.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1530.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1529.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1528.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1529.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2152.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1496.5, + "y": 2153.5, + "name": "calcite" + }, + { + "x": -1532.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1533.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1532.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1531.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1530.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1531.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1530.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1528.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1529.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1527.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1526.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1525.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1524.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1523.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1522.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1521.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1520.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1519.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1518.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1517.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1516.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1515.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1514.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1513.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1512.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1511.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1510.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1509.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1508.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1507.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1506.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1505.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1504.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1503.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1502.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1501.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1500.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2154.5, + "name": "calcite" + }, + { + "x": -1499.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1498.5, + "y": 2155.5, + "name": "calcite" + }, + { + "x": -1497.5, + "y": 2155.5, + "name": "calcite" + } + ] + }, + { + "region": { + "x0": 300, + "y0": 3400, + "x1": 556, + "y1": 3656 + }, + "cliffs": [ + { + "x": 370, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 406, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 430, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 434, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 438, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3398.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 402, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 406, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 438, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 442, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3402.5, + "name": "cliff-vulcanus" + }, + { + "x": 362, + "y": 3406.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3406.5, + "name": "cliff-vulcanus" + }, + { + "x": 402, + "y": 3406.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3406.5, + "name": "cliff-vulcanus" + }, + { + "x": 362, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 394, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 398, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 402, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3410.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 414, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 446, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 450, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3414.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 378, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 382, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 406, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 410, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 414, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 446, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 450, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 454, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3418.5, + "name": "cliff-vulcanus" + }, + { + "x": 402, + "y": 3422.5, + "name": "cliff-vulcanus" + }, + { + "x": 406, + "y": 3422.5, + "name": "cliff-vulcanus" + }, + { + "x": 454, + "y": 3422.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3422.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3426.5, + "name": "cliff-vulcanus" + }, + { + "x": 390, + "y": 3430.5, + "name": "cliff-vulcanus" + }, + { + "x": 466, + "y": 3430.5, + "name": "cliff-vulcanus" + }, + { + "x": 470, + "y": 3430.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 378, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 382, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 386, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 390, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 466, + "y": 3434.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3438.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3438.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3442.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3442.5, + "name": "cliff-vulcanus" + }, + { + "x": 382, + "y": 3442.5, + "name": "cliff-vulcanus" + }, + { + "x": 386, + "y": 3442.5, + "name": "cliff-vulcanus" + }, + { + "x": 374, + "y": 3446.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3454.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3454.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3458.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3458.5, + "name": "cliff-vulcanus" + }, + { + "x": 346, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 350, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 354, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 358, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 362, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3486.5, + "name": "cliff-vulcanus" + }, + { + "x": 346, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 350, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 354, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 358, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 362, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 366, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 370, + "y": 3490.5, + "name": "cliff-vulcanus" + }, + { + "x": 510, + "y": 3546.5, + "name": "cliff-vulcanus" + }, + { + "x": 510, + "y": 3550.5, + "name": "cliff-vulcanus" + }, + { + "x": 510, + "y": 3554.5, + "name": "cliff-vulcanus" + }, + { + "x": 347.9375, + "y": 3642.5625, + "name": "crater-cliff" + }, + { + "x": 335.98828125, + "y": 3646.05859375, + "name": "crater-cliff" + }, + { + "x": 340.9375, + "y": 3647.51171875, + "name": "crater-cliff" + }, + { + "x": 345.88671875, + "y": 3646.05859375, + "name": "crater-cliff" + } + ], + "resources": [ + { + "x": 531.5, + "y": 3589.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3588.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3589.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3591.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3590.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3591.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3591.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3590.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3590.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3591.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3591.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3592.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3592.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3592.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3592.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3592.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3593.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3595.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3595.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3595.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3595.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3594.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3596.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3597.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3597.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3596.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3597.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3598.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3598.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3599.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3598.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3598.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3598.5, + "name": "tungsten-ore" + }, + { + "x": 494.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3604.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3604.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 544.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 546.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 547.5, + "y": 3605.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 539.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 540.5, + "y": 3607.5, + "name": "tungsten-ore" + }, + { + "x": 545.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 546.5, + "y": 3606.5, + "name": "tungsten-ore" + }, + { + "x": 493.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 494.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3608.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 539.5, + "y": 3609.5, + "name": "tungsten-ore" + }, + { + "x": 491.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 492.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 493.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 492.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 493.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 494.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 494.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3610.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3611.5, + "name": "tungsten-ore" + }, + { + "x": 491.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 492.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 493.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 493.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3612.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3613.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3614.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3615.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3617.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3616.5, + "name": "tungsten-ore" + }, + { + "x": 495.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3619.5, + "name": "tungsten-ore" + }, + { + "x": 538.5, + "y": 3618.5, + "name": "tungsten-ore" + }, + { + "x": 496.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 497.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 498.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3620.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 537.5, + "y": 3621.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 535.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 534.5, + "y": 3623.5, + "name": "tungsten-ore" + }, + { + "x": 536.5, + "y": 3622.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3625.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3624.5, + "name": "tungsten-ore" + }, + { + "x": 499.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 531.5, + "y": 3626.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3627.5, + "name": "tungsten-ore" + }, + { + "x": 500.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 501.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 502.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 503.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 504.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 505.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 506.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 508.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 527.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 526.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 529.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 528.5, + "y": 3629.5, + "name": "tungsten-ore" + }, + { + "x": 530.5, + "y": 3628.5, + "name": "tungsten-ore" + }, + { + "x": 507.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 509.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 510.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 511.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 512.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 513.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 515.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 514.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 516.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 517.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 518.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 519.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 520.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 521.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 523.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3631.5, + "name": "tungsten-ore" + }, + { + "x": 524.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 525.5, + "y": 3630.5, + "name": "tungsten-ore" + }, + { + "x": 522.5, + "y": 3632.5, + "name": "tungsten-ore" + }, + { + "x": 532.5, + "y": 3641.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3642.5, + "name": "tungsten-ore" + }, + { + "x": 533.5, + "y": 3643.5, + "name": "tungsten-ore" + } + ] + }, + { + "region": { + "x0": -3200, + "y0": -2000, + "x1": -2944, + "y1": -1744 + }, + "cliffs": [ + { + "x": -3195.25, + "y": -2002.25, + "name": "crater-cliff" + }, + { + "x": -3190, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3183.30078125, + "y": -1998.75390625, + "name": "crater-cliff" + }, + { + "x": -3181.25, + "y": -2002.25, + "name": "crater-cliff" + }, + { + "x": -3150, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3126, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3122, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3118, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3114, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3062, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -2001.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -3154, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -3062, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1997.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -3062, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1993.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1989.5, + "name": "cliff-vulcanus" + }, + { + "x": -3062, + "y": -1989.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1989.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1989.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1989.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3062, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3058, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1985.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1981.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1977.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1973.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1973.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1973.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1973.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1973.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1969.5, + "name": "cliff-vulcanus" + }, + { + "x": -3114, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1965.5, + "name": "cliff-vulcanus" + }, + { + "x": -3118, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -3114, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1961.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1957.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1953.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1953.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1953.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1949.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1949.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1949.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1945.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1945.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1945.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1945.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1945.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1941.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3058, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1937.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3058, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1933.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3058, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1929.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1925.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3182, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1921.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1917.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1913.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1909.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1905.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1905.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1905.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1905.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1905.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1901.5, + "name": "cliff-vulcanus" + }, + { + "x": -3182, + "y": -1901.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1901.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1901.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1901.5, + "name": "cliff-vulcanus" + }, + { + "x": -3178, + "y": -1897.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1897.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1897.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1897.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1897.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1893.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1893.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1893.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1893.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1893.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1889.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1885.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1881.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3162, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3158, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1877.5, + "name": "cliff-vulcanus" + }, + { + "x": -3015.1875, + "y": -1874.44921875, + "name": "crater-cliff" + }, + { + "x": -3158, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -3020.13671875, + "y": -1873, + "name": "crater-cliff" + }, + { + "x": -3010, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2982, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1873.5, + "name": "cliff-vulcanus" + }, + { + "x": -3158, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022.1875, + "y": -1869.5, + "name": "crater-cliff" + }, + { + "x": -3010, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2978, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1869.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -3014, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1865.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1861.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1861.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1861.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1861.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1861.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1857.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1853.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1853.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1853.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1853.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1849.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1849.5, + "name": "cliff-vulcanus" + }, + { + "x": -3014, + "y": -1849.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1849.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1845.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1845.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1841.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1837.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1837.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1837.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1837.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1833.5, + "name": "cliff-vulcanus" + }, + { + "x": -3110, + "y": -1833.5, + "name": "cliff-vulcanus" + }, + { + "x": -3106, + "y": -1833.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1833.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1833.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1829.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1829.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1829.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1829.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1825.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1825.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1825.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1825.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1825.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1821.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1821.5, + "name": "cliff-vulcanus" + }, + { + "x": -2986, + "y": -1821.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1821.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1817.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1817.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1813.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1813.5, + "name": "cliff-vulcanus" + }, + { + "x": -3146, + "y": -1813.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1813.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1813.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -3146, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1809.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -3186, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1805.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1801.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -3142, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2966, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1797.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": -3142, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": -3138, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1793.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": -3142, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": -3138, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1789.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": -3130, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1785.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": -3150, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": -3146, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": -3130, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1781.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -3146, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -3142, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -3138, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1777.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -3190, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2974, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2950, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -2946, + "y": -1773.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1769.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3014, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1765.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3194, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3038, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3034, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3018, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3010, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1761.5, + "name": "cliff-vulcanus" + }, + { + "x": -3198, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -2970, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -2962, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -2958, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -2954, + "y": -1757.5, + "name": "cliff-vulcanus" + }, + { + "x": -3174, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3170, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3166, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3046, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3042, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3006, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1753.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -3050, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -3002, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -2998, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1749.5, + "name": "cliff-vulcanus" + }, + { + "x": -3058, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -3054, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -3026, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -2994, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1745.5, + "name": "cliff-vulcanus" + }, + { + "x": -3030, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": -3022, + "y": -1741.5, + "name": "cliff-vulcanus" + }, + { + "x": -2990, + "y": -1741.5, + "name": "cliff-vulcanus" + } + ], + "resources": [] + } + ] +} diff --git a/test/oracle/capture.ts b/test/oracle/capture.ts index 06f5e550..4f99c41f 100644 --- a/test/oracle/capture.ts +++ b/test/oracle/capture.ts @@ -2641,7 +2641,184 @@ async function captureVulcanusResourceEntities(): Promise { console.log(`wrote ${out} (${String(cases.length)} regions)`); } +/** + * Six MORE 256x256 Vulcanus regions of cliff + resource entities, for the one + * question the original three could not answer: **does the ore/cliff separation + * replicate?** + * + * Issue #24 rests entirely on `[1500,1500]`, and its "~100x below chance" figure + * uses a **tile-independence** baseline (`ore tiles x cliff coverage / area`). + * That baseline is invalid here: the ore in `[0,0]` and `[-1200,800]` is a + * grand total of TWO connected blobs, so those regions have ~1 independent trial + * and a shift-null puts their "0 overlap" at P = 0.51 and 0.29 - i.e. no signal + * at all. Eight extra regions turn one draw into a sample. + * + * Region choice is deliberately arbitrary (scattered angles and radii, 700 to + * 3800 tiles out) and was fixed BEFORE any of them was measured, so it cannot + * have been steered toward a result. Two of the eight (`[2900,400]`, + * `[-3200,-2000]`) turned out to hold no resource entities at all; they are kept + * in the fixture rather than dropped, because dropping the empty draws is + * exactly how a selection effect gets in. + * + * Regenerate: node --experimental-strip-types test/oracle/capture.ts + * vulcanus-ore-cliff-replication (~6 min: two headless runs per region, and + * chunk generation is the cost). + */ +async function captureVulcanusOreCliffReplication(): Promise { + const S = 256; + const regions: Region[] = [ + { x0: 700, y0: -1800 }, + { x0: -2400, y0: -600 }, + { x0: 1100, y0: 2600 }, + { x0: -900, y0: -2500 }, + { x0: 2900, y0: 400 }, + { x0: -1700, y0: 1900 }, + { x0: 300, y0: 3400 }, + { x0: -3200, y0: -2000 }, + ].map((r) => ({ x0: r.x0, y0: r.y0, x1: r.x0 + S, y1: r.y0 + S })); + const seed = 123456; + const cases: { region: Region; cliffs: Position[]; resources: Position[] }[] = []; + for (const region of regions) { + const grab = async (entityType?: string): Promise => { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const got = await sampleCliffEntities(region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + ...(entityType === undefined ? {} : { entityType }), + }); + // An empty Lua table serialises as `{}`, not `[]` - normalise, or a + // region with no resources lands in the fixture as an object and every + // consumer has to know that. + return Array.isArray(got) ? got : []; + } finally { + await rm(workDir, { recursive: true, force: true }); + } + }; + const cliffs = await grab(); + const resources = await grab("resource"); + cases.push({ region, cliffs, resources }); + console.log( + ` [${String(region.x0)},${String(region.y0)}] cliffs=${String(cliffs.length)} resources=${String(resources.length)}`, + ); + } + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 via test/oracle. Cliff AND resource entities over SIX " + + "MORE 256x256 Vulcanus regions than oracle-vulcanus-{cliff,resource}-entities covers, at the " + + "DEFAULT preset, after chunk-forced generation. Exists to test whether issue #24's ore/cliff " + + "separation REPLICATES - the issue rests on one region, and its tile-independence chance " + + "baseline is invalid for fields that come in a handful of blobs. Region list was fixed before " + + "any region was measured; the two regions that turned out to hold no resources are kept, not " + + "dropped. Same forced-seed Vulcanus surface as every other Vulcanus fixture (create_surface() " + + "with the seed FORCED to `seed`, not mapSeed + crc32('vulcanus')). Regenerate: node " + + "--experimental-strip-types test/oracle/capture.ts vulcanus-ore-cliff-replication", + seed, + cases, + }; + const out = join(FIXTURES, "oracle-vulcanus-ore-cliff-replication.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} regions)`); +} + +/** + * The GAME's own values for the two fields Vulcanus cliff placement reads, at + * exactly the lattice points the placement pass samples, over the three + * calcite-dominated regions. + * + * Why this fixture exists rather than another whole-field comparison: it lets a + * CI-safe spec run **our placement rule on the game's own inputs**, which + * separates a field error from a rule error. That distinction had never been + * measured for Vulcanus cliffs - #18 has been treated throughout as a field + * accuracy problem - and the answer is that substituting these values for ours + * does not move a single cell of 3481 per region. + * + * The lattice: BOTH fields at every corner `(i*4, j*4 + 0.5)` of every region. + * `cliffiness` is genuinely read at every corner. `cliff_elevation` at + * `cliff_smoothing = 1` is only ever read at the SMOOTHING KNOTS + * (`smoothingKnots`, in-chunk corner indices 0/4/7) - the unsmoothed term + * vanishes exactly at s = 1 - so ~5/6 of the elevation samples here are + * redundant for the CURRENT model. They are captured anyway on purpose: the + * smoothing model is itself a live suspect for #18's residual, and a fixture + * that only holds the knots can never test an alternative to it. + * + * Regenerate: node --experimental-strip-types test/oracle/capture.ts + * vulcanus-cliff-corner-fields + */ +async function captureVulcanusCliffCornerFields(): Promise { + const seed = 123456; + const G = 4; + const CORNER_OFFSET_Y = 0.5; + const regions: Region[] = [ + { x0: 1500, y0: 1500, x1: 1756, y1: 1756 }, + { x0: 1100, y0: 2600, x1: 1356, y1: 2856 }, + { x0: -1700, y0: 1900, x1: -1444, y1: 2156 }, + ]; + const key = (a: number, b: number): string => `${String(a)},${String(b)}`; + const cornerSet = new Set(); + for (const r of regions) { + const n = (r.x1 - r.x0) / G; + for (let j = r.y0 / G; j <= r.y0 / G + n; j++) + for (let i = r.x0 / G; i <= r.x0 / G + n; i++) cornerSet.add(key(i, j)); + } + const corners = [...cornerSet]; + const toPos = (list: string[]): Position[] => + list.map((k) => { + const [i, j] = k.split(",").map(Number); + return { x: i * G, y: j * G + CORNER_OFFSET_Y }; + }); + + const sample = async (expression: string, list: string[]): Promise => { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + return await sampleExpression(expression, toPos(list), { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + }); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + }; + const elevation = await sample("vulcanus_elevation", corners); + console.log(` captured vulcanus_elevation at ${String(corners.length)} corners`); + const cliffiness = await sample("cliffiness_basic", corners); + console.log(` captured cliffiness_basic at ${String(corners.length)} corners`); + + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 (Space Age) via test/oracle. The two fields Vulcanus cliff " + + "placement reads, sampled at the exact lattice the placement pass uses, over three " + + "calcite-dominated 256x256 regions. `cliffiness_basic` is read unsmoothed at EVERY corner " + + "(i*4, j*4+0.5); `vulcanus_elevation` only at the cliff_smoothing=1 SMOOTHING KNOTS " + + "(smoothingKnots: in-chunk corner indices 0/4/7), because at smoothing 1 the unsmoothed term " + + "vanishes exactly and no other elevation sample is ever taken. Exists to separate a FIELD " + + "error from a RULE error in the Vulcanus cliff port (#18) and in the ore/cliff separation " + + "(#24): a spec can run makeCliffPlacementFromFields on these values instead of ours. Forced " + + "surface seed like every other Vulcanus fixture. Regenerate: node " + + "--experimental-strip-types test/oracle/capture.ts vulcanus-cliff-corner-fields", + seed, + planet: "vulcanus", + grid: G, + cornerOffsetY: CORNER_OFFSET_Y, + regions, + corners, + elevation, + cliffiness, + }; + const out = join(FIXTURES, "oracle-vulcanus-cliff-corner-fields.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log( + `wrote ${out} (${String(corners.length)} corners, ${String(regions.length)} regions)`, + ); +} + if (want("cliff-entities")) await captureCliffEntities(); +if (want("vulcanus-ore-cliff-replication")) await captureVulcanusOreCliffReplication(); +if (want("vulcanus-cliff-corner-fields")) await captureVulcanusCliffCornerFields(); if (want("rocks")) await captureRocks(); if (want("vulcanus-cliff-entities")) await captureVulcanusCliffEntities(); if (want("vulcanus-resource-entities")) await captureVulcanusResourceEntities(); diff --git a/test/vulcanusOreCliffSeparation.spec.ts b/test/vulcanusOreCliffSeparation.spec.ts index 498de961..c763b30d 100644 --- a/test/vulcanusOreCliffSeparation.spec.ts +++ b/test/vulcanusOreCliffSeparation.spec.ts @@ -9,6 +9,8 @@ import { import { makeCliffPlacementFromFields } from "../src/noise/cliffs/cliffPlacement"; import { withCtxDefaults } from "../src/noise/eval/ctx"; import cliffFix from "./fixtures/oracle-vulcanus-cliff-entities.seed123456.json"; +import cornerFix from "./fixtures/oracle-vulcanus-cliff-corner-fields.seed123456.json"; +import repFix from "./fixtures/oracle-vulcanus-ore-cliff-replication.seed123456.json"; import resFix from "./fixtures/oracle-vulcanus-resource-entities.seed123456.json"; /** @@ -44,6 +46,20 @@ function footprint(cx: number, cy: number): string[] { } describe("Vulcanus: the game separates cliffs from ore", () => { + // READ THE TWO BLOCKS BELOW THIS ONE BEFORE TRUSTING THE INTERPRETATION HERE. + // The counts in this block are still exactly what the game produced, but two + // of its conclusions were overturned on 2026-07-29: + // + // * the "chance baseline" / "ratio" columns use tile independence, which does + // not hold for two fields that come in a handful of blobs. Under a + // shift null, regions 0 and 2 are NOT significant (P = 0.51 and 0.29); only + // the ore-rich regions are. See the replication block. + // * "there is no single mechanism" understated it: there is no mechanism at + // all on the cliff side. `generateCliffs()` reads no resource field, and + // substituting the game's own elevation and cliffiness into our placement + // does not move one cell - so the overlap our port paints is #18's RULE + // error, not a missing exclusion. See the FIELDS/RULE block. + // // Measured 2026-07-28. Region 1's 8/3933 reproduces the figure issue #24 was // opened with, from an independent capture - and it comes out identical under // either candidate y-anchoring of the footprint, so the result does not rest @@ -220,3 +236,362 @@ describe("Vulcanus: the game separates cliffs from ore", () => { } }, 120000); }); + +/** + * Region, ore-tile set and cliff-cover set for any of the 11 captured regions, + * from whichever of the three entity fixtures holds it. + */ +interface RegionCase { + region: { x0: number; y0: number; x1: number; y1: number }; + ore: Set; + cover: Set; + cliffCells: { x: number; y: number }[]; + label: string; +} + +function allRegions(): RegionCase[] { + const out: RegionCase[] = []; + const push = ( + region: { x0: number; y0: number; x1: number; y1: number }, + resources: { x: number; y: number }[], + cliffs: { x: number; y: number; name: string }[], + ): void => { + const cliffCells = cliffs.filter((c) => c.name === "cliff-vulcanus"); + const cover = new Set(); + for (const c of cliffCells) for (const t of footprint(c.x, c.y)) cover.add(t); + out.push({ + region, + ore: new Set(resources.map((p) => key(Math.floor(p.x), Math.floor(p.y)))), + cover, + cliffCells, + label: `[${String(region.x0)},${String(region.y0)}]`, + }); + }; + for (let i = 0; i < cliffFix.cases.length; i++) + push(cliffFix.cases[i].region, resFix.cases[i].resources, cliffFix.cases[i].cliffs); + for (const c of repFix.cases) push(c.region, c.resources, c.cliffs); + return out; +} + +describe("Vulcanus: the separation replicates, but its published chance baseline does not", () => { + /** + * `#24`'s headline - "about 100x below chance" - divides the observed overlap + * by a **tile-independence** baseline (`ore tiles x cliff coverage / area`). + * That baseline assumes each ore tile is an independent trial. It is not: + * measured on the committed fixtures, region `[0,0]`'s 945 ore tiles are + * **2 connected blobs** and `[-1200,800]`'s 1047 are **2**, so those regions + * carry about one independent trial each. + * + * The right null keeps the blobs intact and moves them: shift the whole ore + * tile set by a random offset on the region torus and re-measure the overlap. + * 500 shifts per region, seeded, 2026-07-29: + * + * | region | ore tiles | blobs | cliff cover | overlap | tile-indep. expectation | shift-null median | P(shift <= observed) | + * | --- | --- | --- | --- | --- | --- | --- | --- | + * | `[0,0]` | 945 | 2 | 6.9% | 0 | 65 | 0 | **0.51** | + * | `[1500,1500]` | 3933 | 25 | 21.6% | 8 | 850 | 789 | **0.000** | + * | `[-1200,800]` | 1047 | 2 | 9.8% | 0 | 103 | 49 | **0.29** | + * | `[700,-1800]` | 404 | 9 | 15.2% | 0 | 61 | 55 | 0.02 | + * | `[-2400,-600]` | 597 | 3 | 12.9% | 1 | 77 | 58 | 0.19 | + * | `[1100,2600]` | 3045 | 20 | 21.2% | 9 | 645 | 611 | **0.000** | + * | `[-900,-2500]` | 904 | 4 | 15.9% | 0 | 144 | 110 | 0.18 | + * | `[-1700,1900]` | 714 | 2 | 22.7% | 0 | 162 | 156 | 0.10 | + * | `[300,3400]` | 944 | 8 | 2.0% | 0 | 19 | 0 | 0.73 | + * + * Two things follow, and they pull in opposite directions. + * + * **The effect is real and it replicates.** Pooled over the 9 regions that + * hold ore, 18 of 12,533 ore tiles sit under a cliff - 0.14% - and the two + * ore-rich regions each land outside 500 of 500 shifts. + * + * **But regions `[0,0]` and `[-1200,800]` were never evidence of it.** Half of + * all random placements of `[0,0]`'s ore blob also hit zero cliffs. The + * previous write-up called their ratio-to-chance "0.000" and read that as the + * strongest signal in the set; it is the weakest. Any future claim here needs + * the shift null, not the tile product. + */ + it("the shift null replicates the separation, and retires two regions as evidence", () => { + const regions = allRegions().filter((r) => r.ore.size > 0); + expect(regions).toHaveLength(9); + + let pooledOre = 0; + let pooledOverlap = 0; + const pValues = new Map(); + + for (const r of regions) { + const w = r.region.x1 - r.region.x0; + const h = r.region.y1 - r.region.y0; + // Flat cover grid: a string-keyed Set is far too slow for 500 shifts. + const grid = new Uint8Array(w * h); + for (const t of r.cover) { + const [tx, ty] = t.split(",").map(Number); + const gx = tx - r.region.x0; + const gy = ty - r.region.y0; + if (gx >= 0 && gx < w && gy >= 0 && gy < h) grid[gy * w + gx] = 1; + } + const oreX: number[] = []; + const oreY: number[] = []; + for (const t of r.ore) { + const [tx, ty] = t.split(",").map(Number); + oreX.push(tx - r.region.x0); + oreY.push(ty - r.region.y0); + } + const overlap = (dx: number, dy: number): number => { + let n = 0; + for (let i = 0; i < oreX.length; i++) { + const gx = (((oreX[i] + dx) % w) + w) % w; + const gy = (((oreY[i] + dy) % h) + h) % h; + n += grid[gy * w + gx]; + } + return n; + }; + const observed = overlap(0, 0); + pooledOre += r.ore.size; + pooledOverlap += observed; + + // Deterministic LCG so the p-values above are reproducible. + let seed = 777; + const rnd = (): number => { + seed = (seed * 1103515245 + 12345) & 0x7fffffff; + return seed / 0x7fffffff; + }; + const shifts = 500; + let atOrBelow = 0; + for (let s = 0; s < shifts; s++) { + if (overlap(Math.floor(rnd() * w), Math.floor(rnd() * h)) <= observed) atOrBelow++; + } + pValues.set(r.label, atOrBelow / shifts); + } + + // Replication: pooled 18 / 12533 = 0.14%. + expect(pooledOre).toBe(12533); + expect(pooledOverlap).toBe(18); + + // The two ore-rich regions are the only ones that carry real signal. + expect(pValues.get("[1500,1500]")).toBeLessThan(0.005); + expect(pValues.get("[1100,2600]")).toBeLessThan(0.005); + // And the two the previous write-up leaned on carry none. This asserts + // something about the NULL, not about our port - it uses only game data. + expect(pValues.get("[0,0]")).toBeGreaterThan(0.2); + expect(pValues.get("[-1200,800]")).toBeGreaterThan(0.15); + }, 60000); +}); + +/** The corner-field fixture, keyed for lookup by corner index. */ +function gameCornerFields(): { elevation: Map; cliffiness: Map } { + const elevation = new Map(); + const cliffiness = new Map(); + cornerFix.corners.forEach((k, i) => { + elevation.set(k, cornerFix.elevation[i]); + cliffiness.set(k, cornerFix.cliffiness[i]); + }); + return { elevation, cliffiness }; +} + +/** World position -> corner index, inverting how `cliffPlacement` samples. */ +const cornerIndex = (x: number, y: number): string => + key(x / cornerFix.grid, Math.round((y - cornerFix.cornerOffsetY) / cornerFix.grid)); + +describe("Vulcanus cliffs: the port's FIELDS are exact; the residual is in the RULE", () => { + /** + * The measurement `#18` never had, and the one that resolves `#24`. + * + * `EntityMapGenerationTask::generateCliffs()` (`0x1016229b4`, 2.1.12 arm64) + * calls exactly three things - `CliffGenerator::crossingsForChunk`, + * `CellCliffCrossing::toMaybeCliffOrientation` (inlined) and `tryToAddCliff` - + * and nothing else: no tile lookup, no entity lookup, no resource field. + * `tryToAddCliff`'s only rejection is `wouldCollide`, and that is gated behind + * `mode == 2` (`ldrb w8,[x0,#0x10]; cmp w8,#0x2; b.ne`). `computeInternal` + * calls `generateCliffs()` then `generateEntities()` (three times), and `apply` + * calls `applyCliffs()`, `applyDecoratives()`, `applyEntities()` - re-read + * directly here rather than taken from the previous write-up. So **cliff + * placement is a pure function of `cliff_elevation` and `cliffiness`**, and + * there is no ore/cliff exclusion in the engine to port. + * + * That makes the disagreement locatable. Substituting the GAME's own values + * for both fields at all 12,675 captured corners, over three + * calcite-dominated regions, and running our own + * `makeCliffPlacementFromFields` on them: + * + * | region | cells | TP | FP | FN | precision | recall | + * | --- | --- | --- | --- | --- | --- | --- | + * | `[1500,1500]` | 3844 | 706 | 290 | 90 | 0.709 | 0.887 | + * | `[1100,2600]` | 3844 | 720 | 199 | 86 | 0.783 | 0.893 | + * | `[-1700,1900]` | 3844 | 744 | 156 | 123 | 0.827 | 0.858 | + * + * and the placed cell set is **identical, cell for cell, to the one our own + * fields produce** - not one cell flips. That is what an accurate field + * predicts: a cell can only flip if a corner sits within the field error of a + * band boundary, and at ~5e-6 relative error against 120-wide bands the + * expected number of flips over ~14k corner reads is ~2e-4. + * + * **So #18's residual is not a field-accuracy problem.** 17-29% of the cliff + * cells the port places are wrong, and 11-14% of the game's are missed, with + * the game's own inputs. The error is in the rule as ported - + * `crossingsForChunk`'s sampling geometry, the `cliff_smoothing` knot model, + * `toMaybeCliffOrientation`, or `fixImpossibleCells`. + */ + const REGIONS = cornerFix.regions; + + function placementForRegion(index: number, source: "game" | "ours" | "game+3"): Set { + const r = REGIONS[index]; + const ctx = withCtxDefaults({ seed0: cornerFix.seed, startingPositions: [{ x: 0, y: 0 }] }); + const ours = makeVulcanusCliffFields(ctx); + const { elevation, cliffiness } = gameCornerFields(); + // Out-of-lattice corners fall back to our own field. The chunk-structured + // placement path rounds the query box out to whole 32-tile chunks, so it + // reads a fringe of corners outside the captured region; substituting a + // sentinel there would inject a fake result instead of measuring one. + const bias = source === "game+3" ? 3 : 0; + const fields = + source === "ours" + ? ours + : { + cliffElevation: (x: number, y: number): number => { + const v = elevation.get(cornerIndex(x, y)); + return v === undefined ? ours.cliffElevation(x, y) : v + bias; + }, + cliffiness: (x: number, y: number): number => + cliffiness.get(cornerIndex(x, y)) ?? ours.cliffiness(x, y), + }; + const cells = makeCliffPlacementFromFields(fields, { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, + }).placedCells(r.x0, r.y0, r.x1, r.y1); + return new Set(cells.map((c) => key(c.x, c.y))); + } + + it("substituting the game's own elevation and cliffiness does not move a single cell", () => { + for (let i = 0; i < REGIONS.length; i++) { + const game = placementForRegion(i, "game"); + const ours = placementForRegion(i, "ours"); + expect(game.size).toBeGreaterThan(500); + expect([...game].sort()).toEqual([...ours].sort()); + } + }, 180000); + + it("and the substitution really is live - a +3 elevation bias does move cells", () => { + // Guards the assertion above against passing vacuously (e.g. if every + // lookup silently fell through to our own field). 2026-07-29: the bias + // moves tens of cells per region. + for (let i = 0; i < REGIONS.length; i++) { + const game = placementForRegion(i, "game"); + const biased = placementForRegion(i, "game+3"); + const moved = [...game].filter((k) => !biased.has(k)).length; + expect(moved).toBeGreaterThan(5); + } + }, 180000); + + it("the game's own fields put cliffs inside ore patches where the game has none", () => { + /** + * The residual, localised. Cells whose whole 4x4 footprint is ore + * ("full-ore cells"), across the three calcite regions: + * + * | region | full-ore cells | our rule on the GAME's fields places | game actually placed | + * | --- | --- | --- | --- | + * | `[1500,1500]` | 172 | 8 | **0** | + * | `[1100,2600]` | 130 | 38 | **0** | + * | `[-1700,1900]` | 29 | 1 | **0** | + * + * A matched control rules out "the rule is just worse on volcano terrain": + * pairing each full-ore cell with up to three no-ore cells of the same mean + * elevation (+/-25) and mean cliffiness (+/-0.1) in the same region, the + * rule's precision on the controls is 0.79 / 1.02 / 2.00 (n = 443 / 387 / 69 + * controls). So the 47 predictions inside ore should have yielded ~47 real + * cliffs; they yielded 0. Poisson P(0 | 47) ~ 4e-21. + * + * Four candidate explanations for THAT, each measured and falsified + * 2026-07-29 - recorded so they are not re-tested: + * + * 1. **Elevation.** With the cliffiness gate forced open, the game's own + * corner elevations produce a band crossing in 40.5% / 34.3% / 50.0% of + * full-ore cells against 42.7% / 37.3% / 34.0% of random cells in the + * same regions. Ore sits on band-crossing terrain at the background rate. + * (For coal and tungsten it is 0.000 in four of five regions - ashlands + * elevation is `300 + 0.001 * ...`, effectively flat, and basalts tops + * out near 120 against `cliff_elevation_0 = 70`. Those resources + * genuinely cannot host cliffs; calcite is the hard case, and the earlier + * "ore below 70" reading only ever explained them.) + * 2. **Cliffiness.** The gate (`cliffinessAvg > 0.5`, and `cliffiness_basic` + * floors at exactly 0.5) is open at 14.9% of `[1500,1500]`'s full-ore + * cells against 60.0% of random - but at **85.8%** of `[1100,2600]`'s + * against 64.0%, and 10.0% at `[-1700,1900]`. It does not replicate, in + * either direction, which is what a coincidence looks like: + * `cliffiness_basic` is a `quick_multioctave_noise` at `seed1 = 123` with + * no dependence on any resource, biome or elevation field, so there is no + * path by which ore could correlate with it. + * 3. **`fixImpossibleCells`.** Running the placement with it on and off + * changes the full-ore predictions by 0 (measured on the interior-inset + * window: 8/35/1 both ways). + * 4. **Steep or aliased terrain.** Full-ore cells' max corner-to-corner + * elevation delta is p10/p50/p90 = 17/37/63 against 13/35/66 for no-ore + * cells - the same distribution - and the rule's precision is 0.58-0.84 + * across every delta bin, with no bin where it collapses. + * + * Collision is ruled out on both paths and both masks were re-read here + * rather than quoted: cliff = `{item, meltable, object, player, water_tile, + * is_lower_object, is_object, cliff}`, resource = `{resource}`. Nor can a + * TILE separate them: of the ~20 Vulcanus tiles only `lava` and `lava-hot` + * carry a layer the cliff mask holds (`water_tile`), and + * `tile_collision_masks.lava()` also carries `resource`, so lava excludes + * both. `volcanic-jagged-ground` - the tile the ore patches are painted, + * whose autoplace literally reads `vulcanus_calcite_region + 0.2` and which + * the Lua labels "CLIFF TILE" - is `tile_collision_masks.ground()`, which + * the cliff mask does not touch. + * + * So this is not an exclusion rule and there is nothing here to bolt on. It + * is #18's rule error, and this is the sharpest localisation of it anyone + * has: a 4x4 cell fully inside a calcite patch is where our rule is wrong + * ~100% of the time while being right ~78% of the time everywhere else. + * Whoever attacks #18 next should start from these cells. + */ + const oreByRegion = new Map>(); + const cliffsByRegion = new Map>(); + for (const r of allRegions()) { + oreByRegion.set(r.label, r.ore); + cliffsByRegion.set(r.label, new Set(r.cliffCells.map((c) => key(c.x, c.y)))); + } + + const perRegion: Record = {}; + let predicted = 0; + let actual = 0; + let fullOreCells = 0; + for (let i = 0; i < REGIONS.length; i++) { + const r = REGIONS[i]; + const label = `[${String(r.x0)},${String(r.y0)}]`; + const ore = oreByRegion.get(label); + const gameCliffCells = cliffsByRegion.get(label); + expect(ore).toBeDefined(); + expect(gameCliffCells).toBeDefined(); + if (ore === undefined || gameCliffCells === undefined) continue; + const placed = placementForRegion(i, "game"); + + const g = cornerFix.grid; + for (let cy = r.y0 / g; cy < r.y1 / g; cy++) { + for (let cx = r.x0 / g; cx < r.x1 / g; cx++) { + let n = 0; + for (let tx = cx * g; tx < cx * g + g; tx++) + for (let ty = cy * g; ty < cy * g + g; ty++) if (ore.has(key(tx, ty))) n++; + if (n < g * g) continue; + fullOreCells++; + const centre = key(cx * g + 2, cy * g + 2.5); + if (placed.has(centre)) predicted++; + if (gameCliffCells.has(centre)) actual++; + perRegion[label] = perRegion[label] ?? [0, 0, 0]; + perRegion[label][0]++; + if (placed.has(centre)) perRegion[label][1]++; + if (gameCliffCells.has(centre)) perRegion[label][2]++; + } + } + } + expect(perRegion).toEqual({ + "[1500,1500]": [172, 8, 0], + "[1100,2600]": [130, 38, 0], + "[-1700,1900]": [29, 1, 0], + }); + expect(fullOreCells).toBe(331); + expect(predicted).toBe(47); + expect(actual).toBe(0); + }, 180000); +});