diff --git a/crates/fmw-noise/src/fixtures.rs b/crates/fmw-noise/src/fixtures.rs index 307c299..28b6e0e 100644 --- a/crates/fmw-noise/src/fixtures.rs +++ b/crates/fmw-noise/src/fixtures.rs @@ -4766,6 +4766,268 @@ fn the_volcanism_contrast_out_of_sample() { assert_eq!(errors(worst), 74); } +/// Cliff cells keyed by the raw bits of their centre, to the port's orientation code. +type CellMap = BTreeMap<(u64, u64), u8>; + +/// The game's in-bounds `cliff-vulcanus` cells of one region, keyed like the +/// port's, and the port's own cells under the shipping model with the ore +/// rejection ON or OFF. The three-way split [`sweep_score`] counts is +/// recoverable from the two maps; this returns them so the test below can +/// INTERSECT sets, which a count cannot do. +fn sweep_cells( + region: &Json, + cliffs: &[Json], + ctx: &crate::eval::ctx::EvalCtx, + with_ore: bool, +) -> (CellMap, CellMap) { + let seed0 = ctx.seed0; + let base = VulcanusBase::with_host_trig(ctx); + let biomes = base.biomes_with_host_trig(); + let stack = VulcanusStack::with_host_trig(&base, &biomes); + let fields = VulcanusCliffFields::new(&stack, seed0); + let lava = VulcanusLavaTiles::new(&stack); + let ore = VulcanusOreRejection::new(&stack, &ctx.vulcanus_resource_controls); + let bands = CliffBands { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, + reject_at_crossing_stage: true, + ..CliffBands::default() + }; + let (x0, y0) = (region.get("x0").as_f64(), region.get("y0").as_f64()); + let (x1, y1) = (region.get("x1").as_f64(), region.get("y1").as_f64()); + + let mut game: BTreeMap<(u64, u64), u8> = BTreeMap::new(); + for e in cliffs { + if e.get("name").as_str() != "cliff-vulcanus" { + continue; + } + let (x, y) = (e.get("x").as_f64(), e.get("y").as_f64()); + let want = e.get("orientation").as_str(); + if let Some(id) = CLIFF_ORIENTATION_NAMES.iter().position(|n| *n == want) { + if x >= x0 && x < x1 && y >= y0 && y < y1 { + game.insert((x.to_bits(), y.to_bits()), id as u8); + } + } + } + let placement = CliffPlacement::new(&fields, bands).with_tile_collision(&lava); + let placement = if with_ore { + placement.with_cell_rejection(&ore) + } else { + placement + }; + let port: BTreeMap<(u64, u64), u8> = placement + .placed_cells(x0, y0, x1, y1) + .iter() + .filter_map(|c| cliff_orientation_for_code(c.code).map(|id| (cell_key(c), id))) + .collect(); + (game, port) +} + +/// The ORE lever on the one region the replication found concentrated (#84). +/// +/// `[-2200,-1500]` at frequency 0.5 carries 24 wrong and 47 surplus of 795 +/// comparable cells. Surplus is a cell the port places and the game does not, +/// and the game's cliff-REMOVING mechanism in this port's model is the ore rule +/// (`cliff_removal_probability`, the destroy stage). So the same region and the +/// same slider, with every Vulcanus resource control switched OFF on both sides. +/// If the 47 follow the lever, the concentration is the ore rule at a +/// non-default field; if they stay, it is something the ore rule does not touch. +/// +/// The sets are intersected rather than counted: which of the port's surplus +/// cells are among the cells the game's ore rule removed (present with resources +/// OFF, absent with them ON) is the attribution, and a count could not give it. +#[test] +fn the_concentrated_residual_against_the_ore_lever() { + let fixture = load_captured_at( + "test/fixtures/oracle-vulcanus-cliff-volcanism-ore.seed123456.json", + "2.1.17", + ); + let oos = load_captured_at( + "test/fixtures/oracle-vulcanus-cliff-volcanism-oos.seed123456.json", + "2.1.17", + ); + #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)] + let seed0 = fixture.get("seed").as_f64() as u32; + let arms = fixture.get("arms").as_array(); + assert_eq!(arms.len(), 2); + let (on, off) = (&arms[0], &arms[1]); + assert_eq!(on.get("label").as_str(), "frequency 0.5, resources ON"); + assert_eq!( + off.get("label").as_str(), + "frequency 0.5, ALL resources OFF" + ); + for arm in [on, off] { + assert_eq!(arm.get("reported").get("frequency").as_f64(), 0.5); + assert_eq!(arm.get("reported").get("size").as_f64(), 1.0); + let want = if arm.get("label").as_str().ends_with("OFF") { + 0.0 + } else { + 1.0 + }; + for name in [ + "tungsten_ore", + "vulcanus_coal", + "calcite", + "sulfuric_acid_geyser", + ] { + assert_eq!( + arm.get("reportedResources").get(name).get("size").as_f64(), + want, + "{name} read-back" + ); + } + } + let on_case = &on.get("cases").as_array()[0]; + let off_case = &off.get("cases").as_array()[0]; + let region = on_case.get("region"); + assert_eq!(region.get("x0").as_f64(), -2200.0); + assert_eq!(region.get("y0").as_f64(), -1500.0); + + // Determinism: the ON arm is the oos fixture's frequency 0.5 capture of the + // same region, cell for cell. + let oos_case = &oos.get("arms").as_array()[1].get("cases").as_array()[1]; + assert_eq!(oos_case.get("region").get("x0").as_f64(), -2200.0); + let cells_of = |case: &Json| -> Vec<(u64, u64, String)> { + case.get("cliffs") + .as_array() + .iter() + .map(|c| { + ( + c.get("x").as_f64().to_bits(), + c.get("y").as_f64().to_bits(), + c.get("orientation").as_str().to_owned(), + ) + }) + .collect() + }; + assert_eq!( + cells_of(on_case), + cells_of(oos_case), + "ON arm reproduces oos" + ); + + let mut ctx_on = crate::eval::ctx::EvalCtx::new(seed0); + ctx_on.vulcanus_volcanism_frequency = 0.5; + let mut ctx_off = ctx_on.clone(); + for levers in [ + &mut ctx_off.vulcanus_resource_controls.tungsten_ore, + &mut ctx_off.vulcanus_resource_controls.vulcanus_coal, + &mut ctx_off.vulcanus_resource_controls.calcite, + &mut ctx_off.vulcanus_resource_controls.sulfuric_acid_geyser, + ] { + levers.size = 0.0; + } + + let (game_on, port_on) = sweep_cells(region, on_case.get("cliffs").as_array(), &ctx_on, true); + let (game_off, port_off) = + sweep_cells(region, off_case.get("cliffs").as_array(), &ctx_off, true); + // The port with the ore rejection simply not run, at resources ON: what the + // port thinks the ore rule removes. + let (_, port_no_ore) = sweep_cells(region, on_case.get("cliffs").as_array(), &ctx_on, false); + + let tally = |game: &BTreeMap<(u64, u64), u8>, port: &BTreeMap<(u64, u64), u8>| { + let mut row = SweepRow::ZERO; + for (k, id) in port { + match game.get(k) { + None => row.surplus += 1, + Some(want) if want == id => row.matched += 1, + Some(_) => row.wrong += 1, + } + } + row.missing = game.keys().filter(|k| !port.contains_key(*k)).count(); + row + }; + let row_on = tally(&game_on, &port_on); + let row_off = tally(&game_off, &port_off); + let row_no_ore = tally(&game_on, &port_no_ore); + eprintln!("resources ON, port with ore rejection : {row_on:?}"); + eprintln!("resources ON, port WITHOUT ore rejection: {row_no_ore:?}"); + eprintln!("resources OFF, port with ore rejection : {row_off:?}"); + + // What the GAME's ore rule removed: present with resources OFF, absent ON. + let game_removed: BTreeSet<(u64, u64)> = game_off + .keys() + .filter(|k| !game_on.contains_key(*k)) + .copied() + .collect(); + let game_added: BTreeSet<(u64, u64)> = game_on + .keys() + .filter(|k| !game_off.contains_key(*k)) + .copied() + .collect(); + // What the PORT's ore rule removed. + let port_removed: BTreeSet<(u64, u64)> = port_no_ore + .keys() + .filter(|k| !port_on.contains_key(*k)) + .copied() + .collect(); + // The surplus at ON, and how many of those the game's ore rule removed. + let surplus_on: BTreeSet<(u64, u64)> = port_on + .keys() + .filter(|k| !game_on.contains_key(*k)) + .copied() + .collect(); + let surplus_is_ore = surplus_on.intersection(&game_removed).count(); + let surplus_off: BTreeSet<(u64, u64)> = port_off + .keys() + .filter(|k| !game_off.contains_key(*k)) + .copied() + .collect(); + eprintln!( + "game ore removed {} (and added {}); port ore removed {}; of {} surplus at ON, {} are cells \ + the game's ore rule removed; surplus at OFF {}", + game_removed.len(), + game_added.len(), + port_removed.len(), + surplus_on.len(), + surplus_is_ore, + surplus_off.len(), + ); + assert_eq!(surplus_on.len(), 47, "the oos row, restated"); + + // The frozen finding, measured 2026-09-07. Read a moved number, do not + // adjust it. + // + // THE CONCENTRATION IS THE ORE RULE, UNDER-REMOVING. The game's ore rule + // removes 65 cliffs in this region at frequency 0.5; the port's removes 39; + // 28 of the port's 47 surplus cells are cells the game's ore rule removed + // and the port's did not. Switching the ore off on BOTH sides takes the + // region from 74 errors to 31, and `wrong` from 24 to 11 - the destroy + // cascade re-orienting neighbours, missed wherever the destroy is missed. + // The ore regions read the biome/elevation chain (`*_resource_favorability` + // in planet-vulcanus-map-gen.lua), so the game's ore IS expected to move + // with volcanism; what this shows is the port's ore field, or its roll, + // diverging from the game's at a field no ore fixture was captured at. See + // `docs/noise/vulcanus-cliffs-NOTES.md`, the ore-rule section of 2026-09-07. + let row = |matched, wrong, surplus, missing| SweepRow { + matched, + wrong, + surplus, + missing, + unscored: 0, + }; + assert_eq!(row_on, row(768, 24, 47, 3), "resources ON, port with ore"); + assert_eq!( + row_no_ore, + row(767, 27, 84, 1), + "resources ON, port without ore" + ); + assert_eq!(row_off, row(848, 11, 19, 1), "resources OFF, port with ore"); + assert_eq!(game_removed.len(), 65, "cliffs the game's ore rule removed"); + assert_eq!(game_added.len(), 0, "the lever only removes"); + assert_eq!(port_removed.len(), 39, "cliffs the port's ore rule removed"); + assert_eq!( + surplus_is_ore, 28, + "surplus cells that are the game's ore removals" + ); + assert_eq!(surplus_off.len(), 19); + // Stated as a relation too, so the claim survives a re-measure that moves + // every row: the port under-removes, and most of the surplus is that. + assert!(port_removed.len() < game_removed.len()); + assert!(surplus_is_ore * 2 > surplus_on.len()); +} + /// The Vulcanus cliff fields against the game's own samples at the game's own /// lattice - 12,675 corners across three regions. /// diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index d5468dd..373887a 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -4767,3 +4767,50 @@ by 6%. Cost of the whole exercise: 28 seconds of capture. The cost of NOT doing it would have been a #84 comment, a memory and a CLAUDE.md line all citing a 2.9 sigma that does not exist. + +## The concentrated region IS the ore rule, under-removing at a non-default field (2026-09-07, #84) + +The replication above left one lead: `[-2200,-1500]` at frequency 0.5, 24 wrong +and 47 surplus of 795 comparable cells. Surplus is a cell the port places and +the game does not, and the only cliff-REMOVING mechanism in this port's model is +the ore rule (`cliff_removal_probability`, the destroy stage). So the same +region, the same slider, with all four Vulcanus resource controls switched OFF - +the lever `oracle-vulcanus-cliff-ore-direction` pulls - on both sides. Fixture +`oracle-vulcanus-cliff-volcanism-ore.seed123456.json` (two runs, 2 seconds +each; the ON arm reproduces the oos capture cell for cell), test +`the_concentrated_residual_against_the_ore_lever`. + +| arm | matched | wrong | surplus | missing | errors | +| -------------------------------- | ------: | ----: | ------: | ------: | -----: | +| resources ON, port with ore | 768 | 24 | 47 | 3 | **74** | +| resources ON, port WITHOUT ore | 767 | 27 | 84 | 1 | 112 | +| resources OFF, port with ore | 848 | 11 | 19 | 1 | **31** | + +Sets, not counts, are what attribute it. Between the game's two arms, **the +game's ore rule removed 65 cliffs** in this region (present with resources OFF, +absent with them ON; it added none). **The port's ore rule removed 39.** And of +the port's 47 surplus cells at resources ON, **28 are cells the game's ore rule +removed** and the port's did not. Switching the ore off on both sides takes the +region from 74 errors to 31, and takes `wrong` from 24 to 11 - the cascade +re-orienting the neighbours of a destroyed cliff, which the port also models and +also misses when it misses the destroy. + +**So the concentration is the ore rule, at a non-default field.** At the default +the ore lever was already scored on `[1500,1500]` and the port tracked the game +to within a few cells (the 2026-08-03 sections above). At frequency 0.5, in this +region, the port removes 39 where the game removes 65. The ore regions are +expected to move with volcanism - `vulcanus_calcite_region` and +`vulcanus_coal_region` read `vulcanus_mountains_resource_favorability` and +`vulcanus_ashlands_resource_favorability` (lines 797-814 and 768-785 of +`planet-vulcanus-map-gen.lua` at 2.1.17), which sit on the biome and elevation +chain - so this is the port's ore field, or its placement roll, diverging from +the game's where the field is not the one every ore fixture was captured at. + +**What this does NOT say.** It does not say which of the two diverges, the ore +FIELD (where the game thinks ore is) or the ROLL (`cliff_removal_probability` +against a per-cell draw). The next capture that separates them is the one +`oracle-vulcanus-resource-entities` already has the shape of: the game's ore +ENTITIES in this region at frequency 0.5, compared against the port's ore field +directly, before anything is concluded about the roll. The 31 errors that stay +with resources OFF (19 surplus, 11 wrong, 1 missing; 3.6% of 860) are this +region's share of the diffuse residual the rest of #84 is about. diff --git a/scripts/probes/vulcanus-cliff-volcanism/capture.ts b/scripts/probes/vulcanus-cliff-volcanism/capture.ts index ad2cb12..93cacb3 100644 --- a/scripts/probes/vulcanus-cliff-volcanism/capture.ts +++ b/scripts/probes/vulcanus-cliff-volcanism/capture.ts @@ -5,10 +5,12 @@ * * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts sweep * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts oos + * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts ore * * `sweep` is the four-arm capture over the three known regions; `oos` is the * out-of-sample replication - eight FRESH regions at two arms, described at - * `OUT_OF_SAMPLE` below. + * `OUT_OF_SAMPLE` below; `ore` is the resource lever on the one region that + * replication found concentrated, at `ORE_LEVER`. * * ## Why this lever * @@ -87,8 +89,17 @@ interface Arm { readonly label: string; readonly frequency: number; readonly size: number; + /** + * Switch ALL four Vulcanus resource controls off (`size = 0`), the lever + * `oracle-vulcanus-cliff-ore-direction` pulls. The ore rule removes cliffs + * where ore lands, so a surplus cell that FOLLOWS this lever is the ore + * rule's, and one that does not is something else's. + */ + readonly resourcesOff?: boolean; } +const RESOURCE_CONTROLS = ["tungsten_ore", "vulcanus_coal", "calcite", "sulfuric_acid_geyser"]; + /** * Slider values are GUI notches (the app's own `PERCENT_STEPS` carry 0.5, 2 and * 3), and the default arm passes NO override, so its read-back reports what the @@ -181,7 +192,38 @@ const OUT_OF_SAMPLE: Capture = { "proved blind to the slider.", }; -const CAPTURES: Record = { sweep: SWEEP, oos: OUT_OF_SAMPLE }; +/** + * The ore lever on the ONE region the replication found concentrated. + * + * Out of sample, the frequency 0.5 arm's `[-2200,-1500]` carried 74 of that + * arm's 138 errors - 24 wrong and 47 SURPLUS of 795 comparable cells - while + * the next worst region had 14. Surplus is a cell the port places and the game + * does not, and the game's cliff-removing mechanism in this port's model is the + * ore rule (`cliff_removal_probability`). So: the same region, the same slider, + * with every Vulcanus resource control OFF. If the 47 follow the lever the + * concentration is the ore rule at a non-default field; if they stay, it is + * something the ore rule does not touch. + * + * The ON arm re-captures what the oos fixture already holds, on purpose: it is + * the determinism check for the pair, and it keeps the fixture self-contained. + */ +const ORE_LEVER: Capture = { + out: "oracle-vulcanus-cliff-volcanism-ore.seed123456.json", + regions: [{ x0: -2200, y0: -1500, x1: -1944, y1: -1244 }], + arms: [ + { label: "frequency 0.5, resources ON", frequency: 0.5, size: 1 }, + { label: "frequency 0.5, ALL resources OFF", frequency: 0.5, size: 1, resourcesOff: true }, + ], + comment: + "Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in [-2200,-1500], " + + "the region oracle-vulcanus-cliff-volcanism-oos found carrying 74 of the frequency 0.5 " + + "arm's 138 errors, at frequency 0.5 with the four Vulcanus resource controls ON and OFF " + + "(size 0, the lever oracle-vulcanus-cliff-ore-direction pulls) - does the surplus follow " + + "the ore rule? (#84). Each arm also records the four resource controls the SURFACE " + + "reported back.", +}; + +const CAPTURES: Record = { sweep: SWEEP, oos: OUT_OF_SAMPLE, ore: ORE_LEVER }; interface Case { readonly region: Region; @@ -191,6 +233,8 @@ interface Case { interface CapturedArm extends Arm { /** `map_gen_settings.autoplace_controls.vulcanus_volcanism` read back off the surface. */ readonly reported: { frequency: number; size: number; richness: number }; + /** The four Vulcanus resource controls read back off the surface. */ + readonly reportedResources: Controls; readonly cases: Case[]; } @@ -205,6 +249,24 @@ async function installedVersion(): Promise { return parsed.installs[0].version; } +type Controls = Record; + +/** + * The `autoplace_controls` overrides one arm writes, or none for the default + * arm - so its read-back reports what the planet ships with rather than an + * echo of what was written. + */ +function overridesFor(arm: Arm): Controls | undefined { + const out: Controls = {}; + if (arm.frequency !== 1 || arm.size !== 1) { + out.vulcanus_volcanism = { frequency: arm.frequency, size: arm.size, richness: 1 }; + } + if (arm.resourcesOff === true) { + for (const name of RESOURCE_CONTROLS) out[name] = { frequency: 1, size: 0, richness: 1 }; + } + return Object.keys(out).length === 0 ? undefined : out; +} + /** * One region of one arm, through the oracle. * @@ -224,10 +286,7 @@ async function captureRegion(arm: Arm, region: Region, version: string) { planet: "vulcanus", seed: SEED, alsoResources: true, - autoplaceControls: - arm.label === "default" - ? undefined - : { vulcanus_volcanism: { frequency: arm.frequency, size: arm.size, richness: 1 } }, + autoplaceControls: overridesFor(arm), }), ); const probePath = join(probeDir, "probe.json"); @@ -278,7 +337,15 @@ async function captureRegion(arm: Arm, region: Region, version: string) { if (reported === undefined) { throw new Error(`${arm.label}: the surface reported no vulcanus_volcanism control`); } - return { cliffs: dump.cliffs, reported }; + // The four resource controls, read back the same way, so a resources-off + // arm proves the lever landed rather than assuming it. + const resources: Controls = {}; + for (const name of RESOURCE_CONTROLS) { + const c = dump.autoplaceControls?.[name]; + if (c === undefined) throw new Error(`${arm.label}: the surface reported no ${name}`); + resources[name] = c; + } + return { cliffs: dump.cliffs, reported, resources }; } finally { await rm(probeDir, { recursive: true, force: true }); await rm(workDir, { recursive: true, force: true }); @@ -297,6 +364,7 @@ async function main(): Promise { for (const arm of capture.arms) { const cases: Case[] = []; let reported: CapturedArm["reported"] | undefined; + let reportedResources: Controls | undefined; for (const region of capture.regions) { const started = Date.now(); const got = await captureRegion(arm, region, version); @@ -309,7 +377,19 @@ async function main(): Promise { `size ${String(arm.size)}`, ); } + // Same for the resource lever: every one of the four must report the + // size the arm asked for, ON or OFF. + const wantSize = arm.resourcesOff === true ? 0 : 1; + for (const name of RESOURCE_CONTROLS) { + if (got.resources[name]?.size !== wantSize) { + throw new Error( + `${arm.label} [${String(region.x0)},${String(region.y0)}]: ${name} reported ` + + `${JSON.stringify(got.resources[name])}, wanted size ${String(wantSize)}`, + ); + } + } reported ??= got.reported; + reportedResources ??= got.resources; cases.push({ region, cliffs: got.cliffs }); console.log( ` ${arm.label} [${String(region.x0)},${String(region.y0)}]: ` + @@ -317,7 +397,8 @@ async function main(): Promise { ); } if (reported === undefined) throw new Error(`${arm.label}: no region captured`); - arms.push({ ...arm, reported, cases }); + if (reportedResources === undefined) throw new Error(`${arm.label}: no resources read back`); + arms.push({ ...arm, reported, reportedResources, cases }); } const fixture = { diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index dd72e68..da8da00 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -313,6 +313,10 @@ "factorioVersion": "2.1.17", "evidence": "captured 2026-09-07 by scripts/probes/vulcanus-cliff-volcanism/capture.ts oos through factorio-oracle, which read 2.1.17 (build 87315) off the installed binary and passed it as --version. The out-of-sample replication of the sweep's headline contrast: eight FRESH 256x256 regions, disjoint from all 23 Vulcanus cliff regions captured before, all more than 1000 tiles from the origin, at the default and the frequency 0.5 arm. Each region was checked on the engine before capture for cliff pixels in both arms and for movement between them (the table in the script). Same read-back guard and same Lua as the sweep fixture." }, + "oracle-vulcanus-cliff-volcanism-ore.seed123456.json": { + "factorioVersion": "2.1.17", + "evidence": "captured 2026-09-07 by scripts/probes/vulcanus-cliff-volcanism/capture.ts ore through factorio-oracle, which read 2.1.17 (build 87315) off the installed binary and passed it as --version. The ore lever on the one region the out-of-sample replication found concentrated: [-2200,-1500] at frequency 0.5, with the four Vulcanus resource controls ON and OFF (size 0, the lever oracle-vulcanus-cliff-ore-direction pulls). Each arm records the volcanism control AND all four resource controls the SURFACE reported back, and the capture refuses an arm whose read-back disagrees. The ON arm reproduces the oos fixture's frequency 0.5 capture of the same region (834 cliffs), which is the determinism check for the pair." + }, "oracle-vulcanus-cliff-fine-sweep.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-08-03 by test/oracle/capture.ts vulcanus-cliff-fine-sweep against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [1500,1500] at 41 values of cliff_elevation_0 (700..900 step 5) with the rule collapsed (cliff_smoothing=0, cliff_elevation_interval=1e6) and the cliffiness gate held open by routing the cliffiness PROPERTY at the literal 1. Each placed cell's orientation asserts one-sided constraints on its corners, so the sweep brackets the grid-4 cliff-elevation field to the step - it MEASURES the field oracle-vulcanus-cliff-bands could only bound from below. Overlaps that fixture at L=790 and reproduces it cell-for-cell (494/494), which is the determinism check. Each case records the cliff_settings the SURFACE reported back." diff --git a/test/fixtures/oracle-vulcanus-cliff-volcanism-ore.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-volcanism-ore.seed123456.json new file mode 100644 index 0000000..d01acac --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-volcanism-ore.seed123456.json @@ -0,0 +1,10494 @@ +{ + "_comment": "Ground truth from Factorio 2.1.17 via factorio-oracle. Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in [-2200,-1500], the region oracle-vulcanus-cliff-volcanism-oos found carrying 74 of the frequency 0.5 arm's 138 errors, at frequency 0.5 with the four Vulcanus resource controls ON and OFF (size 0, the lever oracle-vulcanus-cliff-ore-direction pulls) - does the surplus follow the ore rule? (#84). Each arm also records the four resource controls the SURFACE reported back. Each arm records the control the SURFACE reported back, so an override that failed to apply cannot pass as a setting that does not matter. Positions are cliff cell centres on the 4-tile grid; each entry carries LuaEntity.cliff_orientation. Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus cliff fixture. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts ore", + "_factorioVersion": "2.1.17", + "seed": 123456, + "arms": [ + { + "label": "frequency 0.5, resources ON", + "frequency": 0.5, + "size": 1, + "reported": { + "frequency": 0.5, + "size": 1, + "richness": 1 + }, + "reportedResources": { + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cases": [ + { + "region": { + "x0": -2200, + "y0": -1500, + "x1": -1944, + "y1": -1244 + }, + "cliffs": [ + { + "x": -2170, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2098, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2054, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2046, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2042, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2182, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2166, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2142, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2098, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2094, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2090, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2062, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2038, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2034, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2002, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2114, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2090, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2066, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2062, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2034, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2018, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2014, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2138, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2130, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2126, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2090, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2086, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2070, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2066, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2010, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2094, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2070, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2010, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2006, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1982, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1970, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1966, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2086, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2082, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2074, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2070, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1986, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1982, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2114, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2106, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2018, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2014, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1990, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1982, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1966, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1958, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2166, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2122, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2118, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2110, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2018, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2014, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1990, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1986, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1982, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1966, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1962, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2202, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2166, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2154, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2138, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2130, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1990, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2154, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2118, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1990, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2190, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2154, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2082, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1990, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2110, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1982, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2190, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2110, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1982, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1958, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2198, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2190, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2082, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1998, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1990, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1986, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2082, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1998, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1990, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2198, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1990, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2190, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2110, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1978, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1950, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2150, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1986, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1966, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2194, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2094, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2090, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1986, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1974, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1970, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1966, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1950, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1954, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2186, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1974, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1970, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1986, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1982, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1978, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1974, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1970, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1962, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1962, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2186, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2122, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2130, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1946, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1942, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2178, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2130, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2186, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2126, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1966, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2114, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1970, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2202, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2174, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1966, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2194, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2174, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2178, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2146, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1974, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1970, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2185.30078125, + "y": -1354.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1950, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2183.25, + "y": -1350.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2194, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2167, + "y": -1349.51171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2162.05078125, + "y": -1348.0625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2114, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2110, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2106, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2070, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1946, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2185.30078125, + "y": -1347.44140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2160, + "y": -1344.5625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2122, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2118, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2106, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2066, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2062, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1946, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2050, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2046, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2026, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2022, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2018, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2014, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2010, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2006, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2167, + "y": -1339.61328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2174, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2158, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2150, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2082, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2078, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2006, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2002, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2194, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2174, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2162, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2158, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2070, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2062, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2050, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2046, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2034, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2030, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2026, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1946, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1942, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2184, + "y": -1330.76171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2202, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2179.05078125, + "y": -1329.3125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2162, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2058, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2050, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2046, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2038, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2026, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2022, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2198, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2177, + "y": -1325.8125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2082, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2050, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2038, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2034, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2030, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2179.05078125, + "y": -1322.31640625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2184, + "y": -1320.86328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2162, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2150, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2030, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1962, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2198, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2162, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2158, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2050, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1966, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1958, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2158, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2138, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2130, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2074, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2070, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2054, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1978, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1962, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2114, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2070, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2066, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2018, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1962, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2158, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2146, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2142, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2114, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2102, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2086, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2082, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1962, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2158, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2146, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2142, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2106, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2102, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2082, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2078, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2074, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1966, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2170, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2006, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2002, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1998, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1970, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2114, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2002, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1978, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2130, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2042, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2002, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1994, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1990, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2122, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2046, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2010, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2006, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2110, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2046, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2034, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1974, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1970, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2082, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1978, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1974, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1966, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1962, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2078, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1962, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1958, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1946, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2034, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2030, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2002, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1958, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1954, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1950, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1946, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2126, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2010, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2006, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1998, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1994, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1958, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2166, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2022, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2018, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2014, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2010, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1974, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1958, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1954, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1950, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2174, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2102, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2034, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2030, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2026, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2022, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1950, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2150, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2110, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2098, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2094, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2090, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2086, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2038, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2034, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1990, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1978, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1950, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2146, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2038, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1950, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + } + ] + }, + { + "label": "frequency 0.5, ALL resources OFF", + "frequency": 0.5, + "size": 1, + "resourcesOff": true, + "reported": { + "frequency": 0.5, + "size": 1, + "richness": 1 + }, + "reportedResources": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "cases": [ + { + "region": { + "x0": -2200, + "y0": -1500, + "x1": -1944, + "y1": -1244 + }, + "cliffs": [ + { + "x": -2170, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2098, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2054, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2046, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2042, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2182, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2166, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2142, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2098, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2094, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2090, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2062, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2038, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2034, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2002, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2114, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2090, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2066, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2062, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2034, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2018, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2014, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2138, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2130, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2126, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2090, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2086, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2070, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2066, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2010, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2094, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2078, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2070, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2010, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2006, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1982, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1970, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1966, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2086, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2082, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2074, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2070, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1986, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1982, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2114, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2106, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2018, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2014, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1990, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1982, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1966, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1958, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2166, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2122, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2118, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2110, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2018, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2014, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1990, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1986, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1982, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1966, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1962, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2202, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2166, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2154, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2138, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2130, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2078, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1990, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2154, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2118, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1990, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2190, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2154, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2082, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1990, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2110, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2082, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1982, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2190, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2110, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2082, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1982, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1958, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2198, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2190, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2082, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1990, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1986, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2082, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2078, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1990, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2198, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2078, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1990, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2190, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2110, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1978, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1950, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2150, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1986, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1966, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2194, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2094, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2090, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1986, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1974, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1970, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1966, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1950, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1954, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2186, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1974, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1970, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1986, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1982, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1978, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1974, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1970, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1962, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1962, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2186, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2122, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2130, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1946, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1942, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2178, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2130, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2186, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2126, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1966, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2114, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1970, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2202, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2174, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1966, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2194, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2174, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2178, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2146, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1974, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1970, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2185.30078125, + "y": -1354.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1950, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2183.25, + "y": -1350.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2194, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2167, + "y": -1349.51171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2162.05078125, + "y": -1348.0625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2114, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2110, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2106, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2070, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1946, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2185.30078125, + "y": -1347.44140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2160, + "y": -1344.5625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2122, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2118, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2106, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2066, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2062, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1946, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2050, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2046, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2026, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2022, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2018, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2014, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2010, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2006, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2167, + "y": -1339.61328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2174, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2158, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2150, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2082, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2078, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2006, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2002, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2194, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2174, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2162, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2158, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2070, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2062, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2050, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2046, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2034, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2030, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2026, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1946, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1942, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2184, + "y": -1330.76171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2202, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2179.05078125, + "y": -1329.3125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2162, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2058, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2050, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2046, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2038, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2026, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2022, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2018, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2014, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2198, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2177, + "y": -1325.8125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2082, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2050, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2046, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2042, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2038, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2034, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2030, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2022, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2018, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2014, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2010, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2179.05078125, + "y": -1322.31640625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2184, + "y": -1320.86328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2170, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2162, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2150, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2042, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2026, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2010, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2006, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1962, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2198, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2170, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2162, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2158, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2050, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2046, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2042, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2034, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2030, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2026, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2022, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2006, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2002, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1966, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1958, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2158, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2130, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2074, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2070, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2054, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2046, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2042, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2030, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2026, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2022, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2010, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2006, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1978, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1962, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2070, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2066, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2062, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2058, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2046, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2018, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2010, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1962, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2170, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2162, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2158, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2142, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2114, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2102, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2086, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2082, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2046, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2158, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2142, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2106, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2102, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2082, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2078, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2074, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2070, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2066, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2062, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2046, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2042, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1966, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2170, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2062, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2058, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2006, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2002, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1998, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1970, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2114, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2002, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1978, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2130, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2042, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2038, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2034, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2002, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1994, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1990, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2122, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2046, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2010, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2006, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2110, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2046, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2034, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1974, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1970, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2082, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1978, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1974, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1966, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1962, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2078, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1962, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1958, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1946, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2034, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2030, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2002, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1958, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1954, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1950, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1946, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2126, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2010, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2006, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1998, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1994, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1958, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2166, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2022, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2018, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2014, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2010, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1974, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1958, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1954, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1950, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2174, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2102, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2034, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2030, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2026, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2022, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1950, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2150, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2110, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2098, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2094, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2090, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2086, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2038, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2034, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1990, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1978, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1950, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2146, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2038, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1950, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + } + ] + } + ] +}