diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm
index 39c7dbffa6ee..9ebf0196b888 100644
--- a/code/game/objects/effects/landmarks/survivor_spawner.dm
+++ b/code/game/objects/effects/landmarks/survivor_spawner.dm
@@ -70,6 +70,28 @@
spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+//Weyland-Yutani Survivors//
+
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl
+ equipment = /datum/equipment_preset/survivor/wy/executive
+ synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth
+ intro_text = list("
You are the last alive Executive of Lazarus Landing!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are a Corporate Liaison stationed on LV-624 from Weyland-Yutani. You were tipped off about some very peculiar looking eggs recovered from the alien temple North-East of the colony. Being the smart Executive the Company hired you to be, you decided to prepare your office for the worst when the first 'facehugger' was born in the vats of the Research Dome. Turned out, you were right, everyone who called you crazy and called these the new 'synthetics' is now dead, you along with your Corporate Security detail are the only survivors due to your paranoia. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon
+ equipment = /datum/equipment_preset/survivor/goon
+ synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth
+ intro_text = list("You are a Corporate Security Officer!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are a Corporate Security Officer stationed on LV-624 from Weyland-Yutani. Suddenly one day you were pulled aside by the Corporate Liaison and told to bring supplies from both Engineering and the Marshals Offices to their office, and fast. You began fortifying the Corporate Dome and was told by the Executive that something big will ravage the entire colony, excluding you. Turns out, the Liaison was right, these so called 'xenomorphs' broke containment from the Research Dome and began destroying the entire colony, while you sat protecting the asset. The Liaison said they will soon find a way to contact Weyland-Yutani and to remain steadfast until rescue arrives."
+
+ spawn_priority = SPAWN_PRIORITY_HIGH
+
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc
equipment = /datum/equipment_preset/survivor/pmc
synth_equipment = /datum/equipment_preset/synth/survivor/pmc
diff --git a/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm
new file mode 100644
index 000000000000..435539fa5fae
--- /dev/null
+++ b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm
@@ -0,0 +1,51 @@
+// /obj/effect/landmark/survivor_spawner/lv624_corporate_dome/cl
+// corporatedomehold.dmm
+
+/datum/equipment_preset/survivor/wy/executive
+ name = "Survivor - LV-624 Paranoid Corporate Liaison"
+ flags = EQUIPMENT_PRESET_START_OF_ROUND
+ paygrade = PAY_SHORT_WYC5
+ skills = /datum/skills/civilian/survivor/manager
+ assignment = "LV-624 Corporate Liaison"
+ idtype = /obj/item/card/id/silver/clearance_badge/cl
+ faction_group = list(FACTION_WY, FACTION_SURVIVOR)
+ access = list(
+ ACCESS_WY_GENERAL,
+ ACCESS_WY_COLONIAL,
+ ACCESS_WY_MEDICAL,
+ ACCESS_WY_SECURITY,
+ ACCESS_WY_RESEARCH,
+ ACCESS_WY_ARMORY,
+ ACCESS_CIVILIAN_PUBLIC,
+ ACCESS_CIVILIAN_RESEARCH,
+ ACCESS_CIVILIAN_ENGINEERING,
+ ACCESS_CIVILIAN_LOGISTICS,
+ ACCESS_CIVILIAN_BRIG,
+ ACCESS_CIVILIAN_MEDBAY,
+ ACCESS_CIVILIAN_COMMAND,
+ )
+ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_RUSSIAN)
+
+ survivor_variant = CORPORATE_SURVIVOR
+
+/datum/equipment_preset/survivor/wy/executive/load_gear(mob/living/carbon/human/new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/field(new_human), WEAR_BODY)
+ if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD])
+ add_ice_colony_survivor_equipment(new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD)
+ if(new_human.disabilities & NEARSIGHTED)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES)
+ else
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/fp9000(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR)
+ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/fp9000(new_human), WEAR_L_HAND)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK)
+ add_survivor_weapon_pistol(new_human)
+ add_random_cl_survivor_loot(new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/document(new_human), WEAR_R_STORE)
diff --git a/colonialmarines.dme b/colonialmarines.dme
index 0b39e89042d2..ebb42681f601 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -1761,6 +1761,7 @@
#include "code\modules\gear_presets\survivors\fiorina_sciannex\preset_fiorina_sciannex.dm"
#include "code\modules\gear_presets\survivors\kutjevo\preset_kutjevo.dm"
#include "code\modules\gear_presets\survivors\lv_522\forcon_survivors.dm"
+#include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm"
#include "code\modules\gear_presets\survivors\lv_624\clfship_insert_lv624.dm"
#include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm"
#include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm"
diff --git a/maps/Nightmare/maps/LV624/nightmare.json b/maps/Nightmare/maps/LV624/nightmare.json
index 8f81a61c16de..0fe51643177b 100644
--- a/maps/Nightmare/maps/LV624/nightmare.json
+++ b/maps/Nightmare/maps/LV624/nightmare.json
@@ -6,6 +6,13 @@
"path": "standalone/clfship.dmm",
"when": { "lvevent": "fallen_ship" }
},
+ {
+ "type": "map_insert",
+ "landmark": "corporatedome",
+ "chance": 0.5,
+ "path": "standalone/corporatedome.dmm",
+ "when": { "lvevent": "asset_protection" }
+ },
{
"type": "map_insert",
"landmark": "lv-skylight",
diff --git a/maps/Nightmare/maps/LV624/scenario.json b/maps/Nightmare/maps/LV624/scenario.json
index 3c8051a4eb17..6880cb542f2a 100644
--- a/maps/Nightmare/maps/LV624/scenario.json
+++ b/maps/Nightmare/maps/LV624/scenario.json
@@ -13,7 +13,8 @@
{ "weight": 2, "type": "def", "values": { "lvevent": "none" } },
{ "weight": 4, "type": "def", "values": { "lvevent": "last_stand" } },
{ "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "bridge" } },
- { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } }
+ { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } },
+ { "weight": 2, "type": "def", "values": { "lvevent": "asset_protection", "mainpath": "left" } }
]
}
]
diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm
index 5a0bb9dfc88d..978a86228671 100644
--- a/maps/map_files/LV624/LV624.dmm
+++ b/maps/map_files/LV624/LV624.dmm
@@ -15851,6 +15851,15 @@
"hSn" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/colony/west_nexus_road)
+"hSp" = (
+/obj/structure/flora/grass/tallgrass/jungle/corner{
+ dir = 9
+ },
+/obj/effect/landmark/nightmare{
+ insert_tag = "corporatedome"
+ },
+/turf/open/gm/grass/grass1,
+/area/lv624/ground/colony/west_tcomms_road)
"hSz" = (
/obj/effect/landmark/hunter_secondary,
/turf/open/gm/grass/grass1,
@@ -34624,7 +34633,7 @@ aXh
wTC
kjp
kjp
-ply
+hSp
efp
efp
uSq
diff --git a/maps/map_files/LV624/standalone/corporatedome.dmm b/maps/map_files/LV624/standalone/corporatedome.dmm
new file mode 100644
index 000000000000..ce8aed56db3b
--- /dev/null
+++ b/maps/map_files/LV624/standalone/corporatedome.dmm
@@ -0,0 +1,1748 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aj" = (
+/obj/structure/window/framed/colony/reinforced,
+/obj/structure/flora/jungle/planttop1,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"aQ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Corporation Dome";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bm" = (
+/obj/structure/surface/rack,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/spacecash/c1000/counterfeit,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bA" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bD" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"bE" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/barricade/metal/wired{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cm" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/barricade/sandbags{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cn" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cA" = (
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cB" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cR" = (
+/obj/structure/flora/jungle/vines/light_2,
+/obj/structure/flora/jungle/vines/heavy,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"da" = (
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_y = 20
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"dq" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/folder/white{
+ pixel_y = 8
+ },
+/obj/item/folder/yellow{
+ pixel_y = 4
+ },
+/obj/item/folder/red,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"dH" = (
+/obj/structure/machinery/blackbox_recorder,
+/obj/item/prop/almayer/flight_recorder/colony{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"dI" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"dO" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/weapon/pole/fancy_cane,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"dY" = (
+/turf/open/floor/plating{
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"ev" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"eF" = (
+/obj/structure/barricade/metal/wired,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fm" = (
+/obj/effect/vehicle_spawner/van/decrepit,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ft" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fF" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_9_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fH" = (
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"gx" = (
+/obj/structure/window/framed/colony/reinforced,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"gz" = (
+/obj/item/shard,
+/turf/open/gm/grass/grass1,
+/area/lv624/ground/jungle/west_central_jungle)
+"gX" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ name = "\improper Garage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ha" = (
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"hc" = (
+/obj/structure/showcase,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"he" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"hf" = (
+/obj/structure/barricade/metal/wired{
+ dir = 1;
+ health = 10;
+ is_wired = 1
+ },
+/obj/structure/machinery/vending/snack,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"hO" = (
+/obj/structure/barricade/metal/wired{
+ dir = 8
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"is" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 3
+ },
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"iF" = (
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/device/motiondetector/hacked/pmc,
+/obj/effect/landmark/objective_landmark/close,
+/obj/item/explosive/grenade/high_explosive/pmc,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"iT" = (
+/obj/structure/filingcabinet,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"jC" = (
+/obj/structure/barricade/deployable{
+ damage_state = 1;
+ dir = 1;
+ health = 245;
+ icon_state = "folding_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"jH" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/item/book/manual/research_and_development,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"jJ" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"kl" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"kU" = (
+/obj/structure/machinery/door_control{
+ id = "garage_lv";
+ name = "Garage Shutters";
+ pixel_y = -28
+ },
+/obj/effect/landmark/corpsespawner/colonist,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating{
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"ln" = (
+/obj/structure/machinery/vending/cola,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"lG" = (
+/obj/item/storage/firstaid/adv/empty,
+/obj/structure/transmitter/colony_net{
+ phone_category = "Lazarus Landing";
+ phone_color = "blue";
+ phone_id = "Corporate Office";
+ pixel_y = 24
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mg" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ms" = (
+/turf/open/floor{
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mw" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/obj/item/ammo_casing/bullet,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mK" = (
+/obj/effect/spawner/gibspawner/human,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"ny" = (
+/obj/effect/landmark/corpsespawner/prisoner,
+/obj/effect/decal/cleanable/blood,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"oj" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Corporation Office";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"pa" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"pg" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/showcase,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"pR" = (
+/obj/structure/filingcabinet,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qn" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/bodybag,
+/obj/effect/landmark/corpsespawner/clf,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qC" = (
+/obj/item/storage/fancy/crayons{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qH" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ dir = 1;
+ name = "\improper Workshop Storage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin/wy{
+ pixel_y = 8
+ },
+/obj/item/tool/pen/clicky,
+/obj/item/device/flashlight/lamp{
+ pixel_x = -7;
+ pixel_y = 15
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qJ" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Storage Room"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qM" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/machinery/door_control{
+ id = "garage_lv";
+ name = "Garage Shutters";
+ pixel_x = -28
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sc" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sm" = (
+/obj/structure/barricade/metal/wired{
+ dir = 1;
+ health = 10;
+ is_wired = 1
+ },
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"tF" = (
+/obj/structure/barricade/plasteel{
+ dir = 8
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"vf" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Corporate Liaison"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"vC" = (
+/obj/structure/prop/server_equipment/yutani_server/off,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"vW" = (
+/obj/structure/barricade/metal,
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"wy" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ name = "\improper Workshop Storage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"wW" = (
+/obj/structure/closet/bodybag,
+/obj/effect/landmark/corpsespawner/security/marshal,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"xk" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 16
+ },
+/obj/effect/landmark/objective_landmark/science,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"xG" = (
+/obj/structure/machinery/photocopier,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"yc" = (
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"zm" = (
+/obj/structure/safe{
+ spawnkey = 0
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zs" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"zw" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/folder/black{
+ name = "Weyland-Yutani Classified folder";
+ desc = "A black folder which has the Weyland-Yutani symbol inside it, along with CLASSIFIED in giant red letters."
+ },
+/obj/effect/landmark/objective_landmark/close,
+/obj/item/reagent_container/food/drinks/coffeecup/wy{
+ pixel_x = -9;
+ pixel_y = 7
+ },
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zx" = (
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Aj" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"AG" = (
+/obj/structure/barricade/metal{
+ health = 250
+ },
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Bh" = (
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"BL" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 8;
+ id = "garage_lv";
+ name = "\improper Garage"
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"BZ" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_6_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ch" = (
+/obj/item/reagent_container/food/snacks/wy_chips/pepper,
+/obj/item/reagent_container/food/snacks/wy_chips/pepper,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/obj/item/reagent_container/food/snacks/packaged_burrito,
+/obj/item/reagent_container/food/snacks/packaged_burrito,
+/obj/item/reagent_container/food/snacks/packaged_hdogs,
+/obj/item/reagent_container/food/snacks/packaged_hdogs,
+/obj/structure/closet/crate/freezer,
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"CF" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ locked = 1;
+ name = "\improper Corporate Liaison"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Df" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Dn" = (
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/weapon/gun/smg/mp5,
+/obj/item/weapon/gun/smg/mp5,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Dp" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/bed/roller,
+/obj/effect/landmark/corpsespawner/wysec,
+/obj/item/prop/colony/usedbandage{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 15
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"DU" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ez" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"EM" = (
+/obj/structure/flora/jungle/vines/light_3,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Fh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/fancy/cigarettes/emeraldgreen,
+/obj/item/storage/fancy/cigarettes/wypacket{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor{
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Fk" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"Fl" = (
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Fu" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/adv,
+/obj/effect/landmark/objective_landmark/medium,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"FP" = (
+/obj/structure/barricade/metal/wired,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"FZ" = (
+/obj/structure/machinery/faxmachine/corporate/liaison,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Gi" = (
+/obj/structure/prop/server_equipment/yutani_server/broken,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Go" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_10_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Gt" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"GM" = (
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"GV" = (
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Hn" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_9_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ho" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/turf/open/floor{
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Hv" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/fancy/cigar,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"HK" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/effect/spawner/random/powercell,
+/obj/item/tool/crowbar/red{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/tool/screwdriver,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ii" = (
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"IM" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/stack/rods{
+ amount = 15
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Jg" = (
+/obj/structure/machinery/light,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Jq" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ locked = 1;
+ name = "\improper Corporation Dome";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"JL" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/prop/colony/usedbandage{
+ dir = 10
+ },
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Kv" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"KC" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Li" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"Ln" = (
+/obj/structure/barricade/plasteel/metal,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Me" = (
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"Ml" = (
+/obj/structure/machinery/atm{
+ name = "Weyland-Yutani Automatic Teller Machine";
+ pixel_y = 30
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"OH" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
+ pixel_x = 29
+ },
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/stack/sandbags/large_stack,
+/obj/item/stack/sheet/metal/large_stack,
+/obj/item/stack/sheet/plasteel/large_stack,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Pa" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Pr" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_9_1"
+ },
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Qi" = (
+/obj/structure/flora/jungle/vines/light_1,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Rn" = (
+/obj/structure/showcase,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RD" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_1_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RF" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RN" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/prop/server_equipment/laptop/on,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Sb" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"SO" = (
+/obj/structure/flora/jungle/vines/heavy,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"SV" = (
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Tc" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/paper_bin/wy{
+ pixel_y = 8
+ },
+/obj/item/tool/pen/clicky,
+/obj/item/tool/pen/red/clicky{
+ pixel_y = 6
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"TF" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/supply/medicine,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Uo" = (
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Uz" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"UF" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Vj" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/ashtray/glass,
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_y = 12
+ },
+/obj/item/trash/cigbutt,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Wx" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/barricade/metal{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"WL" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/showcase,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xt" = (
+/turf/template_noop,
+/area/template_noop)
+"Xz" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_3_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"XC" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"XG" = (
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Ye" = (
+/obj/structure/largecrate/random,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yg" = (
+/obj/item/moneybag,
+/obj/structure/surface/rack,
+/obj/item/coin/diamond,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yo" = (
+/obj/structure/barricade/sandbags/wired{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yv" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/shovel/etool/folded,
+/obj/item/tool/soap/deluxe{
+ pixel_x = 4;
+ pixel_y = 13
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yz" = (
+/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{
+ desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional.";
+ name = "battered M41A pulse rifle Mk2"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"YN" = (
+/turf/open/gm/dirt,
+/area/lv624/lazarus/landing_zones/lz2)
+"ZG" = (
+/obj/effect/decal/cleanable/blood,
+/obj/effect/landmark/corpsespawner/scientist,
+/obj/item/handcuffs,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ZT" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+
+(1,1,1) = {"
+Xt
+Xt
+Xt
+Fk
+Me
+dY
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(2,1,1) = {"
+Xt
+Xt
+Xt
+yc
+da
+dY
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(3,1,1) = {"
+Xt
+Xt
+Xt
+yc
+Me
+kU
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(4,1,1) = {"
+Xt
+Xt
+XG
+BL
+BL
+BL
+XG
+he
+Bh
+fm
+he
+XG
+XG
+XG
+XG
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(5,1,1) = {"
+Xt
+Xt
+XG
+hO
+hO
+tF
+qM
+Uz
+ft
+Bh
+Bh
+XG
+Pa
+Gt
+qC
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(6,1,1) = {"
+Xt
+Xt
+XG
+ny
+Bh
+mw
+Bh
+Bh
+Bh
+Bh
+Bh
+qH
+Uo
+Uo
+Uo
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(7,1,1) = {"
+Xt
+Xt
+XG
+ZG
+cB
+mw
+wW
+qn
+OH
+Bh
+WL
+XG
+Yv
+Aj
+Uo
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(8,1,1) = {"
+Xt
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+gX
+XG
+XG
+XG
+XG
+wy
+XG
+XG
+Xt
+Xt
+Xt
+"}
+(9,1,1) = {"
+YN
+XG
+ln
+GV
+GV
+TF
+XG
+Rn
+Ch
+cA
+iF
+Xp
+XG
+Ml
+GV
+eF
+XG
+Ii
+Ii
+Ii
+"}
+(10,1,1) = {"
+YN
+Jq
+hf
+ev
+Sb
+cA
+aQ
+cA
+cA
+Go
+cA
+cA
+aQ
+cA
+Hn
+Ln
+aQ
+Kv
+Ii
+Ii
+"}
+(11,1,1) = {"
+YN
+cA
+sm
+RF
+fF
+cA
+cA
+jC
+cA
+Sb
+cA
+pa
+cA
+RD
+Sb
+AG
+cA
+Ii
+dI
+mK
+"}
+(12,1,1) = {"
+YN
+XG
+xk
+fH
+fH
+UF
+XG
+hc
+Dn
+cA
+cA
+pg
+XG
+Ye
+kl
+DU
+XG
+Ii
+Ii
+bD
+"}
+(13,1,1) = {"
+Xt
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+cA
+oj
+XG
+XG
+XG
+XG
+XG
+XG
+Xt
+Xt
+Xt
+"}
+(14,1,1) = {"
+Xt
+Xt
+Xt
+XG
+XG
+Yg
+bm
+FZ
+gx
+cA
+cA
+cn
+XG
+Gi
+vC
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(15,1,1) = {"
+Xt
+Xt
+XG
+XG
+HK
+Fl
+ZT
+ms
+IM
+cA
+BZ
+cA
+qJ
+SV
+Jg
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(16,1,1) = {"
+Xt
+Xt
+XG
+RN
+sc
+bA
+cA
+ms
+gx
+cm
+Sb
+UF
+XG
+Fu
+dH
+EM
+Xt
+Xt
+Xt
+Xt
+"}
+(17,1,1) = {"
+Xt
+Xt
+XG
+qI
+Vj
+xG
+Fh
+zw
+XG
+cA
+oj
+XG
+XG
+XG
+XG
+Qi
+Xt
+Xt
+Xt
+Xt
+"}
+(18,1,1) = {"
+Xt
+Xt
+XG
+XG
+XG
+CF
+XG
+XG
+XG
+cA
+bA
+XC
+jJ
+iT
+gx
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(19,1,1) = {"
+Xt
+Xt
+XG
+Hv
+GM
+bA
+Df
+ha
+gx
+cA
+mg
+cA
+bA
+vW
+aj
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(20,1,1) = {"
+Xt
+Xt
+XG
+zm
+KC
+zx
+Dp
+JL
+gx
+cA
+Xz
+Yz
+Ho
+FP
+gx
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(21,1,1) = {"
+Xt
+Xt
+XG
+XG
+lG
+Pr
+Yo
+bA
+vf
+bE
+cA
+Wx
+Ez
+SO
+cR
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(22,1,1) = {"
+Xt
+Xt
+Xt
+XG
+XG
+Tc
+dq
+dO
+gx
+jH
+is
+pR
+SO
+SO
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(23,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+XG
+Li
+gx
+gx
+XG
+gx
+zs
+gx
+SO
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(24,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+gz
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(25,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}